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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media screen and (max-width: 960px) {
  html {
    scroll-padding-top: 60px;
  }
}
body {
  /* font-family: "Zen Maru Gothic", sans-serif; */
  font-family: 'Zen Kaku Gothic New', sans-serif;
  /* font-family: "Noto Sans JP", sans-serif; */
  color: #0d0d0d;
  /* font-size: ; */
  line-height: 1.7;
  /* max-width: 1920px;
  margin-inline: auto; */
  position: relative;
  /* overflow-x: clip; */
}
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: 1rem; */
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  color: #028afa;
  /* 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;
  }
}

section {
  overflow-x: clip;
}

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

.c-sec-title-dots {
  margin-inline: auto;
  margin-top: 10px;
  margin-bottom: 60px;
  @media (max-width: 960px) {
    margin-bottom: 40px;
  }
}

/* button */
.c-button {
  --bg-color: pink;
  --color: #333333;
  /* --bg-color-lighten: color-mix(in srgb, var(--bg-color), white 25%);
  --color-lighten: color-mix(in srgb, var(--color), white 25%); */
  --r: 0px;
  background-color: var(--bg-color);
  color: var(--color);
  border-radius: var(--r);
  padding: 0.5rem 1rem;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* font-size: 1.25rem; */
  /* font-weight: bold; */
  position: relative;
  .icon {
    margin-right: 0.5rem;
  }
  @media (any-hover: hover) {
    /* &:hover {
      opacity: 1;
      background-color: var(--bg-color-lighten);
      color: var(--color-lighten);
      border: var(--color-lighten) 1px solid;
    } */
    &::before {
      border-radius: var(--r);
      content: '';
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background-color: #fff;
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }
    &:hover {
      opacity: 1;
    }
    &:hover::before {
      opacity: 0.25;
    }
  }
}

/*=========================
  header
=========================*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 40px;
  background-color: transparent;
  transition: background 0.3s ease;
  z-index: 1001;
  @media (max-width: 1000px) {
    padding: 10px 8px;
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  .header-logo {
    display: block;
    width: 250px;
    opacity: 1;
    @media (max-width: 960px) {
      width: 135px;
    }
  }
  .header-nav {
    @media (max-width: 1000px) {
      display: none;
    }
    .nav-items {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 24px;
    }
    .nav-item {
      font-family: 'Zen Maru Gothic', sans-serif;
      font-weight: 700;
      color: #242424;
    }
  }
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  @media (max-width: 1000px) {
    background: transparent;
  }
}

.sp-hamburger {
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  background-color: #028afa;
  z-index: 1002;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10%;
  width: 50px;
  height: 50px;
  aspect-ratio: 1/1;
  transition: 0.3s;
  @media (max-width: 1000px) {
    display: flex;
  }
  .line {
    background-color: #fff;
    height: 2px;
    width: 60%;
    transition: 0.3s;
  }
}
.sp-hamburger.is-active {
  background-color: transparent;
  .line {
    background-color: #212880;
  }
  .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: #e6f4ff;
  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: 100px;
    margin-bottom: 28px;
  }
  .nav-item {
    font-family: 'Zen Maru Gothic', sans-serif;
    text-align: center;
    text-wrap: balance;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
  }
  .banner-link {
    display: block;
    width: 270px;
    margin-inline: auto;
  }
}
.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;
}

/*=========================
  mv
=========================*/
.sec-mv {
  background: url(../img/mv-img.webp) no-repeat;
  background-size: cover;
  padding: 180px 40px 50px;
  height: calc(920 / 1440 * 100vw);
  min-height: 920px;
  max-height: 1200px;
  position: relative;
  @media (max-width: 960px) {
    height: 620px;
    min-height: auto;
    max-height: initial;
    background-position: 65% 50%;
    padding: 180px 8px 50px;
  }
  .mv-lead {
    position: relative;
    z-index: 2;
  }
  .mv-lead__sub {
    font-size: 43px;
    font-weight: 700;
    color: #0f2f86;
    margin-bottom: 20px;
    @media (max-width: 960px) {
      font-size: 24px;
      margin-bottom: 10px;
    }
  }
  .mv-lead__main {
    width: calc(730 / 1440 * 100vw);
    min-width: 670px;
    max-width: 730px;
    margin-bottom: 60px;
    @media (max-width: 960px) {
      width: 340px;
      min-width: auto;
    }
  }
  .mv-location {
    width: fit-content;
    position: relative;
    z-index: 2;
  }
  .mv-location__title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #04a7fc;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
    @media (max-width: 960px) {
      font-size: 19px;
      justify-content: center;
    }
    &::before,
    &::after {
      content: '';
      display: block;
      width: 70px;
      height: 3px;
      background-color: #04a7fc;
      @media (max-width: 960px) {
        width: 70px;
        height: 2px;
      }
    }
  }
  .mv-location__items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 35px;
    @media (max-width: 960px) {
      margin-bottom: 16px;
    }
  }
  .mv-location__item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #0f2f86;
    font-size: 25px;
    font-weight: 700;
    font-family: 'Noto Sans JP', sans-serif;
    @media (max-width: 960px) {
      font-size: 20px;
    }
  }
  .mv-location__banners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 38px;
    @media (max-width: 960px) {
      gap: 26px;
    }
  }
  .mv-location__banner {
    width: 200px;
    position: relative;
    @media (max-width: 960px) {
      width: 130px;
    }
    &::before {
      border-radius: 100vmax;
      content: '';
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background-color: #fff;
      opacity: 0;
      transition: opacity 0.3s;
      pointer-events: none;
    }
    &:hover {
      opacity: 1;
    }
    &:hover::before {
      opacity: 0.25;
    }
  }
  .mv-wave {
    position: absolute;
    z-index: 1;
    bottom: -1px;
    left: 0;
    right: 0;
    width: 100%;
  }
}

/*=========================
  worry
=========================*/
section.sec-worry {
  padding: 100px 0 180px;
  background-color: #028afa;
  position: relative;
  @media (max-width: 960px) {
    padding: 80px 0 90px;
  }
  .l-container {
    position: relative;
    z-index: 2;
  }
  .worry-title {
    width: 542px;
    margin-inline: auto;
    margin-bottom: 8px;
    @media (max-width: 960px) {
      display: none;
    }
  }
  .worry-title-sp {
    width: 278px;
    margin-inline: auto;
    margin-bottom: 24px;
    display: none;
    @media (max-width: 960px) {
      display: block;
    }
  }
  .worry-text {
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 50px;
    @media (max-width: 960px) {
      font-size: 18px;
    }
  }
  .worry-img {
    margin-bottom: 30px;
    display: block;
    @media (max-width: 960px) {
      display: none;
    }
  }
  .worry-img-sp {
    width: 374px;
    margin-inline: auto;
    margin-bottom: 30px;
    display: none;
    @media (max-width: 960px) {
      display: block;
    }
  }
  .worry-lead {
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    color: #ffee00;
    font-size: 40px;
    font-weight: 700;
    @media (max-width: 960px) {
      font-size: 30px;
    }
  }
  .worry-wave {
    position: absolute;
    bottom: -1px;
    width: 100%;
  }
}

/*=========================
  pattern
=========================*/
.sec-pattern {
  padding: 80px 0 140px;
  position: relative;
  @media (max-width: 960px) {
    padding: 40px 0 100px;
  }
  .l-container {
    position: relative;
    z-index: 2;
  }
  .pattern-title {
    width: 740px;
    margin-inline: auto;
    margin-bottom: 80px;
    @media (max-width: 960px) {
      display: none;
    }
  }
  .pattern-title-sp {
    width: min(100%, 374px);
    margin-inline: auto;
    margin-bottom: 30px;
    display: none;
    @media (max-width: 960px) {
      display: block;
    }
  }
  .pattern-items-wrapper {
    @media (max-width: 960px) {
      overflow-x: scroll;
      margin-bottom: 20px;
    }
  }
  .pattern-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    @media (max-width: 960px) {
      justify-content: flex-start;
    }
  }
  .pattern-item {
    @media (max-width: 960px) {
      flex: 0 0 auto;
      width: 300px;
    }
  }
  .pattern-lead {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 700;
    color: #028afa;
    @media (max-width: 960px) {
      flex-direction: column;
      font-size: 24px;
    }
    .illust {
      width: 116px;
      margin-right: 8px;
      @media (max-width: 960px) {
        margin-right: 0;
        margin-bottom: 8px;
      }
    }
  }
  .pattern-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
  }
}

/*=========================
  schedule
=========================*/
.sec-schedule {
  padding: 80px 0;
  background-color: #e6f4ff;
  @media (max-width: 960px) {
    padding: 50px 0;
  }
  .schedule-title {
    width: 340px;
    margin-inline: auto;
    margin-bottom: 80px;
    @media (max-width: 960px) {
      width: 285px;
      margin-bottom: 50px;
    }
  }
  .schedule-item-wrapper {
    @media (max-width: 960px) {
      overflow-x: scroll;
      padding-bottom: 10px;
      margin-bottom: 20px;
    }
  }
  .schedule-item {
    width: 100%;
    margin-inline: auto;
    margin-bottom: 60px;
    @media (max-width: 960px) {
      width: 566px;
      max-width: initial;
      margin-bottom: 0;
    }
  }
  /* .schedule-item:last-of-type {
    margin-bottom: 0;
  } */
}

/*=========================
  opening
=========================*/
.sec-opening {
  padding: 0px 0 80px;
  background-color: #028afa;
  color: #fff;
  position: relative;
  .opening-bg-01 {
    position: absolute;
    width: 35%;
    top: -1px;
    left: 0%;
  }
  .opening-bg-02 {
    position: absolute;
    width: 40%;
    bottom: -1px;
    right: 0%;
  }
  .l-container {
    position: relative;
    z-index: 2;
  }
  .opening-title {
    width: 788px;
    margin-inline: auto;
    margin-bottom: 0px;
    translate: 0% -40%;
    @media (max-width: 960px) {
      display: none;
    }
  }
  .opening-title-sp {
    width: min(100%, 374px);
    margin-inline: auto;
    margin-bottom: 0px;
    translate: 0% -40%;
    display: none;
    @media (max-width: 960px) {
      display: block;
    }
  }
  .opening-subtitle {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    @media (max-width: 960px) {
      display: none;
    }
  }
  .opening-subtitle-sp {
    width: 275px;
    margin-inline: auto;
    margin-bottom: 30px;
    display: none;
    @media (max-width: 960px) {
      display: block;
    }
  }
  .border {
    width: min(100%, 630px);
    margin-inline: auto;
    margin-bottom: 25px;
    @media (max-width: 960px) {
      display: none;
    }
  }
  .opening-flex-title {
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
    @media (max-width: 960px) {
      font-size: 20px;
    }
  }
  .opening-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
    @media (max-width: 960px) {
      gap: 5px;
    }
  }
  .opening-item {
    width: calc((100% - 80px) / 3);
    max-width: 200px;
    @media (max-width: 960px) {
      width: 120px;
    }
  }
  .opening-text {
    text-align: center;
    font-weight: 500;
    margin-bottom: 40px;
    @media (max-width: 960px) {
      font-size: 15px;
    }
  }
  .opening-lead {
    width: 624px;
    margin-inline: auto;
    margin-bottom: 16px;
    @media (max-width: 960px) {
      display: none;
    }
  }
  .opening-lead-sp {
    width: 328px;
    margin-inline: auto;
    margin-bottom: 16px;
    display: none;
    @media (max-width: 960px) {
      display: block;
    }
  }
  .opening-button {
    border-radius: 100vmax;
    background-color: #faea04;
    color: #0f2f86;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin-inline: auto;
    font-weight: 700;
    padding: 12px 8px 12px 20px;
    position: relative;
    @media (max-width: 960px) {
      padding: 12px 5px 12px 12px;
    }
    .icon {
      margin-left: 8px;
    }
    @media (any-hover: hover) {
      &::before {
        content: '';
        display: block;
        position: absolute;
        inset: 0;
        border-radius: 100vmax;
        background-color: #fff;
        opacity: 0;
        transition: opacity 0.3s;
        pointer-events: none;
      }
      &:hover {
        opacity: 1;
      }
      &:hover::before {
        opacity: 0.25;
      }
    }
  }
}

/*=========================
  merit
=========================*/
.sec-merit {
  padding: 80px 0 150px;
  position: relative;
  @media (max-width: 960px) {
    padding: 60px 0 100px;
  }
  .l-container {
    position: relative;
    z-index: 2;
  }
  .merit-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #028afa;
    @media (max-width: 960px) {
      font-size: 25px;
    }
    .number {
      font-size: 60px;
      color: #fdb00f;
      line-height: 0.5;
      margin-inline: 4px;
      @media (max-width: 960px) {
        display: inline-block;
        margin-top: 8px;
        font-size: 55px;
      }
    }
  }
  .merit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    @media (max-width: 960px) {
      flex-direction: column-reverse !important;
    }
    .merit-item__body {
      flex: 1 1 480px;
      max-width: 540px;
      @media (max-width: 960px) {
        flex: 1 1 auto;
      }
    }
    .merit-item__title {
      display: flex;
      align-items: center;
      color: #028afa;
      font-size: 30px;
      font-weight: 700;
      margin-bottom: 10px;
      @media (max-width: 960px) {
        flex-direction: column;
        font-size: 23px;
        text-align: center;
        margin-bottom: 16px;
      }
      .number {
        width: 67px;
        margin-right: 8px;
      }
    }
    .merit-item__text {
    }
    .merit-item__list {
      margin: 16px 0;
      li {
        display: grid;
        grid-template-columns: auto 1fr;
      }
      li::before {
        content: '';
        display: block;
        aspect-ratio: 1/1;
        width: 16px;
        background-color: #028afa;
        border-radius: 100vmax;
        margin-top: 6px;
        margin-right: 6px;
      }
    }
    .merit-item__img {
      width: 355px;
      @media (max-width: 960px) {
        margin-bottom: 20px;
      }
    }
  }
  .merit-item:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
  .merit-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
  }
}

/*=========================
  staff
=========================*/
.sec-staff {
  padding: 60px 0 100px;
  background-color: #e6f4ff;
  .staff-title {
    width: 300px;
    margin-inline: auto;
    margin-bottom: 24px;
    @media (max-width: 960px) {
      width: 243px;
    }
  }
  .staff-text {
    text-align: center;
    margin-bottom: 60px;
  }
  .staff-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    @media (max-width: 960px) {
      flex-direction: column;
    }
  }
  .c-interview {
    width: calc((100% - 10%) / 3);
    @media (max-width: 960px) {
      width: 80%;
      max-width: 245px;
      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(230, 244, 255, 0.9);
      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: 2rem 0 4rem;
      background-color: #fff;
      border-radius: 5px;
      transform: translateY(8px);
      transition: transform 0.3s ease;
      box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
      @media (max-width: 960px) {
        padding: 30px 10px;
        height: 80vh;
        max-height: 700px;
      }
    }
    .modal-overlay.is-active .modal-window {
      transform: translateY(0);
    }
    .modal-window__number {
      width: 50px;
      margin-inline: auto;
      margin-bottom: 20px;
    }
    .modal-window__scroller {
      max-height: 90%;
      overflow-y: scroll;
      width: fit-content;
      @media (max-width: 960px) {
        max-height: 85%;
      }
    }
    .modal-window__inner {
      width: min(90%, 750px);
      margin-inline: auto;
    }
    .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__img {
      width: 100%;
      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 {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 5px;
      font-family: 'Zen Maru Gothic', sans-serif;
      font-weight: 700;
      font-size: 20px;
      color: #028afa;
      margin-bottom: 10px;
      @media (max-width: 960px) {
        font-size: 18px;
        text-wrap: balance;
      }
    }
    .modal-window__lead:nth-of-type(1)::before {
      background: url(../img/interview-text-01.webp) no-repeat;
    }
    .modal-window__lead:nth-of-type(2)::before {
      background: url(../img/interview-text-02.webp) no-repeat;
    }
    .modal-window__lead:nth-of-type(3)::before {
      background: url(../img/interview-text-03.webp) no-repeat;
    }
    .modal-window__lead:nth-of-type(4)::before {
      background: url(../img/interview-text-04.webp) no-repeat;
    }
    .modal-window__lead:nth-of-type(5)::before {
      background: url(../img/interview-text-05.webp) no-repeat;
    }
    .modal-window__lead:nth-of-type(1)::before,
    .modal-window__lead:nth-of-type(2)::before,
    .modal-window__lead:nth-of-type(3)::before,
    .modal-window__lead:nth-of-type(4)::before,
    .modal-window__lead:nth-of-type(5)::before {
      content: '';
      display: block;
      background-size: contain;
      width: 34px;
      aspect-ratio: 1/1;
      @media (max-width: 960px) {
        width: 30px;
      }
    }
    .modal-window__text {
      font-size: 16px;
      margin-bottom: 30px;
      @media (max-width: 960px) {
        font-size: 14px;
      }
    }
  }
}

/*=========================
  job
=========================*/
.sec-job {
  padding: 80px 0 250px;
  position: relative;
  @media (max-width: 960px) {
    padding: 80px 0 150px;
  }
  .l-container {
    position: relative;
    z-index: 2;
  }
  .job-title {
    color: #028afa;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    @media (max-width: 960px) {
      font-size: 25px;
    }
  }
  .c-job_description__item {
    background-color: #e6f4ff;
    padding: 20px 20px;
    border-radius: 10px;
    &:not(:last-of-type) {
      margin-bottom: 40px;
    }
    @media (max-width: 960px) {
      padding: 16px 10px;
    }
    .title-wrapper {
      cursor: pointer;
      display: grid;
      align-items: center;
      grid-template-columns: 1fr auto;
      .title {
        font-size: 20px;
        color: #0f2f86;
        font-weight: 700;
        @media (max-width: 960px) {
          font-size: 20px;
        }
      }
      .toggler {
        transform: scale(1, -1);
        transition: 0.4s ease-in-out;
        @media (max-width: 960px) {
          width: 30px;
        }
      }
    }
    .content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-in-out;
      & tbody {
        border-radius: 10px;
        background-color: #fff;
        margin-top: 1.5rem;
        display: grid;
        grid-template-columns: 25% 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 #d8e3ec;
      }
      & tr:last-of-type {
        border-bottom: none;
      }
      & td {
        border: none;
        padding: 1.5rem;
        @media (max-width: 960px) {
          padding: 0.5rem;
        }
      }
      & td:nth-child(1) {
        font-family: 'Zen Maru Gothic', sans-serif;
        color: #0f2f86;
        font-weight: 700;
        @media (max-width: 960px) {
          font-size: 16px;
          padding-bottom: 0;
        }
      }
      & td:nth-child(2) {
        @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;
    }
  }
  .job-wave {
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
  }
}

/*=========================
  entry
=========================*/
.sec-entry {
  padding: 10px 0 280px;
  background-color: #028afa;
  position: relative;
  @media (max-width: 960px) {
    padding: 20px 0 150px;
  }
  .l-container {
    position: relative;
    z-index: 2;
  }
  .entry-title {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
    @media (max-width: 960px) {
      font-size: 25px;
      margin-bottom: 40px;
    }
    .icon {
      width: 80px;
      margin-inline: auto;
      @media (max-width: 960px) {
        width: 48px;
        margin-bottom: 10px;
      }
    }
  }
  .form-wrapper {
    background-color: #fff;
    border-radius: 15px;
    padding: 50px 30px;
    @media (max-width: 960px) {
      padding: 26px 16px;
    }
  }
  .c-form-table {
    display: grid;
    grid-template-columns: auto 1fr;
    max-width: 900px;
    margin-inline: auto;
    @media (max-width: 960px) {
      max-width: 500px;
      margin-inline: auto;
    }
    .form-item {
      display: grid;
      grid-template-columns: subgrid;
      grid-column: 1/-1;
      gap: 50px;
      padding-bottom: 30px;
      margin-bottom: 30px;
      border-bottom: 1px solid #bcbcbc;
      @media (max-width: 960px) {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-bottom: 20px;
        margin-bottom: 20px;
      }
    }
    .form-item:last-of-type {
      border-bottom: none;
      margin-bottom: 0;
    }
    .title-wrapper {
      display: grid;
      grid-template-columns: 55px 1fr;
      align-items: flex-start;
      gap: 1rem;
      margin-top: 4px;
      @media (max-width: 960px) {
        gap: 8px;
      }
      .label {
        width: 54px;
        background-color: #a92e2b;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        font-weight: 500;
        border-radius: 5px;
        padding: 2px 10px;
        margin-top: 3px;
        @media (max-width: 960px) {
          font-size: 10px;
          margin-top: 1px;
        }
      }
      .title {
        font-size: 18px;
        font-weight: 500;
        @media (max-width: 960px) {
          font-size: 14px;
          font-weight: 500;
        }
      }
    }
    .input-wrapper {
      .wpcf7-form-control {
        width: 100%;
      }
      input[type='text'],
      input[type='tel'],
      input[type='email'],
      textarea {
        border-radius: 4px;
        border: 1px solid #b2b2b2;
        padding: 4px;
        font-weight: 400;
      }
      .wpcf7-select {
        border-radius: 4px;
        border: 1px solid #b2b2b2;
        padding: 4px;
        font-weight: 400;
      }
    }
  }
  .acceptance-wrapper {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
    .wpcf7-list-item {
      margin: 0;
    }
  }
  .button-wrapper {
    position: relative;
    width: fit-content;
    margin-inline: auto;
    transition: opacity 0.3s;
    @media (any-hover: hover) {
      &:hover {
        opacity: 0.7;
      }
    }
    &::before {
      content: '';
      display: block;
      background: url(../img/icon-submit.svg) no-repeat;
      background-size: contain;
      width: 40px;
      height: 40px;
      pointer-events: none;
      position: absolute;
      z-index: 1;
      background-color: #fff;
      border-radius: 100vmax;
      top: 50%;
      right: 0px;
      translate: -50% -50%;
    }
    .wpcf7-submit {
      cursor: pointer;
      border: none;
      --color: #faea04;
      --r: 100vmax;
      background: #028afa;
      color: var(--color);
      border-radius: var(--r);
      padding: 20px 20px;
      width: 400px;
      margin-inline: auto;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-size: 24px;
      font-weight: 600;
      line-height: 1;
      position: relative;
      @media (max-width: 960px) {
        width: 245px;
        font-size: 16px;
      }
    }
    .wpcf7-spinner {
      position: absolute;
      bottom: -30px;
    }
  }
  .wpcf7-not-valid-tip,
  .wpcf7-response-output {
    @media (max-width: 960px) {
      font-size: 14px;
    }
  }
  .entry-wave {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
  }
}

/*=========================
  faq
=========================*/
.sec-faq {
  padding: 80px 0;
  @media (max-width: 960px) {
    padding: 40px 0 80px;
  }
  .faq-title {
    text-align: center;
    color: #028afa;
    font-size: 30px;
    margin-bottom: 80px;
    @media (max-width: 960px) {
      font-size: 25px;
      margin-bottom: 40px;
    }
    .c-sec-title-dots {
      margin: 10px auto 4px;
    }
    .sub {
      font-size: 20px;
      @media (max-width: 960px) {
        font-size: 18px;
      }
    }
  }

  .c-faq-items__item {
    padding: 28px 24px;
    background-color: #e6f4ff;
    border-radius: 10px;
    margin-bottom: 20px;
    @media (max-width: 960px) {
      padding: 16px 10px;
    }
  }
  .c-faq-items__q-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    position: relative;
    cursor: pointer;
    .q-icon {
      width: 53px;
      aspect-ratio: 1/1;
      background-color: #028afa;
      color: #fff;
      border-radius: 100vmax;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 30px;
      font-weight: 700;
      @media (max-width: 960px) {
        width: 31px;
        font-size: 18px;
      }
    }
    .q-title {
      color: #101010;
      font-size: 25px;
      font-weight: 700;
      @media (max-width: 960px) {
        font-size: 16px;
      }
    }
    .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: #028afa;
        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: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 1rem;
    margin-right: 2rem;
    @media (max-width: 960px) {
      margin-top: 1rem;
    }
    .a-icon {
      width: 53px;
      aspect-ratio: 1/1;
      background-color: #fdb00f;
      color: #fff;
      border-radius: 100vmax;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 30px;
      font-weight: 700;
      @media (max-width: 960px) {
        width: 31px;
        font-size: 18px;
      }
    }
    .a-text {
      font-size: 20px;
      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;
    }
  }
}

/*=========================
  office
=========================*/
.sec-office {
  padding: 80px 0 260px;
  background-color: #e6f4ff;
  @media (max-width: 960px) {
  padding: 80px 0;
  }
  .office-title {
    text-align: center;
    color: #028afa;
    font-size: 30px;
    @media (max-width: 960px) {
      font-size: 25px;
    }
  }
  .office-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 10%;
    @media (max-width: 960px) {
      flex-direction: column;
      gap: 50px;
    }
  }
  .office-item {
    width: 450px;
    flex: 1 1 auto;
    @media (max-width: 960px) {
      width: 100%;
    }
  }
  .office-item__title {
    color: #101010;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 10px;
    @media (max-width: 960px) {
      font-size: 20px;
    }
  }
  .office-item__map {
    margin-bottom: 10px;
    iframe {
      width: 100%;
      aspect-ratio: 400/280;
    }
  }
  .office-item__table {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 8px;
    @media (max-width: 960px) {
      font-size: 14px;
    }
    .row {
      display: grid;
      grid-template-columns: subgrid;
      grid-column: 1/-1;
      border-bottom: 1px solid #fff;
      padding-bottom: 4px;
      margin-bottom: 4px;
    }
    .row:last-of-type {
      border-bottom: none;
    }
    .icon {
      margin-top: 8px;
    }
  }
}

/*=========================
  footer
=========================*/
.footer {
  padding: 10px;
  background-color: #0f2f86;
  color: #fff;
  text-align: center;
  font-size: 14px;
  @media (max-width: 960px) {
    font-size: 12px;
  }
}

.sticky-banner {
  position: fixed;
  z-index: 10;
  bottom: 3%;
  right: 0%;
  @media (max-width: 960px) {
    display: none;
  }
  .banner-link {
    display: block;
    width: 350px;
    opacity: 1;
    transition: filter 0.3s ease;
    @media (any-hover: hover) {
      &:hover {
        filter: brightness(1.15) saturate(0.8);
      }
    }
  }
  .banner-link:first-of-type {
    margin-bottom: 18px;
  }
}
