@charset "utf-8";
/*=========================
  Common
=========================*/
/* variables */
:root {
  --main: #333333;
  --sub: #ffffff;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}
@media screen and (max-width: 960px) {
  html {
    scroll-padding-top: 90px;
  }
}
body {
  /* font-family: 'Zen Old Mincho', serif; */
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #101010;
  /* font-size: ; */
  line-height: 1.7;
  /* max-width: 1920px;
  margin-inline: auto; */
  position: relative;
  background-color: #f4eee4;
}
body.no-scroll {
  overflow: hidden;
  height: 100%;
}

a {
  text-decoration: none;
  transition: opacity 0.3s;
  color: inherit;
  &:hover {
    @media (any-hover: hover) {
      opacity: 0.7;
    }
  }
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
p {
  /* line-height: 2; */
  text-align: justify;
  @media (max-width: 960px) {
    font-size: 14px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  /* line-height: 1; */
  font-size: inherit;
  font-weight: inherit;
}

.u-pc-only {
  display: initial;
}
.u-sp-only {
  display: none;
}
@media (max-width: 960px) {
  .u-pc-only {
    display: none;
  }
  .u-sp-only {
    display: initial;
  }
}

.l-section {
  padding: 5rem 0;
}

.l-container {
  width: calc(100% - 2rem);
  max-width: 1040px;
  margin-inline: auto;
  @media (max-width: 960px) {
    max-width: 580px;
  }
}

.c-sec-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 16px;
  .icon {
    width: 40px;
    margin-bottom: -8px;
  }
  .sec-title {
    font-family: 'Zen Old Mincho', serif;
    font-size: 30px;
    font-weight: 700;
    color: #604235;
    @media (max-width: 960px) {
      font-size: 24px;
    }
  }
}

.c-sec-lead {
  font-family: 'Zen Old Mincho', serif;
  color: #943632;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  @media (max-width: 960px) {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

/*=========================
  header
=========================*/
.header {
  background-color: #fff;
  position: fixed;
  z-index: 1001;
  top: 24px;
  left: 50%;
  translate: -50% 0%;
  width: 96%;
  max-width: 1360px;
  height: 90px;
  margin-inline: auto;
  border-radius: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 40px;
  @media (max-width: 960px) {
    top: 10px;
    padding-inline: 10px;
    height: 66px;
  }
  .header__inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header__logo {
    display: block;
    width: 240px;
    margin-right: 30px;
    @media (max-width: 960px) {
      width: 171px;
    }
  }
  .header__nav {
    .nav-items {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
    }
    .nav-item {
      font-family: 'Zen Old Mincho', serif;
      font-weight: 900;
      font-size: 18px;
    }
  }
}
.sp-hamburger {
  display: none;
  position: relative;
  z-index: 1001;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10%;
  width: 50px;
  height: fit-content;
  aspect-ratio: 1/1;
  background-color: #943632;
  border-radius: 100vmax;
  .line {
    height: 2px;
    width: 60%;
    background-color: #ffffff;
    transition: 0.3s;
  }
}
.sp-hamburger.is-active {
  .line {
    background-color: #ffffff;
  }
  .line:nth-child(1) {
    position: absolute;
    top: 50%;
    bottom: 50%;
    width: 60%;
    rotate: -45deg;
  }
  .line:nth-child(2) {
    opacity: 0;
  }
  .line:nth-child(3) {
    position: absolute;
    top: 50%;
    bottom: 50%;
    width: 60%;
    rotate: 45deg;
  }
}
.sp-nav {
  background-color: #fff;
  position: fixed;
  z-index: 1000;
  top: 0;
  right: -120%;
  width: 100vw;
  height: 100dvh;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  .nav-items {
    margin-top: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 80px;
    @media (max-width: 960px) {
      margin-top: 100px;
    }
    .nav-item a {
      text-align: center;
      text-wrap: balance;
      font-family: 'Zen Old Mincho', serif;
      font-weight: 900;
      font-size: 18px;
    }
  }
}
.sp-nav.is-active {
  right: 0;
}
.overlay {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  background-color: #000;
  opacity: 0.75;
}
.overlay.is-active {
  display: block;
}
@media screen and (max-width: 1320px) {
  .header {
    .header__nav {
      display: none;
    }
    .sp-hamburger {
      display: flex;
    }
    .sp-nav {
      display: flex;
    }
  }
}

.sp-nav .banner-link {
  display: block;
  width: 300px;
  margin-inline: auto;
  margin-bottom: 16px;
}

/*=========================
  mv
=========================*/
section.sec-mv {
  padding-top: 200px;
  padding-bottom: 240px;
  background-color: #f4eee4;
  position: relative;
  min-height: calc(1060 / 1440 * 100vw);
  @media (max-width: 960px) {
    padding-top: 100px;
    padding-bottom: 0px;
  }
  .mv-img1 {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(880 / 1440 * 100vw);
    @media (max-width: 960px) {
      display: none;
    }
  }
  .mv-img2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(350 / 1440 * 100vw);
    @media (max-width: 960px) {
      display: none;
    }
  }
  .mv__leads {
    font-family: 'Zen Old Mincho', serif;
    position: relative;
    z-index: 1;
    @media (max-width: 960px) {
      margin-bottom: 16px;
    }
    .lead1 {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      font-weight: 900;
      font-size: 20px;
      margin-left: 40px;
      margin-bottom: 10px;
      @media (max-width: 960px) {
        margin-left: 8px;
        font-size: 16px;
      }
      .icon {
        width: 40px;
        margin-right: 10px;
      }
    }
    .label-red {
      background-color: #943632;
      color: #fff;
      font-weight: 900;
      font-size: 25px;
      width: fit-content;
      padding: 4px 80px 4px 55px;
      border-radius: 0 50px 50px 0;
      margin-bottom: 30px;
      @media (max-width: 960px) {
        width: 375px;
        max-width: 96%;
        padding: 8px 14px;
        font-size: 20px;
        margin-bottom: 16px;
      }
    }
    .main-lead {
      width: fit-content;
      margin-left: 56px;
      color: #943632;
      font-size: 60px;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      @media (max-width: 960px) {
        line-height: 1.5;
      }
      &::before {
        content: '「';
        position: absolute;
        top: -15%;
        left: -9%;
        @media (max-width: 960px) {
          top: -9%;
          left: -15%;
        }
      }
      &::after {
        content: '」';
        position: absolute;
        bottom: -15%;
        right: -4%;
        @media (max-width: 960px) {
          bottom: -9%;
          right: 30%;
        }
      }
      @media (max-width: 960px) {
        font-size: 50px;
        margin-inline: auto;
        margin-bottom: 16px;
      }
    }
    .lead2 {
      font-size: 22px;
      font-weight: 700;
      margin-left: 40px;
      margin-bottom: 30px;
      & > span:nth-of-type(2) {
        font-size: 25px;
        margin-left: -16px;
        margin-right: -2px;
      }
      @media (max-width: 960px) {
        display: flex;
        flex-direction: column;
        /* justify-content: center; */
        align-items: center;
      }
    }
    .labels-yellow {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 12px;
      margin-left: 40px;
      @media (max-width: 960px) {
        justify-content: center;
        margin-inline: auto;
        gap: 8px;
      }
      .label {
        width: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 35px;
        padding: 20px 25px;
        background-color: #bb9651;
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        @media (max-width: 960px) {
          width: 124px;
          padding: 8px;
          font-size: 14px;
        }
      }
    }
  }
  .mv-images-sp {
    display: none;
    position: relative;
    @media (max-width: 960px) {
      display: block;
    }
    .mv-img1-sp {
      width: calc(366 / 390 * 100vw);
      margin-left: auto;
    }
    .mv-img2-sp {
      position: relative;
      top: -28vw;
      width: calc(160 / 390 * 100vw);
      margin-right: auto;
      margin-bottom: -28vw;
    }
  }
}

/*=========================
  about
=========================*/
.sec-about {
  padding: 100px 0;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
  top: -300px;
  margin-bottom: -300px;
  @media (max-width: 960px) {
    padding: 50px 0;
    top: 0;
    margin-bottom: 0;
  }
  .c-sec-lead {
    margin-bottom: 80px;
    @media (max-width: 960px) {
      margin-bottom: 16px;
    }
  }
  .about-flex {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 100px;
    @media (max-width: 960px) {
      flex-direction: column-reverse;
      margin-bottom: 55px;
    }
    .text-wrapper {
      line-height: 40px;
      @media (max-width: 960px) {
        line-height: 32px;
      }
      .text:nth-of-type(1) {
        margin-bottom: 24px;
      }
      .list {
        margin-bottom: 24px;
        @media (max-width: 960px) {
          font-size: 14px;
        }
        > li {
          display: grid;
          grid-template-columns: auto 1fr;
        }
        > li::before {
          content: '';
          display: block;
          background-color: #943632;
          width: 14px;
          aspect-ratio: 1/1;
          border-radius: 1000vmax;
          margin-top: 15px;
          margin-right: 8px;
          @media (max-width: 960px) {
            margin-top: 10px;
          }
        }
      }
    }
    .img-wrapper {
      flex: 1 0 auto;
      margin-right: calc(50% - 50vi);
      .img {
        width: calc(640 / 1440 * 100vw);
        translate: 5% 0%;
        @media (max-width: 960px) {
          width: 100%;
          translate: 0% 0%;
        }
      }
      @media (max-width: 960px) {
        width: min(100%, 500px);
        margin-inline: auto;
      }
    }
  }
  .about-paragraph {
    width: 1040px;
    margin-inline: auto;
    @media (max-width: 960px) {
      display: none;
    }
  }
  .about-paragraph-sp {
    display: none;
    width: min(100%, 400px);
    margin-inline: auto;
    @media (max-width: 960px) {
      display: block;
    }
  }
}

/*=========================
  worry
=========================*/
.sec-worry {
  padding-bottom: 80px;
  background-color: #fff;
  position: relative;
  @media (max-width: 960px) {
    padding-bottom: 50px;
  }
  .wave {
    width: 100%;
    background-color: #f4eee4;
  }
  .l-container {
    position: relative;
    z-index: 2;
    top: -40px;
    margin-bottom: 0px;
    @media (max-width: 960px) {
      top: 0px;
    }
  }
  .c-sec-lead {
    margin-bottom: 16px;
  }
  .worry-text {
    text-align: center;
    margin-bottom: 80px;
    @media (max-width: 960px) {
      margin-bottom: 45px;
    }
  }
  .worry-flex {
    display: flex;
    justify-content: center;
    gap: 20px;
    @media (max-width: 960px) {
      flex-direction: column;
      gap: 32px;
    }
  }
  .worry-item {
    flex: 1 1 50%;
  }
  .worry-item__title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Zen Old Mincho', serif;
    font-size: 25px;
    font-weight: 900;
    background-color: #f1f1f1;
    color: #604235;
    border-radius: 36px;
    padding: 16px;
    margin-bottom: 40px;
    position: relative;
    @media (max-width: 960px) {
      font-size: 20px;
      padding: 8px;
      margin-bottom: 30px;
    }
    .icon {
      width: 40px;
      margin-right: 16px;
      @media (max-width: 960px) {
        width: 24px;
        height: 24px;
      }
    }
    &::after {
      content: '';
      display: block;
      clip-path: polygon(100% 0, 0 0, 50% 100%);
      background-color: #f1f1f1;
      width: 40px;
      height: 24px;
      position: absolute;
      bottom: 0%;
      left: 50%;
      translate: -50% 100%;
      @media (max-width: 960px) {
        width: 28px;
        height: 16px;
      }
    }
  }
  .worry-item__list {
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 32px 20px;
    .list-item {
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: center;
      margin-bottom: 16px;
      .number {
        font-family: 'Zen Old Mincho', serif;
        font-size: 40px;
        font-weight: 900;
        color: #604235;
        margin-right: 16px;
        @media (max-width: 960px) {
          font-size: 28px;
        }
      }
    }
    .list-item:last-of-type {
      margin-bottom: 0;
    }
  }
  .worry-item:nth-of-type(2) {
    .worry-item__title {
      background-color: #f4eee4;
      color: #943632;
      &::after {
        background-color: #f4eee4;
      }
    }
    .worry-item__list {
      background-color: #f4eee4;
      .list-item .number {
        color: #943632;
      }
    }
  }
}

/*=========================
  reason
=========================*/
.sec-reason {
  position: relative;
  padding-bottom: 150px;
  @media (max-width: 960px) {
    padding-bottom: 50px;
  }
  .wave {
    width: 100%;
    background-color: #fff;
  }
  .l-container {
    position: relative;
    z-index: 2;
    top: -40px;
    margin-bottom: 0px;
  }
  .c-sec-title {
    margin-bottom: 0;
    @media (max-width: 960px) {
      margin-top: 50px;
    }
  }
  .c-sec-lead {
    font-size: 25px;
    margin-bottom: 16px;
    @media (max-width: 960px) {
      margin-top: 16px;
      font-size: 18px;
    }
    > span:nth-of-type(1) {
      color: #101010;
    }
    > span:nth-of-type(2) {
      font-size: 50px;
      margin-inline: -10px;
      @media (max-width: 960px) {
        line-height: 1;
      }
    }
  }
  .reason-text {
    text-align: center;
    margin-bottom: 80px;
    @media (max-width: 960px) {
      margin-bottom: 45px;
    }
  }
  .reason-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 48px;
    @media (max-width: 960px) {
      flex-direction: column-reverse;
      gap: 8px;
    }
  }
  .reason-item:nth-of-type(2n + 1) {
    flex-direction: row-reverse;
    @media (max-width: 960px) {
      flex-direction: column-reverse;
    }
  }
  .reason-item__body {
    width: 50%;
    flex: 1 1 auto;
    @media (max-width: 960px) {
      width: 100%;
    }
    .item-title {
      display: flex;
      align-items: center;
      font-family: 'Zen Old Mincho', serif;
      font-weight: 900;
      font-size: 25px;
      color: #943632;
      margin-bottom: 16px;
      @media (max-width: 960px) {
        font-size: 18px;
        margin-bottom: 8px;
      }
      .number {
        font-size: 40px;
        margin-right: 16px;
        @media (max-width: 960px) {
          font-size: 30px;
          margin-right: 10px;
        }
      }
    }
    .item-text {
      margin-bottom: 16px;
    }
    .item-list {
      margin-bottom: 16px;
      @media (max-width: 960px) {
        font-size: 14px;
      }
      > li {
        display: grid;
        grid-template-columns: auto 1fr;
      }
      > li::before {
        content: '';
        display: block;
        background-color: #943632;
        width: 14px;
        aspect-ratio: 1/1;
        border-radius: 1000vmax;
        margin-top: 15px;
        margin-right: 8px;
        @media (max-width: 960px) {
          margin-top: 5px;
        }
      }
    }
  }
  .reason-item__img {
    width: min(50%, 500px);
    @media (max-width: 960px) {
      width: 100%;
    }
  }
  .reason-cta {
    max-width: 850px;
    margin-inline: auto;
    background: url(../img/reason-cta-bg.webp) no-repeat;
    background-size: 100%;
    padding: 38px;
    @media (max-width: 960px) {
      background: url(../img/reason-cta-bg-sp.webp) no-repeat;
      background-size: 100% 100%;
      padding: 20px 16px;
    }
  }
  .reason-cta__lead {
    width: min(90%, 677px);
    margin-inline: auto;
    margin-bottom: 30px;
    @media (max-width: 960px) {
      display: none;
    }
  }
  .reason-cta__lead-sp {
    display: none;
    margin-inline: auto;
    @media (max-width: 960px) {
      display: block;
      width: 330px;
      margin-bottom: 20px;
    }
  }
  .reason-cta__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 24px;
    @media (max-width: 960px) {
      flex-direction: column;
      gap: 20px;
    }
    .cta-button {
      border-radius: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 360px;
      height: 80px;
      box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
      @media (max-width: 960px) {
        width: 340px;
      }
    }
    .cta-button--mail {
      background-color: #cba050;
      .button-text {
        max-width: 248px;
      }
    }
    .cta-button--tel {
      background-color: #1b4060;
      .button-text {
        max-width: 222px;
      }
    }
  }
  .reason-cta__text {
    text-align: center;
    @media (max-width: 960px) {
      font-size: 14px;
    }
  }
  .wave2 {
    position: absolute;
    bottom: 0%;
    z-index: 1;
    width: 100%;
    background-color: #fff;
  }
}

/*=========================
  voice
=========================*/
.sec-voice {
  background-color: #fff;
  padding-bottom: 100px;
  @media (max-width: 960px) {
    padding: 30px 0;
  }
  .c-sec-lead {
    margin-bottom: 80px;
    @media (max-width: 960px) {
      margin-bottom: 30px;
    }
  }
  .voice-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 90px;
    @media (max-width: 960px) {
      flex-direction: column;
      gap: 30px;
      margin-bottom: 60px;
    }
  }
  .c-interview {
    width: calc((100% - 10%) / 3);
    @media (max-width: 960px) {
      width: 80%;
      margin-inline: auto;
    }
    .open-modal {
      cursor: pointer;
    }
    .modal-overlay {
      opacity: 0;
      visibility: hidden;
      transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
      position: fixed;
      z-index: 1010;
      inset: 0;
      background: rgba(0, 0, 0, 0.4);
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .modal-overlay.is-active {
      opacity: 1;
      visibility: visible;
    }
    .modal-window {
      position: relative;
      z-index: 100;
      inset: 0;
      width: min(90%, 1000px);
      height: 80dvh;
      max-height: 850px;
      margin: auto;
      padding: 3rem 0 4rem;
      background-color: #efeaea;
      border-radius: 5px;
      transform: translateY(8px);
      transition: transform 0.3s ease;
      @media (max-width: 960px) {
        padding: 30px 10px;
        height: 80vh;
        max-height: 700px;
      }
    }
    .modal-overlay.is-active .modal-window {
      transform: translateY(0);
    }
    .modal-window__scroller {
      max-height: 100%;
      overflow-y: scroll;
    }
    .close-modal {
      cursor: pointer;
      position: absolute;
      bottom: 0%;
      left: 50%;
      translate: -50% 50%;
      width: 70px;
      filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.46));
      @media (max-width: 960px) {
        width: 50px;
      }
    }
    .modal-window__inner {
      width: min(90%, 750px);
      margin-inline: auto;
    }
    .modal-window__img {
      width: 80%;
      max-height: 600px;
      margin-inline: auto;
      margin-bottom: 30px;
      @media (max-width: 960px) {
        display: none;
      }
    }
    .modal-window__img-sp {
      display: none;
      width: min(100%, 300px);
      margin-inline: auto;
      margin-bottom: 30px;
      @media (max-width: 960px) {
        display: block;
      }
    }
    .modal-window__lead {
      font-family: 'Zen Old Mincho', serif;
      font-weight: 700;
      font-size: 25px;
      color: #943632;
      margin-bottom: 10px;
      @media (max-width: 960px) {
        font-size: 20px;
        text-align: center;
      }
    }
    .modal-window__text {
      font-size: 16px;
      margin-bottom: 30px;
      @media (max-width: 960px) {
        font-size: 14px;
      }
    }
  }
  .c-interview:nth-of-type(3) {
    .modal-window__img {
      width: min(80%, 465px);
    }
  }
  .career-title {
    width: 457px;
    margin-inline: auto;
    margin-bottom: 40px;
    @media (max-width: 960px) {
      margin-bottom: 20px;
    }
  }
  .career-text {
    text-align: center;
    margin-bottom: 80px;
    @media (max-width: 960px) {
      margin-bottom: 40px;
    }
  }
  .career-chart {
    width: 100%;
    @media (max-width: 960px) {
      display: none;
    }
  }
  .career-chart-sp-wrapper {
    display: none;
    overflow-x: scroll;
    margin-inline: calc(50% - 50vi);
    padding-inline: 1rem;
    @media (max-width: 960px) {
      display: block;
    }
  }
  .career-chart-sp {
    width: 1040px;
    max-width: initial;
    @media (max-width: 960px) {
      display: block;
    }
  }
  .career-annotation {
    margin-top: 8px;
    font-size: 10px;
    text-align: right;
    @media (max-width: 960px) {
      display: none;
    }
  }
}

/*=========================
  movie
=========================*/
.sec-movie {
  background-color: #f4eee4;
  padding-bottom: 60px;
  @media (max-width: 960px) {
    padding-bottom: 30px;
  }
  .wave {
    width: 100%;
    background-color: #fff;
    margin-bottom: 40px;
  }
  .movie-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    @media (max-width: 960px) {
      flex-direction: column;
      gap: 20px;
    }
  }
  .movie-item {
    width: 50%;
    @media (max-width: 960px) {
      width: 80%;
    }
    > iframe {
      width: 100%;
      aspect-ratio: 16 / 9;
    }
  }
}

/*=========================
  instagram
=========================*/
.sec-instagram {
  background-color: #fff;
  padding-bottom: 100px;
  @media (max-width: 960px) {
    padding-bottom: 30px;
  }
  .wave {
    width: 100%;
    background-color: #f4eee4;
    margin-bottom: 40px;
  }
  .instagram-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 700;
    font-size: 30px;
    color: #480505;
    margin-bottom: 50px;
    @media (max-width: 960px) {
      font-size: 24px;
      margin-bottom: 20px;
    }
    .icon {
      width: 36px;
      margin-right: 16px;
      @media (max-width: 960px) {
        width: 24px;
        margin-right: 8px;
      }
    }
  }
}

/*=========================
  facilities
=========================*/
.sec-facilities {
  background-color: #f4eee4;
  .wave {
    width: 100%;
    margin-bottom: 20px;
  }
  .c-sec-lead {
    margin-bottom: 16px;
  }
  .facilities-text {
    text-align: center;
    margin-bottom: 80px;
    @media (max-width: 960px) {
      text-align: center;
      text-wrap: balance;
      margin-bottom: 40px;
    }
  }
  .wave2 {
    margin-top: 48px;
    width: 100%;
  }
  .facilities-tabs {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 80px;
    @media (max-width: 960px) {
      gap: 8px;
      margin-bottom: 30px;
    }
  }
  .facilities-tabs .tab-btn {
    position: relative;
    width: 200px;
    height: 50px;
    background-color: #ffffff;
    color: #cba050;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 700;
    font-size: 20px;
    border: none;
    border-radius: 100vmax;
    filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.16));
    cursor: pointer;
    @media (max-width: 960px) {
      width: 120px;
      height: 30px;
      font-size: 14px;
    }
  }
  .facilities-tabs .tab-btn::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    display: block;
    width: 32px;
    height: 20px;
    background-color: #ffffff;
    @media (max-width: 960px) {
      width: 20px;
      height: 10px;
      bottom: -8px;
    }
  }
  .facilities-tabs .tab-btn.is-active {
    background-color: #cba050;
    color: #fff;
  }
  .facilities-tabs .tab-btn.is-active::after {
    background-color: #cba050;
  }
  .facilities-panel {
    display: none;
    animation: fadeIn 0.25s ease;
    @media (max-width: 960px) {
      overflow-x: scroll;
      margin-inline: calc(50% - 50vi);
      padding: 0px 10px 10px;
    }
    table {
      width: 100%;
      border-spacing: 0;
      @media (max-width: 960px) {
        width: 700px;
        margin-inline: auto;
      }
    }
    th,
    td {
      background-color: #fff;
      padding: 16px;
      border-bottom: 1px solid rgba(203, 160, 80, 0.5);
      @media (max-width: 960px) {
        font-size: 12px;
        padding: 10px;
      }
    }
    tr th:last-of-type,
    tr td:last-of-type {
      border-left: 1px solid rgba(203, 160, 80, 0.5);
    }
    tr:last-of-type td {
      border-bottom: none;
    }
    th:first-of-type,
    td:first-of-type {
      background-color: #943632;
      color: #fff;
      text-align: center;
    }
    td:first-of-type {
      font-family: 'Zen Old Mincho', serif;
      font-weight: 400;
      font-size: 20px;
      @media (max-width: 960px) {
        font-size: 14px;
      }
    }
    th {
      background-color: #f1f2f2;
      font-family: 'Zen Old Mincho', serif;
      font-weight: 400;
      font-size: 20px;
      @media (max-width: 960px) {
        font-size: 14px;
      }
    }
  }
  .facilities-panel.is-active {
    display: block;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*=========================
  profile
=========================*/
.sec-profile {
  background-color: #fff;
  padding: 80px 0 50px;
  @media (max-width: 960px) {
    padding: 40px 0 40px;
  }
  .pdf-wrapper {
    aspect-ratio: 1040/585;
  }
  .pdf-dl {
    display: block;
    margin-inline: auto;
    text-align: center;
    color: #943632;
    font-size: 16px;
    text-decoration: underline;
    @media (max-width: 960px) {
      font-size: 14px;
    }
  }
}

/*=========================
  faq
=========================*/
.sec-faq {
  background-color: #fff;
  padding: 50px 0 90px;
  @media (max-width: 960px) {
    padding: 40px 0 40px;
  }
  .c-sec-lead {
    margin-bottom: 50px;
    @media (max-width: 960px) {
      margin-bottom: 30px;
    }
  }
  .c-faq-items {
  }
  .c-faq-items__item {
    background-color: #f4eee4;
    padding: 28px;
    border-radius: 10px;
    margin-bottom: 30px;
    @media (max-width: 960px) {
      padding: 20px 10px;
    }
  }
  .c-faq-items__q-wrapper {
    font-family: 'Zen Old Mincho', serif;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    position: relative;
    cursor: pointer;
    .q-icon {
      font-size: 30px;
      background-color: #943632;
      aspect-ratio: 1/1;
      width: 53px;
      border-radius: 100vmax;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      @media (max-width: 960px) {
        width: 30px;
        font-size: 14px;
      }
    }
    .q-title {
      font-size: 25px;
      font-weight: 700;
      @media (max-width: 960px) {
        font-size: 20px;
      }
    }
    .q-toggler {
      position: relative;
      width: 24px;
      aspect-ratio: 1/1;
      @media (max-width: 960px) {
        width: 16px;
      }
      &::before,
      &::after {
        content: '';
        display: block;
        width: 100%;
        height: 3px;
        background-color: #943632;
        position: absolute;
        top: 50%;
        left: 50%;
        translate: -50% -50%;
      }
      &::after {
        rotate: 90deg;
        opacity: 1;
        transition: 0.4s ease;
      }
    }
  }
  .c-faq-items__a-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }
  .c-faq-items__a-inner {
    margin-top: 24px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 1rem;
    margin-right: 2rem;
    .a-icon {
      font-family: 'Zen Old Mincho', serif;
      font-size: 30px;
      background-color: #cba050;
      aspect-ratio: 1/1;
      width: 53px;
      border-radius: 100vmax;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      @media (max-width: 960px) {
        width: 30px;
        font-size: 14px;
      }
    }
    .a-text {
      @media (max-width: 960px) {
        font-size: 14px;
      }
    }
  }
  .c-faq-items__item.is-open {
    .c-faq-items__q-wrapper {
      .q-toggler::after {
        opacity: 0;
      }
    }
    .c-faq-items__a-wrapper {
      max-height: 6000px;
    }
  }
}

/*=========================
  wanted
=========================*/
.sec-wanted {
  background-color: #f4eee4;
  padding-bottom: 100px;
  @media (max-width: 960px) {
    padding-bottom: 40px;
  }
  .wave {
    margin-top: -1px;
    width: 100%;
    background-color: #f4eee4;
  }
  .c-sec-title {
    @media (max-width: 960px) {
      margin-top: 30px;
    }
  }
  .c-sec-lead {
    @media (max-width: 960px) {
      margin-bottom: 40px;
    }
  }
  .c-job_description {
  }
  .c-job_description__item {
    background-color: #fff;
    padding: 42px 28px;
    border-radius: 10px;
    margin-bottom: 48px;
    @media (max-width: 960px) {
      padding: 16px 16px;
      margin-bottom: 20px;
    }
    .title-wrapper {
      font-family: 'Zen Old Mincho', serif;
      font-weight: 700;
      color: #943632;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      @media (max-width: 960px) {
        display: grid;
        grid-template-columns: 1fr auto;
        row-gap: 4px;
      }
    }
    .title {
      font-size: 25px;
      margin-right: 16px;
      @media (max-width: 960px) {
        font-size: 20px;
      }
    }
    .category-wrapper {
      @media (max-width: 960px) {
        grid-row: 2/3;
      }
    }
    .category {
      background-color: #943632;
      color: #fff;
      padding: 2px 14px;
      font-size: 15px;
      margin-right: 10px;
      width: fit-content;
      @media (max-width: 960px) {
        font-size: 13px;
      }
    }
    .toggler {
      margin-left: auto;
      transform: scale(1, -1);
      transition: 0.4s ease-in-out;
      @media (max-width: 960px) {
        width: 30px;
      }
    }
    .content {
      max-height: 0;
      overflow: hidden;
      /* padding: 0 3px 3px 0; */
      transition: max-height 0.4s ease-in-out;
      filter: drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.16));
      .wp-block-table {
        margin-top: 40px;
        border-radius: 10px;
        @media (max-width: 960px) {
          margin-top: 20px;
        }
        & tbody {
          display: grid;
          grid-template-columns: 250px 1fr;
          @media (max-width: 960px) {
            grid-template-columns: 1fr;
            font-size: 14px;
          }
        }
        & tr {
          display: grid;
          grid-template-columns: subgrid;
          grid-column: 1/-1;
          & td {
            border: none;
          }
          & td:nth-of-type(1) {
            background-color: #f1f2f2;
            font-family: 'Zen Old Mincho', serif;
            font-weight: 700;
            color: #943632;
            text-align: center;
            border-bottom: 1px solid #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 16px;
            @media (max-width: 960px) {
              padding: 10px;
              font-size: 16px;
            }
          }
          & td:nth-of-type(2) {
            background-color: #fff;
            border-bottom: 1px solid rgba(203, 160, 80, 0.5);
            padding: 16px;
            @media (max-width: 960px) {
              padding: 10px;
              border-bottom: none;
            }
          }
        }
        & tr:nth-last-of-type(1) {
          & td {
            border-bottom: none;
          }
        }
      }
    }
  }
  .c-job_description__item.is-open {
    .title-wrapper .toggler {
      transform: scale(1, 1);
    }
    .content {
      max-height: 9000px;
    }
  }
}

/*=========================
  entry
=========================*/
.sec-entry {
  background-color: #fff;
  position: relative;
  padding: 90px 0;
  overflow-x: hidden;
  @media (max-width: 960px) {
    padding: 60px 0 50px;
  }
  .entry-upper {
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0%;
    background-color: #f4eee4;
    max-width: initial;
    width: 120%;
    /* overflow-x: hidden; */
  }
  .l-container {
    position: relative;
    z-index: 2;
  }
  .c-sec-lead {
    margin-bottom: 80px;
    @media (max-width: 960px) {
      margin-bottom: 50px;
    }
  }
  .entry-form {
    .form-table {
      display: grid;
      grid-template-columns: auto 1fr;
      @media (max-width: 960px) {
        grid-template-columns: 1fr;
      }
    }
    .form-item {
      display: grid;
      grid-template-columns: subgrid;
      grid-column: 1/-1;
      align-items: flex-start;
      gap: 40px;
      border-bottom: 1px solid #cba050;
      padding-bottom: 24px;
      margin-bottom: 24px;
      @media (max-width: 960px) {
        gap: 10px;
        padding-bottom: 16px;
        margin-bottom: 16px;
      }
    }
    .title-wrapper {
      display: flex;
      align-items: center;
      margin-top: 4px;
      .label {
        background-color: #943632;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 78px;
        border-radius: 8px;
        font-size: 14px;
        margin-right: 8px;
      }
      .label.any {
        background-color: #a1a2a3;
      }
      .title {
      }
    }
    .input-wrapper {
      input[type='text'],
      input[type='tel'],
      input[type='email'],
      select,
      textarea {
        width: 100%;
        border-radius: 4px;
        border: 1px solid #a1a2a3;
        padding: 4px;
        font-weight: 400;
      }
      select {
        width: min(100%, 400px);
      }
      input.w-half {
        width: min(100%, 400px);
      }
    }
    .acceptance {
      font-size: 18px;
      text-align: center;
      margin-bottom: 2rem;
      @media (max-width: 960px) {
        font-size: 14px;
      }
    }
    .submit-wrapper {
      position: relative;
      display: block;
      width: fit-content;
      margin-inline: auto;
      margin-bottom: 30px;
      @media (any-hover: hover) {
        &:hover {
          transition: opacity 0.3s;
          opacity: 0.7;
        }
      }
    }
    .submit-wrapper .wpcf7-submit {
      display: block;
      cursor: pointer;
      border-radius: 100vmax;
      border: none;
      width: 350px;
      margin-inline: auto;
      background-color: #943632;
      color: #fff;
      font-size: 24px;
      padding: 20px 40px;
      @media (max-width: 960px) {
        font-size: 18px;
        padding: 16px;
      }
    }
    .submit-wrapper::after {
      content: '';
      display: block;
      background: url(../img/entry-submit.webp) no-repeat;
      background-size: contain;
      width: 38px;
      aspect-ratio: 1/1;
      position: absolute;
      z-index: 1;
      top: 50%;
      right: 10px;
      translate: 0% -50%;
      pointer-events: none;
    }
    .wpcf7-spinner {
      position: absolute;
      bottom: -30px;
    }
  }
}

/*=========================
  footer
=========================*/
.footer {
  background-color: #f4eee4;
  position: relative;
  padding: 100px 0 80px;
  @media (max-width: 960px) {
    padding: 80px 0 60px;
  }
  .footer__wave {
    position: absolute;
    z-index: 1;
    top: -1px;
    width: 100%;
  }
  .l-container {
    position: relative;
    z-index: 2;
  }
  .footer__logo {
    width: 160px;
    margin-inline: auto;
    margin-bottom: 28px;
  }
  .footer__lead {
    font-family: 'Zen Old Mincho', serif;
    font-weight: bold;
    font-size: 25px;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    @media (max-width: 960px) {
      font-size: 20px;
      text-align: center;
    }
    .footer__lead-l {
      margin-right: 10px;
    }
    .footer__lead-r {
      @media (max-width: 960px) {
        margin-left: 10px;
      }
    }
  }
  .footer__tel {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Zen Old Mincho', serif;
    color: #480505;
    font-size: 48px;
    font-weight: bold;
    width: fit-content;
    margin-inline: auto;
    @media (max-width: 960px) {
      font-size: 40px;
    }
    .icon {
      margin: 4px 16px 0 0;
      @media (max-width: 960px) {
        margin: 8px 10px 0 0;
      }
    }
  }
  .footer__annotation {
    text-align: center;
    font-size: 14px;
    @media (max-width: 960px) {
      font-size: 12px;
    }
  }
}

.copyright {
  padding: 20px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  background-color: #bb9651;
  color: #fff;
  text-align: center;
  font-size: 18px;
  @media (max-width: 960px) {
    font-size: 14px;
    padding: 10px;
  }
}

.sticky-banner {
  position: fixed;
  z-index: 10;
  bottom: 3%;
  right: 2%;
  @media (max-width: 960px) {
    display: none;
  }
  .banner-link {
    display: block;
    width: 300px;
    border-radius: 10px;
    position: relative;
    opacity: 1;
    overflow: hidden;
  }
  .banner-link::before {
    background-color: #fff;
    content: '';
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 30px;
    height: 100%;
    opacity: 0;
    transition: cubic-bezier(0.32, 0, 0.67, 0);
    animation: shine 6s linear infinite;
  }
  /* @media (any-hover: hover) {
    .banner-link:hover::before {
      animation: shine-hover 1s linear;
    }
  } */
  .banner-link:first-of-type {
    margin-bottom: 8px;
  }
}

@keyframes shine {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  3.3% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  6.7% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }
  13.3% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }
  16.7% {
    /* 1s / 6s ← アニメ完了 */
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
  100% {
    /* 残り5秒待機 */
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@keyframes shine-hover {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }
  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.sticky-banner-sp {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 10;
  bottom: 0;
  width: 100%;
  height: 70px;
  background-color: #943632;
  overflow: hidden;
  @media (max-width: 960px) {
    display: flex;
  }
  &::before {
    background-color: #fff;
    content: '';
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 30px;
    height: 100%;
    opacity: 0;
    transition: cubic-bezier(0.32, 0, 0.67, 0);
    animation: shine 8s linear infinite;
  }
  .banner-img {
    width: 270px;
    margin-bottom: auto;
  }
}

@media (max-width: 960px) {
  body {
    margin-bottom: 70px;
  }
}
