@charset "UTF-8";
/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* FLOCSS
----------------------------------------------------- */
#js-pagetop {
  position: fixed;
  right: 20px;
  bottom: 56px;
  z-index: 40;
  background: #a76aaa;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
  display: block;
  font-size: 18px;
  line-height: 77px;
  text-align: center;
  text-decoration: none;
  width: 80px;
  height: 80px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
#js-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

.inner {
  padding-inline: 15px;
  max-width: 1230px;
  margin-inline: auto;
}

.top-inner {
  padding-inline: 15px;
  max-width: calc(1470px + 30px);
  margin-inline: auto;
}

/* =====================================================
# 領域アニメーション
===================================================== */
.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in-down {
  opacity: 0;
  -webkit-transform: translateY(-24px);
          transform: translateY(-24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-down.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
.fade-in.is-in-view {
  opacity: 1;
}

/* =====================================================
# header
===================================================== */
#header {
  height: 120px;
  position: -webkit-sticky;
  position: sticky;
  top: -120px;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}

#header.show {
  top: 0;
}

.header__inner {
  background-color: #e4d4e5;
  position: relative;
}

.header__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 120px;
}

.header__logo {
  margin-left: 140px;
}
.header__logo a img {
  width: 300px;
  display: block;
}

.header__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 30px;
}

.header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__lists {
  background-color: #a76aaa;
  padding: 12px 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
  border-radius: 6px;
  position: relative;
}

.header__tel {
  display: block;
}

.top-tel__button {
  display: inline-block;
  width: 190px;
  line-height: 35px;
  height: 35px;
  border-radius: 18px;
  background-color: #f08101;
  padding-inline: 24px;
  font-family: "Quicksand", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
}
.top-tel__button:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 15px;
  height: 15px;
  background: url(../img/common/tel-icon.webp) center center/contain no-repeat;
  top: 50%;
  left: 1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.header__link {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: white;
  position: relative;
}
.header__link.is-active {
  color: yellow;
}
.header__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: yellow;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
}
.header__link.stay {
  color: yellow;
}
.header__link.stay::after {
  background-color: yellow;
}

#stay,
.stay {
  color: white;
}
#stay::after,
.stay::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: white;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.mobile-active {
  color: yellow;
}

.drawer-icon {
  display: none;
}

.drawer-content {
  overflow: auto;
  width: 320px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #a76aaa;
  z-index: 80;
  padding: 86px 20px 40px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content figure {
  position: absolute;
  top: 0;
  left: 0;
}
.drawer-content figure img {
  height: 180px;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content__menu {
  margin-top: 10px;
  color: white;
}

.drawer-content__link {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 30px;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-align: right;
}
.drawer-content__link.is-active {
  color: #e4007f;
}

.drawer__information {
  text-align: right;
}

.tbody {
  display: inline-block;
  text-align: right;
  margin-top: 20px;
  border: 1px solid white;
  padding: 20px;
  color: white;
  border-radius: 10px;
}

.logo-mark__link {
  position: absolute;
  top: 0;
  left: 0;
}
.logo-mark__link img {
  height: 110px;
}

/* =====================================================
# footer
===================================================== */
.footer {
  margin-top: 80px;
  padding-block: 60px;
  background: #e4d4e5;
}
.footer__logo img {
  width: 300px;
}
.footer__company-area {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer .address-area__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 15px;
  letter-spacing: 0.1em;
}
.footer .address-area__box .location {
  width: 25px;
  margin-left: 10px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer .address-area__address {
  margin-top: 20px;
}
.footer__nav-area {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 60%;
      -ms-flex: 0 1 60%;
          flex: 0 1 60%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.footer-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.footer-nav__item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin: 0 auto;
}
.footer-nav__link {
  display: inline-block;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.copyright {
  background-color: #a76aaa;
  color: white;
  padding-block: 20px;
  font-size: 13px;
  letter-spacing: 0.45px;
  text-align: center;
}

/* =====================================================
# メインヴィジュアル
===================================================== */
.top-mv {
  position: relative;
}
.top-mv__deco {
  position: absolute;
  top: 12%;
  left: 13.5%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: -1;
}
.top-mv__deco img {
  width: 60%;
}
.top-mv__deco2 {
  position: absolute;
  top: 65%;
  left: 3%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: -1;
}
.top-mv__deco2 img {
  width: 50%;
  opacity: 0.5;
}
.top-mv__deco3 {
  position: absolute;
  top: 0%;
  left: 0%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: -1;
}
.top-mv__deco3 img {
  width: 40%;
  opacity: 0.5;
}
.top-mv__inner {
  position: relative;
}
.top-mv__slide {
  position: relative;
  width: 75%;
  margin-left: auto;
  height: calc(100vh - 150px);
  border-radius: 13.1233595801vw 0 0 20px;
  overflow: hidden;
}
.top-mv__image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-animation: slider-1 24s linear infinite;
          animation: slider-1 24s linear infinite;
  -webkit-filter: brightness(85%);
          filter: brightness(85%);
}
.top-mv__image:nth-child(1) {
  background-image: url(../img/common/main1.webp);
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}
.top-mv__image:nth-child(2) {
  background-image: url(../img/common/main2.webp);
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
.top-mv__image:nth-child(3) {
  background-image: url(../img/common/main3.webp);
  -webkit-animation-delay: 14s;
          animation-delay: 14s;
}
@-webkit-keyframes slider-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    opacity: 0;
  }
}
@keyframes slider-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    opacity: 0;
  }
}
.top-mv__copy {
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 60;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.top-mv__title span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  color: #a76aaa;
  font-size: min(2.624671916vw, 50px);
  font-weight: 500;
  background-color: white;
  padding: 0 20px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.top-mv__title span:nth-child(n+1) {
  margin-top: 15px;
}

.scroll {
  position: absolute;
  color: white;
  font-family: "Quicksand", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 600;
  letter-spacing: 0.48px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  bottom: 165px;
  right: 3.5%;
  z-index: 50;
  font-size: 14px;
}
.scroll::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: white;
  right: 50%;
  bottom: -165px;
  width: 2px;
  height: 150px;
  -webkit-animation: scroll 1.5s infinite;
          animation: scroll 1.5s infinite;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}
.mv {
  background-color: #061a40;
  position: relative;
  z-index: -2;
}
.mv-jumbotron {
  background-color: #999;
  background-size: cover;
  background-position: 15% 45%;
  height: 350px;
  position: relative;
  z-index: -1;
}
.mv-jumbotron::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: none; /* フィルターの下の画像をクリック可能にする */
}
.mv-jumbotron__inner {
  padding-top: 110px;
}
.mv .mv-h2 {
  color: white;
  font-weight: 500;
  letter-spacing: 0.1em;
  max-width: 400px;
}
.mv .mv-h2__ja {
  display: block;
  font-size: 40px;
  border-bottom: 1px solid white;
  line-height: 1.2;
  padding-bottom: 20px;
}
.mv .mv-h2__en {
  display: block;
  font-size: 27px;
  font-family: "Quicksand", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1.2;
  text-align: right;
  padding-top: 20px;
}

.h2 {
  font-size: 48px;
  font-family: "Quicksand", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  letter-spacing: 0.05em;
  display: inline-block;
  line-height: 1.5;
}
.h2:first-letter {
  color: #e4007f;
}
.h2 span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
}
.h2 span::before {
  content: "";
  display: inline-block;
  margin-right: 20px;
  width: 60px;
  height: 1px;
  background-color: #e4007f;
}

/* =====================================================
# top-news
===================================================== */
.top-news {
  padding-block: 150px;
  position: relative;
}
.top-news::before {
  background-color: #e4d4e5;
  opacity: 0.5;
  bottom: 0;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  top: -120px;
  width: 74.5406824147vw;
  border-bottom-right-radius: 14.6981627297vw;
  z-index: -1;
}
.top-news__deco {
  position: absolute;
  top: 90%;
  right: 3%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: right;
}
.top-news__deco img {
  width: 65%;
  opacity: 0.5;
}

.top-news__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3.1496062992vw;
  padding-inline: 15px;
}

.top-news__head {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.top-news__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-news__new {
  font-size: 12px;
  font-family: "Quicksand", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  background-color: #e4007f;
  padding-inline: 8px;
  color: white;
  border-radius: 3px;
  text-transform: uppercase;
  line-height: 20px;
  height: 20px;
}

.top-news__body {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: auto;
  height: 411px;
  width: 100%;
}

.top-news__link {
  padding: 30px 10px;
  border-bottom: 1px solid #afafaf;
  position: relative;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.top-news__link::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: url(../img/common/top-news-arrow.webp) center center/contain no-repeat;
}
.top-news__link:nth-child(1) {
  border-top: 1px solid #afafaf;
}

.top-news__date {
  line-height: 1.81;
  letter-spacing: 1.2px;
  color: #3a63ab;
  font-family: "Quicksand", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 600;
}

.top-news__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 10px;
  font-size: 20px;
  letter-spacing: 1.5px;
  color: #1b1b1b;
  padding-right: 6%;
}
.top-news__title span {
  max-width: 100%;
  display: block;
  overflow-wrap: anywhere;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.top-news__title .pdf-icon {
  display: block;
  width: 37px;
}

/* =====================================================
# top-about
===================================================== */
.top-about {
  margin-top: 100px;
  max-width: 1730px;
  margin-inline: auto;
  padding-block: 100px;
  padding-inline: 15px;
  border-radius: 7.874015748vw;
  background: #e4d4e5;
}

.top-about__media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  margin-top: 80px;
  padding: 3.1496062992vw 4.1994750656vw;
  border-radius: 5.249343832vw;
}

.top-about__body {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 50%;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.top-about__title {
  font-size: 30px;
  color: #a76aaa;
  font-weight: 500;
  -webkit-text-decoration-color: #d7f6b1;
          text-decoration-color: #d7f6b1;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  text-decoration-thickness: 10px;
  text-underline-offset: -3px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.top-about__text {
  margin-top: 20px;
  font-size: 17px;
}

.top-about__image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 50%;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

/* =====================================================
# top-service
===================================================== */
.top-service {
  position: relative;
}
.top-service__deco1 {
  position: absolute;
  top: -5%;
  left: 5%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.top-service__deco1 img {
  width: 70%;
  opacity: 0.5;
}
.top-service__deco2 {
  position: absolute;
  top: 72%;
  right: 3%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: right;
}
.top-service__deco2 img {
  width: 65%;
  opacity: 0.5;
}
.top-service__inner {
  padding-inline: 15px;
  max-width: calc(970px + 30px);
  margin-inline: auto;
}

.top-service__content {
  margin-top: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.top-service__item {
  background-color: #e4d4e5;
  padding: 30px 50px;
  border-radius: 5.249343832vw;
}

.top-service__title {
  text-align: center;
  font-size: 27px;
  font-weight: 500;
  color: #a76aaa;
}

.top-service__image {
  margin-top: 20px;
}
.top-service__image img {
  border-radius: 4.1994750656vw;
}

.top-service__body {
  text-align: center;
  margin-top: 30px;
}

/* =====================================================
# top-contact
===================================================== */
.top-contact {
  max-width: 1730px;
  margin-inline: auto;
  padding-block: 80px;
  padding-inline: 15px;
  border-radius: 7.874015748vw;
  background: #e4d4e5;
  position: relative;
}

.top-contact__mark {
  position: absolute;
  top: 0;
  left: 0;
  width: min(13.1233595801vw, 250px);
}

.top-contact__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  position: relative;
}

.top-contact__item:nth-child(1) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 25%;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
  text-align: center;
}
.top-contact__item:nth-child(2) {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 50%;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.top-contact__item:nth-child(3) {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 25%;
      -ms-flex: 0 1 25%;
          flex: 0 1 25%;
}

.top-contact__question {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: white;
  padding: 10px 20px;
  border-radius: 2.624671916vw;
  font-size: 20px;
  font-weight: 500;
}
.top-contact__question:nth-child(2) {
  margin-top: 20px;
}

.top-contact__answer {
  margin-top: 20px;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.4;
}

.top-contact__arrow {
  margin-top: 20px;
  display: block;
  width: 50px;
}

.top-contact__title {
  width: 100%;
  max-width: 680px;
  margin-inline: auto;
}

.top-contact__subtitle {
  margin-top: 20px;
  margin-inline: auto;
  width: 100%;
  max-width: 680px;
}

.top-contact__text {
  margin-top: 25px;
  font-size: 20px;
  font-weight: 500;
}

.top-contact__image {
  width: 100%;
}

.top-contact__label {
  margin-top: 15px;
  width: 100%;
  background-color: #a76aaa;
  padding: 10px 15px;
  text-align: center;
  color: white;
  font-weight: 500;
  font-size: 20px;
  border-radius: 2.624671916vw;
}

.top-contact__service {
  margin-top: 15px;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  border-top: 2px solid #3b3530;
  border-bottom: 2px solid #3b3530;
}

.top-contact__supplement {
  margin-top: 5px;
  font-size: 12px;
  letter-spacing: normal;
  text-align: center;
}

.top-contact__recruit {
  display: block;
  margin-top: 15px;
  width: 100%;
  background-color: #f08101;
  padding: 10px 15px;
  text-align: center;
  color: white;
  font-weight: 500;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.top-contact__call {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
  margin-inline: auto;
  max-width: 980px;
  background-color: #a76aaa;
  padding: 15px 2.624671916vw;
  border-radius: 2.624671916vw;
}

.top-contact__tel {
  display: block;
  color: white;
  font-weight: 600;
  font-size: 40px;
  font-family: "Quicksand", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
}
.top-contact__tel .en {
  font-size: 30px;
}

.top-contact__address {
  display: block;
  color: white;
  font-weight: 500;
}
.top-contact__address .large {
  font-size: 20px;
}

/* =====================================================
# business
===================================================== */
.business__button-wrap {
  margin-block: 80px;
  text-align: center;
}
.business__button-wrap .button {
  width: 380px;
}

.business__media {
  margin-top: 50px;
  max-width: 585px;
  margin-inline: auto;
}

.business__items {
  margin-top: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.business__item-text {
  font-size: 20px;
  border-radius: 20px;
  width: 50%;
  color: #fff;
  background-color: #a76aaa;
  text-align: center;
  padding: 15px;
}

.business-intro__catch {
  font-size: 23px;
  font-weight: 500;
  color: #a76aaa;
}
.business-intro__catch.is-mt2 {
  margin-top: 20px;
}

.business-intro__media {
  margin-top: 30px;
  padding: 50px;
  border-radius: 20px;
  background-color: #fff;
}

.business__subtitle {
  margin-top: 40px;
  font-size: 25px;
  font-weight: 500;
  color: #a76aaa;
  border-left: 8px solid #a76aaa;
  padding-left: 10px;
  line-height: 1.1;
}

.business__content {
  margin-top: 80px;
}

.business__other-text {
  margin-top: 50px;
  font-size: 20px;
  font-weight: 500;
  color: #e4007f;
  text-indent: -20px;
  padding-left: 20px;
}

.business__range {
  margin-top: 50px;
  background-color: #e4d4e5;
  border-radius: 20px;
  padding: 50px;
}
.business__range .business__subtitle {
  margin-top: 0px;
}
.business__range p {
  margin-top: 20px;
}

/* =====================================================
# recruit
===================================================== */
.qa__boxes {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 40px;
}

.qa-label {
  width: 30%;
  border-radius: 20px;
  border: 3px solid #a76aaa;
  background: #fff;
  padding: 17px 17px;
  text-align: center;
}

.qa-box {
  width: 100%;
  border-radius: 20px;
  border: 3px solid #a76aaa;
  background: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.qa-box.is-open .qa-box__head::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.qa-box__head {
  padding: 17px 12px;
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
}
.qa-box__head::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 14px;
  width: 15px;
  height: 8px;
  background: url(../img/common/top-contact-arrow.webp) no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-top: 3px;
}

.qa-box__head-text {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #a76aaa;
  letter-spacing: 1.12px;
}

.qa-box__body {
  padding: 13px 14px 17px 12px;
  display: none;
}

.qa-box__a {
  font-weight: 500;
}
.qa-box__a-text {
  display: block;
  letter-spacing: 1.12px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-top: 10px;
}

/*= タブ =*/
/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  background: #e4007f;
}

/*エリアの表示非表示と形状*/
.area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  background: #fff;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block; /*表示*/
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.top-info__categories {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}

.top-info__category {
  width: 200px;
  display: block;
  background-color: #a76aaa;
  text-align: center;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  margin-bottom: 50px;
}
.top-info__category.is-active {
  background-color: #e4007f;
}

.business-intro,
.recruit-intro {
  background-color: #e4d4e5;
  position: relative;
  z-index: -3;
}

.recruit__btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 50px;
}
.recruit__btn-wrap a {
  display: block;
}
.recruit__btn-wrap .button {
  width: 280px;
}

.recruit-intro__media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 50px;
  border-radius: 20px;
  background-color: #fff;
  position: relative;
  z-index: -2;
}
.recruit-intro__media.is-type2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.recruit-intro__body {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 55%;
      -ms-flex: 0 1 55%;
          flex: 0 1 55%;
}
.is-type2 .recruit-intro__body {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 70%;
      -ms-flex: 0 1 70%;
          flex: 0 1 70%;
  padding-left: 30px;
}

.recruit-intro__title {
  color: #e4007f;
  font-size: 35px;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 2px solid #f08101;
  max-width: 585px;
}

.recruit-intro__catch {
  font-size: 25px;
  font-weight: 500;
  margin-top: 20px;
  color: #a76aaa;
}

.recruit-intro__text {
  font-size: 18px;
  margin-top: 20px;
  line-height: 2;
}

.recruit-intro__img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 45%;
      -ms-flex: 0 1 45%;
          flex: 0 1 45%;
}
.is-type2 .recruit-intro__img {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 30%;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
}

.recruit__image {
  margin-top: 10px;
  position: relative;
}
.recruit__image:after {
  position: absolute;
  top: -20px;
  left: 20px;
  content: "";
  width: 100%;
  height: 100%;
  background: #a76aaa;
  border-radius: 20px;
  z-index: -1;
}
.recruit__image img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

/* =====================================================
# company
===================================================== */
.company {
  background-color: #f9f9f9;
}
.company .business__title {
  display: inline-block;
}
.company .profile {
  padding-top: 100px;
  padding-bottom: 100px;
}
.company .profile .horizontal-table {
  margin-top: 50px;
  background-color: #fff;
  border-radius: 20px;
  padding: 60px 50px;
}
.company .profile .horizontal-table__header {
  background-color: #fff;
  font-weight: 500;
}

.company-map {
  padding-block: 80px;
  background-color: #fff;
}

.company-map__btn-wrap {
  text-align: center;
  padding-top: 60px;
}

.company-map__inner {
  padding-top: 50px;
  position: relative;
  aspect-ratio: 5/1;
  margin-inline: auto;
}
.company-map__inner iframe {
  width: 100%;
  height: 450px;
}

.horizontal-table {
  padding-top: 50px;
}
.horizontal-table__inner {
  width: 100%;
  background-color: #fff;
}
.horizontal-table__header {
  width: 25%;
  background-color: #f7f7f7;
  padding: 15px;
  border-bottom: 1px solid #e4007f;
  font-weight: 600;
  vertical-align: middle;
}
.horizontal-table__header:last-child {
  border-right-width: 0;
}
.horizontal-table__header:first-child {
  border-top: 1px solid #e4007f;
}
.horizontal-table__text {
  padding: 15px;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}
.horizontal-table__text:first-of-type {
  border-top: 1px solid #ccc;
}
.horizontal-table .center {
  margin: 0 auto;
}

.company__banks {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
}

/* =====================================================
# contact
===================================================== */
.tel-fax {
  padding-block: 50px;
  background-color: #e4d4e5;
}
.tel-fax__intro {
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.tel-fax__wrapper {
  max-width: 920px;
  margin-top: 40px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.tel-fax__box {
  width: 100%;
  background-color: #a76aaa;
  margin-inline: auto;
  padding: 35px 30px;
  border-radius: 20px;
  text-align: center;
}
.tel-fax__line {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.tel-fax__text {
  margin-top: 10px;
  color: #fff;
}
.tel-fax .tel__img img {
  width: 48px;
}
.tel-fax .tel-number {
  font-size: 38px;
  font-family: "Quicksand", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  padding-left: 15px;
}

.mail-form {
  background-color: #fff;
  padding-block: 100px;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  letter-spacing: 0;
  /*ラジオボタンorチェックボックス
  ------------------------------------*/
  /*フォーカス時*/
  /*クリック範囲*/
  /*ラジオボタンスタイル*/
  /*ラジオボタンチェック印（未選択）*/
  /*ラジオボタンチェック印（選択）*/
  /*チェックボックススタイル*/
  /*チェックボックス未チェック時*/
  /*チェックボックスチェック時*/
  /*セレクトボックス
  ------------------------------------*/
  /*テキストエリア
  ------------------------------------*/
}
.mail-form__inner {
  max-width: 1100px;
  padding-inline: 15px;
  margin-inline: auto;
}
.mail-form ::-webkit-input-placeholder {
  color: #aaa;
}
.mail-form ::-moz-placeholder {
  color: #aaa;
}
.mail-form :-ms-input-placeholder {
  color: #aaa;
}
.mail-form ::-ms-input-placeholder {
  color: #aaa;
}
.mail-form ::placeholder {
  color: #aaa;
}
.mail-form__title {
  display: inline-block;
  font-size: 25px;
  font-weight: 500;
  color: #a76aaa;
  padding-bottom: 3px;
  border-bottom: 1px solid #f08101;
}
.mail-form__title .fa-envelope {
  font-size: 23px;
  vertical-align: -1px;
}
.mail-form__text {
  margin-top: 20px;
}
.mail-form__text > p {
  line-height: 2;
}
.mail-form .form-p {
  display: inline-block;
}
.mail-form .form-input {
  border: 1px solid #aaa;
  padding: 5px 10px;
  width: 80%;
}
.mail-form .form-input._age {
  width: 40%;
}
.mail-form .label {
  display: inline-block;
  background-color: #c42e2e;
  color: #fff;
  font-size: 13px;
  text-align: center;
  width: 45px;
  height: 28px;
  line-height: 28px;
  border-radius: 5px;
}
.mail-form__file-text {
  display: block;
  font-size: 13px;
  color: #cc2a1f;
  text-indent: -13px;
  padding-left: 13px;
}
.mail-form .horizontal-table {
  margin-top: 30px;
}
.mail-form .horizontal-table table {
  width: 100%;
}
.mail-form .horizontal-table th {
  width: 27%;
  padding: 20px;
  background-color: #f6f6f6;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  font-weight: bold;
  vertical-align: middle;
}
.mail-form .horizontal-table th .required {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.mail-form .horizontal-table th:first-child {
  border-top: 1px solid #ccc;
}
.mail-form .horizontal-table th:last-child {
  border-right-width: 0;
}
.mail-form .horizontal-table td {
  padding: 10px 20px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  vertical-align: middle;
}
.mail-form .horizontal-table td:first-of-type {
  border-top: 1px solid #ccc;
}
.mail-form .horizontal-table .center {
  margin: 0 auto;
}
.mail-form .privacy-policy {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}
.mail-form .box-scroll {
  width: 100%;
  height: 240px;
  padding: 20px;
  border: 1px solid #ddd;
  overflow: hidden;
  overflow-y: scroll;
  margin-bottom: 30px;
  background-color: #fff;
}
.mail-form .box-scroll__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  border-left: 8px solid #333;
  margin-bottom: 8px;
  padding-left: 8px;
}
.mail-form .box-scroll__li {
  text-indent: -17px;
  padding-left: 20px;
  letter-spacing: 0;
  margin-bottom: 7px;
}
.mail-form .privacy-wrapper {
  text-align: center;
}
.mail-form .privacy__title {
  font-weight: 600;
  border-bottom: 1px solid #666;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.mail-form .privacy__address {
  text-indent: -43px;
  padding-left: 43px;
}
.mail-form .privacy__link {
  color: blue;
  text-decoration: underline;
}
.mail-form .privacy-btn {
  display: inline-block;
  background-color: #a76aaa;
  color: #fff;
  padding: 15px 10px;
  width: 350px;
  border-radius: 5px;
}
.mail-form .privacy-btn__wrapper {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
}
.mail-form .send-btn__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
.mail-form .send-btn {
  display: inline-block;
  background-color: #a76aaa;
  color: #fff;
  border: 2px solid transparent;
  padding: 15px;
  text-align: center;
  width: 320px;
  border-radius: 5px;
}
.mail-form .send-btn--back {
  margin-right: 100px;
  color: #3b3530;
  background-color: #fff;
  border: 2px solid #888;
}
.mail-form input[type=radio],
.mail-form input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.mail-form input[type=radio]:focus + span,
.mail-form input[type=checkbox]:focus + span {
  outline: 1px solid #ccc;
}
.mail-form input[type=radio] + span,
.mail-form input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin: 0 1em 0 0;
  padding: 0.3em 0.3em 0.3em 2em;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
}
.mail-form input[type=radio] + span:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 1.375em;
  height: 1.375em;
  border: 1px solid #999;
  border-radius: 50%;
  line-height: 1;
  background: #fff;
}
.mail-form input[type=radio] + span:after {
  content: "";
  display: none;
}
.mail-form input[type=radio]:checked + span:after {
  display: block;
  position: absolute;
  top: 5px;
  left: 3px;
  width: 1em;
  height: 1em;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: #3d98b4;
  line-height: 1;
}
.mail-form input[type=checkbox] + span:before {
  position: absolute;
  top: 0.2em;
  left: 0;
  content: "";
  width: 1.25em;
  height: 1.25em;
  border: 1px solid #999;
  background: #fff;
  line-height: 1;
  vertical-align: middle;
}
.mail-form input[type=checkbox] + span:after {
  content: "";
  display: none;
}
.mail-form input[type=checkbox]:checked + span:after {
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0.4em;
  width: 0.5em;
  height: 1em;
  content: "";
  border-bottom: 3px solid #3d98b4;
  border-right: 3px solid #3d98b4;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mail-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; /*ブラウザ標準スタイルを解除*/
  display: block;
  width: 100%;
  padding: 5px 30px 5px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}
.mail-form .selectWrap {
  /*selectの親要素をアイコン配置の基準とする*/
  position: relative;
  display: block;
  width: 30%;
}
.mail-form .selectWrap::after {
  /*矢印アイコン自作*/
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none; /*矢印の上もクリック可能にする*/
}
.mail-form textarea {
  resize: none;
}

/* 共通パーツ
----------------------------------------------------- */
.section {
  padding-block: 100px;
}

.btn {
  display: inline-block;
  width: 270px;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 2px solid #3b3530;
  padding-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: color 0.3s, -webkit-transform 0.3s;
  transition: color 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, color 0.3s;
  transition: transform 0.3s, color 0.3s, -webkit-transform 0.3s;
  position: relative;
}
.btn::after {
  content: "→";
  position: absolute;
  right: 0;
  font-weight: 600;
  display: inline-block;
}

.button {
  display: inline-block;
  width: 230px;
  line-height: 51px;
  height: 56px;
  text-transform: uppercase;
  background-color: #e4007f;
  border: 1px solid #fff;
  padding-inline: 24px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 28px;
  text-align: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
}
.button::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 16px;
  background: url(../img/common/chevron-right_white.webp) center center/contain no-repeat;
  top: 50%;
  right: 0.83em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.list {
  display: block;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  text-indent: -21px;
  padding-left: 21px;
}

.text-center {
  text-align: center;
}

.text-red {
  color: #e4007f;
}

.top-h2__title {
  font-family: "Quicksand", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
  font-size: min(4.1994750656vw, 80px);
  font-weight: 500;
  line-height: 1.18;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.top-h2__title::before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  width: 80px;
  height: 3px;
  background-color: #e4007f;
  border-radius: 2px;
}
.top-h2__title::first-letter {
  color: #e4007f;
}
.is-white .top-h2__title {
  color: white;
}

#visit, #service {
  margin-top: -100px;
  padding-top: 100px;
}

/* 左から右にカーテン
---------------------------------------------------- */
.curtainLefttoRight {
  position: relative;
}

.curtainLefttoRight.visible {
  -webkit-animation-name: curtainLeftFadeIn;
          animation-name: curtainLeftFadeIn;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.curtainLefttoRight.visible:before {
  display: block;
  content: "";
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  background-color: #000;
  -webkit-animation-name: curtainLeft;
          animation-name: curtainLeft;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes curtainLeftFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes curtainLeftFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes curtainLeft {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes curtainLeft {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/* FLOCSS
----------------------------------------------------- */
/* FLOCSS
----------------------------------------------------- */
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img {
  max-width: 100%;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

body {
  font-size: 16px;
  font-family: "Zen Maru Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #3b3530;
}

a {
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

a:hover {
  text-decoration: none;
}

img {
  height: auto;
}

/* FLOCSS
----------------------------------------------------- */
.l-inner {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.l-inner--has-column {
  display: grid;
  gap: 40px;
  grid-template-columns: 3fr minmax(260px, 1fr);
}

/* FLOCSS
----------------------------------------------------- */
.c-btn {
  display: inline-block;
  width: 300px;
  max-width: 100%;
  padding: 20px 10px;
  background-color: #e25c00;
  border: 2px solid transparent;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
  font-size: 17px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.c-btn:focus, .c-btn:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #e25c00;
}
.c-btn--arrow-right {
  position: relative;
  padding-right: 20px;
  padding-left: 13.8px;
}
.c-btn--arrow-right::after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 8.3px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-btn--icon {
  position: relative;
  padding-right: 20px;
  padding-left: 13.8px;
}
.c-btn--icon::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 60px;
  background: transparent url(/images/nav_07.png) no-repeat center center/contain;
}
.c-btn--large {
  width: 340px;
  padding-top: 25px;
  padding-bottom: 25px;
  font-size: 20px;
}
.c-btn--warning {
  background-color: #f1de00;
  color: #222;
}
.c-btn--warning:focus, .c-btn--warning:hover {
  border-color: #f1de00;
  color: #222;
}

.c-rounded-btn {
  display: inline-block;
  width: 236px;
  max-width: 100%;
  padding: 15px 10px;
  background-color: #e25c00;
  border: 2px solid transparent;
  border-bottom-color: #d40152;
  border-radius: 10px;
  color: #fff;
  font-size: 17px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.c-rounded-btn:focus, .c-rounded-btn:hover {
  background-color: #fff;
  border-color: currentColor;
  color: #e25c00;
}

.c-before-icon-btn {
  position: relative;
  display: inline-block;
  padding: 0.2em 0.3em;
  border: 1px solid currentColor;
  color: #e25c00;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.c-before-icon-btn:focus, .c-before-icon-btn:hover {
  background-color: #e25c00;
  color: #fff;
}
.c-before-icon-btn::before {
  display: inline-block;
  margin-right: 0.5em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.c-before-icon-btn--download::before {
  content: "\f019";
}
.c-before-icon-btn--zoom::before {
  content: "\f00e";
  -webkit-transform: translateY(-6%);
          transform: translateY(-6%);
}

/* FLOCSS
----------------------------------------------------- */
.p-breadcrumb {
  margin: 10px 20px;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-breadcrumb li {
  list-style: none;
}
.p-breadcrumb li:after {
  content: ">";
  padding: 0 5px;
}
.p-breadcrumb li:last-child:after {
  content: "";
}
.p-breadcrumb li a {
  text-decoration: none;
}
.p-breadcrumb li a:hover {
  text-decoration: underline;
}
.p-breadcrumb .u-current {
  color: #a76aaa;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mb-6 {
  margin-bottom: 60px;
}

.mb-7 {
  margin-bottom: 70px;
}

.mb-8 {
  margin-bottom: 80px;
}

.mb-9 {
  margin-bottom: 90px;
}

.mb-10 {
  margin-bottom: 100px;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-5 {
  margin-top: 50px;
}

.mt-6 {
  margin-top: 60px;
}

.mt-7 {
  margin-top: 70px;
}

.mt-8 {
  margin-top: 80px;
}

.mt-9 {
  margin-top: 90px;
}

.mt-10 {
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  #js-pagetop {
    bottom: 30px;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .header__logo a img {
    width: 240px;
  }
  #stay::after,
  .stay::after {
    display: none;
  }
  .footer {
    padding-block: 50px;
  }
  .footer__logo img {
    width: 240px;
  }
  .copyright {
    font-size: 12px;
  }
  .top-mv__copy {
    left: 2%;
  }
  .scroll {
    bottom: 65px;
  }
  .scroll::after {
    bottom: -65px;
    height: 50px;
  }
  .mv-jumbotron {
    height: 190px;
    background-position: top center;
  }
  .mv-jumbotron__inner {
    padding-top: 50px;
  }
  .mv .mv-h2 {
    font-size: 22px;
    padding-bottom: 25px;
    width: 100%;
  }
  .mv .mv-h2__ja {
    font-size: 30px;
  }
  .mv .mv-h2__en {
    font-size: 20px;
  }
  .h2 span {
    font-size: 14px;
  }
  .h2 span::before {
    width: 25px;
    margin-right: 10px;
  }
  .top-news__link::after {
    right: 5px;
    width: 20px;
    height: 20px;
  }
  .top-about__title {
    font-size: 20px;
  }
  .top-service__deco1 {
    top: -1%;
  }
  .top-service__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 60px;
  }
  .top-service__item {
    padding: 20px 15px;
  }
  .top-contact__mark {
    width: 70px;
  }
  .top-contact__question {
    font-size: 16px;
  }
  .top-contact__answer {
    font-size: 23px;
  }
  .top-contact__title {
    width: 95%;
  }
  .top-contact__subtitle {
    margin-top: 10px;
  }
  .top-contact__text {
    font-size: 16px;
  }
  .top-contact__tel {
    font-size: 28px;
  }
  .top-contact__tel .en {
    font-size: 18px;
  }
  .top-contact__address {
    margin-top: 10px;
  }
  .top-contact__address .large {
    display: block;
    margin-top: 10px;
    font-size: 16px;
  }
  .business__button-wrap {
    margin-block: 50px;
  }
  .business__button-wrap .button {
    width: 280px;
    font-size: 14px;
  }
  .business__items {
    gap: 20px;
  }
  .business__item-text {
    font-size: 18px;
  }
  .business-intro__media {
    padding: 30px 15px;
  }
  .business__subtitle {
    font-size: 20px;
  }
  .business__other-text {
    font-size: 16px;
    text-indent: -16px;
    padding-left: 16px;
  }
  .business__range {
    padding: 30px 15px;
  }
  .qa__boxes {
    margin-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .qa-label {
    width: 100%;
    padding: 17px 12px;
  }
  .top-info__categories {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
  }
  .top-info__category {
    width: 250px;
    font-size: 14px;
    margin-bottom: 20px;
  }
  .recruit__btn-wrap {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruit-intro__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 30px 15px;
  }
  .recruit-intro__media.is-type2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruit__image:after {
    width: 90%;
    height: 90%;
  }
  .recruit__image img {
    width: 90%;
    height: 90%;
  }
  .company .profile {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .company .profile .horizontal-table {
    margin-top: 40px;
    padding: 30px 15px;
  }
  .company .profile .horizontal-table__header {
    border: 1px solid #ddd;
    background-color: #ddd;
  }
  .company-map {
    padding-block: 40px;
  }
  .company-map__btn-wrap {
    padding-top: 30px;
  }
  .company-map__inner {
    padding-top: 40px;
  }
  .company-map__inner iframe {
    height: 270px;
  }
  .horizontal-table {
    padding-top: 30px;
  }
  .horizontal-table__header {
    width: 100%;
    border: 1px solid #ccc;
    background-color: #ccc;
    padding: 10px;
  }
  .horizontal-table__header:first-child {
    border-top-width: 0;
  }
  .horizontal-table__text {
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #ccc;
  }
  .horizontal-table__text:first-of-type {
    border-top-width: 0;
  }
  .horizontal-table__text {
    width: 100%;
  }
  .horizontal-table__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .company__banks {
    grid-template-columns: 1fr;
  }
  .tel-fax {
    padding-block: 30px;
  }
  .tel-fax__intro {
    font-size: 18px;
  }
  .tel-fax__box {
    padding: 25px 15px;
  }
  .tel-fax__line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tel-fax__text {
    margin-top: 0px;
  }
  .mail-form {
    padding-block: 30px;
  }
  .mail-form__title {
    font-size: 20px;
    padding-left: 28px;
  }
  .mail-form__title .fa-envelope {
    font-size: 19px;
  }
  .mail-form .box-scroll__title {
    font-size: 16px;
  }
  .mail-form .privacy-btn {
    width: 100%;
    margin-bottom: 0px;
  }
  .mail-form .privacy-btn__wrapper {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .mail-form .send-btn__wrapper {
    width: 100%;
    margin-bottom: 0px;
    display: block;
  }
  .mail-form .send-btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .mail-form .send-btn--back {
    margin-right: 0px;
  }
  .mail-form input[type=radio] + span,
  .mail-form input[type=checkbox] + span {
    padding: 0.1em 0.3em 0.3em 2em;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: 0;
  }
  .mail-form .selectWrap {
    width: 60%;
  }
  .section {
    padding-block: 50px;
  }
  .button {
    font-size: 16px;
  }
  .md-none {
    display: none;
  }
  .l-inner--has-column {
    grid-template-columns: 1fr;
  }
  .p-breadcrumb {
    font-size: 14px;
  }
  .hidden-sp {
    display: none;
  }
  .mb-2 {
    margin-bottom: 10px;
  }
  .mb-3 {
    margin-bottom: 15px;
  }
  .mb-4 {
    margin-bottom: 20px;
  }
  .mb-5 {
    margin-bottom: 25px;
  }
  .mb-6 {
    margin-bottom: 30px;
  }
  .mb-7 {
    margin-bottom: 35px;
  }
  .mb-8 {
    margin-bottom: 40px;
  }
  .mb-9 {
    margin-bottom: 45px;
  }
  .mb-10 {
    margin-bottom: 50px;
  }
  .mt-2 {
    margin-top: 10px;
  }
  .mt-3 {
    margin-top: 15px;
  }
  .mt-4 {
    margin-top: 20px;
  }
  .mt-5 {
    margin-top: 25px;
  }
  .mt-6 {
    margin-top: 30px;
  }
  .mt-7 {
    margin-top: 35px;
  }
  .mt-8 {
    margin-top: 40px;
  }
  .mt-9 {
    margin-top: 45px;
  }
  .mt-10 {
    margin-top: 50px;
  }
}

@media screen and (min-width: 768px) {
  #js-pagetop:focus, #js-pagetop:hover {
    opacity: 0.6;
  }
  .header__logo a {
    display: block;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .header__logo a:focus, .header__logo a:hover {
    opacity: 0.6;
  }
  .header__link:focus, .header__link:hover {
    color: yellow;
  }
  .header__link:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  #stay:hover::after,
  .stay:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .footer .address-area__box .location:focus, .footer .address-area__box .location:hover {
    opacity: 0.6;
  }
  .footer-nav__link:focus, .footer-nav__link:hover {
    opacity: 0.6;
  }
  .top-news__link:focus, .top-news__link:hover {
    background-color: rgba(228, 0, 127, 0.1);
  }
  .top-contact__recruit:focus, .top-contact__recruit:hover {
    opacity: 0.6;
  }
  .qa-box {
    width: 30%;
  }
  .qa-box:focus, .qa-box:hover {
    background-color: #fffdf4;
  }
  .qa-box__head {
    padding: 17px 17px;
  }
  .qa-box__head::after {
    right: 22px;
    right: 18px;
    margin-top: 2px;
  }
  .qa-box__head-text {
    line-height: 27px; /* 168.75% */
    letter-spacing: 1.28px;
  }
  .qa-box__body {
    padding: 3px 33px 17px 17px;
  }
  .qa-box__a-text {
    font-size: 17px;
    line-height: 27px; /* 168.75% */
    letter-spacing: 1.28px;
    padding-top: 7px;
  }
  .top-info__category:focus, .top-info__category:hover {
    background-color: #e4007f;
  }
  .mail-form .privacy__link:hover {
    color: #999;
  }
  .mail-form .privacy-btn:focus, .mail-form .privacy-btn:hover {
    opacity: 0.6;
  }
  .mail-form .send-btn:focus, .mail-form .send-btn:hover {
    opacity: 0.6;
  }
  .btn:focus, .btn:hover {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    border-bottom: 2px solid #999;
    color: #999;
  }
  .button:focus, .button:hover {
    background-color: #f08101;
  }
  .button:hover::after {
    -webkit-transform: translateX(5px) translateY(-50%);
            transform: translateX(5px) translateY(-50%);
  }
  .hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  #header {
    height: 80px;
  }
  .header__top {
    padding-inline: 15px;
    height: 80px;
  }
  .header__logo {
    margin-left: 85px;
  }
  .header__right {
    display: none;
  }
  .drawer-icon {
    display: block;
    width: 30px;
    height: 18px;
    position: relative;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(1), .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
    top: 9px;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
    display: none;
  }
  .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .drawer-icon__bar {
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background: #3b3530;
    -webkit-transition: top 0.3s, -webkit-transform 0.3s;
    transition: top 0.3s, -webkit-transform 0.3s;
    transition: top 0.3s, transform 0.3s;
    transition: top 0.3s, transform 0.3s, -webkit-transform 0.3s;
  }
  .drawer-icon__bar:nth-child(1) {
    top: 0;
  }
  .drawer-icon__bar:nth-child(2) {
    top: 8px;
  }
  .drawer-icon__bar:nth-child(3) {
    top: 16px;
  }
  .logo-mark__link img {
    height: 75px;
  }
  .footer__company-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer .address-area__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 14px;
  }
  .footer .address-area__box .location {
    text-align: center;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-top: 7px;
  }
  .footer .address-area__address {
    text-align: center;
  }
  .footer__nav-area {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 30px;
  }
  .footer-nav {
    display: block;
    width: 100%;
  }
  .footer-nav__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .footer-nav__link {
    font-size: 14px;
    letter-spacing: 0;
    padding: 0 10px 10px;
  }
  .top-mv__deco img {
    width: 30%;
  }
  .top-mv__deco2 img {
    width: 25%;
  }
  .top-mv__deco3 img {
    width: 20%;
  }
  .top-mv__slide {
    height: 60vh;
  }
  .top-mv__title span {
    font-size: 4.1701417848vw;
  }
  .mv {
    background-color: #fff;
  }
  .h2 {
    font-size: 45px;
  }
  .top-news {
    padding-block: 100px;
  }
  .top-news__deco {
    top: 95%;
    right: 5%;
  }
  .top-news__deco img {
    width: 30%;
  }
  .top-news__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-news__title {
    font-size: 16px;
  }
  .top-about {
    margin-top: 75px;
    padding-block: 100px;
  }
  .top-service__deco1 img {
    width: 30%;
  }
  .top-service__deco2 {
    top: 90%;
    right: 5%;
  }
  .top-service__deco2 img {
    width: 30%;
  }
  .top-contact {
    margin-top: 75px;
    padding-block: 100px;
  }
  .top-contact__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .top-contact__item:nth-child(1) {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .top-contact__item:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .top-contact__item:nth-child(3) {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .top-contact__label {
    margin-top: 30px;
    margin-inline: auto;
    max-width: 380px;
  }
  .top-contact__service {
    margin-inline: auto;
    max-width: 380px;
  }
  .top-contact__recruit {
    margin-inline: auto;
    max-width: 380px;
  }
  .business-intro__catch {
    font-size: 19px;
  }
  .is-type2 .recruit-intro__body {
    padding-left: 20px;
  }
  .recruit-intro__title {
    font-size: 2.752293578vw;
  }
  .recruit-intro__catch {
    font-size: 19px;
  }
  .recruit-intro__text {
    font-size: 16px;
  }
  .top-h2__title {
    font-size: 50px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 767px) {
  .header__logo {
    margin-left: 0px;
  }
  .logo-mark__link img {
    display: none;
  }
  .footer .address-area__address {
    font-size: 13px;
  }
  .top-mv__title span {
    padding: 10px 15px;
    font-size: 18px;
    line-height: 1.5;
  }
  .h2 {
    font-size: 35px;
  }
  .top-news {
    padding-block: 60px;
  }
  .top-news__deco {
    display: none;
  }
  .top-news__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
    -webkit-align-items: unset;
        -ms-flex-align: unset;
            align-items: unset;
    padding-right: 25px;
  }
  .top-about {
    padding-inline: 0px;
    margin-top: 50px;
    padding-block: 60px;
  }
  .top-service__deco2 {
    top: 97%;
    right: 7%;
  }
  .top-contact {
    padding-inline: 0px;
    margin-top: 50px;
    padding-block: 60px;
  }
  .top-contact__service {
    font-size: 16px;
  }
  .business-intro__catch {
    font-size: 17px;
  }
  .is-type2 .recruit-intro__body {
    padding-left: 0px;
  }
  .recruit-intro__title {
    font-size: 22px;
  }
  .recruit-intro__catch {
    font-size: 17px;
  }
  .recruit-intro__text {
    margin-top: 15px;
  }
  .top-h2__title {
    font-size: 40px;
  }
}

@media screen and (max-width: 1250px) and (max-width: 1199px) {
  .header__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 16px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 1023px) {
  .top-mv__slide {
    border-radius: 120px 0 0 20px;
  }
  .top-news__content {
    padding-inline: 0px;
    gap: 30px;
  }
}

@media screen and (max-width: 1199px) and (max-width: 1023px) and (max-width: 767px) {
  .top-mv__slide {
    -o-object-fit: cover;
       object-fit: cover;
    height: 380px;
    border-radius: 80px 0 0 10px;
  }
}

@media screen and (max-width: 1760px) {
  .top-about {
    margin-inline: 15px;
  }
  .top-contact {
    margin-inline: 15px;
  }
}

@media screen and (max-width: 1023px) {
  .top-about__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 20px;
  }
  .top-about__text {
    font-size: 16px;
  }
  .top-service__title {
    font-size: 23px;
  }
  .top-contact__call {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tel-fax__wrapper {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 400px;
  }
  .tel-fax .tel-number {
    font-size: 28px;
  }
  .mail-form .form-input {
    width: 100%;
  }
  .mail-form .horizontal-table {
    margin-top: 20px;
  }
  .mail-form .horizontal-table table {
    font-size: 16px;
  }
  .mail-form .horizontal-table th {
    border-bottom-width: 0;
    border-left: unset;
    background-color: #efefef;
    width: 100%;
    border-right: 0;
    padding: 10px;
  }
  .mail-form .horizontal-table td {
    border-bottom-width: 0;
    border-right: unset;
    border-left: unset;
    width: 100%;
    padding: 10px;
  }
  .mail-form .horizontal-table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .mail-form .box-scroll {
    height: 220px;
    margin-bottom: 15px;
    padding: 15px;
    overflow-wrap: anywhere;
  }
  .sp-none {
    display: none;
  }
}

@media screen and (max-width: 1023px) and (max-width: 767px) {
  .top-about__media {
    margin-top: 60px;
    padding: 30px 15px;
    gap: 30px;
  }
  .tel-fax .tel-number {
    margin-block: 10px;
    padding-left: 0;
  }
}

@media screen and (min-width: 768px) and (min-width: 1024px) {
  .qa-box__head-text {
    font-size: 24px;
  }
}

@media screen and (min-width: 1024px) {
  .hidden-tab {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */