@charset "utf-8";

/* -------------------------------------------------------------------------- */
/*                                   Common                                   */
/* -------------------------------------------------------------------------- */
[class*="__wrapper-m"] {
  width: min(100%, 1100px);
  margin-inline: auto;
}

.cmn-py {
  padding-block: var(--sp-10);
}

.sp-px {
  padding-inline: var(--sp-2);
}

span,
em {
  font-style: normal;
}

.cmn-header {
  margin-bottom: var(--sp-5);

  h3,
  p {
    font-weight: var(--bold);
    text-align: center;
  }

  h3 {
    font-size: var(--h3-fz);
    margin-bottom: var(--sp-3);
  }

  p {
    font-size: var(--h6-fz);
  }
}

.cmn-header2 {
  margin-block: var(--sp-5);
  position: relative;

  h4,
  p {
    text-align: center;
    font-weight: var(--bold);
  }

  h4 {
    font-size: var(--h4-fz);
    position: relative;
    z-index: 2;
  }

  p {
    font-size: calc((40 / 390) * 100vw);
    color: #f9fdff;
    position: absolute;
    inset: auto 0 0 0;
    transform: translateY(15%);
    line-height: 1;
    z-index: 1;
    text-transform: capitalize;
  }
}

.cmn-header2--des2 {
  p {
    font-size: calc((40 / 390) * 100vw);
    color: #f0f0f0;
  }
}

.cmn-textbox {
  text-align: left;

  p {
    font-size: var(--h6-fz);
    font-weight: var(--bold);
    text-transform: capitalize;

    &:not(:last-child) {
      margin-bottom: var(--sp-2);
    }
  }
}

.cmn-textbox--center {
  text-align: center;
}

.cmn-hl {
  background: #fff79f;
  background: linear-gradient(to bottom,
      transparent 10%,
      #fff79f 10%,
      #fff79f 90%,
      transparent 90%);
}

.cmn-cnt {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-flow: column nowrap;
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);

  .cmn-cnt__box {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-flow: column nowrap;
    gap: var(--sp-3);
  }

  .cmn-cnt__list {
    width: min(100%, 535px);
  }

  .cmn-cnt__item {
    padding-bottom: var(--sp-2);
    border-bottom: 1px solid var(--clr-accent);

    &:not(:last-child) {
      margin-bottom: var(--sp-3);
    }

    .cmn-cnt__item-header {
      margin-bottom: var(--sp-2);

      h5 {
        font-size: var(--h5-fz);
        font-weight: var(--bold);
      }
    }

    .cmn-cnt__item-textbox {
      p {
        font-size: var(--base-fz);
        font-weight: var(--bold);
        text-align: left;
      }
    }
  }
}

.cmn-textgrad {
  background-image: linear-gradient(red, blue);
  color: transparent;
  background-clip: text;
}

.cmn-bg1 {
  background: repeat center / contain url("../images/pattern1.webp"), #e9f1f6;
}

.cmn-bg2 {
  background: repeat center / contain url("../images/pattern1.webp"), #f8f8f8;
}

/* -------------------------------------------------------------------------- */
/*                                     sp                                     */
/* -------------------------------------------------------------------------- */
/* =======================================
Header
======================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 12px rgba(46, 46, 46, 0.08);
}

.header__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-1) var(--sp-1);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.header__logo-img {
  /* height: 20px;
  width: 331px; */
  /* width: 208px; */
  width: calc((175 / 390) * 100vw);
  object-fit: contain;
}

.header__badge {
  zoom: 0.9;
  background: var(--clr-white);
  border: 1px solid var(--clr-white);
  padding: 1px 2px;
  font-size: 10px;
  color: #171616;
  font-weight: var(--regular);
  line-height: 1.5;
  border-radius: 0;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.header__cta-button {
  background: linear-gradient(90deg, var(--clr-main) 0%, var(--clr-sub01) 100%);
  color: var(--clr-white);
  padding: 14px 0;
  width: 195px;
  text-align: center;
  border-radius: 4px;
  font-size: 14px;
  font-weight: var(--bold);
  letter-spacing: 0.56px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__menu-button {
  background: linear-gradient(90deg, var(--clr-main) 0%, var(--clr-sub01) 100%);
  color: var(--clr-white);
  padding: 0 calc((10 / 390) * 100vw);
  width: auto;
  min-width: calc((78 / 390) * 100vw);
  text-align: center;
  border-radius: calc((4 / 390) * 100vw);
  font-size: calc((14 / 390) * 100vw);
  font-weight: var(--bold);
  letter-spacing: 0.14vw;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  height: calc((33 / 390) * 100vw);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc((10 / 390) * 100vw);
  flex-direction: row;
}

.header__menu-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.header__menu-icon {
  display: flex;
  flex-direction: column;
  gap: calc((3 / 390) * 100vw);
  width: calc((12 / 390) * 100vw);
}

.header__menu-line {
  width: 100%;
  height: calc((1 / 390) * 100vw);
  background: var(--clr-white);
  display: block;
  border-radius: calc((1 / 390) * 100vw);
  transition: all 0.3s;
}

.header__menu-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: calc((12 / 390) * 100vw);
  letter-spacing: 0.13vw;
  line-height: 1;
  font-weight: var(--bold);
}

/* Navigation Menu */
.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.nav-menu.is-open {
  visibility: visible;
  opacity: 1;
}

.nav-menu__content {
  position: relative;
  width: 100%;
  height: 100%;
  background: repeat center / contain url("../images/pattern1.webp"), #f8f8f8f5;

  padding: calc((80 / 390) * 100vw) calc((20 / 390) * 100vw) calc((40 / 390) * 100vw);
  overflow-y: auto;
}

.nav-menu__close {
  position: fixed;
  top: calc((20 / 390) * 100vw);
  right: calc((20 / 390) * 100vw);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((6 / 390) * 100vw);
  padding: 0;
  z-index: 10;
  transition: opacity 0.3s;
}

.nav-menu__close:hover {
  opacity: 0.7;
}

.nav-menu__close-icon {
  position: relative;
  width: calc((25 / 390) * 100vw);
  height: calc((25 / 390) * 100vw);
}

.nav-menu__close-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: calc((3 / 390) * 100vw);
  border-radius: calc((4 / 390) * 100vw);
  background: var(--clr-txt);
  transform: translateY(-50%);
}

.nav-menu__close-line:first-child {
  transform: translateY(-50%) rotate(45deg);
}

.nav-menu__close-line:last-child {
  transform: translateY(-50%) rotate(-45deg);
}

.nav-menu__close-text {
  font-size: calc((11 / 390) * 100vw);
  color: var(--clr-txt);
  font-weight: var(--medium);
  line-height: 1;
}

.nav-menu__inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-flow: column nowrap;
}

.nav-menu__top {
  flex-grow: 1;
}

.nav-menu__bottom {
  width: min(100%, 436px);
  margin-bottom: calc((14 / 390) * 100vw);
}

.nav-menu__header {
  margin-bottom: calc((24 / 390) * 100vw);
}

.nav-menu__header h3,
.nav-menu__header p {
  font-weight: var(--bold);
}

.nav-menu__header h3 {
  font-size: calc((25 / 390) * 100vw);
  margin-bottom: calc((16 / 390) * 100vw);
}

.nav-menu__header p {
  font-size: var(--base-fz);
}

.nav-menu__button {
  width: min(100%, 436px);
  height: calc((48 / 390) * 100vw);
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #38ace0, #3b2290);
  border-radius: var(--sp-05);
  transition: all 0.3s;
}

.nav-menu__button:hover {
  background: linear-gradient(to right, #3b2290, #38ace0);
}

.nav-menu__list {
  display: flex;
  flex-direction: column;
  margin-bottom: calc((40 / 390) * 100vw);
}

.nav-menu__item {
  position: relative;
  &:not(:last-child) {
    margin-bottom: calc((16 / 390) * 100vw);
  }

  a {
    display: flex;
    flex-direction: column;
    padding-bottom: calc((16 / 390) * 100vw);
    border-bottom: 1px solid var(--clr-txt);

    .ja,
    .en {
      display: block;
      padding-right: calc((20 / 390) * 100vw);
    }

    .ja {
      font-size: calc((18 / 390) * 100vw);
    }

    .en {
      font-size: calc((10 / 390) * 100vw);
    }
  }

  &::after {
    content: "";
    position: absolute;
    display: block;
    background: url("../images/sp/icon_nav-list.png") no-repeat center;
    background-size: contain;
    top: calc(50% - ((10 / 390) * 100vw));
    right: 0;
    width: calc((20 / 390) * 100vw);
    height: calc((18 / 390) * 100vw);
  }

}

.nav-menu__button span {
  font-size: var(--small-fz);
  font-weight: var(--bold);
  color: var(--clr-white);
  letter-spacing: 0.04em;
}

.nav-menu__map {
  margin-bottom: calc((16 / 390) * 100vw);
  width: 100%;
  height: calc((289 / 390) * 100vw);
  border: calc((6 / 390) * 100vw) solid var(--clr-white);
  overflow: hidden;
}

.nav-menu__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.nav-menu__textbox {
  margin-bottom: calc((8 / 390) * 100vw);
}

.nav-menu__textbox p {
  font-size: var(--base-fz);
}

.nav-menu__textbox p:nth-of-type(1) {
  font-weight: var(--bold);
}

.nav-menu__textbox p:not(:last-child) {
  margin-bottom: calc((16 / 390) * 100vw);
}

.nav-menu__link span {
  width: fit-content;
  margin-inline: 0 auto;
  font-size: var(--small-fz);
  font-weight: var(--regular);
  color: #3a5efa;
  padding-right: calc((24 / 390) * 100vw);
  position: relative;
  text-decoration: underline;
}

.nav-menu__link span::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  margin-block: auto;
  width: calc((24 / 390) * 100vw);
  height: calc((24 / 390) * 100vw);
  background: no-repeat center / contain url("../images/sec11_deco1.webp");
}

/* =======================================
Hero Section
======================================= */
/* ---------------------------------- Sec00 --------------------------------- */
.sec00 {
  height: calc((500 / 390) * 100vw);
  /* height: max(700px, 100vh); */
  position: relative;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    width: inherit;
    height: inherit;
    background: repeat center / cover url("../images/sp/sec00_deco1.webp");
    z-index: 1;
  }

  .sec00__video {
    width: inherit;
    height: inherit;
    position: absolute;
    inset: 0;

    video {
      width: 100vw;
      height: auto;
      height: inherit;
      object-fit: cover;
    }
  }

  .sec00__wrapper {
    width: min(100%, 1600px);
    height: inherit;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
    position: relative;
    z-index: 2;
  }

  .sec00__header {
    margin-bottom: var(--sp-5);

    h2 {
      /* margin-bottom: var(--sp-2); */

      img {
        margin-inline: auto;
        width: calc((134 / 390) * 100vw);
        height: calc((78 / 390) * 100vw);
      }
    }

    p {
      font-size: var(--small-fz);
      font-weight: var(--bold);
      text-align: center;
      color: var(--clr-white);
    }
  }

  .sec00__button {
    position: absolute;
    inset: auto 0 15vw 0;
    /* width: min(100%, 436px); */
    width: calc((326 / 390) * 100vw);
    height: calc((51 / 390) * 100vw);
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #38ace0, #3b2290);
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    border-radius: var(--sp-05);
    overflow: hidden;

    &:hover {
      opacity: 1;
    }
  }

  .sec00__button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #3b2290, #38ace0);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: var(--sp-05);
  }

  .sec00__button:hover::before {
    opacity: 1;
  }

  .sec00__button span {
    font-size: var(--small-fz);
    font-weight: var(--bold);
    color: var(--clr-white);
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
  }
}

.sec00__scroll {
  position: absolute;
  bottom: var(--sp-1);
  left: calc(50% - (((40 / 2) / 390) * 100vw));
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.sec00__scroll-text {
  font-size: var(--tiny-fz);
  color: var(--clr-white);
}

.sec00__scroll-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc((0/ 390) * 100vw);
}

.sec00__scroll-arrow {
  width: calc((41 / 390) * 100vw);
  height: calc((10 / 390) * 100vw);
  animation: scrollArrow 1.5s ease-in-out infinite;
  /* filter: brightness(0) saturate(100%) invert(8%) sepia(23%) saturate(3928%) hue-rotate(214deg) brightness(94%) contrast(102%); */
  filter: invert(100%) sepia(0%) saturate(7494%) hue-rotate(3deg) brightness(101%) contrast(100%);
}

.sec00__scroll-arrow:nth-child(1) {
  animation-delay: 0s;
}

.sec00__scroll-arrow:nth-child(2) {
  animation-delay: 0.15s;
}

@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: translateY(calc((-4 / 390) * 100vw));
  }

  30% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(calc((4 / 390) * 100vw));
  }
}

/* ---------------------------------- Sec01 --------------------------------- */
.sec01 {
  .sec01__wrapper {
    width: min(100%, 1145px);
    margin-inline: auto;
  }

  .sec01__header {
    margin-bottom: var(--sp-2);

    h3 {
      font-size: calc((34 / 390) * 100vw);
      font-weight: var(--bold);
      color: var(--clr-white);
      text-align: left;
      line-height: 1.6;

      span {
        background-color: var(--clr-accent);
        margin-bottom: var(--sp-1);
      }
    }
  }

  .sec01__subtitle {
    font-size: var(--base-fz);
    font-weight: var(--bold);
    margin-bottom: var(--sp-3);
  }

  .sec01__content {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-flow: row wrap;
    gap: var(--sp-3);
  }

  .sec01__img {
    width: 100%;
    flex-shrink: 0;
  }

  .sec01__box {
    width: min(100%, 702px);

    p {
      font-size: var(--base-fz);
      font-weight: var(--bold);
      text-align: left;

      &:not(:last-child) {
        margin-bottom: var(--sp-3);
      }
    }

    .text-des1 {
      font-size: calc((26 / 390) * 100vw);
    }

    .text-des2 {
      font-size: calc((22 / 390) * 100vw);
    }

    .text-des3 {
      text-align: right;
    }
  }

  .sec01__textbox {
    width: min(100%, 657px);
  }
}

/* ---------------------------------- Sec02 --------------------------------- */
.sec02 {
  .sec02__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    gap: var(--sp-3);

    &:not(:last-child) {
      margin-bottom: var(--sp-3);
    }
  }

  .sec02__content--full {
    width: 100%;
    flex-flow: column nowrap;
    padding-top: var(--sp-2);

    .sec02__box {
      width: inherit;
      border-bottom: none;

      p {
        width: min(100%, 858px);
      }
    }
  }

  .sec02__box {
    width: min(100%, 534px);
    padding-bottom: var(--sp-3);
    border-bottom: 1px solid var(--clr-black);

    p {
      font-size: var(--base-fz);
      font-weight: var(--bold);
    }

    .sec02__box-header {
      font-weight: var(--bold);
      margin-bottom: var(--sp-2);

      h4 {
        font-size: var(--h4-fz);
        margin-bottom: var(--sp-2);
      }

      p {
        font-size: calc((22 / 390) * 100vw);
      }
    }
  }

  .sec02__list {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    gap: var(--sp-2);
    padding: var(--sp-2);
    background-color: var(--clr-white);
    border-radius: var(--sp-1);
  }

  .sec02__item {
    /* width: min(100%, 233px); */
    width: 100%;
    border-radius: var(--sp-1);
    border: 1px solid var(--clr-accent);
    padding: var(--sp-2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
    gap: var(--sp-2);

    h5 {
      font-size: var(--h5-fz);
      font-weight: var(--bold);
      text-align: center;
      letter-spacing: 0.04em;
    }

    ol {
      width: 100%;
      counter-reset: count;

      li {
        position: relative;
        font-size: var(--base-fz);
        font-weight: var(--bold);
        letter-spacing: 0.04em;

        &:not(:last-child) {
          margin-bottom: var(--sp-1);
        }

        &::before {
          counter-increment: count;
          content: counter(count, decimal-leading-zero);
          margin-right: var(--sp-1);
        }
      }
    }
  }

  .sec02__item--des2 {
    flex-grow: 1;

    h5 {
      font-size: var(--h4-fz);
      margin-bottom: var(--sp-3);
    }

    ul {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-flow: row wrap;

      li {
        width: 50%;
        /* height: 108px; */
        padding-bottom: var(--sp-2);

        &:nth-child(2n + 1) {
          border-right: 1px solid var(--clr-accent);
        }

        &:nth-child(n + 3) {
          padding-block: var(--sp-2) 0;
          border-top: 1px solid var(--clr-accent);
        }

        img {
          margin: 0 auto var(--sp-1);
        }

        h6 {
          font-size: var(--h5-fz);
          font-weight: var(--bold);
          text-align: center;
          letter-spacing: 0.04em;
        }
      }
    }
  }
}

/* ---------------------------------- Sec03 --------------------------------- */
.sec03 {
  padding-block: calc((128 / 390) * 100vw) calc((112 / 390) * 100vw);
  background: no-repeat center / cover url("../images/sp/sec03_img1.webp");

  .sec03__box {
    /* width: fit-content; */
    width: 100%;
    margin-inline: auto;
    background-color: var(--clr-white);
    border-radius: var(--sp-1);
    padding: var(--sp-2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
    gap: var(--sp-2);
  }

  .sec03__header {

    p,
    h3 {
      text-align: center;
    }

    p {
      font-size: var(--base-fz);
      font-weight: var(--regular);
    }

    h3 {
      font-size: var(--h3-fz);
      font-weight: var(--bold);
    }
  }

  .sec03__button {
    /* width: min(100%, 436px); */
    width: 100%;
    height: calc((70 / 390) * 100vw);
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #38ace0, #3b2290);
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    border-radius: var(--sp-05);
    position: relative;
    overflow: hidden;
    z-index: 1;

    &:hover {
      opacity: 1;
    }
  }

  .sec03__button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #3b2290, #38ace0);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: var(--sp-05);
  }

  .sec03__button:hover::before {
    opacity: 1;
  }

  .sec03__button span {
    font-size: var(--small-fz);
    font-weight: var(--bold);
    color: var(--clr-white);
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
  }
}

/* ---------------------------------- Sec04 --------------------------------- */
.sec04 {
  background: var(--clr-bg-gray) !important;

  .cmn-header {
    h3 {
      text-align: left;
    }
  }

  .sec04__tbox {
    margin-bottom: var(--sp-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row nowrap;
    gap: var(--sp-2);
  }

  .sec04__tbox-box1 {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-flow: row wrap;
    gap: var(--sp-2);

    button {
      padding: var(--sp-1) var(--sp-2);
      border: 1px solid var(--clr-accent);
      border-radius: var(--sp-05);
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: transparent;
      font-size: var(--small-fz);
      font-weight: var(--regular);
      color: var(--clr-accent);

      &:hover {
        background-color: var(--clr-bg-gray);
      }
    }

    button.active {
      background-color: var(--clr-accent);
      color: var(--clr-white);
    }
  }

  .sec04__content {
    margin-bottom: var(--sp-5);

    .splide.is-initialized:not(.is-active),
    .splide__list {
      display: flex !important;
      /* justify-content: center;
      align-items: center;
      flex-flow: column nowrap !important;
      gap: var(--sp-3) !important; */
    }
  }

  .sec04__list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
    gap: var(--sp-3) !important;
  }

  .sec04__item {
    /* width: min(100%, 345px); */
    border-radius: var(--sp-1);
    /* border: 1px solid var(--clr-accent); */

    .sec04__item-link {}

    .sec04__item-img {
      width: 100%;
    }

    .sec04__item-text1 {
      font-size: var(--h6-fz);
      font-weight: var(--bold);
      letter-spacing: 0.04em;
      margin-bottom: var(--sp-2);
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      line-clamp: 2;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }

    .sec04__item-text3 {
      font-size: 10px;
      color: #7a7a7a;
    }

    .sec04__item-text2,
    .sec04__item-text3 {
      font-weight: var(--regular);
      letter-spacing: 0.04em;
    }

    .sec04__item-content {
      padding: var(--sp-2);
      background-color: var(--clr-white);
      border: 1px solid var(--clr-accent);
      border-top: none;
      border-radius: 0 0 var(--sp-1) var(--sp-1);
    }

    .sec04__item-box {
      position: relative;

      &::before {
        content: "";
        position: absolute;
        inset: 0 0 0 auto;
        margin-block: auto;
        width: 20px;
        height: 20px;
        background: no-repeat center / contain url("../images/sec04_deco1.webp");
      }
    }

    .sec04__item-header {
      display: flex;
      justify-content: start;
      align-items: center;
      flex-flow: row nowrap;
      gap: var(--sp-2);

      h4 {
        font-size: var(--h6-fz);
        font-weight: var(--bold);
      }

      p {
        font-size: var(--tiny-fz);
        font-weight: var(--regular);
        letter-spacing: 0.04em;
      }
    }
  }

  .sec04__button {
    /* width: min(100%, 345px);
    height: 67px; */
    width: 100%;
    height: calc((70 / 390) * 100vw);
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--sp-5);
    border: 1px solid #0096dc;
    background-color: var(--clr-white);
    transition: all 0.3s;

    &:hover {
      background: #0096dc;

      span {
        color: var(--clr-white);
      }
    }

    span {
      transition: all 0.3s;
      font-size: var(--h5-fz);
      font-weight: var(--bold);
      color: #0096dc;
    }
  }
}

/* ---------------------------------- Sec05 --------------------------------- */
.sec05 {
  .sec05__content {
    &:not(:last-child) {
      margin-bottom: var(--sp-5);
    }
  }

  .sec05__header {
    margin-bottom: var(--sp-4);

    p,
    h4 {
      font-weight: var(--bold);
    }

    p {
      font-size: calc((20 / 390) * 100vw);
    }

    h4 {
      font-size: var(--h4-fz);
      margin-bottom: var(--sp-2);
    }
  }

  .sec05__subtitle {
    font-size: calc((26 / 390) * 100vw);
    font-weight: var(--bold);
    margin-bottom: var(--sp-2);
    padding-left: var(--sp-1);
    border-left: 1px solid var(--clr-black);
    /* position: relative;

    &::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      margin-block: auto;
      width: 1px;
      height: 75%;
      background-color: var(--clr-black);
    } */
  }

  .sec05__list {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: stretch;
    flex-flow: row nowrap;
    gap: var(--sp-1);
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }

  .sec05__item {
    /* width: 100%; */
    width: calc((326 / 390) * 100vw) !important;
    flex-shrink: 0;
    background-color: var(--clr-white);
    padding: var(--sp-2);
    border-radius: var(--sp-1);

    img {
      margin: 0 auto var(--sp-3) 0;
    }

    h6 {
      font-size: var(--h4-fz);
      font-weight: var(--bold);
      margin-bottom: var(--sp-2);
    }

    p {
      font-size: var(--base-fz);
      font-weight: var(--regular);
    }
  }
}

/* ---------------------------------- Sec06 --------------------------------- */
.sec06 {
  /* background-color: #e9f1f6; */
  overflow: hidden;

  .sec06__content {
    &:not(:last-child) {
      margin-bottom: var(--sp-5);
    }
  }

  .sec06__header {
    margin-bottom: var(--sp-2);

    h5 {
      font-size: var(--h5-fz);
      font-weight: var(--bold);
    }
  }

  .sec06__content {
    .cmn-textbox {
      p {
        font-size: var(--base-fz);
      }
    }
  }

  .sec06__img1 {
    width: 100%;
    /* height: calc((225 / 390) * 100vw); */
    overflow: scroll;

    img {
      max-width: none;
    }
  }

  .sec06__box {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-flow: column nowrap;
    /* gap: var(--sp-3); */

    .cmn-textbox {
      width: min(100%, 530px);
    }
  }

  .cmn-textbox {
    margin-bottom: var(--sp-3);
  }
}

/* ---------------------------------- Sec07 --------------------------------- */
.sec07 {
  padding-bottom: var(--sp-10);

  .sec07__wrapper-xl {
    /* overflow: hidden; */
  }

  .sec07__list {
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap; */
    /* gap: var(--sp-3); */
  }

  .sec07__item {
    flex-shrink: 0;

    .sec07__item-img {
      /* width: calc((326 / 390) * 100vw);
      height: calc((218 / 390) * 100vw); */
      /* border-radius: var(--sp-1); */
    }
  }

  .splide__arrow {
    top: 55%;
    border-radius: var(--sp-1);
    background: var(--clr-white);
    width: calc((40 / 390) * 100vw);
    height: calc((40 / 390) * 100vw);
  }

  .splide__pagination {
    bottom: var(--sp-5);

    .splide__pagination__page {
      width: calc((10 / 390) * 100vw);
      height: calc((10 / 390) * 100vw);
      background: var(--clr-accent);
    }

    .is-active {
      background: transparent;
      transform: none;
      border: 1px solid var(--clr-accent);
    }
  }
}

/* ---------------------------------- Sec08 --------------------------------- */
.sec08 {
  .cmn-cnt {
    margin-bottom: var(--sp-3);
  }
}

/* ---------------------------------- Sec09 --------------------------------- */
.sec09 {
  padding-top: 0;

  .cmn-cnt {
    &:last-of-type {
      margin-bottom: var(--sp-3);
    }
  }
}

/* ---------------------------------- Sec10 --------------------------------- */
.sec10 {
  /* background-color: #f8f8f8; */

  .sec10__item {
    width: min(100%, 900px);
    margin-inline: auto;

    &:hover {
      cursor: pointer;
    }

    &:not(:last-child) {
      margin-bottom: var(--sp-2);
    }

    .sec10__item-tbox,
    .sec10__item-bbox {
      padding: var(--sp-2);
      background-color: var(--clr-white);
    }

    .sec10__item-tbox {
      border-radius: var(--sp-1);
      border: 1px solid var(--clr-accent);
    }

    .sec10__item-bbox {
      display: none;
      border-radius: 0 0 var(--sp-1) var(--sp-1);
      position: relative;

      &::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        margin-inline: auto;
        width: calc(100% - var(--sp-6));
        height: 1px;
        background-color: var(--clr-accent);
      }
    }

    .sec10__item-header,
    .sec10__item-textbox {
      position: relative;
      padding-left: var(--sp-4);

      &::before {
        flex-shrink: 0;
        position: absolute;
        inset: 0 auto auto 0;
        font-size: var(--h4-fz);
        font-weight: var(--bold);
        z-index: 1;
      }
    }

    .sec10__item-header {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-flow: row nowrap;
      gap: var(--sp-1);

      &::before {
        content: "Q";
      }

      h4 {
        flex-grow: 1;
        font-size: var(--h5-fz);
        font-weight: var(--bold);
      }

      img {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
      }
    }

    .sec10__item-textbox {
      min-height: var(--sp-3);

      &::before {
        content: "A";
        transform: translateY(-7px);
      }

      p {
        font-size: var(--base-fz);
        font-weight: var(--bold);
      }
    }
  }

  .sec10__item--active {

    .sec10__item-tbox,
    .sec10__item-bbox {
      border: 1px solid var(--clr-accent);
    }

    .sec10__item-tbox {
      border-radius: var(--sp-1) var(--sp-1) 0 0;
      border-bottom: none;
    }

    .sec10__item-bbox {
      border-top: none;
      display: block;
    }
  }
}

/* ---------------------------------- Sec11 --------------------------------- */
.sec11 {
  /* background-color: #e9f1f6; */

  .sec11__content {
    padding: var(--sp-3);
    background-color: var(--clr-white);
    border-radius: var(--sp-1);
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-flow: column nowrap;
    gap: var(--sp-5);
  }

  .sec11__rbox {
    /* width: min(100%, 550px); */
    flex-grow: 1;
  }

  .sec11__lbox {
    width: min(100%, 436px);
  }

  .sec11__header {
    margin-bottom: var(--sp-5);

    h3,
    p {
      font-weight: var(--bold);
    }

    h3 {
      font-size: calc((30 / 390) * 100vw);
      margin-bottom: var(--sp-2);
    }

    p {
      font-size: var(--h6-fz);
    }
  }

  .sec11__button {
    /* width: min(100%, 436px);
    height: 70px; */
    width: 100%;
    height: calc((70 / 390) * 100vw);
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #38ace0, #3b2290);
    border-radius: var(--sp-05);
    transition: all 0.3s;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));

    &:hover {
      /* opacity: 1; */
      background: linear-gradient(to right, #3b2290, #38ace0);
    }

    span {
      font-size: var(--base-fz);
      font-weight: var(--bold);
      color: var(--clr-white);
      letter-spacing: 0.04em;
    }
  }

  .sec11__img {
    margin-bottom: var(--sp-2);
  }

  .sec11__textbox {
    margin-bottom: var(--sp-1);

    p {
      font-size: var(--base-fz);

      &:nth-of-type(1) {
        font-weight: var(--bold);
      }

      &:not(:last-child) {
        margin-bottom: var(--sp-2);
      }
    }
  }

  .sec11__link {
    span {
      width: fit-content;
      margin-inline: 0 auto;
      font-size: var(--small-fz);
      font-weight: var(--regular);
      color: #3a5efa;
      padding-right: var(--sp-4);
      position: relative;
      text-decoration: underline;

      &::before {
        content: "";
        position: absolute;
        inset: 0 0 0 auto;
        margin-block: auto;
        width: 24px;
        height: 24px;
        background: no-repeat center / contain url("../images/sec11_deco1.webp");
      }
    }
  }
}

/* ---------------------------------- sec12 --------------------------------- */
.sec12 {
  .sec12__content {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-flow: row wrap;
    gap: var(--sp-5);
  }

  .sec12__box {
    width: min(100%, 530px);
  }

  .sec12__header {
    margin-bottom: var(--sp-2);

    h4 {
      font-size: var(--h3-fz);
      font-weight: var(--bold);
      text-align: center;
      color: var(--clr-black);
    }
  }

  .sec12__list {
    width: 100%;
    border: 1px solid var(--clr-accent);
    border-radius: var(--sp-1);
    background-color: var(--clr-white);
    padding: var(--sp-2);
  }

  .sec12__item {
    &:not(:last-child) {
      padding-bottom: var(--sp-4);
      margin-bottom: var(--sp-4);
      border-bottom: 1px solid var(--clr-accent);
    }

    .sec12__item-img {
      margin-inline: auto;
    }

    .sec12__item-header {
      margin-bottom: var(--sp-1);

      h5,
      p {
        font-weight: var(--bold);
      }

      h5 {
        font-size: 26px;
        margin-bottom: var(--sp-2);
      }

      p {
        font-size: var(--base-fz);
        letter-spacing: 0.04em;
        text-align: justify;
      }
    }

    ul {
      margin-top: var(--sp-2);
      counter-reset: count;

      li {
        display: flex;
        justify-content: start;
        align-items: start;
        flex-flow: row nowrap;
        font-size: var(--small-fz);
        font-weight: var(--regular);
        position: relative;

        &:not(:last-child) {
          margin-bottom: var(--sp-1);
        }

        &::before {
          position: relative;
          display: block;
          margin-right: var(--sp-2);

          counter-increment: count;
          content: "※" counter(count);
        }
      }
    }
  }
}

/* --------------------------------- Footer --------------------------------- */
.footer {
  padding-block: var(--sp-5) var(--sp-2);
  padding-bottom: calc(var(--sp-5) + ((80 / 390) * 100vw));
  background-color: #061238;

  .footer__box,
  .footer__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: column nowrap;
    gap: var(--sp-2);
  }

  .footer__box {
    border-bottom: 1px solid var(--clr-white);
    padding-bottom: var(--sp-5);
    margin-bottom: var(--sp-5);
  }

  .footer__address {
    margin-inline: auto;

    span {
      font-size: var(--base-fz);
      font-weight: var(--regular);
      color: var(--clr-white);
    }
  }

  .footer__list {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-flow: column nowrap;
    gap: var(--sp-3);
    margin-bottom: var(--sp-5);
  }

  .footer__item {
    a {
      font-size: var(--base-fz);
      font-weight: var(--regular);
      color: var(--clr-white);
    }
  }

  .footer__copyright {
    font-size: var(--base-fz);
    font-weight: var(--regular);
    color: var(--clr-white);
  }
}

/* -------------------------------------------------------------------------- */
/*                                   Modal                                    */
/* -------------------------------------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: relative;
  width: 95%;
  height: 85%;
  margin: 5% auto;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  line-height: 1;
  transition: color 0.3s;
  padding: 15px 20px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}

.modal-close:hover {
  color: #666;
}

#modalIframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
  フローティングエントリーボタン
  スマホ時に画面下部に固定表示されるボタン
============================================ */

/* フローティングエントリーボタンの背景レイヤー */
.floating-entry {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: calc((18 / 390) * 100vw) calc((24 / 390) * 100vw) calc((18 / 390) * 100vw);
  background: rgba(6, 18, 56, 0.6);
  text-decoration: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.floating-entry span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((342 / 390) * 100vw);
  height: calc((60 / 390) * 100vw);
  background: linear-gradient(90deg, #38ace0 0%, #3b2290 100%);
  border-radius: calc((4 / 390) * 100vw);
  color: #fff;
  font-size: calc((16 / 390) * 100vw);
  font-weight: var(--bold);
  text-align: center;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.floating-entry span::after {
  content: "";
  position: absolute;
  right: calc((16 / 390) * 100vw);
  top: 50%;
  transform: translateY(-50%);
  width: calc((20 / 390) * 100vw);
  height: calc((20 / 390) * 100vw);
  background-image: url("../images/sp/icon_floating-entry.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.floating-entry:active span {
  opacity: 0.8;
  transform: scale(0.98);
}