@charset "utf-8";
/*=========================
  Common
=========================*/
/* font define */
.font-hiragino {
  font-family: 'Hiragino Kaku Gothic ProN';
}
.font-noto-sans {
  font-family: 'Noto Sans JP', sans-serif;
}

.bold {
  font-weight: 700;
}

/* color */
:root {
  --blue: #0077ad;
  --orange: #fb8c31;
}

/* variables */
:root {
  --section-padding: 5rem 0;
}
@media (max-width: 960px) {
  :root {
    --section-padding: 3rem 0;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
@media screen and (max-width: 960px) {
  html {
    scroll-padding-top: 60px;
  }
}
body {
  font-family: '游ゴシック体', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', sans-serif;
  /* color: ; */
  /* font-size: ; */
  line-height: 1.7;
  /* max-width: 1920px;
  margin-inline: auto; */
  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: 1rem; */
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  /* line-height: 1; */
  font-size: inherit;
  font-weight: inherit;
}

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

.container {
  width: calc(100% - 2rem);
  max-width: 1000px;
  margin-inline: auto;
}

/*=========================
  header
=========================*/
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  .header__inner {
    width: calc(100% - 2rem);
    max-width: 1000px;
    margin-inline: auto;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    @media (max-width: 960px) {
      height: 60px;
    }
  }
  .header__logo-wrapper {
    opacity: 1;
  }
  .header__logo {
    width: 263px;
    @media (max-width: 960px) {
      width: 110px;
    }
  }
  .header__schools {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-left: 1rem;
    margin-right: auto;
    @media (max-width: 960px) {
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 0.25rem;
      margin-left: 10px;
    }
    .header__school {
      color: var(--blue);
      font-weight: 600;
      @media (max-width: 960px) {
        font-size: 11px;
      }
    }
  }
  .header__hamburger {
    display: flex;
    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;
    .line {
      height: 2px;
      width: 60%;
      background-color: var(--blue);
      transition: 0.3s;
    }
  }
  .header__hamburger.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 {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: -120%;
    width: min(90vw, 800px);
    height: 100dvh;
    background-color: #488cca;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
    @media (max-width: 960px) {
      width: 100vw;
    }
    .nav-items {
      width: 100%;
      margin-top: 15vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      @media (max-width: 960px) {
        margin-top: 8vh;
        gap: 1.5rem;
      }
      .nav-items__item a {
        text-align: center;
        text-wrap: balance;
        font-size: 18px;
        font-weight: 700;
        @media (max-width: 960px) {
          font-size: 16px;
        }
      }
    }
  }
  .sp-nav.active {
    right: 0;
  }
  .overlay {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background-color: #000;
    opacity: 0.75;
  }
  .overlay.active {
    display: block;
  }
}
body.no-scroll {
  overflow: hidden;
  height: 100%;
}

/*=========================
  MV
=========================*/
section.mv {
  position: relative;
  .mv__img {
    min-height: 650px;
    object-fit: cover;
    @media (max-width: 960px) {
      min-height: 450px;
    }
  }
  .mv__inner {
    position: absolute;
    z-index: 1;
    bottom: 10%;
    left: 0;
    right: 0;
    width: calc(100% - 2rem);
    max-width: 1000px;
    margin-inline: auto;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    @media (max-width: 960px) {
      align-items: center;
    }
  }
  .mv__labels {
    color: var(--orange);
    font-size: 29px;
    margin-bottom: 1rem;
    @media (max-width: 960px) {
      font-size: 20px;
    }
    .label {
      color: #fff;
      font-weight: 700;
      background-color: var(--orange);
      border-radius: 100vmax;
      padding: 0.5rem 1rem;
    }
  }
  .mv__lead1 {
    font-size: 50px;
    font-weight: 700;
    color: var(--blue);
    text-align: right;
    margin-bottom: 1rem;
    @media (max-width: 960px) {
      font-size: 22px;
    }
    .small {
      font-size: 0.75em;
      margin-left: 0.5em;
    }
  }
  .mv__lead2 {
    background: rgba(255, 255, 255, 0.7);
    padding: 1rem 2rem;
    font-size: 32px;
    font-weight: 700;
    @media (max-width: 960px) {
      font-size: 16px;
    }
    .red {
      color: #ff0000;
    }
  }
}

/*=========================
  worries
=========================*/
section.worries {
  padding: var(--section-padding);
  .worries__content1 {
    border-radius: 16px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    padding: 3rem 2rem;
    margin-bottom: 4rem;
    @media (max-width: 960px) {
      padding: 2rem 1rem;
      margin-bottom: 3rem;
    }
    .content1-title {
      color: var(--blue);
      font-size: 40px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 1.5rem;
      @media (max-width: 960px) {
        font-size: 20px;
      }
    }
    .content1-text {
      font-size: 20px;
      font-weight: 700;
      text-align: center;
      line-height: 2;
      margin-bottom: 1rem;
      @media (max-width: 960px) {
        font-size: 14px;
        text-align: justify;
      }
    }
    .content1-list {
      font-size: 20px;
      font-weight: 700;
      line-height: 2;
      color: var(--blue);
      text-align: center;
      @media (max-width: 960px) {
        font-size: 14px;
        text-align: justify;
      }
      li {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 0.5rem;
        width: fit-content;
        margin-inline: auto;
        @media (max-width: 960px) {
          align-items: flex-start;
          width: 100%;
        }
      }
      li::before {
        content: '';
        background: url(../img/checkbox.svg) no-repeat;
        background-size: contain;
        display: block;
        width: 20px;
        aspect-ratio: 1/1;
        @media (max-width: 960px) {
          width: 12px;
          margin-top: 8px;
        }
      }
    }
  }
  .worries__content2 {
    .content2-title {
      color: var(--blue);
      background-color: #e2f5ff;
      font-size: 36px;
      font-weight: 700;
      border-top: 2px solid var(--blue);
      border-bottom: 2px solid var(--blue);
      text-align: center;
      margin-bottom: 1.5rem;
      @media (max-width: 960px) {
        font-size: 22px;
      }
    }
    .content2-body {
      display: flex;
      align-items: flex-start;
      gap: 5%;
      @media (max-width: 960px) {
        flex-direction: column;
        gap: 2rem;
      }
      .content2-text {
        width: 60%;
        line-height: 2;
        font-size: 18px;
        font-weight: 500;
        @media (max-width: 960px) {
          width: 100%;
          font-size: 15px;
        }
        .bold {
          font-weight: 700;
        }
      }
      .content2-img {
        width: 35%;
        @media (max-width: 960px) {
          width: min(100%, 400px);
          margin-inline: auto;
        }
      }
    }
  }
}

/*=========================
  story
=========================*/
section.story {
  padding: var(--section-padding);
  background-color: #3798d4;
  .story__title {
    margin-bottom: 3rem;
    @media (max-width: 960px) {
      margin-bottom: 2rem;
    }
    .label {
      color: var(--blue);
      background-color: #fff;
      border-radius: 100vmax;
      width: 280px;
      margin-inline: auto;
      text-align: center;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 0.5rem;
      padding: 0.25rem;
      @media (max-width: 960px) {
        width: 150px;
        font-size: 14px;
      }
    }
    .title-img-pc {
      width: min(100%, 893px);
      margin-inline: auto;
      @media (max-width: 960px) {
        display: none;
      }
    }
    .title-img-sp {
      display: none;
      width: min(100%, 330px);
      margin-inline: auto;
      @media (max-width: 960px) {
        display: block;
      }
    }
  }
  .story__items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    @media (max-width: 960px) {
      flex-direction: column;
    }
  }
  .story__item {
    width: 50%;
    background-color: #fff;
    border-radius: 20px;
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
    margin-top: 1rem;
    @media (max-width: 960px) {
      width: 100%;
      padding: 2rem 1rem 1.5rem;
    }
    .item-label {
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      right: 0;
      translate: 0% -50%;
      background-color: #608bab;
      color: #fff;
      font-size: 22px;
      font-weight: 700;
      text-align: center;
      width: 150px;
      margin-inline: auto;
      border-radius: 100vmax;
      padding: 0.25rem;
      @media (max-width: 960px) {
        width: 120px;
        font-size: 15px;
      }
    }
    .before-title,
    .after-title {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1rem;
      align-items: center;
      font-size: 20px;
      font-weight: 700;
      @media (max-width: 960px) {
        font-size: 15px;
      }
      .before,
      .after {
        background-color: #0077ad;
        color: #fff;
        font-size: 20px;
        font-weight: 700;
        padding: 0.5rem 0.75rem;
        width: 100px;
        text-align: center;
        @media (max-width: 960px) {
          width: 80px;
          font-size: 14px;
        }
      }
      .after {
        background-color: #fb8c31;
      }
    }
    .before-text,
    .after-text {
      font-size: 18px;
      @media (max-width: 960px) {
        font-size: 15px;
      }
    }
    .arrow {
      clip-path: polygon(100% 0, 0 0, 50% 100%);
      background-color: #608bab;
      width: 70px;
      height: 14px;
      margin: 0.5rem;
      margin-inline: auto;
      @media (max-width: 960px) {
        margin: 1rem auto;
      }
    }
    .after-text {
      margin-bottom: 1rem;
    }
  }
  .story__text {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    @media (max-width: 960px) {
      display: none;
    }
  }
  .story__lead {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    @media (max-width: 960px) {
      font-size: 16px;
    }
  }
}

/*=========================
  comparison
=========================*/
.comparison {
  padding: var(--section-padding);
  background: url(../img/bg-patterns.svg);
  .comparison__title {
    margin-bottom: 3rem;
    @media (max-width: 960px) {
      margin-bottom: 2rem;
    }
    .label {
      color: #fff;
      background-color: var(--blue);
      border-radius: 100vmax;
      width: 280px;
      margin-inline: auto;
      text-align: center;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 0.5rem;
      padding: 0.25rem;
      @media (max-width: 960px) {
        width: 150px;
        font-size: 14px;
      }
    }
    .title-img-pc {
      width: min(100%, 867px);
      margin-inline: auto;
      @media (max-width: 960px) {
        display: none;
      }
    }
    .title-img-sp {
      display: none;
      width: min(100%, 345px);
      margin-inline: auto;
      @media (max-width: 960px) {
        display: block;
      }
    }
  }
  .comparison__item {
    margin-bottom: 4rem;
    @media (max-width: 960px) {
      margin-bottom: 3rem;
    }
    .item-title {
      background-color: #e2f6fd;
      color: #006dd9;
      font-size: 30px;
      font-weight: 700;
      border-left: 9px solid #006dd9;
      padding: 0.5rem;
      padding-left: 1rem;
      margin-bottom: 1.5rem;
      @media (max-width: 960px) {
        font-size: 18px;
        text-align: center;
      }
    }
    .item-body {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 4rem;
      @media (max-width: 960px) {
        flex-direction: column;
        gap: 1rem;
      }
      .item-text {
        width: 60%;
        font-family: 'Hiragino Kaku Gothic ProN';
        @media (max-width: 960px) {
          width: 100%;
          font-size: 15px;
        }
      }
      .item-img {
        width: 40%;
        @media (max-width: 960px) {
          width: min(100%, 400px);
          margin-inline: auto;
        }
      }
      .strong {
        font-weight: 700;
      }
    }
  }
  .comparison__item:last-child {
    margin-bottom: 0;
  }
}

/*=========================
  interview
=========================*/
section.interview {
  padding: var(--section-padding);
  .interview__title {
    margin-bottom: 3rem;
    @media (max-width: 960px) {
      margin-bottom: 2rem;
    }
    .label {
      color: #fff;
      background-color: var(--blue);
      border-radius: 100vmax;
      width: 280px;
      margin-inline: auto;
      text-align: center;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 0.5rem;
      padding: 0.25rem;
      @media (max-width: 960px) {
        width: 150px;
        font-size: 13px;
      }
    }
    .title-img-pc {
      width: min(100%, 891px);
      margin-inline: auto;
      @media (max-width: 960px) {
        display: none;
      }
    }
    .title-img-sp {
      display: none;
      width: min(100%, 379px);
      margin-inline: auto;
      @media (max-width: 960px) {
        display: block;
      }
    }
  }
  .interview__items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
    margin-bottom: 2rem;
    @media (max-width: 960px) {
      flex-direction: column;
      gap: 3rem;
      overflow-x: hidden;
    }
  }
  .interview__item {
    width: calc((100% - 10%) / 3);
    @media (max-width: 960px) {
      width: min(90%, 400px);
      translate: 6% 0%;
    }
  }
}

/*=========================
  schedule
=========================*/
section.schedule {
  padding: var(--section-padding);
  background-color: #f1f8fe;
  .schedule__title {
    margin-bottom: 3rem;
    @media (max-width: 960px) {
      margin-bottom: 2rem;
    }
    .label {
      color: #fff;
      background-color: var(--blue);
      border-radius: 100vmax;
      width: 280px;
      margin-inline: auto;
      text-align: center;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 0.5rem;
      padding: 0.25rem;
      @media (max-width: 960px) {
        width: 150px;
        font-size: 13px;
      }
    }
    .title-img-pc {
      width: min(100%, 573px);
      margin-inline: auto;
      @media (max-width: 960px) {
        display: none;
      }
    }
    .title-img-sp {
      display: none;
      width: min(100%, 320px);
      margin-inline: auto;
      @media (max-width: 960px) {
        display: block;
      }
    }
  }
  .schedule__item {
    background-color: #fff;
    border-radius: 20px;
    padding: 2rem 2rem;
    margin-bottom: 3rem;
    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;
    }
    .title-wrapper {
      position: relative;
      cursor: pointer;
      width: min(100%, 900px);
      margin-inline: auto;
    }
    .toggle {
      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: 5px;
        background-color: var(--blue);
        transition: 0.4s ease-in-out;
        @media (max-width: 960px) {
          width: 20px;
          height: 2px;
        }
      }
      &::after {
        rotate: 90deg;
      }
    }
    .item-title {
      color: var(--blue);
      border-bottom: 1px solid;
      text-align: center;
      width: fit-content;
      margin-inline: auto;
      font-size: 24px;
      font-weight: 700;
      @media (max-width: 960px) {
        font-size: 16px;
      }
    }
    .item-table {
      display: block;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-in-out;
      width: min(100%, 900px);
      margin-inline: auto;
      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: 15%;
          padding: 1rem 2rem;
          font-size: 20px;
          font-weight: 700;
          @media (max-width: 960px) {
            font-size: 14px;
            padding: 0.5rem 1rem;
          }
        }
        tr:nth-of-type(2n + 1) {
          background-color: #f0f0f0;
        }
        th {
        }
        td {
        }
      }
    }
  }
  .schedule__item.open {
    .title-wrapper .toggle::after {
      opacity: 0;
    }
    .item-table {
      max-height: 2000px;
    }
  }
}

/*=========================
  merit
=========================*/
section.merit {
  padding: var(--section-padding);
  .merit__title {
    margin-bottom: 3rem;
    .label {
      color: #fff;
      background-color: var(--blue);
      border-radius: 100vmax;
      width: 280px;
      margin-inline: auto;
      text-align: center;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 0.5rem;
      padding: 0.25rem;
      @media (max-width: 960px) {
        width: 150px;
        font-size: 14px;
      }
    }
    .title-img-pc {
      width: min(100%, 591px);
      margin-inline: auto;
      @media (max-width: 960px) {
        display: none;
      }
    }
    .title-img-sp {
      display: none;
      width: min(100%, 345px);
      margin-inline: auto;
      @media (max-width: 960px) {
        display: block;
      }
    }
  }
  .merit__item {
    margin-bottom: 4rem;
    @media (max-width: 960px) {
      margin-bottom: 3rem;
    }
    .title-wrapper {
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: center;
      gap: 2rem;
      margin-bottom: 1rem;
      @media (max-width: 960px) {
        gap: 0.75rem;
      }
      .number {
        @media (max-width: 960px) {
          width: 34px;
        }
      }
      .title {
        font-size: 28px;
        font-weight: 700;
        @media (max-width: 960px) {
          font-size: 20px;
        }
      }
      .blue {
        color: var(--blue);
      }
    }
    .item-body {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 10%;
      @media (max-width: 960px) {
        flex-direction: column;
        gap: 1rem;
      }
    }
    .item-text {
      width: 55%;
      font-size: 18px;
      font-weight: 700;
      line-height: 2;
      @media (max-width: 960px) {
        width: 100%;
        font-size: 15px;
      }
    }
    .item-img {
      width: 35%;
      @media (max-width: 960px) {
        width: min(calc(100% + 10px), 410px);
        margin-inline: auto;
        translate: 10px 0%;
      }
    }
  }
  .merit__item:nth-of-type(2n) {
    .item-body {
      flex-direction: row-reverse;
      @media (max-width: 960px) {
        flex-direction: column;
      }
    }
  }
}

/*=========================
  numbers
=========================*/
section.numbers {
  padding: var(--section-padding);
  background-color: #f1f8fe;
  .numbers__title {
    width: min(100%, 714px);
    margin-inline: auto;
    margin-bottom: 3rem;
    @media (max-width: 960px) {
      margin-bottom: 1rem;
    }
  }
  .numbers__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    @media (max-width: 960px) {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
    }
  }
  .numbers__item {
  }
}

section.reason {
  padding: var(--section-padding);
  .reason__title {
    width: min(100%, 843px);
    margin-inline: auto;
    margin-bottom: 3rem;
    @media (max-width: 960px) {
      margin-bottom: 2rem;
    }
    .title-img-pc {
      width: min(100%, 843px);
      margin-inline: auto;
      @media (max-width: 960px) {
        display: none;
      }
    }
    .title-img-sp {
      display: none;
      width: min(100%, 345px);
      margin-inline: auto;
      @media (max-width: 960px) {
        display: block;
      }
    }
  }
  .reason__text {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3rem;
    @media (max-width: 960px) {
      font-size: 15px;
      margin-bottom: 2rem;
    }
  }
  .reason__item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    @media (max-width: 960px) {
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    .item-img {
      width: min(100%, 415px);
      @media (max-width: 960px) {
        width: min(100%, 415px);
        margin-inline: auto;
      }
    }
    .item-body {
      margin-top: 2rem;
      @media (max-width: 960px) {
        margin-top: 0;
      }
    }
    .item-title {
      color: #006dd9;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 1rem;
      @media (max-width: 960px) {
        font-size: 20px;
      }
    }
    .item-text {
      font-weight: 700;
      @media (max-width: 960px) {
        font-size: 15px;
      }
    }
  }
  .reason__item:nth-of-type(2n) {
    flex-direction: row-reverse;
    @media (max-width: 960px) {
      flex-direction: column;
    }
  }
  .reason__item:last-child {
    margin-bottom: 0;
  }
}

/*=========================
  step
=========================*/
section.step {
  padding: var(--section-padding);
  background: url(../img/bg-patterns.svg);
  .step__title {
    width: min(100%, 863px);
    margin-inline: auto;
    margin-bottom: 6rem;
    @media (max-width: 960px) {
      margin-bottom: 3rem;
    }
    .title-img-pc {
      width: min(100%, 863px);
      margin-inline: auto;
      @media (max-width: 960px) {
        display: none;
      }
    }
    .title-img-sp {
      display: none;
      width: min(100%, 345px);
      margin-inline: auto;
      @media (max-width: 960px) {
        display: block;
      }
    }
  }
  .step__items {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    column-gap: 1rem;
    row-gap: 4rem;
    margin-bottom: 3rem;
    @media (max-width: 960px) {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    .arrow {
      background-color: #aabdc7;
      clip-path: polygon(0 0, 0% 100%, 100% 50%);
      width: 30px;
      height: 120px;
      margin: auto;
      @media (max-width: 960px) {
        clip-path: polygon(100% 0, 0 0, 50% 100%);
        margin: 0 auto;
        width: 120px;
        height: 30px;
        margin-bottom: 1rem;
      }
    }
  }
  .step__item {
    position: relative;
    background-color: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    @media (max-width: 960px) {
      padding: 1rem;
    }
    .item-label {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      translate: 0% -50%;
      background-color: #fb8c31;
      color: #fff;
      font-size: 22px;
      font-weight: 700;
      text-align: center;
      width: 200px;
      margin-inline: auto;
      padding: 10px;
      border-radius: 100vmax;
      @media (max-width: 960px) {
        width: 170px;
        font-size: 16px;
        padding: 5px;
      }
    }
    .item-title {
      color: #006dd9;
      font-size: 24px;
      font-weight: 700;
      margin-top: 1rem;
      margin-bottom: 1rem;
      font-family: 'Hiragino Kaku Gothic ProN';
      @media (max-width: 960px) {
        font-size: 20px;
        margin-bottom: 0.5rem;
      }
    }
    .item-text {
      font-family: 'Hiragino Kaku Gothic ProN';
      @media (max-width: 960px) {
        font-size: 15px;
      }
    }
  }
  .step__text-img {
    display: flex;
    justify-content: center;
    gap: 5%;
    margin-bottom: 4rem;
    @media (max-width: 960px) {
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
    }
    .text-wrapper {
      width: 55%;
      font-family: 'Hiragino Kaku Gothic ProN';
      @media (max-width: 960px) {
        width: 100%;
      }
      .lead {
        color: var(--blue);
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 0.5rem;
        @media (max-width: 960px) {
          font-size: 18px;
          text-align: center;
        }
      }
      .text {
        font-size: 18px;
        @media (max-width: 960px) {
          font-size: 15px;
        }
      }
      .bold {
        font-weight: 700;
      }
    }
    .img {
      width: 40%;
      object-fit: contain;
      @media (max-width: 960px) {
        width: min(100%, 400px);
        margin-inline: auto;
      }
    }
  }
}

/*=========================
  representative 代表メッセージ
=========================*/
section.representative {
  padding: var(--section-padding);
  background-color: #3798d4;
  color: #fff;
  .representative__title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    @media (max-width: 960px) {
      font-size: 22px;
    }
  }
  .representative__body {
    display: flex;
    align-items: flex-start;
    gap: 10%;
    @media (max-width: 960px) {
      flex-direction: column;
      gap: 2rem;
    }
  }
  .representative__text {
    width: 50%;
    flex-grow: 1;
    font-family: 'Hiragino Kaku Gothic ProN';
    @media (max-width: 960px) {
      width: 100%;
      font-size: 15px;
    }
  }
  .img-wrapper {
    width: min(40%, 300px);
    @media (max-width: 960px) {
      width: min(100%, 300px);
      margin-inline: auto;
    }
    .representative__img {
      margin-bottom: 1rem;
    }
    .name {
      font-size: 24px;
      font-weight: 700;
      text-align: center;
    }
  }
}

/*=========================
  qualification
=========================*/
section.qualification {
  padding: var(--section-padding);
  .qualification__title {
    margin-bottom: 3rem;
    @media (max-width: 960px) {
      margin-bottom: 2rem;
    }
    .label {
      color: #fff;
      background-color: var(--blue);
      border-radius: 100vmax;
      width: 280px;
      margin-inline: auto;
      text-align: center;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 1rem;
      padding: 0.25rem;
      @media (max-width: 960px) {
        width: 150px;
        font-size: 14px;
      }
    }
    .title-img-pc {
      width: min(100%, 1000px);
      margin-inline: auto;
      @media (max-width: 960px) {
        display: none;
      }
    }
    .title-img-sp {
      display: none;
      width: min(100%, 345px);
      margin-inline: auto;
      @media (max-width: 960px) {
        display: block;
      }
    }
  }
  .qualification__text1 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 3rem;
    @media (max-width: 960px) {
      font-size: 15px;
      margin-bottom: 2rem;
    }
  }
  .qualification__items {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    @media (max-width: 960px) {
      grid-template-columns: 1fr;
    }
  }
  .qualification__item {
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    .item-title {
      color: var(--blue);
      font-size: 22px;
      font-weight: 700;
      text-align: center;
      @media (max-width: 960px) {
        font-size: 16px;
      }
    }
  }
  .qualification__item:nth-of-type(1) {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .or {
    text-align: center;
    margin: auto;
    font-size: 20px;
    font-weight: 700;
  }
  .qualification__item:nth-of-type(3) {
    .item-title {
      margin-bottom: 1rem;
      @media (max-width: 960px) {
        margin-bottom: 0.5rem;
      }
    }
    .item-list {
      width: fit-content;
      margin-inline: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      li {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0.5rem;
        align-items: center;
        line-height: 2;
        font-size: 20px;
        font-weight: 700;
        @media (max-width: 960px) {
          font-size: 15px;
        }
      }
      li::before {
        content: '';
        background: url(../img/checkbox.svg) no-repeat;
        background-size: contain;
        display: block;
        width: 16px;
        height: 16px;
        @media (max-width: 960px) {
          width: 13px;
          height: 13px;
        }
      }
      li:last-child {
        grid-column: span 2;
      }
    }
  }
  .qualification__arrow {
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    background-color: #aabdc7;
    width: 320px;
    height: 50px;
    margin-inline: auto;
    margin-bottom: 2rem;
    @media (max-width: 960px) {
      margin-bottom: 1rem;
    }
  }
  .qualification__lead1 {
    font-size: 34px;
    font-weight: 700;
    color: #006dd9;
    text-align: center;
    margin-bottom: 2rem;
    @media (max-width: 960px) {
      font-size: 20px;
    }
  }
  .qualification__lead2 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(transparent 70%, #fb8c31 70%);
    width: fit-content;
    margin-inline: auto;
    line-height: 1.5;
    margin-bottom: 1rem;
    @media (max-width: 960px) {
      font-size: 18px;
    }
  }
  .qualification__text2 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    @media (max-width: 960px) {
      font-size: 15px;
    }
  }
}

/*=========================
  job_description
=========================*/
section.job_description {
  padding: var(--section-padding);
  padding-top: 0;
  .job_description__title {
    margin-bottom: 3rem;
    @media (max-width: 960px) {
      margin-bottom: 2rem;
    }
    .title-img-pc {
      width: min(100%, 345px);
      margin-inline: auto;
      @media (max-width: 960px) {
        display: none;
      }
    }
    .title-img-sp {
      display: none;
      width: min(100%, 155px);
      margin-inline: auto;
      @media (max-width: 960px) {
        display: block;
      }
    }
  }
  .job_description__items {
  }
  .job_description__item {
    border-top: #00a0e9 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;
        @media (max-width: 960px) {
          font-size: 15px;
          text-align: center;
        }
      }
      .toggle {
        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: #3798d4;
        color: #fff;
        font-weight: 700;
        @media (max-width: 960px) {
          text-align: center;
          font-size: 14px;
        }
      }
      td:nth-child(2) {
        background-color: #efefef;
        @media (max-width: 960px) {
          font-size: 13px;
        }
      }
    }
  }
  .job_description__item.open {
    .title-wrapper .toggle {
      transform: scale(1, 1);
    }
    .content {
      max-height: 5000px;
    }
  }
}

/*=========================
  contact
=========================*/
section.contact {
  padding: var(--section-padding);
  background-color: #f4f4f4;
  .contact__title {
    color: var(--blue);
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 3rem;
    @media (max-width: 960px) {
      font-size: 20px;
      margin-bottom: 2rem;
    }
  }
  .contact__form-wrapper {
    background-color: #fff;
    border-radius: 15px;
    padding: 3rem;
    @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: 700;
      @media (max-width: 960px) {
        font-size: 14px;
      }
      .req,
      .any {
        background-color: #a92e2b;
        color: #fff;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 600;
        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: #fb8c31;
      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;
        }
      }
    }
  }
}

/*=========================
  info
=========================*/
section.info {
  padding: var(--section-padding);
  background-color: #f1f8fe;
  .info__title {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--blue);
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    width: fit-content;
    margin-inline: auto;
    padding-inline: 1rem;
    border-bottom: 2px solid var(--blue);
    @media (max-width: 960px) {
      font-size: 22px;
    }
  }
  .info__school-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    @media (max-width: 960px) {
      flex-direction: column;
      gap: 0.5rem;
    }
    li {
      font-size: 18px;
      font-weight: 700;
      font-family: 'Hiragino Kaku Gothic ProN';
      @media (max-width: 960px) {
        font-size: 14px;
      }
    }
  }
  .info__slider {
  }
  .info__slider-item {
    font-family: 'Hiragino Kaku Gothic ProN';
    .item-title {
      font-size: 28px;
      font-weight: 600;
      border-bottom: 1px solid #707070;
      margin-bottom: 2rem;
      @media (max-width: 960px) {
        font-size: 18px;
      }
    }
    .item-body {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 2rem;
      @media (max-width: 960px) {
        flex-direction: column;
        gap: 1rem;
      }
      .item-img {
        width: 40%;
        @media (max-width: 960px) {
          width: 100%;
        }
      }
      .item-info {
        width: 60%;
        display: grid;
        grid-template-columns: auto 1fr;
        @media (max-width: 960px) {
          width: 100%;
        }
        .row {
          display: grid;
          grid-template-columns: subgrid;
          grid-column: 1/-1;
          gap: 2rem;
          border-bottom: 1px solid #c4c4c4;
          padding-bottom: 0.5rem;
          margin-bottom: 0.5rem;
          @media (max-width: 960px) {
            gap: 1rem;
          }
        }
        .th {
          font-size: 18px;
          font-weight: 700;
          @media (max-width: 960px) {
            font-size: 15px;
          }
        }
        .td {
          font-weight: 500;
          @media (max-width: 960px) {
            font-size: 15px;
          }
        }
      }
    }
  }
  .splide__arrow {
    top: 15rem;
  }
  .splide__arrow--prev {
    left: -10px;
    @media (max-width: 960px) {
      left: -10px;
    }
  }
  .splide__arrow--next {
    right: -10px;
    @media (max-width: 960px) {
      right: -10px;
    }
  }
}

/*=========================
  footer
=========================*/
footer {
  background-color: #000000;
  color: #fff;
  padding: 2.5rem;
  text-align: center;
  font-size: 14px;
}

/*=========================
  floating button
=========================*/
.floating-buttons {
  position: fixed;
  z-index: 10;
  bottom: 10%;
  right: 0;
  @media (max-width: 960px) {
    bottom: 0;
    width: 100%;
    z-index: 1001;
  }
  .floating-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 20px 0 0 20px;
    width: 220px;
    height: 80px;
    background-color: #fb8c31;
    color: #fff;
    margin-bottom: 1.5rem;
    opacity: 1;
  }
  .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) {
    .floating-button:hover::before {
      opacity: 0.25;
    }
  }
  .floating-button--entry {
    .row1 {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }
    @media (max-width: 960px) {
      width: 100%;
      margin: 0;
      border-radius: 5px;
      .row1 {
        font-size: 13px;
        margin-bottom: 0.25rem;
      }
      .row2 {
        width: 90px;
        margin-inline: auto;
      }
    }
  }
  .floating-button--tel {
    background-color: #0077ad;
    @media (max-width: 960px) {
      display: none;
    }
  }
}
@media (max-width: 960px) {
  body {
    margin-bottom: 80px;
  }
}
