@charset "utf-8";

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

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

span,
em {
  font-style: normal;
}

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

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

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

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

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

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

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

  p {
    font-size: 80px;
    color: #f9fdff;
    position: absolute;
    inset: auto 0 0 0;
    transform: translateY(15%);
    z-index: 1;
    text-transform: capitalize;
  }
}

.cmn-header2--des2 {
  p {
    font-size: 60px;
    color: #f0f0f0;
  }
}

.cmn-textbox {
  text-align: left;

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

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

.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: row nowrap;
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);

  .cmn-cnt__box {
    display: flex;
    justify-content: space-between;
    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(--h4-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;
}

/* -------------------------------------------------------------------------- */
/*                                     PC                                     */
/* -------------------------------------------------------------------------- */
/* =======================================
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-4) var(--sp-2);
  transition: 0.3s;
}

.header.scrolled .header__inner {
  padding: var(--sp-2) var(--sp-2);
}

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

.header__logo-img {
  height: 20px;
  width: 331px;
  object-fit: contain;
}

.header__badge {
  background: var(--clr-white);
  border: 1px solid var(--clr-white);
  padding: 1px var(--sp-1);
  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: var(--sp-05);
  font-size: 14px;
  font-weight: var(--bold);
  letter-spacing: 0.56px;
  border: none;
  cursor: pointer;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

.header__cta-button:hover {
  opacity: 1;
}

.header__cta-button:hover::before {
  opacity: 1;
}

/* =======================================
Hero Section
======================================= */

/* ---------------------------------- Sec00 --------------------------------- */
.sec00 {
  min-height: 700px;
  background: var(--clr-bg-lightblue);
  background-image: url("../images/sec00_bg.webp");
  background-size: cover;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.sec00 .inner {
  position: relative;
  width: 1183px;
  z-index: 2;
  /* padding: var(--sp-10) 0; */

  padding: 154px 0 94px;
}

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

.sec00__left {
  width: 100%;
  z-index: 2;
}

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

.sec00__recruit-label {
  width: fit-content;
  font-size: 50px;
  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(--h3-fz);
  font-weight: var(--bold);
  color: var(--clr-accent);
  line-height: 1.5;
}

.sec00__title {
  font-size: 62px;
  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: 21px;
}

.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: 25px;
  font-weight: var(--bold);
  color: var(--clr-accent);
  line-height: 1.5;
  margin-bottom: var(--sp-10);
}

.sec00__position-wrap{
  width: calc(100% - 489px);
}

.sec00__right {
  flex-shrink: 0;
  position: absolute;
  z-index: 1;
  right: 0;
  top: 114px;
  width: 489px;
}

.sec00__image-wrapper {
  width: 100%;
  aspect-ratio: 489 / 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-2);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-05);
}

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

.sec00__scroll-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.sec00__scroll-arrow {
  width: 41px;
  height: 10px;
  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(-4px);
  }

  30% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(4px);
  }
}

@keyframes arrowFade {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* ---------------------------------- Sec01 --------------------------------- */
.sec01 {
  padding-block: var(--sp-10) 172px;
  background: no-repeat center / cover url("../images/sec01_deco1.webp"),
    repeat center / contain url("../images/pattern1.webp"), #e9f1f6;

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

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

      .sec01__header-block01 {
        margin-bottom: var(--sp-5);
      }

      .sec01__header-block02 {}

      span {
        display: inline-block;

        &.sec01__header-text01 {
          font-size: var(--h5-fz);
        }

        &.sec01__header-text02 {
          font-size: 26px;
        }

        &.sec01__header-text03 {
          font-size: 26px;
          margin-bottom: 14px;
        }
      }

      img {
        display: inline;
      }
    }
  }

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

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

/* ---------------------------------- Sec02 --------------------------------- */
.sec02 {
  /* background-color: #e9f1f6; */
  padding-bottom: 171px;

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

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

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

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

      span {
        padding-block: 2px;
        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: row nowrap;
    gap: var(--sp-2);

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

    img {
      margin-top: -55px;
    }
  }
}

/* ---------------------------------- Sec03 --------------------------------- */
.sec03 {
  /* background-color: #f8f8f8; */
  position: relative;
  padding-bottom: 120px;

  &::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    margin-inline: auto;
    width: 208px;
    height: 57px;
    background: no-repeat center / contain url("../images/sec03_deco1.webp");
    z-index: 3;
  }

  .sec03__header {
    margin-bottom: var(--sp-10);

    h3 {
      font-size: 46px;
      font-weight: var(--bold);
      margin-bottom: 12px;
    }

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

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

  .sec03__box {
    width: min(100%, 455px);

    .cmn-textbox {
      text-align: left;
      margin-bottom: var(--sp-5);
    }
  }

  .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(--h4-fz);
        font-weight: var(--bold);
      }
    }

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

  .cmn-textbox {
    line-height: 1.5;
    text-align: center;

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

/* ---------------------------------- Sec04 --------------------------------- */
.sec04 {
  position: relative;
  pointer-events: none;

  /* background-color: #e9f1f6; */
  &::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: no-repeat center / cover url("../images/sec04_commingsoon.png");
  }

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

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

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

    h3 {
      font-size: 42px;
      font-weight: var(--bold);
      margin-bottom: var(--sp-3);
    }

    p {
      font-size: var(--h5-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: 67px;
    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 {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-flow: row nowrap;
    gap: var(--sp-5);
  }

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

  .sec05__list {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    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(--h3-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);
  }
}

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

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

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

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

  .sec06__box {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-flow: row nowrap;
    gap: var(--sp-5);

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

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

  .cmn-cnt {
    .cmn-cnt__list {
      .cmn-cnt__item {
        padding-bottom: var(--sp-3);
      }
    }

    .cmn-cnt__box {
      gap: var(--sp-1);
    }
  }
}

/* ---------------------------------- Sec07 --------------------------------- */
.sec07 {
  .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: 420px;
      height: 282px;
    }
  }

  .splide__arrow {
    border-radius: var(--sp-1);
    background: var(--clr-white);
    width: 40px;
    height: 40px;
    top: calc(50% + 40px);
  }

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

    .splide__pagination__page {
      width: 10px;
      height: 10px;
      background: var(--clr-accent);
    }

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

/* ---------------------------------- Sec08 --------------------------------- */
.sec08 {}

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

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

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

    &:hover {
      cursor: pointer;
    }

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

    .sec10__item-tbox,
    .sec10__item-bbox {
      padding: var(--sp-3);
      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-2);

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

      h4 {
        flex-grow: 1;
        font-size: var(--h4-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-5) var(--sp-4);
    background-color: var(--clr-white);
    border-radius: var(--sp-1);
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-flow: row 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-8);

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

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

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

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

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

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

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

  .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-6) var(--sp-5);
  background-color: #061238;

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

  .footer__box {
    border-bottom: 1px solid var(--clr-white);
    padding-bottom: var(--sp-6);
    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 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap;
    gap: var(--sp-3);
  }

  .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: 90%;
  height: 90%;
  max-width: 1200px;
  margin: 2% auto;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}

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

.modal-close:hover {
  opacity: 0.7;
}

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