@charset "UTF-8";

.pc-only {
  display: none;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
}

* {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}

a {
  text-decoration: none;
}

body {
  background-color: white;
  overflow-y: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body.is-fixed {
  position: fixed;
  width: 100%;
}

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*:focus {
  outline: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.l-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.layout-header {
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.overlay.open {
  width: 100%;
  height: 100%;
  position: fixed;
  opacity: 1;
}

main {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

main.open {
  -webkit-transform: translateX(-250px);
          transform: translateX(-250px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__nav {
  display: none;
  height: inherit;
}

.header__inner {
  padding-left: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 50px;
  height: 40px;
  margin: 10px;
  background-color: #fff;
}

.header__inner.active {
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__logo {
  height: inherit;
}

.header__logo.active {
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__logo a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo img {
  width: 1.375rem;
  height: 1.625rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: 10px;
}

.span--01 {
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #707F89;
  font-size: 8px;
  line-height: 1;
}

.span--02 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #3085C3;
}

.header__nav-items {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item--y.header__nav-item--contact {
  margin-left: min(2.34375vw, 30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-item a {
  padding: 0 min(1.09375vw, 17px);
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: min(1.25vw, 16px);
  font-weight: 700;
  line-height: 1;
  color: #333;
  position: relative;
}

.header__nav-item--y.header__nav-item--contact a {
  padding: 0.9375rem min(1.953125vw, 25px);
  font-size: min(1.25vw, 16px);
  font-weight: 700;
  line-height: 1;
  height: initial;
  color: #333;
  background-color: #F4E869;
  border-radius: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__hamburger {
  display: inline-block;
  width: 36px;
  height: 28px;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  top: 6px;
  right: 16px;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0);
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.header__hamburger.active {
  background-color: rgba(0, 0, 0, 0);
}

.header__hamburger span {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 0.9375rem;
  height: 2px;
  background-color: rgba(51, 51, 51, 0.2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.header__hamburger.active span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  background-color: white;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 0.25rem;
}

.header__hamburger.active span:nth-of-type(3) {
  top: -0.25rem;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  background-color: white;
}

.header__drawer {
  width: 250px;
  height: 100%;
  padding-top: 40px;
  background-color: rgba(48, 133, 195, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  /* .overlayよりも高い値に設定 */
  -webkit-transform: translate(100%);
          transform: translate(100%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__drawer.open {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__drawer-items {
  list-style: none;
  padding-left: 50px;
}

.header__drawer-item a {
  padding: 0.9375rem 0;
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: left;
}

.header.open {
  z-index: revert-layer;
}

.mv {
  z-index: 1;
  padding-bottom: 105px;
  background-color: #F6F1DD;
  padding-top: 60px;
  position: relative;
  height: 100dvh;
}

.mv::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  /* 画像の高さを親要素と同じに設定 */
  max-height: 160px;
  /* 画像の最大高さを設定 */
  background-image: url(../img/common/mv-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  bottom: -2px;
  left: 0;
  z-index: -1;
}

.mv_inner {
  height: calc(100vh - 60px);
}

.mv__illusts--first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 50px;
}

.illusts__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mv__illusts--second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 50px;
}

.mv__illusts--third {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.illusts__wrap--vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.mv__illusts--forth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.mv__title-wrap {
  width: min(46.875vw, 600px);
  margin-top: 3%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.mv__title-wrap img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
}

.mv__illust-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: 0 auto;
}

.mv__illusts--left {
  height: 33.33333%;
  position: relative;
  width: 100%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.mv__illusts--right {
  height: 33.33333%;
  position: relative;
  width: 100%;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.mv__illust--01 {
  position: absolute;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  bottom: 130%;
  left: 4%;
  width: min(18.75vw, 140px);
}

.mv__illust--02 {
  position: absolute;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  bottom: 75%;
  left: 18%;
  width: min(17.1875vw, 120px);
}

.mv__illust--03 {
  position: absolute;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  bottom: 65%;
  left: 75%;
  width: min(16.25vw, 108px);
}

.mv__illust--04 {
  position: absolute;
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
  bottom: 125%;
  left: 80%;
  width: min(17.734375vw, 127px);
}

.mv__illust--05 {
  position: absolute;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  bottom: 140%;
  left: 45%;
  width: min(18.828125vw, 141px);
}

.mv__illust--06 {
  position: absolute;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  bottom: 100%;
  left: 70%;
  width: min(17.265625vw, 121px);
}

.mv__illust--07 {
  position: absolute;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  bottom: 45%;
  left: 50%;
  width: min(16.5625vw, 112px);
}

.mv__illust--08 {
  position: absolute;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  bottom: 55%;
  left: 80%;
  width: min(15.625vw, 100px);
}

.mv__illust--09 {
  position: absolute;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  bottom: 0%;
  left: 35%;
  width: min(9.375vw, 100px);
}

.mv__illust--10 {
  position: absolute;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  bottom: 15%;
  left: 10%;
  width: min(15.625vw, 100px);
}

.mv__illust--11 {
  position: absolute;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  bottom: 50%;
  left: 10%;
  width: min(9.375vw, 120px);
}

.mv__illust--01 img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.mv__illust--02 img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.mv__illust--03 img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.mv__illust--04 img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.mv__illust--05 img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.mv__illust--06 img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.mv__illust--07 img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.mv__illust--08 img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.mv__illust--09 img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.mv__illust--10 img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.mv__illust--11 img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box {
  opacity: 0;
}

/*==================================================
ふわっ
===================================*/

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.mv__copy {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: min(3.59375vw, 24px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 2;
  font-family: "Kiwi Maru", serif;
  padding: 0 16px;
}

.btn {
  position: relative;
  display: inline-block;
  font-size: min(3.5vw, 16px);
  color: #3085C3;
  line-height: 1;
  letter-spacing: 0.1em;
  padding-right: 93px;
}

.btn::before {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "";
  position: absolute;
  border: 1px solid #3085C3;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  right: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.btn::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(../img/common/arrow-blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  right: 12%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.section__title {
  font-size: 2.375rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #3085C3;
  font-family: "Lato", sans-serif;
  text-transform: capitalize;
  text-align: center;
}

.section__sub__title {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #707F89;
  text-align: center;
  position: relative;
  padding-left: 38px;
}

.section__sub__title::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 1px;
  background-color: #707F89;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.concept {
  position: relative;
}

.concept::after {
  content: "";
  position: absolute;
  background: url(../img/common/concept-bg.png) no-repeat center center/cover;
  width: min(27.96875vw, 358px);
  height: min(30vw, 384px);
  top: 133px;
  left: 59.5%;
}

.l-concept {
  padding: 80px 0;
}

.concept__text {
  line-height: 2.5;
}

.concept__btn {
  text-align: center;
  padding-top: 72px;
}

.why-us {
  background: url(../img/common/why-us-bg.png) no-repeat center center/cover;
}

.l-why-us {
  padding: 80px 0;
}

.title-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px 0;
}

.service {
  background-color: rgba(246, 241, 221, 0.2);
}

.l-service {
  padding-top: 96px;
  padding-bottom: 126px;
}

.service__content {
  padding-top: 60px;
}

.service__content__titile {
  font-size: 18px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 2;
}

.service__lists__area {
  position: relative;
  margin-top: 80px;
}

.service__list__wrap {
  width: 90%;
  background-color: white;
  margin: 0 auto;
  gap: 0 min(4.3359375vw, 55.5px);
  border-radius: 50px 0 50px 0;
  padding: 24px 0;
}

.service__list__wrap::before {
  content: "";
  position: absolute;
  background-color: rgba(48, 133, 195, 0.2);
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: max(57.03125vw, 730px);
  border-radius: 50px 0 50px 0;
}

.service__content__lists {
  list-style: none;
  padding-left: 24px;
  padding-top: 24px;
}

.service__content__lists--left {
  list-style: none;
  padding-left: 24px;
}

.service__content__list {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.service__content__list + .service__content__list {
  padding-top: 24px;
}

.list__num {
  padding-right: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 2;
  color: #3085C3;
  position: relative;
}

.list__num::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #3085C3;
  bottom: 0;
  left: 3px;
  width: 14px;
}

.btn-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px 0;
  padding: 80px 0;
}

.map__section {
  width: 100%;
  padding-bottom: 64px;
}

.map-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 85.33333%;
}

.map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer {
  background-color: #F6F1DD;
}

.footer__copyright {
  background-color: #3085C3;
  text-align: center;
  font-weight: 400;
  line-height: 1;
  padding: 30px 0;
}

.footer__copyright p {
  color: white;
  letter-spacing: 0.04em;
  font-size: 10px;
}

.footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 0;
}

.footer__logo img {
  width: 100%;
  aspect-ratio: 117/61;
}

.footer__info {
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #3085C3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  padding-top: 10px;
}

a .footer__info {
  letter-spacing: 0.04em;
}

.footer__info span {
  display: inline-block;
  background: url(../img/common/tel-icon.svg) no-repeat center center/cover;
  width: 13px;
  height: 13px;
  margin-right: 8px;
}

.name--en {
  padding-top: 48px;
  padding-bottom: 46px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.type--01 {
  padding-top: 0;
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.section__text {
  font-weight: 400;
  letter-spacing: 0.04em;
  font-size: 1rem;
  text-align: left;
  padding-top: 30px;
}

.profile {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #F6F1DD;
}

.profile__title-area {
  padding: 80px 0;
}

.profile__list {
  max-width: 960px;
  list-style: none;
  padding-bottom: min(8.125vw, 104px);
}

.profile-list__item + .profile-list__item {
  margin-top: 4.375rem;
}

.profile-list__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.profile-list__item-img {
  width: 100%;
}

.profile-list__item-img img {
  width: 100%;
  aspect-ratio: 300/300;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-list__item-text-wrap {
  margin-top: 1.25rem;
  width: 100%;
}

.item-text-first {
  position: relative;
}

.item-text-first::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #3085C3;
  bottom: 0;
  left: 0;
}

.profile-list__item:nth-of-type(even) .profile-list__item-text-wrap {
  margin-left: 0;
}

.profile-list__item-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}

.profile-list__item-name span {
  font-size: 12px;
  color: #D9D9D9;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.profile-list__item-title {
  font-size: 1rem;
  line-height: 1.3;
  color: #3085C3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: min(2.5vw, 32px);
}

.profile-list__item-text {
  padding: min(3.90625vw, 20px) 0;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.profile__img__items {
  width: 100%;
  height: max(15.625vw, 200px);
  position: relative;
}

.profile__img__items::before {
  width: 150px;
  height: 150px;
  content: "";
  position: absolute;
  background: url(../img/profile/dog-01.svg) no-repeat center center/cover;
  top: 0;
  left: 0;
}

.profile__img__items::after {
  width: 150px;
  height: 150px;
  content: "";
  position: absolute;
  background: url(../img/profile/dog-02.svg) no-repeat center center/cover;
  bottom: 0;
  right: 0;
}

.white-area {
  background-color: white;
  border-radius: 30px;
  margin: 0 auto;
  width: min(92.1875vw, 1180px);
  padding-bottom: 80px;
}

.white-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.about-us {
  padding-top: 80px;
  background-color: #F6F1DD;
}

.about-us__title-area {
  padding: 64px 0;
}

.about-us__info-item {
  display: grid;
  grid-template-columns: 120px 1fr;
}

.about-us__info-title,
.about-us__info-data {
  font-size: 13px;
  font-weight: 500;
  padding-top: min(2.5vw, 32px);
  padding-bottom: min(2.5vw, 32px);
  border-bottom: 1px solid rgba(48, 133, 195, 0.4);
}

.about-us__info-title:first-of-type,
.about-us__info-data:first-of-type {
  padding-top: 0;
}

.about-us__info-title {
  color: #3085C3;
  padding-left: 10px;
}

.about-us__info-data span {
  display: block;
}

.about-us__info-data span + span {
  margin-top: 8px;
}

.history {
  padding-top: 40px;
  padding-bottom: 80px;
  background-color: #F6F1DD;
}

.history__title-area {
  padding: 64px 0;
}

.history__img {
  display: grid;
  place-content: center;
  width: 100%;
}

.history__img img {
  aspect-ratio: 657/572;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.recruit {
  padding-top: 80px;
  background-color: #F6F1DD;
}

.recruit__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.recruit__title-area {
  padding: 40px 0;
}

.recruit__accent-text {
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.7;
  text-align: center;
}

.recruit__normal-text {
  text-align: center;
  padding-top: 48px;
  font-weight: 400;
  font-size: 0.625rem;
}

.recruit__charm {
  background-color: #F6F1DD;
}

.l-recruit__charm {
  padding-top: 56px;
}

.recruit__charm__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.recruit__charm__title {
  padding-bottom: 40px;
}

.small-title {
  color: #3085C3;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
  font-size: 1.125rem;
}

.recruit__charm-list__item {
  background-color: white;
  border-radius: 30px;
  max-width: 400px;
}

.recruit__charm-list {
  list-style: none;
}

.recruit__charm-list__item + .recruit__charm-list__item {
  margin-top: 1.25rem;
}

.recruit__charm-list__item:nth-of-type(even) {
  margin-left: auto;
}

.recruit__charm-list__item:nth-of-type(even) .recruit__charm-list__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.recruit__charm-list__item-img {
  width: 100%;
  max-width: 160px;
}

.recruit__charm-list__item-img img {
  aspect-ratio: 200/231;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit__charm-list__item-text-wrap {
  margin-top: 1.25rem;
  max-width: 32.9375rem;
  width: 100%;
  text-align: center;
}

.recruit__charm-list__item:nth-of-type(even) .recruit__charm-list__item-text-wrap {
  margin-left: 0;
  text-align: center;
}

.recruit__charm-list__item-title {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #3085C3;
  letter-spacing: 0.04em;
}

.recruit__charm-list__item-text {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.recruit__charm-list__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  padding: 32px 20px;
}

.recruit__statue {
  padding-top: 80px;
  background-color: #F6F1DD;
  padding-bottom: 80px;
}

.recruit__statue__inner {
  width: 100%;
  max-width: 600px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.recruit__statue__title {
  padding-bottom: 40px;
}

.recruit__statue-list {
  list-style: none;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(1, 1fr);
}

.recruit__statue-list li {
  max-width: 300px;
  /* リストアイテムの最大幅を300pxに設定 */
  margin: 0 auto;
  /* 中央寄せ */
}

.recruit__statue-list__item-img {
  width: 100%;
  margin: 0 auto;
}

.recruit__statue-list__item-img img {
  width: 100%;
  aspect-ratio: 310/310;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit__requirements {
  background-color: #F6F1DD;
  padding-bottom: 40px;
}

.recruit__requirements__white__area {
  padding-bottom: 74px;
}

.recruit__requirements__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.recruit__requirements__title-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 40px;
}

.recruit__requirements__title {
  position: relative;
  font-size: 1.125rem;
  padding-left: 40px;
  color: #3085C3;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.recruit__requirements__title::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 45px;
  background-color: #3085C3;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.recruit__requirements__list__title {
  padding-left: 10px;
  background-color: #3085C3;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 24px;
}

.recruit__requirements__items {
  max-width: 790px;
  padding-top: 2.5rem;
  width: 100%;
  margin: 0 auto;
}

.recruit-requirements__list {
  padding-bottom: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.8125rem;
  line-height: 1.3;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(48, 133, 195, 0.2509803922);
}

.recruit-requirements__list + .recruit-requirements__list {
  margin-top: 0.9375rem;
}

.recruit-requirements__term {
  max-width: 7.5rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #3085C3;
  padding-left: 20px;
}

.recruit-requirements__description span {
  display: block;
}

.recruit-requirements__description span + span {
  margin-top: 4px;
}

.recruit__requirements__entry__btn {
  margin-top: 76px;
  display: grid;
  place-content: center;
}

.contact {
  padding-top: 80px;
  padding-bottom: 40px;
  background-color: #F6F1DD;
}

.contact__white__area {
  padding-bottom: 40px;
}

.contact__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

.contact__title-area {
  padding: 64px 0;
}

.contact__text {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-size: 1rem;
}

.contact__form-wrap + .contact__form-wrap {
  margin-top: 1.5rem;
}

.contact__form-label {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  max-width: 120px;
  width: 100%;
}

.contact__form-label span {
  margin-left: 0.1875rem;
  display: inline-block;
  color: #FF3030;
}

.contact__form-input {
  width: 100%;
  margin-top: 10px;
}

.contact__form-input input {
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.625rem;
  width: 100%;
  border-radius: 10px;
  border: 0.0625rem solid #d9d9d9;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: none;
  padding-left: 24px;
  letter-spacing: 0.04em;
}

.contact__form-input input:focus {
  outline: none;
}

.contact__form-input input::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact__form-input input::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact__form-input input:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact__form-input input::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact__form-input input::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact__form--textarea-label {
  margin-top: 24px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  width: 100%;
}

.contact__form--textarea-label span {
  margin-left: 0.1875rem;
  display: inline-block;
  color: #FF3F02;
}

.contact__form-textarea {
  margin-top: 0.625rem;
}

.contact__form-textarea textarea {
  font-size: 1rem;
  padding: 1.5rem;
  width: 100%;
  height: 15rem;
  border-radius: 10px;
  border: 0.0625rem solid #d9d9d9;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: none;
  resize: none;
}

.contact__form-textarea textarea:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.contact__form-textarea textarea::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact__form-textarea textarea::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact__form-textarea textarea:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact__form-textarea textarea::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact__form-textarea textarea::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact__form-privacy {
  margin-top: 3.75rem;
}

.contact__form-privacy input {
  display: none;
}

.contact__form-privacy input + span {
  display: inline-block;
  padding: 0 0 0 1.875rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 24px;
  cursor: pointer;
}

.contact__form-privacy input + span::before {
  content: "";
  position: absolute;
  top: 0.1875rem;
  left: 0;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(51, 51, 51, 0.2);
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.contact__form-privacy input + span::after {
  content: "";
  margin-top: -0.125rem;
  position: absolute;
  top: 0.75rem;
  left: 0.125rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  display: block;
  width: 0.9375rem;
  height: 0.5rem;
  border-bottom: 0.1875rem solid #333;
  border-left: 0.1875rem solid #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.contact__form-privacy input:checked + span::after {
  opacity: 1;
}

.contact__submit-btn {
  margin-top: 6.5rem;
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: min(3.5vw, 16px);
  color: #3085C3;
  line-height: 1;
  letter-spacing: 0.1em;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
}

.contact__submit-btn span {
  width: 64px;
  height: 64px;
  display: block;
  border: 1px solid #3085C3;
  border-radius: 50%;
  background-image: url(../img/common/arrow-blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact__submit-btn span:hover {
  background-color: #3085C3;
  background-image: url(../img/common/arrow-white.svg);
  opacity: 1;
}

.privacy__text {
  padding: 16px;
  height: 180px;
  max-width: 660px;
  width: 100%;
  border: 1px solid #D9D9D9;
  border-radius: 10px;
  margin: 0 auto;
  overflow-y: scroll;
}

.privacy__text::-webkit-scrollbar {
  display: none;
}

.simplebar-track.simplebar-vertical {
  background-color: #f5f5f5;
}

.simplebar-scrollbar:before {
  background-color: #3085C3;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 1;
}

@-moz-document url-prefix()  {
  .privacy__text {
    scrollbar-width: none;
  }
}

.simplebar-content-wrapper {
  cursor: auto !important;
}

.privacy__text p {
  margin-top: 16px;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.privacy__text span {
  font-size: 0.8125rem;
  display: block;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.contact__form-text {
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-size: 0.75rem;
  margin: 16px 0;
}

.contact__form__content {
  margin-top: 80px;
}

.contactForm__note {
  color: #FF3F02;
  display: none;
}

@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }

  .sp-only {
    display: none;
  }

  .l-inner {
    max-width: 1050px;
    padding-right: 25px;
    padding-left: 25px;
  }

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

  .header {
    height: 140px;
  }

  .header__inner {
    margin: 35px 30px;
    height: 70px;
    padding-left: min(3.125vw, 40px);
    padding-right: min(2.5vw, 32px);
  }

  .header__logo img {
    width: 2.625rem;
    height: 2.875rem;
  }

  .header__name {
    margin-left: 1rem;
  }

  .span--01 {
    font-size: min(0.9375vw, 12px);
  }

  .span--02 {
    font-size: min(1.5625vw, 20px);
  }

  .header__nav-item--y.header__nav-item--contact a:hover {
    background-color: #3085C3;
    color: white;
    opacity: 1;
  }

  .header__nav-item a::before {
    position: absolute;
    content: "";
    bottom: 0.75rem;
    left: 3%;
    width: 90%;
    height: 0.0625rem;
    background: #3085C3;
    visibility: hidden;
  }

  .header__nav-item a:hover::before {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    visibility: visible;
  }

  .header__nav-item a:hover {
    color: #3085C3;
    opacity: 1;
  }

  .header__hamburger {
    display: none;
  }

  .header__drawer {
    display: none;
  }

  .mv {
    padding-top: 110px;
    padding-bottom: 0;
  }

  .mv_inner {
    height: calc(100vh - 110px);
  }

  .btn::before {
    right: 4px;
    width: 80px;
    height: 80px;
  }

  .btn::after {
    right: 31px;
    width: 26px;
    height: 26px;
  }

  .btn:hover {
    opacity: 1;
  }

  .btn:hover::before {
    background-color: #3085C3;
  }

  .btn:hover::after {
    background-image: url(../img/common/arrow-white.svg);
  }

  .l-concept {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .concept__text {
    padding-top: 56px;
  }

  .l-why-us {
    padding-top: 58px;
    padding-bottom: 70px;
  }

  .why-us__text--01 {
    line-height: 2.5;
    padding-top: 50px;
  }

  .why-us__text--02 {
    line-height: 2.5;
    padding-top: 38px;
  }

  .why-us__text--03 {
    line-height: 2.5;
    padding-top: 32px;
  }

  .service__content__titile {
    font-size: 1.25rem;
  }

  .service__content__text {
    padding-top: 13px;
    line-height: 2.5;
    letter-spacing: 0;
  }

  .service__lists__area {
    margin-top: 82px;
  }

  .service__list__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: min(72.265625vw, 925px);
    border-radius: 100px 0 100px 0;
    padding-top: min(4.375vw, 56px);
    padding-bottom: min(4.84375vw, 62px);
  }

  .service__list__wrap::before {
    width: min(76.953125vw, 985px);
    height: min(50.78125vw, 623px);
    border-radius: 100px 0 100px 0;
  }

  .service__content__lists {
    width: 50%;
  }

  .service__content__lists--left {
    width: 50%;
    padding-left: min(7.8125vw, 100px);
  }

  .service__content__list {
    font-size: min(1.40625vw, 18px);
  }

  .service__content__list + .service__content__list {
    padding-top: min(0.9375vw, 12px);
  }

  .list__num {
    padding-right: 28px;
    padding-bottom: 6px;
    font-size: min(2.5vw, 32px);
  }

  .list__num::after {
    left: 5px;
    width: min(2.109375vw, 27px);
  }

  .btn-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 92px 0;
    gap: 0 min(11.71875vw, 150px);
  }

  .map-wrap {
    padding-top: 42.96%;
  }

  .footer__copyright {
    padding-top: 36px;
    padding-bottom: 28px;
  }

  .footer__copyright p {
    font-size: 16px;
  }

  .footer__items {
    padding: 64px 0;
  }

  .footer__logo img {
    aspect-ratio: 217/111;
    -o-object-fit: cover;
       object-fit: cover;
    height: auto;
  }

  .footer__info {
    font-size: 16px;
  }

  .footer__info span {
    margin-right: 10px;
    width: 16px;
    height: 16px;
  }

  .type--02 {
    padding-top: 16px;
  }

  .type--03 {
    padding-top: 15px;
  }

  .type--04 {
    padding-top: 15px;
  }

  .section__text {
    text-align: center;
    font-size: 1.125rem;
  }

  .profile {
    padding-top: 207px;
    padding-bottom: 104px;
  }

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

  .profile-list__item + .profile-list__item {
    margin-top: 6.5rem;
  }

  .profile-list__item-img {
    max-width: 18.75rem;
  }

  .profile-list__item:nth-of-type(even) .profile-list__item-img {
    margin-left: min(6.25vw, 80px);
  }

  .profile-list__item-text-wrap {
    max-width: 37.5rem;
    margin-top: 0;
    margin-left: 4.375rem;
  }

  .profile-list__item:nth-of-type(even) .profile-list__item-text-wrap {
    margin-left: 0;
  }

  .profile-list__item-name {
    font-size: 1.25rem;
  }

  .profile-list__item-name span {
    font-size: 1rem;
  }

  .profile-list__item-title {
    font-size: 1rem;
  }

  .profile-list__item-text {
    padding: min(1.875vw, 24px) 0;
    font-size: 1rem;
  }

  .profile__img__items {
    height: min(44.609375vw, 271px);
  }

  .profile__img__items::before {
    width: 192px;
    height: 192px;
  }

  .profile__img__items::after {
    width: 192px;
    height: 192px;
  }

  .white-inner {
    max-width: 1180px;
    padding-right: min(8.59375vw, 110px);
    padding-left: min(8.59375vw, 110px);
  }

  .about-us {
    padding-top: 207px;
  }

  .about-us__title-area {
    padding: 80px 0;
  }

  .about-us__info__items {
    width: min(60.9375vw, 780px);
    margin: 0 auto;
    position: relative;
  }

  .about-us__info-item {
    grid-template-columns: min(23.4375vw, 300px) 1fr;
  }

  .about-us__info-title,
  .about-us__info-data {
    font-size: 18px;
    line-height: 1.25;
  }

  .about-us__info-title {
    padding-left: min(2.890625vw, 37px);
  }

  .history {
    padding-top: 80px;
    padding-bottom: 104px;
  }

  .history__title-area {
    padding: 80px 0;
  }

  .recruit {
    padding-top: 208px;
  }

  .recruit__inner {
    max-width: 1180px;
    padding-right: min(3.90625vw, 110px);
    padding-left: min(3.90625vw, 110px);
  }

  .recruit__title-area {
    padding: 80px 0;
  }

  .recruit__accent-text {
    font-size: 1.25rem;
  }

  .recruit__normal-text {
    font-size: 1.125rem;
    padding-top: 50px;
    line-height: 2.6;
  }

  .recruit__normal-text p {
    letter-spacing: 0.04em;
  }

  .recruit__white__area {
    padding-bottom: 64px;
  }

  .l-recruit__charm {
    padding-top: 80px;
  }

  .recruit__charm__inner {
    max-width: 1010px;
    padding-right: 25px;
    padding-left: 25px;
  }

  .recruit__charm__title {
    padding-bottom: 64px;
  }

  .small-title {
    font-size: 1.25rem;
  }

  .recruit__charm-list__item {
    max-width: none;
    border-radius: 0 30px 30px 0;
  }

  .recruit__charm-list__item {
    margin-left: calc(50% - 50vw);
  }

  .recruit__charm-list__item + .recruit__charm-list__item {
    margin-top: 2.5rem;
  }

  .recruit__charm-list__item:nth-of-type(even) {
    border-radius: 30px 0 0 30px;
    margin-right: calc(50% - 50vw);
  }

  .recruit__charm-list__item:nth-of-type(even) .recruit__charm-list__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    margin-left: 148px;
  }

  .recruit__charm-list__item-img {
    max-width: 12.5rem;
  }

  .recruit__charm-list__item-text-wrap {
    margin-top: 0.5rem;
    margin-left: 4rem;
    text-align: left;
  }

  .recruit__charm-list__item:nth-of-type(even) .recruit__charm-list__item-text-wrap {
    text-align: right;
    margin-left: 0;
    margin-right: 6.5625rem;
  }

  .recruit__charm-list__item-text {
    margin-top: 32px;
    font-size: 1.125rem;
  }

  .recruit__charm-list__content {
    max-width: 830px;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-right: min(11.71875vw, 150px);
  }

  .recruit__statue {
    padding-top: 80px;
  }

  .recruit__statue__inner {
    max-width: 1180px;
    padding-right: min(3.90625vw, 110px);
    padding-left: min(3.90625vw, 110px);
  }

  .recruit__statue__title {
    padding-bottom: 64px;
  }

  .recruit__statue-list {
    max-width: 960px;
    margin: 0 auto;
    -webkit-column-gap: 0.9375rem;
       -moz-column-gap: 0.9375rem;
            column-gap: 0.9375rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .recruit__statue-list li {
    max-width: none;
  }

  .recruit__requirements {
    padding-bottom: 80px;
  }

  .recruit__requirements__inner {
    max-width: 1010px;
    padding-right: 25px;
    padding-left: 25px;
  }

  .recruit__requirements__title-area {
    padding-top: 122px;
  }

  .recruit__requirements__title::before {
    height: 50px;
  }

  .recruit__requirements__title {
    font-size: 1.25rem;
  }

  .recruit__requirements__list__title {
    font-size: 1.25rem;
    padding-left: 40px;
    margin-top: 49px;
  }

  .recruit__requirements__items {
    padding-top: 5.125rem;
  }

  .recruit-requirements__list {
    padding-bottom: 2rem;
    font-size: 1.125rem;
  }

  .recruit-requirements__list + .recruit-requirements__list {
    margin-top: 2rem;
  }

  .recruit-requirements__term {
    padding-left: 37px;
    max-width: 18.75rem;
  }

  .contact {
    padding-top: 207px;
    padding-bottom: 80px;
  }

  .contact__inner {
    max-width: 1180px;
    padding-right: min(3.90625vw, 110px);
    padding-left: min(3.90625vw, 110px);
  }

  .contact__title-area {
    padding: 80px 0;
  }

  .contact__text {
    font-size: 1.125rem;
  }

  .contact__form {
    margin: auto;
    max-width: 41.25rem;
    width: 100%;
  }

  .contact__form-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .contact__form-label {
    font-size: 1.125rem;
  }

  .contact__form-input {
    max-width: 540px;
    margin-top: 0;
  }

  .contact__form-input input {
    font-size: 1.125rem;
    line-height: 2.1;
  }

  .contact__form--textarea-label {
    font-size: 1.125rem;
    margin-top: 47px;
  }

  .contact__form-textarea textarea {
    font-size: 1.125rem;
  }

  .contact__submit-btn span {
    width: 80px;
    height: 80px;
    background-size: 26px 26px;
  }

  .privacy__text {
    padding: 24px;
    height: 255px;
  }

  .privacy__text p {
    margin-top: 20px;
    font-size: 1rem;
  }

  .privacy__text span {
    font-size: 1rem;
  }

  .contact__form-text {
    text-align: center;
    margin: 22px 0;
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (min-width: 1030px) {
  .mv__title-wrap {
    width: 28.75rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .mv__illust-wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 3000px;
  }

  .mv__illusts--left {
    height: 100vh;
    width: 33.333333%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .mv__illusts--right {
    height: 100vh;
    width: 33.33333%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .mv__illust--01 {
    width: max(7.8125vw, 140px);
    bottom: 80%;
    left: 16%;
  }

  .mv__illust--02 {
    bottom: 74%;
    left: 63%;
    width: max(6.25vw, 120px);
  }

  .mv__illust--03 {
    width: max(5.3125vw, 108px);
    bottom: 60%;
    left: 41%;
  }

  .mv__illust--04 {
    width: max(6.796875vw, 127px);
    bottom: 42%;
    left: 59%;
  }

  .mv__illust--05 {
    width: max(7.890625vw, 141px);
    bottom: 80%;
    left: 45%;
  }

  .mv__illust--06 {
    width: max(6.328125vw, 121px);
    bottom: 63%;
    left: 17%;
  }

  .mv__illust--07 {
    width: max(7.1875vw, 112px);
    bottom: 54%;
    left: 61%;
  }

  .mv__illust--08 {
    width: max(6.25vw, 100px);
    bottom: 42%;
    left: 37%;
  }

  .mv__illust--09 {
    width: max(6.25vw, 100px);
    bottom: 38%;
    left: 16%;
  }

  .mv__illust--10 {
    width: max(6.25vw, 100px);
    bottom: 32%;
    left: 90%;
  }

  .mv__illust--11 {
    width: max(9.375vw, 120px);
    bottom: 32.5%;
    left: 4%;
  }
}

@media screen and (max-width: 1000px) {
  .recruit__charm-list__item:nth-of-type(even) .recruit__charm-list__content {
    margin-left: 0;
  }
}
/*# sourceMappingURL=style.css.map */