@charset "utf-8";

/* ↓↓↓ common ↓↓↓ */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  color: #363636;
  width: 100%;
  height: 100%;
  background-color: #C2EAFA;
  overflow-x: clip;
}

.-noscroll {
  overflow: clip;
  scrollbar-gutter: stable;
}

.-pc {
  display: block;
}

.-sp {
  display: none;
}

@media (max-width: 768px) {
  .-pc {
    display: none;
  }

  .-sp {
    display: block;
  }
}

.-wb {
  display: inline-block;
}

/* ↑↑↑ common ↑↑↑ */

/* ↓↓↓ bg ↓↓↓ */
.bg01 {
  position: fixed;
  top: 0;
  right: 50%;
  width: 50%;
  height: 100%;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
  }
}

.bg02 {
  position: fixed;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
  }
}

.blend01 {
  position: fixed;
  top: 0;
  right: 50%;
  width: 158px;
  height: 100%;
  background: linear-gradient(90deg, rgba(194, 234, 250, 0) 0%, rgba(194, 234, 250, 1) 100%);
}

.blend02 {
  position: fixed;
  top: 0;
  left: 50%;
  width: 158px;
  height: 100%;
  background: linear-gradient(90deg, rgba(194, 234, 250, 1) 0%, rgba(194, 234, 250, 0) 100%);
}

.fixed-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -45.859375cqw -40%;
  width: min(335px, 26.171875cqw);
  aspect-ratio: 335/187;

  img {
    width: 100%;
    object-fit: contain;
  }

  @media (max-width: 1024px) {
    display: none;
  }
}

.pagetop {
  position: absolute;
  right: min(36px, 2.8125vw);
  bottom: min(19px, 1.484375vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;

  @media (max-width: 768px) {
    display: none;
  }

  &::before {
    content: '';
    position: absolute;
    top: max(-6px, -0.46875vw);
    right: 1px;
    width: min(15px, 1.171875vw);
    aspect-ratio: 1/1;
    background: url(../img/pagetop-deco.svg)no-repeat;
  }

  .circle {
    width: min(56px, 4.375vw);
    aspect-ratio: 1/1;
    border-radius: 60px;
    background-color: #01458F;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);


    overflow: hidden;

    &::before {
      content: '';
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 32px;
      background-color: #fff;
      transition: top 300ms 0s ease;
    }

    &::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 32px;
      mask-image: url(../img/pagetop-arrow.svg);
      mask-size: contain;
      mask-repeat: no-repeat;
      background-color: #fff;
      transition: background-color 300ms 0s ease;
    }
  }

  .text {
    margin-top: min(8px, 0.625vw);
    font-size: min(1.2rem, 0.9375vw);
    font-weight: bold;
    line-height: 1;
    color: #00458F;
  }
}

.pagetop:hover {
  .circle {
    &::before {
      top: 0;
    }

    &::after {
      background-color: #1588FC;
    }
  }
}

/* ↑↑↑ bg ↑↑↑ */

/* ↓↓↓ header ↓↓↓ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 80px;
  aspect-ratio: 1280/80;
  z-index: 10;
  display: flex;

  @media (max-width: 768px) {
    aspect-ratio: unset;
    height: 72px;
  }

  .logo-wrap {
    width: min(284px, 22.1875vw);
    padding-left: min(18px, 1.40625vw);
    display: flex;
    align-items: center;
    border-bottom-right-radius: 24px;
    background-color: #fff;
    gap: min(18px, 1.40625vw);
    transition: opacity 300ms 0s ease;

    @media (max-width: 768px) {
      width: 261px;
      height: 72px;
      padding-left: 15px;
      gap: 17px;
    }

    @media (min-width: 769px) {
      &:hover {
        opacity: 0.7;
      }
    }
  }

  .logo {
    width: min(86px, 6.71875vw);
    margin-top: max(-6px, -0.46875vw);
    display: block;

    @media (max-width: 768px) {
      width: 77px;
    }
  }

  .head-ttl {
    font-size: min(1.5rem, 1.171875vw);
    font-weight: 700;
    color: #00458F;

    @media (max-width: 768px) {
      font-size: 1.4rem;
    }
  }
}

.navi {
  display: block;
  margin-left: auto;
  margin-right: min(32px, 2.5vw);
  padding-inline: min(16px, 1.25vw);
  z-index: 1;
  background-color: #C2EAFA;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 70px;
  align-self: flex-end;

  @media (max-width: 768px) {
    position: fixed;
    top: 0;
    right: 0;
    translate: 100% 0;
    margin-right: 0;
    border-radius: 0 0 0 24px;
    width: 320px;
    padding: 60px 24px 64px 40px;
    transition: translate 300ms 0s ease;

    &.is-open {
      translate: 0 0;
    }
  }

  ul {
    width: 100%;
    display: flex;
    justify-content: center;

    @media (max-width: 768px) {
      flex-direction: column;
    }
  }

  a {
    height: 100%;
    padding: min(12px, 0.9375vw) min(16px, 1.25vw);
    font-size: min(1.4rem, 1.09375vw);
    font-weight: bold;
    letter-spacing: 0.05em;
    line-height: 1.6;
    color: #00458F;
    text-align: center;
    display: flex;
    align-items: center;
    position: relative;

    @media (max-width: 768px) {
      display: flex;
      align-items: center;
      width: 100%;
      padding: 16px 0;
      font-size: 1.6rem;
      text-align: left;
      background-image: repeating-linear-gradient(90deg, #8ebff4, #8ebff4 2px, transparent 2px, transparent 4px);
      background-position: left bottom;
      background-repeat: repeat-x;
      background-size: 100% 1px;
    }

    &::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      translate: 0 -50%;
      width: 1px;
      height: 58.2%;
      border-left: 1px dashed #fff;

      @media (max-width: 768px) {
        display: none;
      }
    }
  }

  li:first-of-type a::before {
    display: none;
  }

  @media (max-width: 768px) {
    li:last-of-type a {
      background-image: none;
    }
  }

  i {
    display: block;
    width: min(32px, 2.5vw);
    aspect-ratio: 1/1;
    margin-right: min(8px, 0.625vw);
    border-radius: 32px;
    background-color: #fff;
    overflow: hidden;
    position: relative;

    @media (max-width: 768px) {
      width: 32px;
      margin-right: 16px;
    }

    &::before {
      content: '';
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 32px;
      background-color: #1588FC;
      transition: top 300ms 0s ease;
    }

    &::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 32px;
      mask-image: url(../img/navi-link-arrow.svg);
      mask-size: contain;
      mask-repeat: no-repeat;
      background-color: #004B9E;
      transition: background-color 300ms 0s ease;
    }
  }
}

@media (min-width: 769px) {
  .navi a:hover {
    i {
      &::before {
        top: 0;
      }

      &::after {
        background-color: #fff;
      }
    }
  }
}

.menu-btn {
  display: none;

  @media (max-width: 768px) {
    display: block;
    position: fixed;
    top: 10px;
    right: 18px;
    width: 56px;
    aspect-ratio: 1/1;
    border-radius: 60px;
    background-color: #01458F;
    border: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1;

    .wrap {
      position: absolute;
      top: 23px;
      left: 50%;
      translate: -50% 0;
      width: 20px;
      height: 11px;

      span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #fff;
        transition: all 300ms 0s ease;

        &:nth-of-type(1) {
          top: 0;
        }

        &:nth-of-type(2) {
          top: 5px;
        }

        &:nth-of-type(3) {
          width: 70%;
          bottom: 0;
        }
      }
    }
  }
}

.menu-btn.is-active {
  span:nth-of-type(1) {
    top: 5px;
    rotate: 30deg;
  }

  span:nth-of-type(2) {
    rotate: -30deg;
  }

  span:nth-of-type(3) {
    top: 5px;
    opacity: 0;
  }
}

.menu-bg {
  opacity: 0;
  visibility: hidden;
  transition: all 300ms 0s ease;

  @media (max-width: 1024px) {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);

    &.is-open {
      opacity: 1;
      visibility: visible;
    }
  }
}

/* ↑↑↑ header ↑↑↑ */

/* ↓↓↓ main ↓↓↓ */
main {
  width: 100%;
  height: auto;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  position: relative;
}

.fv {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;

  @media (max-width: 768px) {
    height: auto;
  }
}

.top-logo {
  position: absolute;
  top: 50%;
  /* left: min(90px, 7.03125vw); */
  left: 7.03125vw;
  translate: 0 -50%;
  /* width: min(358px, 27.968749999999996vw); */
  width: 27.968749999999996vw;
  aspect-ratio: 358/192;

  @media (max-width: 768px) {
    position: relative;
    top: 0;
    left: 0;
    translate: 0 0;
    aspect-ratio: unset;
    width: 334px;
    height: 177px;
    margin: 102px auto 0;
  }

  .top-logo1 {
    position: absolute;
    top: 0px;
    left: 0px;
    /* width: min(201px, 15.703125000000002vw); */
    width: 15.703125000000002vw;

    @media (max-width: 768px) {
      width: 201px;
    }
  }

  .top-logo2 {
    position: absolute;
    /* top: min(77px, 6.015625vw); */
    top: 6.015625vw;
    /* left: min(57px, 4.453125vw); */
    left: 4.453125vw;
    /* width: min(261px, 20.390625vw); */
    width: 20.390625vw;

    @media (max-width: 768px) {
      top: 72px;
      left: 14%;
      width: 248px;
    }
  }

  .top-logo3 {
    position: absolute;
    /* top: min(35px, 2.734375vw); */
    top: 2.734375vw;
    right: 0px;
    /* width: min(63px, 4.921875vw); */
    width: 4.921875vw;

    @media (max-width: 768px) {
      top: 33px;
      width: 59px;
    }
  }

  .top-text {
    position: absolute;
    bottom: 0px;
    /* left: min(39px, 3.046875vw); */
    left: 3.046875vw;
    /* font-size: min(4.1rem, 3.2031249999999996vw); */
    font-size: 3.2031249999999996vw;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    color: #01458F;

    @media (max-width: 768px) {
      left: 0;
      width: 100%;
      text-align: center;
      font-size: 4rem;
    }
  }
}

.fv-image {
  position: absolute;
  top: 0;
  right: 0;
  /* width: 784px; */
  width: 61.25000000000001vw;
  height: 100%;

  @media (max-width: 768px) {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 14px;
  }

  #splide1 {
    width: 100%;
    height: 100%;
    mask-image: url(../img/fv-mask_pc.png);
    mask-repeat: no-repeat;
    mask-size: cover;

    @media (max-width: 768px) {
      mask-image: url(../img/fv-mask_sp.png);
      mask-size: cover;
    }

    .splide__track {
      height: 100%;
    }
  }

  .splide__slide {
    overflow: hidden;
    background: #000;
  }

  .splide__slide img {
    width: 100%;
    /* height: auto; */
    height: 100%;
    object-fit: cover;
    object-position: top left;
    display: block;
    transform: scale(1.1);
    transition: transform 2s linear;
  }
}

.fv-image .splide__slide.is-active img {
  animation: zoom-up 5s linear forwards;
}

@keyframes zoom-up {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.read-box {
  width: 100%;
  padding: 170px 24px 64px;
  background: url(../img/read-box_pc.jpg)no-repeat;
  background-size: cover;
  background-position: bottom center;
  position: relative;

  @media (max-width: 768px) {
    padding-block: 72px 100px;
    background: url(../img/read-box_sp.jpg)no-repeat;
    background-size: cover;
    background-position: bottom center;
  }

  .read-inner {
    max-width: 876px;
    margin: 0 auto;
    position: relative;
  }

  .read-bubble {
    position: absolute;
    top: -58px;
    left: 50%;
    translate: -50% 0;
    width: 590px;

    @media (max-width: 768px) {
      top: -117px;
      width: 300px;
    }

    picture {
      display: block;
    }
  }

  .read-wrap {
    width: 100%;
    padding: 87px 66px 64px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 2.133;
    text-align: justify;
    word-break: break-all;
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.6);

    @media (max-width: 768px) {
      padding: 64px 22px 40px;
    }
  }
}

.flow-box {
  width: 100%;
  padding: 64px 24px;
  position: relative;
  background-color: #fff;

  @media (max-width: 768px) {
    padding-block: 40px;
  }

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: auto auto;
    background-color: rgba(255, 255, 255, 1);
    background-image: repeating-linear-gradient(135deg, transparent, transparent 8px, rgba(144, 210, 232, 1) 8px, rgba(144, 210, 232, 1) 12px);
    z-index: 1;
  }

  .flow-inner {
    max-width: 876px;
    margin: 0 auto;
    position: relative;
  }

  .flow-wrap {
    width: 100%;
    padding: 48px 66px 60px;
    background-color: #fff;
    border-radius: 16px;
    position: relative;
    z-index: 1;

    @media (max-width: 768px) {
      padding: 35px 22px 40px;
    }

    .flow-ttl {
      margin-bottom: 35px;
      font-size: 3.2rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      line-height: 1;
      color: #1588FC;
      text-align: center;

      @media (max-width: 768px) {
        margin-bottom: 20px;
        font-size: 2.4rem;
      }
    }

    .head {
      width: 100%;
      height: 40px;
      background-color: #01458F;
      border-radius: 20px;
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      line-height: 1;
      color: #fff;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;

      @media (max-width: 768px) {
        height: 28px;
        font-size: 1.2rem;
      }

      b {
        margin-top: -4px;
        margin-left: 4px;
        font-size: 2.4rem;
        line-height: 0.9;

        @media (max-width: 768px) {
          margin-left: 3px;
          font-size: 1.8rem;
        }
      }
    }

    .caption {
      margin-top: 15px;
      font-size: 2.0rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-align: center;
      display: block;

      @media (max-width: 768px) {
        margin-top: 12px;
        font-size: 1.8rem;
      }
    }

    .image {
      width: 100%;
      margin-top: 16px;
    }

    .double-arrow {
      display: block;
      width: 18px;
      height: 14px;
      margin: 16px auto;
      background-color: #1588FC;
      mask-image: url(../img/double-arrow_pc.png);
      mask-size: contain;
      mask-repeat: no-repeat;
      mask-position: center;

      @media (max-width: 768px) {
        width: 14px;
        height: 11px;
        margin: 12px auto;
        mask-image: url(../img/double-arrow_sp.png);
      }

      img {
        display: block;
      }
    }

    .text {
      margin-top: 15px;
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      line-height: 1.333;
      text-align: center;
    }
  }
}

.step1-box {
  width: 100%;
  padding: 64px 24px 0;
  background: linear-gradient(90deg, rgba(235, 250, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(235, 250, 255, 1) 100%);

  .step1-box-inner {
    max-width: 876px;
    margin: 0 auto;
    position: relative;
  }

  .head {
    width: 140px;
    height: 40px;
    margin-inline: auto;
    background-color: #01458F;
    border-radius: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

    @media (max-width: 768px) {
      width: 105px;
      height: 28px;
      font-size: 1.2rem;
    }

    b {
      margin-top: -4px;
      margin-left: 4px;
      font-size: 2.4rem;
      line-height: 0.9;

      @media (max-width: 768px) {
        margin-left: 3px;
        font-size: 1.8rem;
      }
    }
  }

  .caption {
    display: block;
    margin-top: 15px;
    margin-bottom: 55px;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    color: #1588FC;
    text-align: center;

    @media (max-width: 768px) {
      margin-top: 15px;
      margin-bottom: 32px;
      font-size: 2.6rem;
    }
  }
}

.accordion-group {
  width: 100%;

  .ahead {
    width: 100%;
    height: 96px;
    border-radius: 16px 16px 0 0;
    display: block;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: background-color 300ms 0s ease;

    &::before {
      content: '';
      position: absolute;
      top: 100%;
      left: 50%;
      translate: -50% 0;
      width: 110%;
      height: 500px;
      transition: all 300ms 0s ease;
      border-radius: 50%;
    }

    .icon {
      position: absolute;
      top: 50%;
      left: 26px;
      translate: 0 -50%;
      display: block;
      width: 64px;
      aspect-ratio: 1/1;

      @media (max-width: 768px) {
        left: 16px;
        width: 48px;
      }

      &::before,
      &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition: opacity 300ms 0s ease;
      }

      &::after {
        opacity: 0;
      }
    }

    .text {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.6rem;
      font-weight: 900;
      letter-spacing: 0.05em;
      line-height: 1.333;
      color: #fff;
      position: relative;
      transition: color 300ms 0s ease;

      @media (max-width: 768px) {
        display: block;
        padding: 23px 0 0 80px;
        font-size: 1.8rem;
      }

      sup {
        line-height: 0.9;
      }
    }

    .plus {
      position: absolute;
      top: 50%;
      right: 35px;
      translate: 0 -50%;
      width: 22px;
      aspect-ratio: 1/1;
      z-index: 1;
      mask-image: url(../img/accordion-plus.png);
      mask-repeat: no-repeat;
      mask-size: cover;
      mask-position: center;
      background-color: #fff;
      transition: all 300ms 0s ease;

      @media (max-width: 768px) {
        right: 19px;
        width: 14px;
        mask-image: url(../img/accordion-plus_sp.png);
      }
    }

    &.is-open .plus {
      mask-image: url(../img/accordion-minus.png);
      rotate: 180deg;

      @media (max-width: 768px) {
        mask-image: url(../img/accordion-minus_sp.png);
      }
    }

    @media (min-width: 769px) {
      &:hover {
        &::before {
          top: -200%;
        }

        .icon {
          &::before {
            opacity: 0;
          }

          &::after {
            opacity: 1;
          }
        }
      }
    }

  }
}

.accordion-group + .accordion-group {
  margin-top: 24px;
}

.accordion-group.-blue {
  .ahead {
    background-color: #1588FC;

    &::before {
      background-color: #E6F3FF;
    }

    .icon {
      &::before {
        background: url(../img/accordion-icon01_a.png)no-repeat;
        background-size: contain;
      }

      &::after {
        background: url(../img/accordion-icon01_b.png)no-repeat;
        background-size: contain;
      }
    }

    @media (min-width: 769px) {
      &:hover {
        .text {
          color: #1588FC;
        }

        .plus {
          background-color: #1588FC;
          ;
        }
      }
    }
  }

  .abody {
    background-color: #E6F3FF;

    .point {
      border-color: #1588FC;

      p::before {
        background-color: #1588FC;
      }
    }

    .mark {
      background-color: #1588FC;

      .deco {
        background-color: #1588FC;
      }
    }

    .example {
      .ttl {
        color: #1588FC;

        &::after {
          background-color: #1588FC;
        }

        span {
          background-color: #E6F3FF;
        }
      }
    }

    .detail-list {
      border-top-color: #1588FC;

      .item {
        border-bottom-color: #8EBFF4;

        .cap {
          color: #1588FC;
        }
      }
    }

    .close-btn {
      color: #1588FC;

      span {
        &::before {
          background-color: #1588FC;
        }
      }
    }
  }
}

.accordion-group.-red {
  .ahead {
    background-color: #FF6571;

    &::before {
      background-color: #FDEAED;
    }

    .icon {
      &::before {
        background: url(../img/accordion-icon02_a.png)no-repeat;
        background-size: contain;
      }

      &::after {
        background: url(../img/accordion-icon02_b.png)no-repeat;
        background-size: contain;
      }
    }

    @media (min-width: 769px) {
      &:hover {
        .text {
          color: #FF6571;
        }

        .plus {
          background-color: #FF6571;
          ;
        }
      }
    }
  }

  .abody {
    background-color: #FEEAED;

    .point {
      border-color: #FF6571;

      p::before {
        background-color: #FF6571;
      }
    }

    .mark {
      background-color: #FF6571;

      .deco {
        background-color: #FF6571;
      }
    }

    .example {
      .ttl {
        color: #FF6571;

        &::after {
          background-color: #FF6571;
        }

        span {
          background-color: #FEEAED;
        }
      }
    }

    .detail-list {
      border-top-color: #FF6571;

      .item {
        border-bottom-color: #FFA2A7;

        .cap {
          color: #FF6571;
        }
      }
    }

    .close-btn {
      color: #FF6571;

      span {
        &::before {
          background-color: #FF6571;
        }
      }
    }

    .time-list {
      li {
        border-bottom-color: #FFA2A7;

        &::before {
          background-color: #FF6571;
        }

        span {
          color: #FF6571;
        }
      }
    }
  }
}

.accordion-group.-green {
  .ahead {
    background-color: #06C9C9;

    &::before {
      background-color: #DFFDF9;
    }

    .icon {
      &::before {
        background: url(../img/accordion-icon03_a.png)no-repeat;
        background-size: contain;
      }

      &::after {
        background: url(../img/accordion-icon03_b.png)no-repeat;
        background-size: contain;
      }
    }

    @media (min-width: 769px) {
      &:hover {
        .text {
          color: #06C9C9;
        }

        .plus {
          background-color: #06C9C9;
          ;
        }
      }
    }
  }

  .abody {
    background-color: #DFFDF9;

    .point {
      border-color: #06C9C9;

      p::before {
        background-color: #06C9C9;
      }
    }

    .mark {
      background-color: #06C9C9;

      .deco {
        background-color: #06C9C9;
      }
    }

    .example {
      .ttl {
        color: #06C9C9;

        &::after {
          background-color: #06C9C9;
        }

        span {
          background-color: #DFFDF9;
        }
      }
    }

    .detail-list {
      border-top-color: #06C9C9;

      .item {
        border-bottom-color: #06C9C9;

        .cap {
          color: #06C9C9;
        }
      }
    }

    .close-btn {
      color: #06C9C9;

      span {
        &::before {
          background-color: #06C9C9;
        }
      }
    }

    .time-list {
      li {
        border-bottom-color: #06C9C9;

        &::before {
          background-color: #06C9C9;
        }

        span {
          color: #06C9C9;
        }
      }
    }
  }
}

.accordion-group .abody {
  display: none;
  border-radius: 0 0 24px 24px;
  padding-inline: 66px;

  @media (max-width: 768px) {
    padding-inline: 22px;
  }

  .abody-block01 {
    width: 100%;
    padding-top: 66px;
    display: flex;
    align-items: center;
    gap: 24px;

    @media (max-width: 768px) {
      padding-top: 0;
      flex-direction: column;
      gap: 63px;
    }

    .image1 {
      width: 360px;

      @media (max-width: 768px) {
        width: calc(100% + 44px);
      }
    }
  }

  .point {
    width: 360px;
    padding: 40px 22px 30px;
    border-radius: 16px;
    border-width: 2px;
    border-style: dashed;
    background-color: #fff;
    position: relative;

    @media (max-width: 768px) {
      width: 100%;
    }

    .mark-wrap {
      position: absolute;
      top: 0;
      left: 50%;
      translate: -50% -50%;
      width: 56px;
      aspect-ratio: 1/1;
      border-radius: 56px;
    }

    .mark {
      width: 56px;
      aspect-ratio: 1/1;
      border-radius: 56px;
      display: grid;
      place-content: center;
      font-size: 1.2rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      line-height: 1;
      color: #fff;

      .deco {
        position: absolute;
        top: -6px;
        right: -3px;
        width: 15px;
        height: 15px;
        mask-image: url(../img/pagetop-deco.svg);
      }
    }

    p {
      padding-left: 17px;
      font-size: 1.5rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      line-height: 1.8667;
      text-align: justify;
      word-break: break-all;
      position: relative;

      &::before {
        content: '';
        position: absolute;
        top: 10px;
        left: 0;
        width: 10px;
        height: 10px;
      }
    }

    p + p {
      margin-top: 22px;
    }
  }

  .text {
    width: 100%;
    margin-top: 48px;
    margin-inline: auto;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.8667;
    text-align: justify;
    word-break: break-all;

    @media (max-width: 768px) {
      margin-top: 40px;
    }
  }

  .note {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.846153846153846;
    text-align: justify;
    word-break: break-all;
  }

  .image2 {
    margin-block: 64px;
    display: flex;

    @media (max-width: 768px) {
      margin-block: 48px;
      flex-direction: column;
    }

    img {
      display: block;
      width: 50%;

      @media (max-width: 768px) {
        width: 100%;
      }
    }
  }

  .example {
    width: 100%;
    margin-inline: auto;
    padding-bottom: 48px;

    @media (max-width: 768px) {
      padding-bottom: 40px;
    }

    .ttl {
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      line-height: 1;
      position: relative;

      &::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
      }

      span {
        width: fit-content;
        padding-right: 10px;
        position: relative;
        display: block;
        z-index: 1;
      }
    }

    .ex-group {
      width: fit-content;
      margin: 40px auto 0;
      padding-inline: 26px;
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      line-height: 1;
      position: relative;

      &::before,
      &::after {
        content: '';
        position: absolute;
        bottom: -2px;
        width: 10px;
        height: 18px;
      }

      &::before {
        left: 0;
        background: url(../img/ex-group-bg-left.png)no-repeat;
      }

      &::after {
        right: 0;
        background: url(../img/ex-group-bg-right.png)no-repeat;
      }
    }

    .flow-group {
      width: 100%;
      margin-top: 20px;
      display: flex;
      gap: 42px;

      @media (max-width: 768px) {
        max-width: 300px;
        margin-top: 16px;
        margin-inline: auto;
        gap: 21px;
        flex-direction: column;
      }
    }

    .flow1 {
      width: 100%;
      font-size: 1.5rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      line-height: 1.333;
      text-align: center;
      color: #fff;
      background-color: #F7C451;
      border-radius: 16px;
      display: grid;
      place-content: center;
      position: relative;

      @media (max-width: 768px) {
        height: 47px;
      }

      &::before {
        content: '';
        position: absolute;
        top: 50%;
        left: calc(100% + 14px);
        translate: 0 -50%;
        width: 15px;
        height: 11px;
        rotate: -90deg;
        background-color: #01458F;
        mask-image: url(../img/double-arrow_pc.png);
        mask-repeat: no-repeat;
        mask-size: contain;
        mask-position: center;

        @media (max-width: 768px) {
          top: calc(100% + 6px);
          left: 50%;
          translate: -50% 0;
          rotate: 0deg;
        }
      }
    }

    .flow2 {
      width: 100%;
      padding: 20px 22px;
      font-size: 1.5rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      line-height: 1.333;
      text-align: center;
      color: #fff;
      background-color: #23D0B5;
      border-radius: 16px;
      display: grid;
      place-content: center;
      position: relative;

      @media (max-width: 768px) {
        padding: 16px 10px;
      }

      &::before {
        content: '';
        position: absolute;
        top: 50%;
        left: calc(100% + 14px);
        translate: 0 -50%;
        width: 15px;
        height: 11px;
        rotate: -90deg;
        background-color: #01458F;
        mask-image: url(../img/double-arrow_pc.png);
        mask-repeat: no-repeat;
        mask-size: contain;
        mask-position: center;

        @media (max-width: 768px) {
          top: calc(100% + 6px);
          left: 50%;
          translate: -50% 0;
          rotate: 0deg;
        }
      }

      .small {
        margin-top: 3px;
        font-size: 1.3rem;
      }
    }

    .flow3 {
      width: 100%;
      font-size: 1.5rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      line-height: 1;
      text-align: center;
      color: #fff;
      background-color: #00458F;
      border-radius: 16px;
      display: grid;
      place-content: center;
      position: relative;

      @media (max-width: 768px) {
        height: 53px;
      }
    }

    .note {
      margin-top: 20px;
      font-size: 1.5rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      line-height: 1.6;
      text-align: justify;
      word-break: break-all;

      @media (max-width: 768px) {
        margin-top: 32px;
      }
    }
  }

  .detail-list {
    width: 100%;
    padding-top: 24px;
    margin-inline: auto;
    border-top-width: 2px;
    border-top-style: solid;
    display: flex;
    flex-wrap: wrap;
    gap: 0 24px;

    @media (max-width: 768px) {
      padding-top: 0;
      gap: 0;
    }

    .item {
      width: 100%;
      padding-block: 24px;
      border-bottom-width: 1px;
      border-bottom-style: dashed;

      .cap {
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        line-height: 1;

        &.-mt {
          margin-top: 10px;
          display: inline-block;
        }
      }

      .text {
        margin-top: 6px;
        font-size: 1.5rem;
        font-weight: 500;
        letter-spacing: 0.04em;
        line-height: 2.1333;
        text-align: justify;
        word-break: break-all;
      }

      .small {
        font-size: 1.3rem;
        font-weight: 500;
        letter-spacing: 0.04em;
        line-height: 1.846;
        text-align: justify;
        word-break: break-all;
      }

      &:nth-of-type(1) {
        width: 100%;
      }

      &:nth-of-type(n+2) {
        width: 360px;

        @media (max-width: 768px) {
          width: 100%;
        }
      }

      &.-wide {
        width: 100%;
      }

      &.-map {
        height: 424px;
        position: relative;

        @media (max-width: 768px) {
          height: auto;
        }
      }
    }
  }

  .close-btn {
    width: 100%;
    padding-top: 48px;
    padding-bottom: 32px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;

    span {
      display: inline-block;
      padding-right: 40px;
      position: relative;
      translate: 10% 0;

      &::before {
        content: '';
        position: absolute;
        top: -5px;
        right: 0;
        width: 32px;
        height: 32px;
        mask-image: url(../img/navi-link-arrow.svg);
        mask-repeat: no-repeat;
        rotate: 180deg;
        transition: top 300ms 0s ease;
      }
    }

    @media (min-width: 769px) {
      &:hover span::before {
        top: -9px;
      }
    }
  }

  .time-list {
    width: 100%;
    margin-top: 35px;

    ul,
    li {
      display: block;
      width: 100%;
    }

    li {
      padding-block: 4px;
      display: flex;
      border-bottom-width: 1px;
      border-bottom-style: dashed;
      position: relative;

      &::before {
        content: '';
        position: absolute;
        bottom: -6px;
        left: 15px;
        width: 12px;
        height: 10px;
        mask-image: url(../img/double-arrow_pc.png);
        mask-repeat: no-repeat;
        mask-size: contain;
        mask-position: center;
      }

      &:first-of-type {
        padding-top: 0;
      }

      &:last-of-type {
        padding-bottom: 0;
        border-bottom: 0;

        &::before {
          display: none;
        }
      }

      span {
        width: 60px;
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        line-height: 2.1333;
      }

      p {
        flex: 1;
        font-size: 1.5rem;
        font-weight: 500;
        letter-spacing: 0.04em;
        line-height: 2.1333;
      }
    }
  }

  .map {
    position: absolute;
    top: 24px;
    right: 32px;
    width: 282px;
    display: block;

    @media (max-width: 768px) {
      position: relative;
      top: 0;
      right: 0;
      margin: 17px auto 0;
    }
  }
}

.step2-box {
  width: 100%;
  padding-bottom: 40px;
  position: relative;
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 1);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 8px, rgba(144, 210, 232, 1) 8px, rgba(144, 210, 232, 1) 12px);

  .step-ttl-group {
    width: 100%;
    padding-block: 100px 43px;
    /* background-color: #fff; */
    background: linear-gradient(90deg, rgba(235, 250, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 75%, rgba(235, 250, 255, 1) 100%);
  }

  .head {
    width: 105px;
    height: 28px;
    margin-inline: auto;
    background-color: #01458F;
    border-radius: 14px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

    b {
      margin-top: -4px;
      margin-left: 3px;
      font-size: 1.8rem;
      line-height: 0.9;
    }
  }

  .caption {
    display: block;
    margin-top: 10px;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.538;
    color: #1588FC;
    text-align: center;
  }
}

.step2-box .step2-wrap {
  width: 876px;
  margin: 64px auto 0;
  padding: 80px 66px 48px;
  background-color: #fff;
  border-radius: 16px;
  position: relative;
  z-index: 1;

  @media (max-width: 768px) {
    width: calc(100% - 48px);
    max-width: 400px;
    margin-top: 40px;
    padding: 60px 22px 40px;
  }

  .flex-block {
    width: 100%;
    display: flex;
    gap: 12px;

    @media (max-width: 768px) {
      flex-direction: column;
    }
  }

  .block {
    width: 240px;
    padding-block: 49px 18px;
    border-radius: 10px;
    position: relative;

    @media (max-width: 768px) {
      width: 100%;
      padding-block: 38px 20px;
    }

    .icon {
      position: absolute;
      top: 0;
      left: 50%;
      translate: -50% -50%;
      display: block;
      width: 56px;
      height: 56px;
    }

    .block-ttl {
      font-size: 2rem;
      font-weight: bold;
      letter-spacing: 0.05em;
      line-height: 1.466;
      text-align: center;

      @media (max-width: 768px) {
        font-size: 1.5rem;
      }
    }

    .block-btn {
      width: 204px;
      height: 64px;
      margin: 14px auto 0;
      position: relative;
      border-radius: 40px;
      display: grid;
      place-content: center;
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      line-height: 1;
      color: #fff;
      overflow: hidden;
      transition: color 300ms 0s ease;
      border-width: 2px;
      border-style: solid;

      @media (max-width: 768px) {
        width: 250px;
        height: 74px;
        font-size: 1.8rem;
      }

      span {
        display: block;
        position: relative;
      }

      &::before {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        translate: -50% 0;
        width: 410px;
        height: 290px;
        transition: all 300ms 0s ease;
        border-radius: 50%;
      }

      &::after {
        content: '';
        position: absolute;
        top: 24px;
        right: 15px;
        width: 7px;
        height: 14px;
        mask-image: url(../img/block-btn-arrow.png);
        mask-repeat: no-repeat;
        mask-size: contain;
        mask-position: center;
        background-color: #fff;
        transition: all 300ms 0s ease;

        @media (max-width: 768px) {
          top: 28px;
        }
      }

      @media (min-width: 769px) {
        &:hover::before {
          top: -100%;
        }
      }
    }
  }

  @media (max-width: 768px) {
    .block + .block {
      margin-top: 45px;
    }
  }

}

.step2-box .step2-wrap {
  .block.-blue {
    background-color: #E6F3FF;

    .block-ttl {
      color: #1588FC;
    }

    .block-btn {
      background-color: #1588FC;
      border-color: #1588FC;

      &::before {
        background-color: #E6F3FF;
      }

      @media (min-width: 769px) {
        &:hover {
          color: #1588FC;

          &::after {
            right: 10px;
            background-color: #1588FC;
          }
        }
      }
    }
  }

  .block.-red {
    background-color: #FEEBED;

    .block-ttl {
      color: #FF6571;
    }

    .block-btn {
      background-color: #FF6571;
      border-color: #FF6571;

      &::before {
        background-color: #FDEAED;
      }

      @media (min-width: 769px) {
        &:hover {
          color: #FF6571;

          &::after {
            right: 10px;
            background-color: #FF6571;
          }
        }
      }
    }
  }

  .block.-green {
    background-color: #DFFDF9;

    .block-ttl {
      color: #06C9C9;
    }

    .block-btn {
      background-color: #06C9C9;
      border-color: #06C9C9;

      &::before {
        background-color: #DFFDF9;
      }

      @media (min-width: 769px) {
        &:hover {
          color: #06C9C9;

          &::after {
            right: 10px;
            background-color: #06C9C9;
          }
        }
      }
    }
  }
}

.step2-text {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-align: justify;
  word-break: break-all;

  &.-line {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px dashed #8EBFF4;
  }

  & + .step2-text {
    margin-top: 16px;
  }
}

.step3-box {
  width: 100%;
  position: relative;

  .step-ttl-group {
    width: 100%;
    padding-block: 100px 48px;
    background-color: #fff;

    @media (max-width: 768px) {
      padding-block: 64px 32px;
    }
  }

  .head {
    width: 105px;
    height: 28px;
    margin-inline: auto;
    background-color: #01458F;
    border-radius: 14px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

    b {
      margin-top: -4px;
      margin-left: 3px;
      font-size: 1.8rem;
      line-height: 0.9;
    }
  }

  .caption {
    display: block;
    margin-top: 10px;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.538;
    color: #1588FC;
    text-align: center;

    @media (max-width: 768px) {
      font-size: 2.6rem;
    }
  }
}

.step3-box .step3-wrap {
  width: 100%;
  padding: 80px 24px 56px;
  position: relative;
  z-index: 1;
  background: url(../img/step3-box-bg_pc.jpg)no-repeat;
  background-size: cover;
  background-position: bottom center;

  @media (max-width: 768px) {
    padding: 40px 24px 150px;
    background: url(../img/step3-box-bg_sp.jpg)no-repeat;
    background-size: cover;
    background-position: bottom center;
  }

  .detail-list {
    width: 876px;
    margin-inline: auto;

    @media (max-width: 768px) {
      width: 100%;
    }

    .item {
      padding-block: 24px;
      border-bottom: 1px dashed #8EBFF4;
      display: flex;

      @media (max-width: 768px) {
        flex-direction: column;
      }

      &:first-of-type {
        padding-top: 0;
      }

      &:last-of-type {
        padding-bottom: 0;
        border-bottom: 0;
      }

      .cap {
        width: 156px;
        font-size: 1.5rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        line-height: 2.1333;
        color: #01458F;
      }

      .text {
        flex: 1;
        font-size: 1.5rem;
        font-weight: 500;
        letter-spacing: 0.04em;
        line-height: 2.1333;
        text-align: justify;
        word-break: break-all;

        .small {
          display: block;
          font-size: 1.3rem;
        }
      }
    }
  }
}

.bottom-image {
  width: 100%;
  padding-block: 64px;
  background-size: 100% auto;
  position: relative;
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 1);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 8px, rgba(144, 210, 232, 1) 8px, rgba(144, 210, 232, 1) 12px);

  @media (max-width: 768px) {
    padding: 24px;
  }

  img {
    display: block;
    width: 876px;
    margin-inline: auto;
    border-radius: 24px;

    @media (max-width: 768px) {
      width: 100%;
    }
  }
}

/* ↑↑↑ main ↑↑↑ */

/* ↓↓↓ footer ↓↓↓ */
.footer {
  width: 100%;
  height: 50px;
  background-color: #01458F;
  display: grid;
  place-content: center;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
}

/* ↑↑↑ footer ↑↑↑ */

.-scaleUp {
  transform: translateZ(0);
  opacity: 0;
  scale: 0.6;
}

@media (min-width: 1281px) {}

@media (max-width: 1280px) {}

@media (max-width: 768px) {}

@media (max-width: 480px) {}

@media (max-width: 375px) {}