@layer settings, base, generic, layout, components, modules, utility;

/* settings */
@layer settings {
  :root {
    --wa-primary-color: #ff6683;
    --wa-secondary-color: #004b76;
    --wa-secondary-color-black: #262626;
    --wa-secondary-color-gray: #f2f2f2;
    --wa-pc-sub-bg-color: url(../images/home/pc_sub_bg.svg), linear-gradient(90deg, #343b8b 10.83%, #8945B4 94.62%);
    --wa-sp-sub-bg-color: url(../images/home/sp_sub_bg.svg), linear-gradient(90deg, #343b8b 10.83%, #8945B4 94.62%);
    --wa-common-pc-hero-bg-color: url(../images/common/pc-hero-bg.svg),linear-gradient(180deg, #f1f4ff 52.47%, rgba(241, 244, 255, 0.00) 85.79%);
    --wa-common-sc-hero-bg-color: url(../images/common/sp-hero-bg.svg), linear-gradient(180deg, #f1f4ff 52.47%, rgba(241, 244, 255, 0.00) 85.79%);
    --wa-text-light:#666;
    --wa-font-size-xxs: 0.75rem;/*12px*/
    --wa-font-size-xs: 0.875rem;/*14px*/
    --wa-font-size-base: 1rem; /*ブラウザデフォルトサイズ：16px*/
    --wa-font-size-ms: 1.375rem;/* 22px*/
    --wa-font-size-m: 1.75rem;/* 28px*/
    --wa-font-size-l: 2rem;/* 32px*/
    --wa-font-size-xl: 2.5rem;/* 40px*/
  }
}

/* base */
@layer base {
  @layer reset;

  @layer reset {
    /***
        The new CSS reset - version 1.11.3 (last updated 25.08.2024)
        GitHub page: https://github.com/elad2412/the-new-css-reset
    ***/

    /*
        Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
        - The "symbol *" part is to solve Firefox SVG sprite bug
        - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
    */
    *:where(:not(html, iframe, canvas, img, svg, video, audio, svg *, symbol *)) {
      all: unset;
      display: revert;
    }

    /* Preferred box-sizing value */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    /* Fix mobile Safari increase font-size on landscape mode */
    html {
      text-size-adjust: none;
    }

    /* Reapply the pointer cursor for anchor tags */
    a,
    button {
      cursor: revert;
    }

    /* Remove list styles (bullets/numbers) */
    ol,
    ul,
    menu,
    summary {
      list-style: none;
    }

    /* Firefox: solve issue where nested ordered lists continue numbering from parent (https://bugzilla.mozilla.org/show_bug.cgi?id=1881517) */
    ol {
      counter-reset: revert;
    }

    /* For images to not be able to exceed their container */
    img {
      max-inline-size: 100%;
      max-block-size: 100%;
    }

    /* removes spacing between cells in tables */
    table {
      border-collapse: collapse;
    }

    /* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
    input,
    textarea {
      user-select: auto;
    }

    /* revert the 'white-space' property for textarea elements on Safari */
    textarea {
      white-space: revert;
    }

    /* minimum style to allow to style meter element */
    meter {
      appearance: revert;
    }

    /* preformatted text - use only for this feature */
    :where(pre) {
      all: revert;
      box-sizing: border-box;
    }

    /* reset default text opacity of input placeholder */
    ::placeholder {
      color: unset;
    }

    /* fix the feature of 'hidden' attribute.
    display:revert; revert to element instead of attribute */
    :where([hidden]) {
      display: none;
    }

    /* revert for bug in Chromium browsers
    - fix for the content editable attribute will work properly.
    - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
    :where([contenteditable]:not([contenteditable="false"])) {
      -moz-user-modify: read-write;
      -webkit-user-modify: read-write;
      overflow-wrap: break-word;
      -webkit-line-break: after-white-space;
      user-select: auto;
    }

    /* apply back the draggable feature - exist only in Chromium and Safari */
    :where([draggable="true"]) {
      -webkit-user-drag: element;
    }

    /* Revert Modal native behavior */
    :where(dialog:modal) {
      all: revert;
      box-sizing: border-box;
    }

    /* Remove details summary webkit styles */
    ::-webkit-details-marker {
      display: none;
    }
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: var(--wa-font-size-base); /* 16px*/
    font-feature-settings: "pwid" on;
    font-variation-settings: "wght" 400;
    line-height: 1.7;
    color: var(--wa-secondary-color-black);
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: antialiased;
    text-size-adjust: 100%;
  }
}

/* generic */
@layer generic {
  a {
    color: var(--link-color);

    &:hover {
      text-decoration: underline;
    }
  }

  figure {
    line-height: 0;

    & figcaption {
      margin-top: 8px;
      font-size: 0.8125rem;
      text-align: center;
      line-height: 1.7;
    }
  }

  a:focus-visible,
  button:focus-visible {
    outline: revert;
  }

  h3 {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-variation-settings: "wght" 500;
    line-height: 150%;
    letter-spacing: 0;
  }

  @media (width < 768px) {
    h3 {
      font-variation-settings: "wght" 500;
      line-height: 160%;
      letter-spacing: -1px;
    }
  }
}

/* layout */
@layer layout {
  .wa-inner {
    width: 100%;
    max-width: 1128px;
    margin: auto;
  }

  @media (width < 768px) {
    .wa-inner {
      padding-left: 24px;
      padding-right: 24px;
    }
  }
}

/* components */
@layer components {
  .sp-only,
  .for-sp {
    display: none;
  }

  .common-hero {
    background: var(--wa-common-pc-hero-bg-color);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    min-height: auto;
  }

  .headline {
    font-size: var(--wa-font-size-xl); /* 40px*/
    font-style: normal;
    line-height: 140%;
    text-align: center;
    letter-spacing: -1px;
  }

  .sub-headline {
    font-size: var(--wa-font-size-m); /* 28px*/
    font-style: normal;
    font-variation-settings: "wght" 500;
    line-height: 150%;
    letter-spacing: -1px;
    text-align: left;
  }

  .text {
    color: #1A1A1A;
    font-size: var(--wa-font-size-base);
    font-style: normal;
    font-variation-settings: "wght" 400;
    line-height: 160%; /* 25.6px */
  }

  .link-btn { /* link-button*/
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
    border-radius: 8px;
    border: 1px solid #7f8bc5;
    background: #fff;
    margin-top: 16px;
    padding: 12px 32px;
    width: auto;
    font-size: var(--wa-font-size-xs);
    color: #343b8b;
    font-variation-settings: "wght" 400;
    line-height: 160%;
    text-decoration: none;

    &:hover {
      color: #fff;
      font-variation-settings: "wght" 500;
      background-color: #7F8BC5;

      &::after {
        background-image: url(../images/common/white-arrow.svg);
      }
    }

    &::after {
      content: "";
      display: block;
      width: 10px;
      height: 10px;
      background-image: url(../images/common/arrow-btn.svg);
      background-repeat: no-repeat, no-repeat;
      background-position: center;
    }
  }

  .link-btn.external-link {
    &::after {
      background-image: url(../images/common/blue-arrow-up-right-from-square.svg);
      position: relative;
      top: -1px!important;
    }
    &:hover {
      &::after {
        background-image: url(../images/common/arrow-up-right-from-square-white.svg);
      }
    }
  }

  .cta-btn { /* 資料ダウンロード-button*/
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
    border-radius: 8px;
    border: 1px solid #7F8BC5;
    background: #343B8B;
    margin-top: 16px;
    padding: 12px 40px;
    width: 256px;
    font-size: var(--wa-font-size-xs);
    color: #fff;
    font-variation-settings: "wght" 400;
    line-height: 160%;
    text-decoration: none;

    &:hover {
      color: #ffffff;
      font-variation-settings: "wght" 500;
      background: #343B8B;
      opacity: 0.7;
    }

    &::after {
      content: "";
      display: block;
      width: 10px;
      height: 10px;
      background-image: url(../images/common/white-arrow.svg);
      background-repeat: no-repeat, no-repeat;
      background-position: center;
      color: #fff;
    }
  }

  .account-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 256px;
    transition: 0.3s;
    border-radius: 8px;
    border: 1px solid #EAE2F9;
    background: #fff;
    padding: 16px 40px;
    font-size: var(--wa-font-size-base);
    color: #343b8b;
    font-variation-settings: "wght" 500;
    line-height: 160%;
    text-decoration: none;

    &:hover {
      border: solid 1px #2E1F44;
      background-color: #EAE2F9;
      color: #343b8b;
      opacity : 0.7;
    }

    &::after {
      content: "";
      display: block;
      width: 12px;
      height: 12px;
      background-image: url(../images/common/arrow-btn.svg);
      background-repeat: no-repeat, no-repeat;
      background-position: center;
    }
  }

  .contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 256px;
    transition: 0.3s;
    border-radius: 8px;
    border: 1px solid #402C5E;
    background: #402C5E;
    padding: 16px 40px;
    font-size: var(--wa-font-size-base);
    color: #fff;
    font-variation-settings: "wght" 500;
    line-height: 160%;
    text-decoration: none;

    &:hover {
      color: #fff;
      background: #2E1F44;
      border: 1px solid #AA9FC0;
    }

    &::after {
      content: "";
      display: block;
      width: 12px;
      height: 12px;
      background-image: url(../images/common/white-arrow.svg);
      background-repeat: no-repeat, no-repeat;
      background-position: center;
    }
  }

  .external-link {
    color: #0055ad;
    text-decoration: none;

    &::after {
      content: "";
      display: inline-block;
      width: 1rem;
      height: 1rem;
      background: url(../images/common/blue-arrow-up-right-from-square.svg);
      background-size: 100% 100%;
      margin: 0 0 -2px 5px;
    }
  }

  .notes {
    .note {
      display: flex;
      color: var(--wa-text-light);
      font-size: 0.8125rem;/*13px*/;
      font-variation-settings: "wght" 400;
      line-height: 160%; /* 20.8px */
      counter-increment: number;
      gap: 5px;

      &::before {
        content: "※"counter(number)".";
      }
    }
  }
}

/*PC,SP共通のCVボタン*/
.header-cta-button { /* nav-button*/
  display: flex;
  width: 113px;
  height: 33px;
  border-radius: 999px;
  background: linear-gradient(90deg, #343B8B 10.83%, #8945B4 94.62%);
  color: #fff;
  font-size: 0.8125rem; /*13px */
  font-style: normal;
  font-variation-settings: "wght" 400;
  line-height: 160%;
  justify-content: center;
  align-items: center;
  text-decoration: none;

  &:hover {
    font-variation-settings: "wght" 500;
    background: #343b8b;
  }
}

.wa-header {
  top: 0;
  position: sticky;
  z-index: 999;

  .global-nav {
    background: var(--Color-Navy-900, #282A75);
    color: #fff;

    .global-nav-lists {
      display: flex;
      min-height: 42px;
      max-width: 1128px;
      margin: 0 auto;
      font-size: 0.8125rem;/*13px*/;
      justify-content: end;
      align-items: center;
      gap: 32px;

      .global-nav-list {
        color: #fff;
        font-size: 0.8125rem; /* 13px */
        font-variation-settings: "wght" 400;
        line-height: 160%;

        .external-link {
          color: #fff;

          &::after {
            background-image: url(../images/common/arrow-up-right-from-square-navy.svg);
          }
        }

        & :hover {
          font-variation-settings: "wght" 500;
          text-decoration: none;

          &::after {
            background-image: url(../images/common/arrow-up-right-from-square-white.svg);
          }
        }
      }
    }
  }

  .service-nav {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
    background-color: #fff;

    .wa-inner {
      display: flex;
      width: 100%;
      max-width: 1128px;
      min-height: 74px;
      align-items: center;
      justify-content: space-between;
      gap: 10px;

      .header-logo {
        width: 255px;
        margin-left: -2px;

        a {
          width: 100%;
          display: flex;
          align-items: center;
          justify-content: center;

          img {
            width: 100%;
          }
        }
      }

      .service-nav-menu {
        display: flex;
        align-items: center;
        gap: 16px;

        .service-nav-lists {
          display: flex;
          align-items: center;


          li {
            padding: 8px 16px;
          }

          .service-nav-link {
            color: #1a1a1a;
            font-size: var(--wa-font-size-base);
            font-style: normal;
            font-variation-settings: "wght" 400;
            line-height: 160%; /* 25.6px */
            letter-spacing: 0px;

            &:hover {
              color: #343b8b;
              font-variation-settings: "wght" 500;
              text-decoration: underline;
            }
          }

          .nav-support {
            .dropdown-toggle {
              display: flex;
              align-items: center;
              gap: 8px;
              background: none;
              border: none;
              cursor: pointer;

              &::after {
                content: "";
                display: block;
                stroke-width: 1px;
                width: 0.867rem;
                height: 0.867rem;
                transform: rotate(0deg);
                background: url(../images/common/down-arrow.svg);
                background-size: 100% 100%;
                transition: .3s;
              }
            }

            .submenu {
              display: none;
              width: 100%;
              height: 48px;
              margin: auto;
              position: absolute;
              background-color: #fff;
              border-bottom: 1px solid #e6e6e6;
              top: 116px;
              left: 0;
              right: 0;
              z-index: 999;
            }

            .submenu-lists {
              display: flex;
              max-width: 1108px;
              width: 100%;
              height: 48px;
              margin: auto;
              padding-right: 100px;
              justify-content: flex-end;
              position: absolute;
              left: 0;
              right: 0;

              .submenu-list {
                display: flex;
                align-items: center;
                padding: 4px 16px;
                gap: 6px;
                color: #333;
                font-size: var(--wa-font-size-xs);
                font-variation-settings: "wght" 400;
                line-height: 160%; /* 22.4px */

                &:hover {
                  color: #343b8b;
                  font-variation-settings: "wght" 500;
                }

                &::after {
                  content: "";
                  display: block;
                  stroke-width: 1px;
                  width: 0.875rem;
                  height: 0.875rem;
                  background: url(../images/common/arrow-up-right-from-square.svg);
                  background-size: 100% 100%;
                  transition: .3s;
                  margin-left: auto;
                }
              }
            }

            /* When active, submenu-lists display the navigation */
            .submenu.active {
              display: block;
            }

            /* dropdown-toggle transforms into up when menu is open */
            .dropdown-toggle {
              &[aria-expanded="true"] {
                &::after {
                  transform: rotate(180deg);
                }
              }
            }
          }
        }
      }
    }
  }
}

/* main */
.main {
  overflow: hidden;

  /* hero */
  .common-hero {

    .common-hero-inner {
      padding: 32px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 300px;
      margin: 0 auto;

      .headline {
        color: #343b8b;
        margin-bottom: 8px;
      }

      .text {
        color: #343b8b;
        font-variation-settings: "wght" 500;
      }

      .link-btn {
        margin-top: 32px;
        border: 1px solid #fff;
        background: #343b8b;
        color: #fff;
        gap: 12px;

        &:hover {
          font-variation-settings: "wght" 500;
          color: #fff;
          background-color: #343b8b;
          opacity : 0.7;
        }

        &::after {
          content: "";
          display: block;
          width: 16px;
          height: 16px;
          background-image: url(../images/common/white-arrow.svg);
          background-repeat: no-repeat, no-repeat;
          background-position: center;
          color: #fff;
      }
      }
    }
  }

  /* cta download area */
  .dl-cdn-cta {
    background: url(../images/home/pc_dl_bg.svg);
    background-color: #f5f7ff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding: 120px 40px;
    margin-top: 104px;

    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      max-width: 100%;
      margin: 0;

      .cta-image {
        display: flex;
        width: 100%;
        max-width: 400px;
        flex-shrink: 0;
        line-height: 0;
        background: #fff;
        padding: 16px;
      }

      .cta-summary {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        max-width: 680px;

        .cta-title {
          color: #343B8B;
          font-size: var(--wa-font-size-m); /*28px*/
          font-style: normal;
          font-variation-settings: "wght" 500;
          line-height: 150%; /* 42px */
          letter-spacing: -1px;
        }

        .text {
          color: #1A1A1A;
          font-size: var(--wa-font-size-base); /*16px*/
          font-style: normal;
          font-variation-settings: "wght" 400;
          line-height: 160%; /* 25.6px */
        }
      }
    }
  }

  /* cta download area */
  .dl-cta {
    background: url(../images/home/pc_dl_bg.svg);
    background-color: #f5f7ff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding: 120px 40px;

    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      max-width: 100%;
      margin: 0;

      .cta-image {
        display: flex;
        width: 100%;
        max-width: 400px;
        flex-shrink: 0;
        line-height: 0;
        background: #fff;
        padding: 16px;
      }

      .cta-summary {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        max-width: 680px;

        .cta-title {
          color: #343B8B;
          font-size: var(--wa-font-size-m); /*28px*/
          font-style: normal;
          font-variation-settings: "wght" 500;
          line-height: 150%; /* 42px */
          letter-spacing: -1px;
        }

        .text {
          color: #1A1A1A;
          font-size: var(--wa-font-size-base); /*16px*/
          font-style: normal;
          font-variation-settings: "wght" 400;
          line-height: 160%; /* 25.6px */
        }
      }
    }

  }

  /* common-footer-cta */
  .common-footer-cta {
    background: var(--wa-pc-sub-bg-color);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: inherit;
    display: flex;
    flex-direction: column;
    padding: 120px 0;
    color: #fff;

    .footer-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 56px;
      width: 100%;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 40px;

      .footer-description {
        display: flex;
        flex-direction: column;
        gap: 24px;

        .headline {
          color: #fff;
        }

        .text {
          a {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4px;
            color: var(--white, #FFF);
            text-decoration: underline;

            &::after {
              content: "";
              display: flex;
              align-items: center;
              justify-content: center;
              background-image: url(../images/common/geater-than-sign.svg);
              width: 16px;
              height: 16px;
              background-repeat: no-repeat, no-repeat;
              background-position: bottom;
              position: relative;
              top: -1px;
            }
          }
          :hover {
            text-decoration: none;
          }
        }
      }

      .cta-lists {
        display: flex;
        gap: 32px;
      }
    }
  }
}

/* wa-footer-menu */
.wa-footer-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background: #F5F7FF;

  .menu-inner {
    width: 100%;
    max-width: 1128px;
    margin: 0 auto;

    .menu-lists {
      display: flex;
      width: 960px;
      margin: 0 auto;
      height: 34px;
      align-items: center;
      padding: 32px 0;

      .menu-list {
        color: #333;
        font-size: var(--wa-font-size-xs); /* 14px */
        font-style: normal;
        font-variation-settings: "wght" 400;
        line-height: 160%; /* 22.4px */
      }

      .current-page {
        text-decoration-line: underline;
      }
    }
      li:nth-of-type(n+2)::before {
        content: ">";
        margin: 0 8px;
        font-family: "FontAwesome";
    }
  }
}

@media (width < 1228px) {
  .wa-header {
    .service-nav {
        .wa-inner {
            .header-logo {
                margin-left: 0;
            }
        }
    }
  }
}

@media (width < 992px) {

  .pc-only {
    display: none;
  }

  .sp-header {
    background: #fff;
    height: auto;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid var(--Color-Neutral-SolidGray-100, #E6E6E6);

    .sp-header-inner {
      display: flex;
      align-items: center;
      width: 100%;
      height: 100%;
      padding: 16px 16px 16px 22px;

      .sp-header-pannel {
        flex: 1;
        display: flex;
        align-items: center;
        gap: 20px;
        width: 100%;
        max-width: inherit;

        .sp-header-logo {
          max-width: 184px;
          display: flex;
          align-items: center;

          img {
            width: 100%;
            min-height: 52px;
          }
        }

        .header-apply-button {
          font-size: var(--wa-font-size-xxs); /* 12px */
          font-style: normal;
          font-variation-settings: "wght" 400;
          line-height: 160%; /* 19.2px */
          padding: 6px 16px;
          margin: 0 0 0 auto;
          width: auto;
        }

        .header-toggle-button {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          gap: 5px;
          width: 1.8125rem;
          height: 1.5rem;
          cursor: pointer;

          .bar {
            width: 1.5rem;
            height: 0.1875rem;
            background: #343B8B;
            border-radius: 3px;
            transition: .3s;
          }
        }
      }

      .sp-globalnav {
        width: 100%;
        height: calc(100% - 4.5625rem);
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 40px;
        background: #fff;
        padding: 36px 40px 66px;
        position: fixed;
        left: 0;
        top: 4.5625rem;
        overflow: auto;
        overscroll-behavior: contain;

        .sp-globalnav-lists {
          width: 100%;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          margin: 0 auto;

          .sp-globalnav-list {
            border-bottom: 1px solid var(--Color-Neutral-SolidGray-200, #CCC);

            a,
            .sp-globalnav-submenu-title {
              display: flex;
              height: 58px;
              align-items: center;
            }
          }

          li {
            width: 100%;
            font-size: var(--wa-font-size-base);
            color: #1a1a1a;
            font-style: normal;
            font-variation-settings: "wght" 500;
            line-height: 160%; /* 25.6px */

            .globalnav-link {
              padding: 16px 0;
              display: block;
            }
          }

          .sp-globalnav-list-menu {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 46px;
            margin-bottom: 8px;
          }

          .external-link::after {
            content: "";
            display: block;
            width: 0.875rem;
            height: 0.875rem;
            background: url(../images/common/arrow-up-right-from-square.svg);
            background-size: 100% 100%;
          }
        }
      }

      /* When active, display the navigation */
      .sp-globalnav.active {
        display: flex;
      }

      /* Hamburger transforms into cross when menu is open */
      .header-toggle-button[aria-expanded="true"] .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }

      .header-toggle-button[aria-expanded="true"] .bar:nth-child(2) {
        opacity: 0;
      }

      .header-toggle-button[aria-expanded="true"] .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }
    }
  }

  .sp-only {
    display: block;
  }

  .wa-header {
    display: none;

    .service-nav {
      display: none;
    }
  }

  .main .common-hero {
    background: var(--wa-common-sc-hero-bg-color);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    min-height: auto;

    .common-hero-inner {
      gap: 12px;

      .headline {
        font-size: 1.5rem; /*24px */
      }

      .text {
        text-align: center;
        font-variation-settings: "wght" 400;
        line-height: 180%;
        letter-spacing: -1px;

      }
    }
  }

  .main .dl-cdn-cta {
    background: url(../images/home/sp_dl_bg.svg);
    background-color: #f5f7ff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding: 72px 32px;

    &::before {
      content: "";
      border-radius: 301px;
      background-color: rgba(114, 157, 255, 0.40);
      filter: blur(33.85416793823242px);
    }
    .cta-inner {
      flex-direction: column;
      gap: 32px;

      .cta-image {
        max-width: 326px;
        padding: 12px;
      }

      .cta-summary {

        .cta-title {
          font-size: 1.5rem; /* 24px */
          font-variation-settings: "wght" 750;
          line-height: 150%;
          letter-spacing: 0;
        }

        .text {
          line-height: 180%;
          margin-bottom: 16px;
        }

        .cta-btn {
          margin: 0 auto;
          justify-content: center;
        }
      }
    }

  }

  .main .dl-cta {
    background: url(../images/home/sp_dl_bg.svg);
    background-color: #f5f7ff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding: 72px 32px;

    &::before {
      content: "";
      border-radius: 301px;
      background-color: rgba(114, 157, 255, 0.40);
      filter: blur(33.85416793823242px);
    }
    .cta-inner {
      flex-direction: column;
      gap: 32px;

      .cta-image {
        max-width: 326px;
        padding: 12px;
      }

      .cta-summary {

        .cta-title {
          font-size: 1.375rem; /* 22px */
          font-variation-settings: "wght" 500;
          line-height: 160%;
          letter-spacing: 0;
        }

        .text {
          line-height: 180%;
          margin-bottom: 16px;
        }

        .cta-btn {
          margin: 0 auto;
          justify-content: center;
        }
      }
    }

  }

  .main .common-footer-cta {
    background: var(--wa-sp-sub-bg-color);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: inherit;

    .footer-inner {
      width: 100%;
      padding: 0 32px;

      .footer-description {

        .headline {
          display: none;
        }

        .sp-headline {
          font-size: 1.375rem; /* 22px */
          font-variation-settings: "wght" 500;
          line-height: 160%;
          letter-spacing: 0;
          text-align: center;
        }
      }

      .cta-lists {
        flex-direction: column;
        gap: 40px
      }
    }
  }

  .wa-footer-menu {
    width: 100%;
    padding: 0 24px;

    .menu-inner {
      .menu-lists {
        .menu-list {
          font-size: var(--wa-font-size-base); /*16px */
          line-height: 180%;
        }
      }
    }
  }
}

@media (max-width: 390px) {
  .sp-header-logo.sp-header-logo.sp-header-logo.sp-header-logo > img {
    width: 175px;
    max-width: none;
  }
}
