@charset "utf-8";

/* -------------------------------------------------------------------------- */
/*                                   Common                                   */
/* -------------------------------------------------------------------------- */
.sec00,
.sec07,
.footer {
  background-color: pink;
}

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

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

.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;
  gap: calc((60 / 390) * 100vw);
}

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

.nav-menu__bottom {
  width: min(100%, 436px);
}

.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__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 {
  min-height: 700px;
  background: var(--clr-bg-lightblue);
  background-image: url("../images/sp/sec00_bg.webp");
  background-size: cover;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}


.sec00 .inner {
  width: calc(100% - var(--sp-4));
  position: relative;
  z-index: 2;
  padding:var(--sp-10) 0 calc((60 / 390) * 100vw);;

}

.sec00__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.sec00__left {
  width: 100%;
}

.sec00__recruit-badge-wrapper {
  display: flex;
  align-items: baseline;
  gap: var(--sp-05);
  padding-bottom: var(--sp-1);
  border-bottom: 1px solid;
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-1);
}

.sec00__recruit-label {
  width: fit-content;
  font-size: var(--h3-fz);
  font-weight: var(--light);
  color: var(--clr-accent);
  line-height: 1;
}

.sec00__recruit-sub {
  font-size: var(--tiny-fz);
  font-weight: var(--bold);
  color: var(--clr-accent);
  line-height: 1;
}

.sec00__divider {
  width: 100%;
  max-width: 643px;
  height: 1px;
  background: var(--clr-accent);
}

.sec00__position {
  font-size: var(--large-fz);
  font-weight: var(--bold);
  color: var(--clr-accent);
  line-height: 1.5;
}

.sec00__title {
  font-size: calc((34 / 390) * 100vw);
  font-weight: var(--bold);
  color: var(--clr-white);
  line-height: 1.2;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-05);
  margin-bottom: var(--sp-1);
}
.sec00__title-line1,
.sec00__title-line2 {
  width: fit-content;
    display: inline-block;
  position: relative;
}

.sec00__title-line1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: calc(100% - 4px);
  background: var(--clr-accent);
  z-index: -1;
}

.sec00__title-line2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: calc(100% - 4px);
  background: var(--clr-accent);
  z-index: -1;
}

.sec00__subtitle {
  font-size: var(--h5-fz);
  font-weight: var(--bold);
  color: var(--clr-accent);
  line-height: 1.5;
  margin-bottom: var(--sp-5);
}

.sec00__right {
  width: 100%;
}

.sec00__image-wrapper {
  width: 100%;
  aspect-ratio: 528 / 496;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0px 8px 20px rgba(96, 152, 153, 0.33);
  background: #d9d9d9;
}

.sec00__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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-accent);
}

.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);
  filter: brightness(0) saturate(100%) invert(8%) sepia(23%) saturate(3928%) hue-rotate(214deg) brightness(94%) contrast(102%);
  animation: scrollArrow 1.5s ease-in-out infinite;
}

.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 {
  padding-block: calc((80 / 390) * 100vw) calc((124 / 390) * 100vw);
  background: no-repeat center bottom / cover
      url("../images/sp/sec01_deco1.webp"),
    repeat center / contain url("../images/pattern1.webp"), #e9f1f6;

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

    h3 {
      font-size: var(--h6-fz);
      font-weight: var(--bold);
      color: var(--clr-white);
      text-align: center;

      span {
        display: block;
      }

      img {
        margin-inline: auto;
        margin-top: var(--sp-2);
        margin-bottom: var(--sp-5);
      }
    }
  }

  .sec01__list {
    width: min(100%, 560px);
    margin-inline: auto;
    list-style: "※ " outside;
    padding-left: var(--sp-1);
  }

  .sec01__item {
    opacity: 0.6 !important;
    font-size: 10px;
    font-weight: var(--regular);
    color: var(--clr-white);
  }
}

/* ---------------------------------- Sec02 --------------------------------- */
.sec02 {
  /* background-color: #e9f1f6; */

  .sec02__header {
    margin-bottom: var(--sp-3);

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

    p {
      font-size: var(--h4-fz);
      color: var(--clr-black);
    }

    h3 {
      width: fit-content;
      font-size: var(--h4-fz);
      color: var(--clr-white);

      span {
        padding-block: calc((2 / 390) * 100vw);
        background: linear-gradient(
          to bottom,
          transparent 10%,
          var(--clr-accent) 10%,
          var(--clr-accent) 90%,
          transparent 90%
        );
      }
    }
  }

  .sec02__content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-flow: column-reverse nowrap;
    gap: var(--sp-3);
  }

  .sec02__img {
    width: 100%;
  }

  .sec02__box {
    width: min(100%, 600px);
  }
}

/* ---------------------------------- Sec03 --------------------------------- */
.sec03 {
  /* background-color: #f8f8f8; */
  position: relative;
  padding-top: var(--sp-10);

  &::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    margin-inline: auto;
    width: calc((57 / 390) * 100vw);
    height: calc((34 / 390) * 100vw);
    background: no-repeat center / contain url("../images/sp/sec03_deco1.webp");
    z-index: 3;
  }

  .sec03__header {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-flow: column nowrap;
    margin-bottom: var(--sp-5);

    p {
      font-size: calc((34 / 390) * 100vw);
      font-weight: var(--bold);
      /* position: relative; */
      /* margin-right: var(--sp-4); */

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

      em {
        font-size: calc((58 / 390) * 100vw);
      }
    }
  }

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

  .sec03__content {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-flow: column nowrap;
    gap: var(--sp-5);
    margin-bottom: var(--sp-5);
  }

  .sec03__box {
    width: 100%;

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

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

  .sec03__img {
    width: 100%;
  }

  .sec03__list {
    width: min(100%, 570px);
    counter-reset: count;
  }

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

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

      &::before {
        display: block;
        counter-increment: count;
        content: "業務内容." counter(count);
        font-size: var(--small-fz);
        font-weight: var(--regular);
        color: var(--clr-white);
        background-color: var(--clr-accent);
        padding-inline: var(--sp-05);
      }

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

    .sec03__item-text {
      font-size: var(--base-fz);
      font-weight: var(--regular);
    }
  }

  .cmn-textbox {
    p {
      font-size: var(--h5-fz);
      text-align: left;
    }
  }
}

/* ---------------------------------- Sec04 --------------------------------- */
.sec04 {
  /* background-color: #e9f1f6; */

  .sec04__content {
    border-radius: var(--sp-1);
    background-color: var(--clr-white);
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-flow: column-reverse nowrap;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
  }

  .sec04__box {
    flex-grow: 1;
    padding: var(--sp-3);
  }

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

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

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

  .sec04__text {
    font-size: var(--base-fz);
    font-weight: var(--regular);

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

  .sec04__button {
    width: min(100%, 369px);
    height: calc((67 / 390) * 100vw);
    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 {
      font-size: var(--h5-fz);
      font-weight: var(--bold);
      color: #0096dc;
    }
  }
}

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

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

  .sec05__img {
    width: 100%;
  }

  .sec05__list {
    counter-reset: count;
    flex-grow: 1;
  }

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

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

    .sec05__item-header {
      position: relative;

      &:has(+ .sec05__list2) {
        margin-bottom: var(--sp-1);
      }

      &::before {
        display: block;
        counter-increment: count;
        content: "Incentive." counter(count);
        font-size: var(--small-fz);
        font-weight: var(--regular);
      }

      h4 {
        font-size: var(--h4-fz);
        font-weight: var(--bold);
        /* color: #0399dd; */
        background-image: linear-gradient(to right, #0399dd, #3b2290);
        color: transparent;
        background-clip: text;
      }
    }
  }

  .sec05__list2 {
    list-style: "・" outside;
  }

  .sec05__item2 {
    margin-left: var(--sp-2);

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

/* ---------------------------------- 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;
    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");
      }
    }
  }
}

/* --------------------------------- 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);
}