@charset "utf-8";
/*=========================
  Common
=========================*/

/* variables */
:root {
  --orange1: #fb8c31;
  --orange2: #e7aa4f;
  --pink: #e77e84;
  --green: #97c689;
  --blue: #9cb8c7;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
@media screen and (max-width: 960px) {
  html {
    scroll-padding-top: 60px;
  }
}
body {
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #333;
  font-weight: 500;
  /* font-size: ; */
  /* line-height: 1.7; */
  position: relative;
}
a {
  text-decoration: none;
  transition: opacity 0.3s;
  color: inherit;
  &:hover {
    @media (any-hover: hover) {
      opacity: 0.6;
    }
  }
}

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: 4rem 0;
  @media (max-width: 960px) {
    padding: 2rem 0;
  }
}

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

.c-section-title {
  text-align: center;
  text-wrap: balance;
  margin-bottom: 2.5rem;
  @media (max-width: 960px) {
    margin-bottom: 1.5rem;
  }
  .c-section-title__en {
    color: #333;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    @media (max-width: 960px) {
      font-size: 14px;
    }
  }
  .c-section-title__jp {
    color: var(--pink);
    font-size: 30px;
    font-weight: 500;
    @media (max-width: 960px) {
      font-size: 19px;
    }
  }
}

.c-cta {
  @media (max-width: 960px) {
    max-width: 400px;
    margin-inline: auto;
  }
  .c-cta__text {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    @media (max-width: 960px) {
      font-size: 12px;
      margin-bottom: 0.25rem;
    }
  }
  .c-cta__button {
    background-color: #fb8c31;
    color: #fff;
    border-radius: 100vmax;
    padding: 2rem 2rem;
    width: min(100%, 630px);
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    @media (max-width: 960px) {
      padding: 20px 28px;
      font-size: 14px;
    }
  }
}

/*=========================
  header
=========================*/
.l-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  width: 100%;
  background-color: #fff;
  height: 90px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.16);
  @media (max-width: 960px) {
    height: 60px;
  }
  .l-header__container {
    width: calc(100% - 2rem);
    max-width: 1440px;
    margin-inline: auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2%;
    @media (max-width: 960px) {
      justify-content: center;
    }
  }
  .l-header__logo {
    width: 250px;
    @media (max-width: 960px) {
      width: 172px;
    }
  }
  .l-header__nav {
    width: calc((100% - 250px) - 5%);
    .nav-items {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2%;
    }
    .nav-items__item {
      font-weight: 500;
    }
  }

  .sp-hamburger {
    display: none;
    position: absolute;
    top: 50%;
    right: 0;
    translate: -50% -50%;
    z-index: 1001;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15%;
    width: 50px;
    height: fit-content;
    aspect-ratio: 1/1;
    @media (max-width: 960px) {
      width: 35px;
      right: 1rem;
      translate: 0% -50%;
    }
    .line {
      height: 1px;
      width: 60%;
      background-color: #333;
      transition: 0.3s;
    }
  }
  .sp-hamburger.is-active {
    .line {
      background-color: #333;
    }
    .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 {
  position: fixed;
  z-index: 999;
  /* top: 90px; */
  top: 0px;
  right: -120%;
  width: 100vw;
  max-width: 800px;
  height: 100dvh;
  background-color: #fff9f0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  @media (max-width: 960px) {
    max-width: 100%;
  }
  .nav-items {
    width: 100%;
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    @media (max-width: 960px) {
      margin-top: 90px;
    }
    .nav-items__item a {
      text-align: center;
      text-wrap: balance;
      font-size: 18px;
      @media (max-width: 960px) {
        font-size: 16px;
      }
    }
  }
}
.sp-nav.is-active {
  right: 0;
}
.header-overlay {
  display: none;
  position: fixed;
  z-index: 998;
  inset: 0;
  background-color: #000;
  opacity: 0;
}
.header-overlay.is-active {
  display: block;
  opacity: 0.5;
}
body.no-scroll {
  overflow: hidden;
  height: 100%;
  overscroll-behavior-y: none;
}
@media screen and (max-width: 1160px) {
  .l-header {
    .l-header__nav {
      display: none;
    }
    .sp-hamburger {
      display: flex;
    }
  }
}

/*=========================
  mv
=========================*/
.p-mv {
  padding: 1.5rem 0 0;
  background-color: #fff9f0;
  @media (max-width: 960px) {
    padding: 0;
  }
  .c-mv-slider {
  }
  .c-mv-slider__slide {
    position: relative;
  }
  .c-mv-slider__slide-img {
    width: 90%;
    margin-inline: auto;
    border-radius: 30px;
    @media (max-width: 960px) {
      width: 100%;
      border-radius: 0px;
      min-height: 280px;
      object-fit: cover;
    }
  }
  .c-mv-slider__slide-lead {
    position: absolute;
    bottom: 8%;
    left: 0;
    right: 0;
  }
  .c-mv-slider__slide-lead .row1,
  .c-mv-slider__slide-lead .row2 {
    background-color: #fff;
    color: var(--orange1);
    font-size: 36px;
    font-weight: 500;
    text-align: center;
    padding: 0.25rem 1rem;
    width: fit-content;
    margin-inline: auto;
    @media (max-width: 960px) {
      font-size: 18px;
    }
  }
  .c-mv-slider__slide-lead .row1 {
    margin-bottom: 1rem;
    @media (max-width: 960px) {
      margin-bottom: 0.5rem;
    }
  }
}

/*=========================
  message
=========================*/
.p-message {
  background-color: #fff9f0;
  @media (max-width: 960px) {
    padding-top: 1.25rem;
  }
  .p-message__inner {
    background-color: #fff;
    border-radius: 20px;
    padding: 2.5rem 3rem 5rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    @media (max-width: 960px) {
      padding: 1.5rem 1rem 3rem;
    }
  }
  .p-message__body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10%;
    @media (max-width: 960px) {
      flex-direction: column;
      gap: 2rem;
    }
  }
  .p-message__text {
    width: 55%;
    @media (max-width: 960px) {
      width: 100%;
    }
  }
  .p-message__img {
    width: 30%;
    @media (max-width: 960px) {
      width: min(90%, 300px);
      margin-inline: auto;
    }
  }
}

/*=========================
  philosophy
=========================*/
.p-philosophy {
  background-color: #fff;
  .p-philosophy__items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    @media (max-width: 960px) {
      flex-direction: column;
    }
  }
  .p-philosophy__item {
    width: calc((100% - 80px) / 3);
    background-color: var(--pink);
    color: #fff;
    padding: 1.5rem 1.5rem;
    border-radius: 24px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.5);
    @media (max-width: 960px) {
      width: min(100%, 360px);
    }
  }
  .p-philosophy__item:nth-child(2) {
    background-color: var(--green);
  }
  .p-philosophy__item:nth-child(3) {
    background-color: var(--blue);
  }
  .p-philosophy__item-number {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
  }
  .p-philosophy__item-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 35px;
    @media (max-width: 960px) {
      margin-bottom: 1.25rem;
    }
  }
  .p-philosophy__item-text {
    font-weight: 500;
    font-size: 16px;
  }
}

/*=========================
  point
=========================*/
.p-point {
  position: relative;
  &::before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 70%;
    height: 94.5%;
    background-color: #fff9f0;
    border-radius: 0 30px 30px 0;
    margin-top: auto;
    @media (max-width: 960px) {
      width: 80%;
    }
  }
  .c-section-title--point {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1rem;
    @media (max-width: 960px) {
      grid-template-columns: 1fr;
    }
  }
  .c-section-title__circle {
    font-weight: 700;
    color: var(--pink);
    border: 1px solid var(--pink);
    border-radius: 100vmax;
    aspect-ratio: 1/1;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    @media (max-width: 960px) {
      margin-inline: auto;
    }
  }
  .c-section-title__inner {
    text-align: left;
    @media (max-width: 960px) {
      text-align: center;
    }
  }
  .c-section-title__en {
    margin-bottom: 0;
    .u-lg {
      font-size: 1.5em;
    }
  }
  .p-point__items {
  }
  .p-point__item {
    width: min(100%, 950px);
    margin-bottom: 3rem;
    margin-right: auto;
  }
  .p-point__item:nth-of-type(2n) {
    margin-right: 0;
    margin-left: auto;
  }
  .p-point__item.u-pc-only {
    display: block;
    @media (max-width: 960px) {
      display: none;
    }
  }
  .p-point__item.u-sp-only {
    display: none;
    @media (max-width: 960px) {
      display: block;
      width: 345px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 2rem;
    }
  }
}

/*=========================
  interview
=========================*/
.p-interview {
  background-color: #fff;
  .p-interview__text {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .p-interview__items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
    @media (max-width: 960px) {
      flex-direction: column;
      gap: 2rem;
    }
  }
  .c-interview {
    width: calc((100% - 10%) / 3);
    @media (max-width: 960px) {
      width: min(80%, 400px);
      position: relative;
      right: -6%;
    }
    .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: 86dvh;
      max-height: 1500px;
      margin: auto;
      padding: 8rem 0 4rem;
      background-color: #fff;
      border: 2px solid #68b658;
      transform: translateY(8px);
      transition: transform 0.3s ease;
      @media (max-width: 960px) {
        padding: 4rem 0;
        height: 80dvh;
      }
    }
    .modal-overlay.is-active .modal-window {
      transform: translateY(0);
    }
    .modal-window__scroller {
      max-height: 100%;
      overflow-y: scroll;
    }
    .modal-window__number {
      position: absolute;
      top: 0%;
      left: 50%;
      translate: -50% 15px;
      width: 90px;
      @media (max-width: 960px) {
        width: 50px;
        translate: -50% 6px;
      }
    }
    .close-modal {
      cursor: pointer;
      position: absolute;
      top: 100%;
      left: 50%;
      translate: -50% -50%;
      width: 100px;
      @media (max-width: 960px) {
        width: 70px;
      }
    }
    .modal-window__inner {
      width: min(90%, 750px);
      margin-inline: auto;
    }
    .modal-window__img {
      margin-inline: auto;
      margin-bottom: 3rem;
      @media (max-width: 960px) {
        margin-bottom: 2rem;
      }
    }
    .modal-window__text-header {
      font-weight: 700;
      font-size: 15px;
      width: fit-content;
      color: #fb8c31;
      border-bottom: 1px solid #fb8c31;
      margin-bottom: 0.5rem;
    }
    .modal-window__text-header:nth-of-type(2n + 1) {
      color: #68b658;
      border-bottom: 1px solid #68b658;
    }
    .modal-window__text {
      font-weight: 500;
      font-size: 14px;
      margin-bottom: 2rem;
    }
  }
}

/*=========================
  voice
=========================*/
.p-voice {
  background-color: #fff;
  .p-voice__inner {
    background-color: #fff9f0;
    padding: 4rem 2rem;
    margin-bottom: 4rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    @media (max-width: 960px) {
      padding: 1.5rem 1.5rem 3rem;
      margin-bottom: 2rem;
    }
  }
  .p-voice__item {
    max-width: 860px;
    margin-inline: auto;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #707070;
    @media (max-width: 960px) {
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
    }
  }
  .p-voice__item:last-child {
    border: none;
    margin-bottom: 0rem;
    padding-bottom: 0rem;
  }
  .p-voice__item-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 2rem;
    @media (max-width: 960px) {
      font-size: 14px;
      margin-bottom: 1rem;
    }
  }
  .p-voice__item-img {
    width: min(100%, 560px);
    margin-inline: auto;
  }
}

/*=========================
  schedule
=========================*/
.p-schedule {
  background: url(../img/lp/schedule-bg.svg) no-repeat;
  background-size: 100%;
  padding: 6rem 0;
  @media (max-width: 960px) {
    background: url(../img/lp/schedule-bg-sp.svg) no-repeat;
    background-size: 100%;
    padding: 3rem 0;
  }
  .c-schedule-drawer {
    --color: var(--orange2);
    background-color: #fff;
    border-radius: 20px;
    padding: 2rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
    @media (max-width: 960px) {
      padding: 1rem 1rem;
      margin-bottom: 1.5rem;
    }
    &:last-child {
      margin-bottom: 0;
    }
    .c-schedule-drawer__title-wrapper {
      position: relative;
      cursor: pointer;
      width: min(100%, 900px);
      margin-inline: auto;
    }
    .toggler {
      position: absolute;
      top: 50%;
      right: 0;
      translate: 0% -50%;
      width: 40px;
      aspect-ratio: 1/1;
      @media (max-width: 960px) {
        width: 20px;
      }
      &::before,
      &::after {
        position: absolute;
        top: 50%;
        left: 50%;
        translate: -50% -50%;
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background-color: var(--color);
        transition: 0.4s ease-in-out;
        @media (max-width: 960px) {
          width: 20px;
          height: 2px;
        }
      }
      &::after {
        rotate: 90deg;
      }
    }
    .c-schedule-drawer__title {
      color: var(--color);
      border-bottom: 1px solid var(--color);
      text-align: center;
      width: fit-content;
      margin-inline: auto;
      font-size: 24px;
      font-weight: 700;
      @media (max-width: 960px) {
        font-size: 16px;
      }
    }
    .c-schedule-drawer__body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-in-out;
      width: min(100%, 900px);
      margin-inline: auto;
    }
    .c-schedule-drawer__table {
      display: block;
      & tbody {
        margin-top: 2rem;
        display: grid;
        grid-template-columns: auto 1fr;
        @media (max-width: 960px) {
          margin-top: 1rem;
        }
      }
      & tr {
        display: grid;
        grid-template-columns: subgrid;
        grid-column: 1/-1;
        gap: 2.5rem;
        padding: 1rem 2rem;
        font-size: 16px;
        @media (max-width: 960px) {
          font-size: 14px;
          padding: 0.5rem 1rem;
          gap: 1.5rem;
        }
      }
      & tr:nth-of-type(2n + 1) {
        background-color: #f0f0f0;
      }
      & th,
      & td {
        color: var(--color);
        font-weight: 700;
        font-size: 20px;
        @media (max-width: 960px) {
          font-size: 14px;
          font-weight: 500;
        }
      }
      & td .u-pc-only {
        margin-left: 2rem;
        font-size: 16px;
        font-weight: 400;
        color: #333;
      }
    }
    .c-schedule-drawer__caption {
      margin-left: 2rem;
      margin-top: 1rem;
      @media (max-width: 960px) {
        font-size: 12px;
      }
    }
  }
  .c-schedule-drawer.is-open {
    .c-schedule-drawer__title-wrapper .toggler::after {
      opacity: 0;
    }
    .c-schedule-drawer__body {
      max-height: 2000px;
    }
  }
  .c-schedule-drawer:nth-of-type(2) {
    --color: var(--green);
  }
  .c-schedule-drawer:nth-of-type(3) {
    --color: var(--blue);
  }
}

/*=========================
  reason
=========================*/
.p-reason {
  position: relative;
  &::before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
    inset: 0;
    width: 70%;
    height: 94%;
    background-color: #fffff7;
    border-radius: 30px 0 0 30px;
    margin-top: auto;
    margin-left: auto;
    @media (max-width: 960px) {
      width: 80%;
    }
  }
  .c-section-title--reason {
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    @media (max-width: 960px) {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }
  .c-section-title__circle {
    grid-column: 2/3;
    grid-row: 1/2;
    font-weight: 700;
    color: var(--pink);
    border: 1px solid var(--pink);
    border-radius: 100vmax;
    aspect-ratio: 1/1;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    @media (max-width: 960px) {
      grid-column: initial;
      grid-row: initial;
      margin-inline: auto;
    }
  }
  .c-section-title__jp {
    text-align: right;
    @media (max-width: 960px) {
      text-align: center;
    }
  }
  .p-reason__text {
    width: fit-content;
    margin-left: auto;
    margin-bottom: 3rem;
    @media (max-width: 960px) {
      text-align: center;
      margin-bottom: 2rem;
      margin-inline: auto;
    }
  }
  .p-reason__item {
    width: min(100%, 950px);
    margin-bottom: 3rem;
    margin-right: auto;
  }
  .p-reason__item:nth-of-type(2n + 1) {
    margin-right: 0;
    margin-left: auto;
  }
  .p-reason__item.u-pc-only {
    display: block;
    @media (max-width: 960px) {
      display: none;
    }
  }
  .p-reason__item.u-pc-only:nth-of-type(5) {
    margin-bottom: 0;
  }
  .p-reason__item.u-sp-only {
    display: none;
    @media (max-width: 960px) {
      display: block;
      width: 345px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 2rem;
    }
  }
}

/*=========================
  personal
=========================*/
.p-personal {
  .p-personal__inner {
    border-radius: 30px;
    background-color: #fffff7;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
    padding: 4rem 1rem;
    @media (max-width: 960px) {
      padding: 1.5rem 1rem 2rem;
    }
  }
  .p-personal__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: flex-end;
    @media (max-width: 960px) {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }
  }
  .p-personal__item {
  }
  .p-personal__item-img {
    width: min(100%, 190px);
    margin-inline: auto;
    @media (max-width: 960px) {
      width: min(100%, 170px);
    }
  }
  .p-personal__item-text {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    @media (max-width: 960px) {
      font-size: 16px;
    }
  }
}

/*=========================
  wanted
=========================*/
.p-wanted {
  background-color: #fff;
  .c-job_description__item {
    border-top: var(--orange2) 1px solid;
    padding: 1.5rem 0;
    @media (max-width: 960px) {
      padding: 1rem 0;
    }
    .title-wrapper {
      cursor: pointer;
      display: grid;
      align-items: center;
      grid-template-columns: 1fr auto;
      .title {
        font-size: 20px;
        font-weight: 700;
        color: var(--orange2);
        @media (max-width: 960px) {
          font-size: 15px;
          text-align: center;
        }
      }
      .toggler {
        transform: scale(1, -1);
        transition: 0.4s ease-in-out;
        @media (max-width: 960px) {
          width: 19px;
        }
      }
    }
    .content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-in-out;
      & tbody {
        margin-top: 1.5rem;
        display: grid;
        grid-template-columns: 150px 1fr;
        @media (max-width: 960px) {
          margin-top: 1rem;
          grid-template-columns: 1fr;
        }
      }
      & tr {
        display: grid;
        grid-template-columns: subgrid;
        grid-column: 1 / -1;
        border-bottom: 1px solid #fff;
      }
      & td {
        border: none;
        padding: 1.5rem;
        @media (max-width: 960px) {
          padding: 0.5rem;
        }
      }
      & td:nth-child(1) {
        background-color: var(--orange2);
        color: #fff;
        font-weight: 600;
        @media (max-width: 960px) {
          text-align: center;
          font-size: 14px;
        }
      }
      & td:nth-child(2) {
        background-color: #fff9f0;
        @media (max-width: 960px) {
          font-size: 13px;
          padding-bottom: 1rem;
        }
      }
    }
  }
  .c-job_description__item.is-open {
    .title-wrapper .toggler {
      transform: scale(1, 1);
    }
    .content {
      max-height: 9000px;
    }
  }
}

/*=========================
  entry
=========================*/
.p-entry {
  background-color: #fffff7;
  .c-entry-form {
    background-color: #fff;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    @media (max-width: 960px) {
      padding: 1.5rem;
    }
    .form__items {
      display: grid;
      grid-template-columns: auto 1fr;
      margin-bottom: 3rem;
      @media (max-width: 960px) {
        grid-template-columns: 1fr;
        margin-bottom: 2rem;
      }
    }
    .form__item {
      display: grid;
      grid-template-columns: subgrid;
      grid-column: 1/-1;
      align-items: flex-start;
      gap: 4rem;
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: #bcbcbc 1px solid;
      @media (max-width: 960px) {
        gap: 0.5rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
      }
    }
    .form__item:last-child {
      border-bottom: none;
      padding-bottom: 0;
      margin-bottom: 0;
    }
    .label-wrapper {
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: center;
      font-size: 18px;
      font-weight: 600;
      @media (max-width: 960px) {
        font-size: 14px;
      }
      .req,
      .any {
        background-color: #a92e2b;
        color: #fff;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 500;
        padding: 4px 12px;
        margin-right: 1rem;
        @media (max-width: 960px) {
          font-size: 10px;
          margin-right: 0.5rem;
          padding: 2px 10px;
        }
      }
      .any {
        background-color: #454545;
      }
    }
    .input-wrapper {
      @media (max-width: 960px) {
        font-size: 14px;
      }
      input[type='text'],
      input[type='tel'],
      input[type='email'],
      select,
      textarea {
        width: 100%;
        border-radius: 4px;
        border: 1px solid #b2b2b2;
        padding: 4px;
        font-weight: 400;
      }
      select {
        width: min(100%, 300px);
      }
    }
    .acceptance {
      font-size: 18px;
      text-align: center;
      margin-bottom: 2rem;
      @media (max-width: 960px) {
        font-size: 14px;
      }
    }
    .submit-wrapper .wpcf7-submit {
      display: block;
      cursor: pointer;
      border-radius: 100vmax;
      border: none;
      width: min(100%, 420px);
      margin-inline: auto;
      background-color: var(--orange1);
      color: #fff;
      font-size: 20px;
      font-weight: 600;
      padding: 10px 40px;
      @media (max-width: 960px) {
        font-size: 16px;
      }
      @media (any-hover: hover) {
        &:hover {
          transition: opacity 0.3s;
          opacity: 0.7;
        }
      }
    }
  }
}

/*=========================
  faq
=========================*/
.p-faq {
  background-color: #fff;
  .p-faq__title {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    @media (max-width: 960px) {
      gap: 0rem;
    }
  }
  .p-faq__title::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--pink);
  }
  .p-faq__title-main {
    color: var(--pink);
    font-size: 50px;
    font-weight: 700;
    @media (max-width: 960px) {
      font-size: 19px;
    }
  }
  .p-faq__title-sub {
    font-size: 20px;
    font-weight: 500;
    @media (max-width: 960px) {
      font-size: 14px;
    }
  }
  .c-faq-items {
  }
  .c-faq-items__item {
    padding: 2rem 0;
    border-top: 1px solid #d3d3d3;
    @media (max-width: 960px) {
      padding: 1rem 0;
    }
  }
  .c-faq-items__q-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: stretch;
    gap: 1rem;
    position: relative;
    cursor: pointer;
    .q-icon {
      width: 30px;
      @media (max-width: 960px) {
        width: 24px;
      }
    }
    .q-title {
      font-size: 18px;
      font-weight: 700;
      @media (max-width: 960px) {
        font-size: 14px;
      }
    }
    .q-toggler {
      position: relative;
      width: 24px;
      aspect-ratio: 1/1;
      @media (max-width: 960px) {
        width: 16px;
      }
      &::before,
      &::after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--pink);
        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: 1rem;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 1rem;
    margin-right: 2rem;
    .a-icon {
      width: 30px;
      @media (max-width: 960px) {
        width: 24px;
      }
    }
    .a-text {
      font-size: 16px;
      font-weight: 400;
      @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;
    }
  }
}

/*=========================
  info
=========================*/
.p-info {
  background-color: #fffff7;
  .p-info__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5%;
    @media (max-width: 960px) {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  .p-info__item {
    .p-info__item-title {
      font-size: 20px;
      border-bottom: 1px solid #707070;
      padding-bottom: 0.5rem;
      margin-bottom: 1rem;
      @media (max-width: 960px) {
        font-size: 15px;
      }
    }
    .p-info__item-map {
      & iframe {
        width: 100%;
        aspect-ratio: 460 / 260;
      }
    }
    .p-info__item-table {
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 10%;
      @media (max-width: 960px) {
        column-gap: 1.5rem;
      }
    }
    .p-info__item-table-row {
      display: grid;
      grid-template-columns: subgrid;
      grid-column: 1/-1;
      border-bottom: 1px solid #c4c4c4;
      padding-bottom: 0.5rem;
      margin: 0.5rem;
      @media (max-width: 960px) {
        font-size: 13px;
      }
    }
    .p-info__item-table-th {
      font-weight: 500;
    }
    .p-info__item-table-td {
      font-weight: 400;
    }
  }
}

/*=========================
  footer
=========================*/
.l-footer {
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/*=========================
  floating button
=========================*/
.l-floating-buttons {
  position: fixed;
  z-index: 10;
  bottom: 10%;
  right: 0;
  @media (max-width: 960px) {
    bottom: 0;
    width: 100%;
    z-index: 1001;
  }
  .c-floating-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 20px 0 0 20px;
    width: 200px;
    height: 80px;
    background-color: #fb8c31;
    color: #fff;
    margin-bottom: 1.5rem;
    opacity: 1;
    @media (max-width: 960px) {
      height: 50px;
    }
  }
  .c-floating-button::before {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px 0 0 20px;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  @media (any-hover: hover) {
    .c-floating-button:hover::before {
      opacity: 0.25;
    }
  }
  .c-floating-button--entry {
    .c-floating-button__row1 {
      font-size: 12px;
      font-weight: 700;
    }
    .c-floating-button__row2 {
      font-size: 20px;
      font-weight: 700;
    }
    @media (max-width: 960px) {
      width: 100%;
      margin: 0;
      border-radius: 5px;
      .c-floating-button__row1 {
        font-size: 12px;
        font-weight: 700;
      }
      .c-floating-button__row2 {
        font-size: 17px;
        font-weight: 700;
      }
    }
  }
  .c-floating-button--tel {
    background-color: #3c9249;
    @media (max-width: 960px) {
      display: none;
    }
    .c-floating-button__row1 {
      font-size: 14px;
    }
    .c-floating-button__row2 {
      font-size: 24px;
      letter-spacing: 0.1em;
    }
  }
}
@media (max-width: 960px) {
  body {
    margin-bottom: 50px;
  }
}
