@charset "UTF-8";
/* ---------------------------------------
  基本情報
-----------------------------------------*/
html {
  overflow-y: scroll;
  font-size: 62.5%;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: left;
  color: #000;
  word-break: break-word;
}

em,
i,
strong,
b {
  font-style: normal;
  font-weight: 700;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-weight: 500;
}

textarea {
  resize: vertical;
}

select::-ms-expand {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}
summary:hover {
  cursor: pointer;
}

/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* base
--------------------------------*/
p,
dt,
dd,
li,
th,
td,
input,
button,
textarea,
select {
  font-size: 1.5rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  p,
  dt,
  dd,
  li,
  th,
  td,
  input,
  button,
  textarea,
  select {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

.tal {
  text-align: left !important;
}

@media screen and (min-width: 768px) {
  .tel-link {
    pointer-events: none;
  }
}

@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  img {
    width: 100%;
  }
  .sp-tac {
    text-align: center !important;
  }
  .sp-tar {
    text-align: right !important;
  }
  .sp-tal {
    text-align: left !important;
  }
}
/* ---------------------------------------------
  レイアウト
-----------------------------------------------*/
.l-inner {
  max-width: 104rem;
  padding-inline: 2rem;
  width: calc(100% - 4rem);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 100%;
    padding-inline: 1rem;
    width: calc(100% - 2rem);
  }
}
.l-inner--wide {
  max-width: 128rem;
}
@media screen and (max-width: 767px) {
  .l-inner--wide {
    max-width: 100%;
  }
}

.l-container {
  overflow: hidden;
}

/* ---------------------------------------------
  装飾
-----------------------------------------------*/
.u-bold {
  font-weight: 700;
}

.u-underline {
  text-decoration: underline;
}

/* ---------------------------------------------
  パーツ
-----------------------------------------------*/
/* ボタン
--------------------------------*/
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20rem;
  height: 5rem;
  color: #E11832;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.03em;
  border: 1px solid #E11832;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 16rem;
    height: 4rem;
    font-size: 1.6rem;
  }
}
.c-btn:hover {
  background: #E11832;
  color: #fff;
}

.c-btn-arrow {
  display: inline-block;
  width: 20rem;
  height: 5rem;
  padding: 1.2rem 0 1.8rem 2rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.03em;
  background: #E11832;
  position: relative;
  transition: all 0.3s;
}
.c-btn-arrow::after {
  content: "";
  position: absolute;
  top: 2rem;
  right: -2rem;
  background: #fff;
  display: inline-block;
  width: 4rem;
  height: 0.8rem;
  mask-image: url("../img/common/btn-arrow.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: transform 0.3s;
}
.c-btn-arrow:hover::after {
  transform: translateX(1rem);
}

.c-btn-recruit {
  display: inline-flex;
  align-items: center;
  width: 40rem;
  height: 10rem;
  padding: 3.4rem 0 3.4rem 3.1rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.6rem;
  background: url("../img/common/btn-recruit-bg.png") no-repeat center center/cover;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn-recruit {
    width: 30rem;
    height: 8rem;
    font-size: 1.6rem;
    padding: 2rem 0 2rem 3rem;
  }
}
.c-btn-recruit::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.7rem;
  transform: translateY(-50%);
  display: inline-block;
  width: 4rem;
  height: 0.8rem;
  mask-image: url("../img/common/btn-arrow.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  background: #fff;
  transition: transform 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn-recruit::after {
    right: 1rem;
  }
}
.c-btn-recruit:hover::after {
  transform: translateY(-50%) translateX(1rem);
}

.c-btn-news {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20rem;
  height: 5rem;
  color: #070707;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.03em;
  border: 1px solid #000;
  background: #fff;
  position: relative;
  transition: all 0.3s;
}
.c-btn-news::after {
  content: "";
  position: absolute;
  top: 2rem;
  right: -2rem;
  display: inline-block;
  width: 4rem;
  height: 0.8rem;
  mask-image: url("../img/common/btn-arrow.svg");
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  background: #000;
  transition: all 0.3s;
}
.c-btn-news:hover {
  border-color: #E11832;
  color: #E11832;
}
.c-btn-news:hover::after {
  transform: translateX(1rem);
  background: #E11832;
}

.c-btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28rem;
  height: 6rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: normal;
  background: #E11832;
  border: 1px solid #fff;
  transition: all 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-btn-contact {
    width: 20rem;
    height: 4.8rem;
    font-size: 1.6rem;
  }
}
.c-btn-contact:hover {
  background: #fff;
  color: #E11832;
  border-color: #E11832;
}

/* タイトル
--------------------------------*/
.section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-title-en {
  color: #fff;
  font-family: "Mrs Saint Delafield", sans-serif;
  -webkit-text-stroke-width: 0.05rem;
  -webkit-text-stroke-color: #fff;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .section-title-en {
    font-size: 1.8rem;
  }
}
.section-title-ja {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .section-title-ja {
    font-size: 2.4rem;
  }
}
.section-title--service .section-title-en {
  color: #E11832;
  -webkit-text-stroke-color: #E11832;
}
@media screen and (max-width: 767px) {
  .section-title--service .section-title-en {
    text-align: center;
  }
}
.section-title--service .section-title-ja {
  color: #000;
}
@media screen and (max-width: 767px) {
  .section-title--service .section-title-ja {
    text-align: center;
  }
}
.section-title--recruit {
  flex-direction: row-reverse;
  justify-content: start;
  align-items: end;
  column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .section-title--recruit {
    flex-direction: column;
    align-items: center;
  }
}
.section-title--recruit .section-title-en {
  margin-block-end: -0.2rem;
}
@media screen and (max-width: 767px) {
  .section-title--recruit .section-title-en {
    margin-block-end: 0;
  }
}
.section-title--news .section-title-en {
  color: #E11832;
  -webkit-text-stroke-color: #E11832;
}
.section-title--news .section-title-ja {
  color: #000;
}
.section-title--policy {
  padding-block: 7rem 3rem;
  flex-direction: row-reverse;
  justify-content: start;
  align-items: center;
  column-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .section-title--policy {
    padding-block: 5rem 2rem;
  }
}
.section-title--policy .section-title-en {
  margin-block-end: -0.8rem;
  color: #E11832;
  -webkit-text-stroke-color: #E11832;
}
.section-title--policy .section-title-ja {
  color: #000;
}
.section-title--flow .section-title-en {
  color: #E11832;
  -webkit-text-stroke-color: #E11832;
}
@media screen and (max-width: 767px) {
  .section-title--flow .section-title-en {
    text-align: center;
  }
}
.section-title--flow .section-title-ja {
  color: #000;
}
@media screen and (max-width: 767px) {
  .section-title--flow .section-title-ja {
    text-align: center;
  }
}
.section-title--contact .section-title-en {
  margin-block-end: -0.8rem;
  color: #E11832;
  -webkit-text-stroke-color: #E11832;
}
.section-title--contact .section-title-ja {
  color: #000;
}

/* パンくずリスト
--------------------------------*/
.l-breadcrumb__inner {
  padding-block-start: 3rem;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-breadcrumb__inner::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-breadcrumb__inner {
    padding-block-start: 2rem;
  }
}
.l-breadcrumb__inner a {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-breadcrumb__inner a {
    font-size: 1.2rem;
  }
}
.l-breadcrumb__inner a::after {
  content: ">";
  display: inline-block;
  margin-inline: 1rem;
  color: #000;
}
@media screen and (max-width: 767px) {
  .l-breadcrumb__inner a::after {
    margin-inline: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .l-breadcrumb__inner a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-breadcrumb__inner a:hover {
    opacity: 0.7;
  }
}
.l-breadcrumb__inner span {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-breadcrumb__inner span {
    font-size: 1.2rem;
  }
}

/* ---------------------------------------------
  header
-----------------------------------------------*/
.l-header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0;
  left: 0;
  border-bottom: 1px solid #000;
  opacity: 0.9;
  background: #fff;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo {
  padding-block: 0.1rem 0.9rem;
  transform: translateX(-0.7rem);
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    padding-block: 0.1rem 0.5rem;
    transform: translateX(0);
  }
}
@media screen and (min-width: 768px) {
  .l-header__logo a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-header__logo a:hover {
    opacity: 0.7;
  }
}
.l-header__logo a img {
  width: 21.2rem;
  aspect-ratio: 212/85;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 767px) {
  .l-header__logo a img {
    width: 12rem;
  }
}
.l-header__nav {
  display: flex;
  align-items: center;
  justify-content: end;
  column-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__list {
  display: flex;
  align-items: center;
  column-gap: 4rem;
}
.l-header__list li a {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .l-header__list li a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-header__list li a:hover {
    opacity: 0.7;
  }
}

/* ---------------------------------------------
  l-drawer
-----------------------------------------------*/
.l-drawer__icon {
  position: fixed;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 2rem;
  right: 2rem;
  width: 2.4rem;
  height: 1.6rem;
}
@media screen and (min-width: 768px) {
  .l-drawer__icon {
    display: none;
  }
}
.l-drawer__icon--bar {
  width: 100%;
  height: 0.2rem;
  border-radius: 0.2rem;
  background: #E11832;
  transition: all 0.5s ease;
}

.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 0.8rem;
  background: #fff;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -0.6rem;
  background: #fff;
}

.l-drawer {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #AD0021;
  overflow: hidden;
}
.l-drawer__content {
  width: 100%;
  height: 100%;
  padding-block: 8rem 5rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.l-drawer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3rem;
}
.l-drawer__list li a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.l-drawer__btn {
  margin-block-start: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  font-size: 2rem;
}
.l-drawer__btn .c-btn {
  color: #fff;
  border-color: #fff;
}

.l-drawer {
  translate: 101%;
  transition: translate 0.5s ease;
}
.l-drawer.js-show {
  translate: 0;
}

/* ---------------------------------------------
  footer
-----------------------------------------------*/
.l-footer-top {
  background: #000;
}
.l-footer-top__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 5.2rem 6rem;
}
@media screen and (max-width: 767px) {
  .l-footer-top__inner {
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
    padding-block: 3rem 4rem;
  }
}
.l-footer-top__wrap {
  display: flex;
  flex-direction: column;
  row-gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer-top__wrap {
    row-gap: 2rem;
  }
}
.l-footer-top__text {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .l-footer-top__text {
    text-align: center;
    font-size: 1.2rem;
  }
}
.l-footer-bottom {
  background: #F8F8F8;
}
.l-footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer-bottom__inner {
    flex-direction: column;
    align-items: center;
    row-gap: 3rem;
    padding-block: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-bottom__logo a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer-bottom__logo a:hover {
    opacity: 0.7;
  }
}
.l-footer-bottom__logo a img {
  width: 21.2rem;
  aspect-ratio: 212/85;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 767px) {
  .l-footer-bottom__logo a img {
    width: 12rem;
  }
}
.l-footer-bottom__nav {
  display: flex;
  align-items: center;
  justify-content: end;
  column-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer-bottom__nav {
    flex-direction: column;
    row-gap: 2rem;
  }
}
.l-footer-bottom__list {
  display: flex;
  align-items: center;
  column-gap: 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer-bottom__list {
    flex-direction: column;
    row-gap: 1.2rem;
  }
}
.l-footer-bottom__list li a {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .l-footer-bottom__list li a {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer-bottom__list li a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-footer-bottom__list li a:hover {
    opacity: 0.7;
  }
}
.l-footer__copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 2rem 2.6rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    padding-block: 1rem 1.6rem;
  }
}
.l-footer__copyright small {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright small {
    font-size: 1rem;
  }
}

/* ---------------------------------------------
  main
-----------------------------------------------*/
/* ------------------------------
    フェードインアニメーション
------------------------------ */
.fadeUp {
  opacity: 0;
  translate: 0 40px;
  transition: opacity 0.5s ease, translate 0.5s ease;
}
.fadeUp.js-show {
  opacity: 1;
  translate: 0 0;
}

/* ------------------------------
    文字アニメーション
------------------------------ */
.animate__text {
  visibility: hidden;
}
.animate__text .line {
  display: inline-block !important;
  width: fit-content !important;
}
.animate__text .char {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
}/*# sourceMappingURL=common.css.map */