@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: 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(--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 a {
  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;
}

.scrolled {
  .header__nav-button {
    border: var(--clr-txt) 1px solid;
  }
}

.header__nav-button {
  background-color: rgba(255, 255, 255, 0.9);
  border: var(--clr-txt) 1px solid;
  padding: 0px 24px;
  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;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
  overflow: hidden;
  z-index: 1;

  .ja,
  .en {
    display: block;
    line-height: 1;
  }

  .ja {
    font-size: 14px;
  }

  .en {
    font-size: 10px;
    font-weight: var(--regular);
    color: var(--clr-txt-light);
  }
}


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