/*
* Base
*/
:root {
  --dok-primary-color: #ED1C24;
  --bg-color: #F6F4F3;
  --border-color: #E6E6E6;
  --base-color: #353535;

  --fs-base: 1.125rem;
  --fs-heading1: 2.25rem;
  --fs-heading2: 1.75rem;

  --LinearColor-Primary: linear-gradient(90deg, #ED1C24 0%, #ED1C24 52.5%, #E56203 100%);

  --yellow: #FFC803;
  --arrow-color: #1a1a1a;
  --shadow-cta-8: 0 8px 0 rgba(0, 0, 0, 0.25);
  --shadow-cta-6: 0 6px 0 rgba(0, 0, 0, 0.25);
  --shadow-cta-4: 0 4px 0 rgba(0, 0, 0, 0.25);
}

html {
  scroll-behavior: smooth;
}

.layout_main {
  font-family: "Noto Sans JP", sans-serif;
  font-size: var(--fs-base);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  text-size-adjust: 100%;
  color: var(--base-color);
  background: #181616;
}

.layout_main * {
  box-sizing: border-box;
}

.inner {
  max-width: 960px;
  margin: 0 auto;
}

@media screen and (max-width: 959px) {
  :root {
    --fs-base: 1rem;
    --fs-heading1: 1.5rem;
    --fs-heading2: 1.375rem;

    --sp-pad-x: 1.25rem;
    --sp-gap-1: 0.75rem;
    --sp-gap-2: 1rem;
    --sp-gap-3: 1.5rem;

    --shadow-cta-8: 0 8px 0 rgba(0, 0, 0, 0.12);
    --shadow-cta-6: 0 6px 0 rgba(0, 0, 0, 0.12);
    --shadow-cta-4: 0 4px 0 rgba(0, 0, 0, 0.12);
  }

  .layout_main {
    font-size: 1rem;
    line-height: 1.75;
  }
}

/* =========================================================
  Layout
========================================================= */
.layout_section {
  padding: 100px min(2.77777777%, 40px) 120px;
  background: #F1F1F1;
}

.layout_column {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.layout_box {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 36px 60px;
  background: #fff;
  border: solid 1px #e4e4e4;
  font-size: 1rem;
  line-height: 2;

  & .button {
    max-width: 280px;
    font-size: 1rem;
  }
}

/* =========================================================
  Responsive Utils
========================================================= */
@media screen and (min-width: 960px) {
  .for-tb {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .for-sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .for-pc {
    display: none;
  }

  .inner {
    margin: 0 var(--sp-pad-x);
  }

  .layout_section {
    padding: 5rem var(--sp-pad-x);
  }

  .layout_column {
    gap: 50px;
  }

  .layout_box {
    padding: 28px;

    & .button {
      max-width: 100%;
    }
  }

  .inner,
  .case__inner,
  .info__inner,
  .recommend__inner,
  .faq__inner {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}

/*
* Contents
*/

/* =========================================================
  Text
========================================================= */
.title {
  font-size: 40px;
  line-height: 1.5;
  font-variation-settings: "wght" 500;

  @media screen and (max-width: 768px) {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  & span {
    font-size: 32px;

    @media screen and (max-width: 768px) {
      font-size: 1.25rem;
    }
  }
}


sup {
  font-size: 0.72em;
  vertical-align: super;
  line-height: 0;
}

/* =========================================================
  Yellow CTA Buttons
========================================================= */
.hero__btn,
.trial__btn,
.flow__btn,
.free-credit__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal;
  background: var(--yellow);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  --press-y: 0px;
  overflow: hidden;

  @media screen and (max-width: 768px) {
    font-size: 0.875rem;
    line-height: 1.35;
    border-radius: 0.5rem;
  }

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
  }

  &::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 9px;
    height: 9px;
    transform: translateY(-50%) rotate(45deg);
    opacity: 0.9;
  }

  &:hover {
    transform: translateY(var(--press-y));
    filter: brightness(0.98);
  }

  &:hover::before {
    background: rgba(255, 255, 255, .35);
  }
}

/* =========================
  Header / Nav
========================= */
.header {
  background: #fff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 300;

  @media screen and (max-width: 959px) {
    padding: 0;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 18px;

  @media screen and (max-width: 959px) {
    max-width: none;
    padding: 0;
    display: block;

    @media screen and (max-width: 959px) {
      flex: 0 0 auto;
    }
  }
}

.header__wrap {
  position: relative;

  @media screen and (max-width: 959px) {
    position: sticky;
    display: flex;
    top: 0;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 1rem;
    z-index: 310;
    background: #fff;

    .header__ctaSp {
      margin-left: auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 34px;
      padding: 0 10px;
      border-radius: 6px;
      background: var(--yellow);
      color: #111;
      text-decoration: none;
      font-size: 0.72rem;
      letter-spacing: -0.025rem;
      line-height: 1;
      font-variation-settings: "wght" 600;
      box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
      --press-y: 4px;
      white-space: nowrap;
    }

    .header__ctaSp:hover {
      transform: translateY(var(--press-y));
      box-shadow: 0 0 0 rgba(0, 0, 0, 0);
      filter: brightness(0.98);
    }
  }
}

.header__logo {
  display: block;
  line-height: 0;

  & img {
    display: block;
    height: 24px;
    width: auto;

    @media screen and (max-width: 959px) {
      height: 1.24rem;
    }
  }
}

.header__menu {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
  display: none;

  @media screen and (max-width: 959px) {
    position: static;
    transform: none;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-left: 6px;
    background: transparent;
    border: none;
    padding: 0;

    .header__hamburger {
      position: relative;
      width: 34px;
      height: 24px;
      display: block;
      background: linear-gradient(#111 0 0) left 10px / 100% 2px no-repeat;
      transition: background-size 0.2s ease;

      &::before,
      &::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #111;
        border-radius: 999px;
        transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
      }

      &::before {
        top: 2px;
      }

      &::after {
        top: 18px;
      }
    }
  }

  &.is-active {
    transform: translateY(-50%) rotate(-180deg);

    @media screen and (max-width: 959px) {
      transform: rotate(-180deg);

      .header__hamburger {
        background-size: 0 2px;

        &::before {
          top: 12px;
          transform: rotate(28deg);
        }

        &::after {
          top: 12px;
          transform: rotate(-28deg);
        }
      }
    }
  }
}

.nav {
  @media screen and (max-width: 959px) {
    width: 100%;
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    z-index: 180;
    padding-top: 58px;
    background: linear-gradient(0deg, #181616 4.08%, #381010 76.48%, #181616 100%);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s 0.2s;
    overscroll-behavior: contain;
    touch-action: pan-y;

    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("../images/hero_bg_sp.png") no-repeat center bottom / cover;
      opacity: 1;
      pointer-events: none;
    }

    &.is-open {
      opacity: 1;
      visibility: visible;
      transform: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }
  }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-variation-settings: "wght" 500;

  .nav__cta {
    &:last-child {
      margin-left: 8px;
    }
  }

  &>li>a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1;
    padding-right: 22px;
    color: #111111;
    text-decoration: none;

    &:hover {
      opacity: 0.65;
    }
  }

  &>li>.nav__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 28px 10px 12px;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    white-space: nowrap;
    border-radius: 4px;

    &:hover {
      box-shadow: 0 0 0 rgba(0, 0, 0, 0);
      transform: translateY(3px);
      filter: brightness(0.98);
    }

    &::after {
      content: "";
      position: absolute;
      right: 14px;
      top: 50%;
      width: 8px;
      height: 8px;
      border-top: 1px solid currentColor;
      border-right: 1px solid currentColor;
      transform: translateY(-50%) rotate(45deg);
      opacity: 0.9;
    }

    &.nav__btn--dark {
      background: #181616;
      color: #fff;
    }

    &.nav__btn--yellow {
      background: #FFC803;
      color: #222222;
    }
  }

  &>li.nav__cta:last-child {
    @media screen and (max-width: 959px) {
      display: none;
    }
  }

  @media screen and (max-width: 959px) {
    position: relative;
    z-index: 10;
    padding: 0.25rem var(--sp-pad-x);
    width: 100%;
    gap: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;

    &>li {
      width: 100%;
      position: relative;

      &::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 100vw;
        height: 1px;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.16);
        pointer-events: none;
      }
    }

    &>li>a {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      width: 100%;
      padding: 1.24rem 2.25rem 1.24rem 0;
      color: #fff;
      font-size: 1rem;
      line-height: 1.2;
      text-decoration: none;
      font-variation-settings: "wght" 300;

      &::after {
        content: "";
        position: absolute;
        right: 0.25rem;
        top: 50%;
        width: 0.68rem;
        height: 0.68rem;
        border-right: 1px solid rgba(255, 255, 255, 0.9);
        border-bottom: 1px solid rgba(255, 255, 255, 0.9);
        transform: translateY(-55%) rotate(45deg);
      }
    }

    &>li>.nav__btn {
      width: 100%;
      font-size: 0.875rem;
      justify-content: center;
      padding: 12px 34px 12px 16px;
    }

    &>li.nav__cta {
      border-bottom: none;
      padding-top: 1.25rem;

      &::after {
        display: none;
      }
    }

    &>li.nav__cta+li.nav__cta {
      padding-top: 0.75rem;
    }

    &>li>.nav__btn.nav__btn--dark {
      height: 4rem;
      border-radius: 0.25rem;
      font-size: 1.05rem;
      font-variation-settings: "wght" 600;
      background: #181616;
      color: #fff;
      padding: 0 3rem 0 1.25rem;
      box-shadow: var(--shadow-cta-6);

      &::after {
        right: 1.25rem;
        width: 0.55rem;
        height: 0.55rem;
        border-top: 1.5px solid #fff;
        border-right: 1.5px solid #fff;
        border-bottom: none;
      }
    }

    &>li>.nav__btn.nav__btn--yellow {
      height: 3.25rem;
      border-radius: 0.5rem;
      box-shadow: var(--shadow-cta-4);
      font-size: 0.95rem;
      padding: 0 2.5rem 0 1rem;
      font-variation-settings: "wght" 700;

      &::after {
        right: 1rem;
        width: 0.5rem;
        height: 0.5rem;
      }
    }
  }
}



/* =========================
  SP menu
========================= */
@media screen and (max-width: 959px) {
  body.is-menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
    touch-action: none;
    left: 0;
    top: 0;
  }

  .spmenu {
    position: relative;
    z-index: 10;
    padding: 0 var(--sp-pad-x) 2rem;

    .spmenu__cta {
      width: 100%;
      min-height: 4.25rem;
      margin-top: 0.75rem;
      border-radius: 0.25rem;
      box-shadow: var(--shadow-cta-6);
      font-size: 0.96rem;
      line-height: 1.35;
      font-variation-settings: "wght" 600;

      &::after {
        right: 1rem;
        width: 0.5rem;
        height: 0.5rem;
        border-top: 1px solid var(--arrow-color);
        border-right: 1px solid var(--arrow-color);
      }
    }

    .spmenu__ttl {
      margin: 1.28rem 0 0.5rem;
      color: #fff;
      text-align: center;
      font-size: 0.92rem;
      font-variation-settings: "wght" 500;
    }

    .spmenu__cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
    }

    .spmenu-card {
      display: grid;
      place-items: center;
      gap: 0.25rem;
      min-height: 4.25rem;
      background: #fff;
      border-radius: 0.25rem;
      text-decoration: none;
      color: #111;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
      align-items: center;
      align-content: center;

      .spmenu-card__tag {
        color: #DE1E1E;
        font-size: 0.8rem;
        font-variation-settings: "wght" 700;
        line-height: 1;
      }

      .spmenu-card__txt {
        font-size: 0.88rem;
        font-variation-settings: "wght" 600;
        line-height: 1.2;
        text-align: center;
        letter-spacing: -0.025rem;
      }
    }

    .spmenu__links {
      margin-top: 0.55rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
    }

    .spmenu-link {
      display: grid;
      place-items: center;
      min-height: 4.25rem;
      background: #fff;
      border-radius: 0.25rem;
      text-decoration: none;
      color: #111;
      font-size: 0.9rem;
      font-variation-settings: "wght" 600;
      line-height: 1.15;
      text-align: center;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    }
  }
}


/*
* Page
*/

/* =========================
  hero
========================= */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background: linear-gradient(0deg,
      #181616 4.08%,
      #381010 76.48%,
      #181616 100%);

  @media screen and (max-width: 959px) {
    padding: 2.64rem 0 3.5rem;
  }

  .hero__bg {
    position: absolute;
    inset: 0;
    width: 100vw;
    left: 24%;
    height: 100%;
    background: url("../images/hero_bg_pc.png") no-repeat right bottom / cover;
    border-radius: 0 0 48px 0;
    transform: translateX(-50%);
    z-index: 10;
    overflow: hidden;

    @media screen and (max-width: 959px) {
      left: 50%;
      width: 100%;
      transform: translateX(-50%);
      border-radius: 0 0 2rem 0;
      opacity: 0.8;
      background: url("../images/hero_bg_sp.png") no-repeat center bottom / cover;
    }

    &::after {
      @media screen and (min-width: 960px) {
        content: "";
        position: absolute;
        inset: 0;
        background: #000;
        opacity: .2;
        pointer-events: none;
      }
    }
  }

  .hero__inner {
    position: relative;
    z-index: 20;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 569px;
    align-items: center;
    gap: 0;

    @media screen and (max-width: 1200px) {
      padding-inline: 24px;
    }

    @media screen and (max-width: 959px) {
      width: calc(100% - (var(--sp-pad-x) * 2));
      margin: 0 auto;
      grid-template-columns: 1fr;
      gap: 1.25rem;
      padding-inline: 0;
    }

    .hero__content {
      color: #fff;

      @media screen and (max-width: 959px) {
        text-align: left;
      }

      .hero__title,
      .hero-lead__em {
        font-variation-settings: "wght" 700;
      }

      .hero__sub,
      .hero__note {
        font-variation-settings: "wght" 600;
      }

      .hero-lead {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 20px;

        @media screen and (max-width: 959px) {
          font-size: 0.8rem;
          line-height: 1.7;
          margin-bottom: 1.28rem;
        }
      }

      .hero-lead__em {
        display: inline-block;
        margin-top: 6px;
        font-size: 18px;
        font-weight: 700;
        opacity: 1;
        line-height: 1.6;

        @media screen and (max-width: 959px) {
          font-size: 1.25rem;
          line-height: 1.6;
          font-variation-settings: "wght" 500;
        }
      }

      .hero__title {
        font-size: 48px;
        line-height: 1.4;
        font-weight: 700;
        margin-bottom: 24px;

        @media screen and (max-width: 959px) {
          font-size: 1.68rem;
          line-height: 1.25;
          margin-bottom: 1.5rem;

          span {
            font-size: 3rem;
          }
        }
      }

      .hero__sub {
        display: inline-flex;
        align-items: center;
        gap: 16px;
        font-size: 18px;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 20px;

        @media screen and (max-width: 959px) {
          font-size: 1.02rem;
          gap: 0.75rem;
          margin-bottom: 0.875rem;
          font-variation-settings: "wght" 500;
        }

        &::after {
          content: "";
          display: block;
          width: 64px;
          height: 1px;
          background: #fff;
          opacity: 0.9;

          @media screen and (max-width: 959px) {
            width: 2.8rem;
          }
        }

      }

      .hero__point {
        margin: 0 0 24px;
        display: grid;
        gap: 10px;

        p {
          margin: 0;
          display: flex;
          align-items: center;
          gap: 10px;
          font-size: 20px;
          line-height: 1.8;
          font-variation-settings: "wght" 600;
          color: #fff;

          @media screen and (max-width: 959px) {
            font-size: 1.2rem;
          }

          &::before {
            content: "";
            flex: 0 0 28px;
            width: 28px;
            height: 28px;
            border-radius: 999px;
            background: #fff;
          }

          &::after {
            content: "";
            position: absolute;
            width: 28px;
            height: 28px;
            background: #ED1C24;
            -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
            mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 18px 18px no-repeat;

            @media screen and (max-width: 768px) {
              -webkit-mask-size: 1rem 1rem;
              mask-size: 1rem 1rem;
            }
          }
        }
      }

      .hero__cta {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;

        @media screen and (max-width: 959px) {
          width: 100%;
          font-size: 0.875rem;
          gap: 1rem;
          line-height: 1.35;
          box-shadow: var(--shadow-cta-6);
          align-items: stretch;
          border-radius: 6px;
        }

        .hero__note {
          color: #fff;
          font-size: 18px;
          font-weight: 600;
          line-height: 1.2;
          letter-spacing: 0;
          display: flex;
          align-items: center;
          gap: 5px;

          @media screen and (max-width: 959px) {
            font-size: 1.1rem;
            justify-content: center;
          }

          &::before,
          &::after {
            content: "";
            display: inline-block;
            width: 26px;
            height: 2px;
            background: #fff;
            border-radius: 999px;
            opacity: 0.9;
          }

          &::after {
            transform: rotate(-60deg);
          }

          &::before {
            transform: rotate(60deg);
          }
        }

        .hero__btn {
          min-height: 78px;
          min-width: 370px;
          padding: 12px 38px 12px 18px;
          color: #000;
          font-size: 16px;
          font-weight: 700;
          font-variation-settings: "wght" 700;
          line-height: 1.4;
          letter-spacing: 0;
          border-radius: 6px;
          box-shadow: var(--shadow-cta-8);
          --press-y: 8px;

          @media screen and (max-width: 959px) {
            width: 100%;
            min-width: 0;
            min-height: 4.25rem;
            padding: 0.5rem 1.5rem 0.5rem 0.75rem;
            font-size: 0.93rem;
            box-shadow: var(--shadow-cta-6);
            border-radius: 6px;
            font-variation-settings: "wght" 600;
          }

          &::after {
            right: 22px;
            border-top: 1px solid var(--arrow-color);
            border-right: 1px solid var(--arrow-color);

            @media screen and (max-width: 959px) {
              right: 0.75rem;
            }
          }

          &:hover {
            box-shadow: 0 0 0 rgba(0, 0, 0, 0);
          }
        }
      }
    }
  }

  .hero__image {
    @media screen and (max-width: 959px) {
      display: flex;
      justify-content: center;
    }

    @media screen and (max-width: 768px) {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      padding: 0 10px;
    }

    img {
      width: 640px;
      max-width: none;
      height: auto;
      transform: translateX(-40px);

      @media screen and (max-width: 768px) {
        width: 100%;
        max-width: 100%;
        transform: none;
      }
    }
  }
}

/* =========================
  Case
========================= */
.case {
  position: relative;
  background: #181616;
  overflow: hidden;

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/bg_case.png") no-repeat center bottom / cover;
    opacity: 1;
    pointer-events: none;

    @media screen and (max-width: 768px) {
      background: url("../images/bg_case.png") no-repeat right bottom / cover;
    }
  }

  .case__inner {
    position: relative;
    z-index: 10;
    max-width: 994px;
    margin: 0 auto;

    @media screen and (max-width: 768px) {
      margin: 0 auto;
    }

    .case__head {
      text-align: center;
      margin-bottom: 64px;
      color: #fff;

      @media screen and (max-width: 768px) {
        margin-bottom: 2.25rem;
      }

      .case__label {
        margin: 0 auto;
        font-family: "Roboto", sans-serif;
        font-size: 20px;
        line-height: 1;
        color: #DE1E1E;
        letter-spacing: 0.08em;

        @media screen and (max-width: 768px) {
          font-size: 1.125rem;
        }
      }

      .case__title {
        margin: 0;

        @media screen and (max-width: 768px) {
          letter-spacing: -0.038rem;
        }
      }
    }

    .case__list {
      display: flex;
      flex-direction: column;
      gap: 20px;

      .case-item {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;

        &.is-open {
          & .case-item__bar {
            .case-item__actionBtn {
              &::before {
                transform: rotate(-135deg);
                top: 2px;
              }
            }
          }
        }

        &.is-closing {
          .case-item__panel {
            transition: max-height 0.24s cubic-bezier(0.4, 0, 1, 1), opacity 0.12s linear;
          }
        }

        @media screen and (min-width: 960px) {
          &:not(.is-open) {
            .case-item__bar {
              transition: filter 0.2s ease, background-color 0.2s ease;

              &:hover {
                filter: brightness(0.8);
              }
            }
          }
        }

        .case-item__bar {
          position: relative;
          display: flex;
          align-items: center;
          gap: 16px;
          background: #fff;
          padding: 32px 26px;
          border-radius: 8px 8px 0 0;
          cursor: pointer;

          @media screen and (max-width: 768px) {
            padding: 0.75rem 0.42rem 0 0;
            gap: 2px;
          }

          .case-item__flag {
            position: relative;
            width: 132px;
            height: 44px;
            flex: 0 0 auto;
            background: url("../images/img_flag.png") no-repeat left center / contain;
            display: flex;
            align-items: center;
            gap: 10px;
            padding-left: 14px;

            @media screen and (max-width: 768px) {
              background: url("../images/img_flag_sp.png") no-repeat -2px center / contain;
              width: 98px;
              padding-left: 0.45rem;
              gap: 2px;
            }

            .case-item__flagLabel {
              font-family: "Roboto", sans-serif;
              font-style: italic;
              font-size: 14px;
              line-height: 1;
              color: #fff;
              letter-spacing: 0.06em;

              @media screen and (max-width: 768px) {
                font-size: 0.75rem;
              }
            }

            .case-item__flagNo {
              font-family: "Roboto", sans-serif;
              font-style: italic;
              font-size: 36px;
              line-height: 1;
              color: #fff;

              @media screen and (max-width: 768px) {
                font-size: 1.75rem;
              }
            }
          }

          .case-item__heading {
            margin: 0;
            font-size: 32px;
            line-height: 1.2;
            color: #111;
            font-variation-settings: "wght" 700;

            @media screen and (max-width: 768px) {
              font-size: 1rem;
            }
          }

          .case-item__action {
            margin-left: auto;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            border: none;
            background: transparent;
            padding: 6px 6px;
            cursor: pointer;
            color: #111;
            font-variation-settings: "wght" 600;

            @media screen and (max-width: 768px) {
              padding: 0;
            }

            &:hover {
              opacity: 0.75;
            }
          }

          .case-item__actionText {
            font-size: 16px;
            line-height: 1;

            @media screen and (max-width: 768px) {
              font-size: 0.875rem;
            }
          }

          .case-item__actionBtn {
            width: 32px;
            height: 32px;
            border-radius: 999px;
            background: #FFC803;
            position: relative;
            flex: 0 0 auto;

            &::before {
              content: "";
              position: absolute;
              inset: 0;
              margin: auto;
              width: 7px;
              height: 7px;
              border-right: 1px solid #111;
              border-bottom: 1px solid #111;
              transform: rotate(45deg);
              top: -2px;
            }

          }
        }

        .case-item__panel {
          background: #fff;
          overflow: hidden;
          max-height: 0;
          opacity: 0;
          transition: max-height 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.25s ease;
          padding: 0 26px;

          @media screen and (max-width: 768px) {
            padding: 0 16px 0.75rem;
          }

          .case-item__content {
            padding-bottom: 32px;

            @media screen and (max-width: 768px) {
              padding-top: 18px;
              padding-bottom: 1rem;
            }

            .case-compare {
              display: grid;
              grid-template-columns: 1fr 1fr;
              gap: 26px;
              align-items: stretch;

              @media screen and (max-width: 768px) {
                grid-template-columns: 1fr;
              }

              .case-card {
                border-radius: 6px;
                padding: 16px 18px 18px;
                min-height: 110px;

                &.is-before {
                  position: relative;
                  background: #F1F1F1;

                  @media screen and (max-width: 768px) {
                    margin-bottom: 8px;
                  }


                  &::after {
                    content: "";
                    position: absolute;
                    top: 50%;
                    right: -20px;
                    transform: translateY(-50%);
                    width: 0;
                    height: 0;
                    border-top: 18px solid transparent;
                    border-bottom: 18px solid transparent;
                    border-left: 22px solid #F1F1F1;
                  }

                  @media screen and (max-width: 768px) {
                    &::after {
                      top: auto;
                      bottom: -40px;
                      left: 50%;
                      bottom: -43px;
                      transform: translateX(-50%);
                      width: 0;
                      height: 0;
                      border-left: 38px solid transparent;
                      border-right: 38px solid transparent;
                      border-top: 36px solid #F1F1F1;
                    }
                  }
                }

                &.is-after {
                  background: #FFF4F4;
                  border: 2px solid #DE1E1E;
                }

                .case-card__head {
                  display: flex;
                  align-items: center;
                  gap: 10px;
                  margin-bottom: 10px;

                  @media screen and (max-width: 768px) {
                    margin-bottom: 1rem;
                  }

                  .case-tag {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    padding: 8px 10px;
                    border-radius: 5px;
                    font-size: 16px;
                    line-height: 1;
                    font-variation-settings: "wght" 700;

                    &.is-before {
                      background: #111;
                      color: #fff;
                    }

                    &.is-after {
                      background: #DE1E1E;
                      color: #fff;
                    }
                  }

                  .case-card__title {
                    font-family: "Roboto", sans-serif;
                    font-weight: 700;
                    font-size: 20px;
                    line-height: 1;
                    color: #111;
                    font-variation-settings: "wght" 700;

                    &.is-after {
                      color: #DE1E1E;
                    }
                  }
                }

                .case-card__text {
                  margin: 0;
                  font-size: 14px;
                  line-height: 1.7;
                  color: #333;
                }
              }
            }
          }
        }
      }
    }
  }
}

/* =========================
  Feature
========================= */
.feature {
  position: relative;
  background: #111111;
  overflow: hidden;

  @media screen and (max-width: 768px) {
    padding-bottom: 10rem;
  }
}

.feature__inner {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;

  @media screen and (max-width: 768px) {
    width: 100%;
    margin: 0 auto;
  }
}

.feature-deco {
  width: 100%;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.feature-deco__item {
  position: absolute;
  height: auto;
  display: block;
  will-change: transform;
  opacity: 0.5;

  &.feature-deco__item--01 {
    left: 0;
    top: 560px;
    width: 270px;

    @media screen and (max-width: 768px) {
      left: -8rem;
      top: 2rem;
    }
  }

  &.feature-deco__item--02 {
    right: 0;
    top: 690px;
    width: 160px;

    @media screen and (max-width: 768px) {
      top: 57rem;
      right: -5rem;
    }
  }

  &.feature-deco__item--03 {
    right: 0;
    bottom: 360px;
    width: 238px;

    @media screen and (max-width: 768px) {
      bottom: 34rem;
      width: 6.8rem;
    }
  }

  &.feature-deco__item--04 {
    left: 0;
    bottom: -60px;
    width: 264px;

    @media screen and (max-width: 768px) {
      display: none;
    }
  }


  &.feature-deco__item--05 {
    left: 0;
    bottom: 0;
    width: 100%;

    @media screen and (min-width: 769px) {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    transform: none !important;
  }
}

.feature-problem {
  position: relative;
  background: #F1F1F1;
  border-radius: 8px;
  padding: 40px;
  margin: 0 auto 74px;
  text-align: center;

  @media screen and (max-width: 768px) {
    padding: 1.25rem 1rem 1.5rem;
    margin: 0 auto 3.8rem;
    border-radius: 0.75rem;
  }

  &::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -34px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 48px solid transparent;
    border-right: 48px solid transparent;
    border-top: 42px solid #F1F1F1;
  }

  .feature-problem__lead {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    color: #111111;

    @media screen and (max-width: 768px) {
      font-size: 0.875rem;
      line-height: 1.6;
    }
  }

  .feature-problem__title {
    margin: 0 0 28px;
    font-size: 28px;
    line-height: 1.3;
    color: #111111;
    font-variation-settings: "wght" 600;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 64px;

    @media screen and (max-width: 768px) {
      font-size: 1.5rem;
      letter-spacing: -0.025rem;
      padding: 0 2.5rem;
      margin: 0 0 1.5rem;
    }

    &::before,
    &::after {
      content: "";
      position: absolute;
      top: 0.64em;
      width: 32px;
      height: 2px;
      background: #111;
      transform-origin: center;

      @media screen and (max-width: 768px) {
        width: 4.25rem;
        height: 2px;
        top: 0.75em;
      }
    }

    &::before {
      left: 32px;
      transform: rotate(65deg);

      @media screen and (max-width: 768px) {
        left: -2.75rem;
        top: 1.75rem;
      }
    }

    &::after {
      right: 32px;
      transform: rotate(-65deg);

      @media screen and (max-width: 768px) {
        right: -2.75rem;
        top: 1.75rem;
      }
    }
  }

  .feature-problem__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 18px;

    @media screen and (max-width: 768px) {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }

  .feature-problem__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    height: 132px;
    border-radius: 8px;
    padding: 0 18px;
    text-align: left;

    @media screen and (max-width: 768px) {
      height: auto;
      padding: 1rem;
      border-radius: 0.75rem;
    }

    &:nth-child(-n + 3) {
      .feature-problem__cardTtl {
        color: #DE1E1E;
        font-size: 16px;
        font-variation-settings: "wght" 700;

        @media screen and (max-width: 768px) {
          font-size: 1.05rem;
        }
      }
    }

    &:nth-child(n + 4) {
      .feature-problem__cardTxt {
        color: #DE1E1E;
        font-size: 16px;
        font-variation-settings: "wght" 700;
      }
    }
  }

  .feature-problem__cardTtl {
    color: #111111;
    font-size: 14px;
    margin-bottom: 5px;

    @media screen and (max-width: 768px) {
      font-size: 0.875rem;
      line-height: 1.5;
    }
  }

  .feature-problem__cardTxt {
    color: #111111;
    font-size: 14px;

    @media screen and (max-width: 768px) {
      font-size: 0.875rem;
      line-height: 1.5;
    }
  }
}

.feature__head {
  text-align: center;
  margin: 0 0 74px;

  @media screen and (max-width: 768px) {
    margin: 0 0 2.75rem;
  }

  .feature__label {
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    line-height: 1;
    color: #DE1E1E;

    @media screen and (max-width: 768px) {
      font-size: 1.125rem;
    }
  }

  .feature__title {
    color: #fff;
    margin: 0;
  }
}

.feature-item {
  max-width: 994px;
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 42px;
  align-items: start;
  margin: 0 auto 68px;

  @media screen and (max-width: 768px) {
    gap: 1.5rem;
    margin: 0 auto 2.5rem;
  }

  &:last-child {
    margin-bottom: 0;
  }

  &.feature-item--reverse {
    grid-template-columns: 410px 1fr;

    .feature-item__text {
      order: 2;
    }

    .feature-item__media {
      order: 1;
    }
  }

  @media screen and (max-width: 768px) {
    grid-template-columns: 1fr;

    &.feature-item--reverse {
      grid-template-columns: 1fr;

      .feature-item__text {
        order: 1;
      }

      .feature-item__media {
        order: 2;
      }
    }
  }

  .feature-item__flag {
    position: relative;
    width: 132px;
    height: 44px;
    flex: 0 0 auto;
    background: url("../images/img_flag.png") no-repeat left center / contain;
    display: flex;
    align-items: center;
    gap: 4px;
    padding-left: 10px;
    margin: 0 0 12px;

    @media screen and (max-width: 768px) {
      width: 114px;
    }

    .feature-item__flagLabel {
      font-family: "Roboto", sans-serif;
      font-style: italic;
      font-size: 14px;
      line-height: 1;
      color: #fff;
      letter-spacing: 0.06em;

      @media screen and (max-width: 768px) {
        font-size: 0.75rem;
      }
    }

    .feature-item__flagNo {
      font-family: "Roboto", sans-serif;
      font-style: italic;
      font-size: 36px;
      line-height: 1;
      color: #fff;

      @media screen and (max-width: 768px) {
        font-size: 1.86rem;
      }
    }
  }

  .feature-item__heading {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.55;
    color: #fff;
    font-variation-settings: "wght" 400;

    @media screen and (max-width: 768px) {
      font-size: 1rem;
      line-height: 1.5;
      font-variation-settings: "wght" 300;
    }
  }

  .feature-item__desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #fff;
    font-variation-settings: "wght" 300;

    @media screen and (max-width: 768px) {
      font-size: 0.86rem;
      line-height: 1.85;
      font-variation-settings: "wght" 300;
    }
  }

  .feature-item__media {
    border-radius: 8px;
    overflow: hidden;

    img {
      width: 100%;
      height: auto;
      display: block;
    }
  }
}

/* =========================
  Info
========================= */
#info-compare,
#info-spec,
#info-flow {
  scroll-margin-top: 100px;
}

.info__inner {
  max-width: 994px;
  margin: 0 auto;

  @media screen and (max-width: 768px) {
    width: 100%;
    margin: 0 auto;
  }
}

.block {
  margin-top: 110px;

  @media screen and (max-width: 768px) {
    margin-top: 5.25rem;
  }

  .block__title {
    position: relative;
    margin: 0 0 34px;
    padding-top: 12px;
    font-size: 24px;
    font-variation-settings: "wght" 700;
    color: #111;

    @media screen and (max-width: 768px) {
      font-size: 1.5rem;
      line-height: 1.25;
      margin: 0 0 1.75rem;
    }

    &::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 48px;
      height: 4px;
      background: #DE1E1E;
    }
  }

  .block__sub {
    font-size: 16px;
    font-variation-settings: "wght" 700;
  }

  .block__note {
    font-size: 13px;
    font-variation-settings: "wght" 400;
    color: #666;
  }
}

/* trial */
.trial {
  position: relative;
  background: #fff;
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1fr 374px;
  gap: 18px;
  align-items: center;

  @media screen and (max-width: 768px) {
    padding: 1rem 1rem 1.75rem;
    border-radius: 0;
  }

  &::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 8px;
    background: #DE1E1E;
    border-radius: 0;
  }

  @media screen and (max-width: 959px) {
    grid-template-columns: 1fr;
  }

  .trial__title {
    margin: 0 0 5px;
    font-size: 24px;
    color: #DE1E1E;
    font-variation-settings: "wght" 700;

    @media screen and (max-width: 768px) {
      font-size: 1.6rem;
      font-variation-settings: "wght" 600;
      letter-spacing: -0.025rem;
      line-height: 1.4;
      margin: 10px 0;
    }
  }

  .trial__text {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.7;
    color: #111;

    @media screen and (max-width: 768px) {
      font-size: 0.92rem;

      sup {
        font-size: 0.72em;
        vertical-align: super;
        line-height: 0;
      }
    }
  }

  .trial__note {
    font-size: 13px;
    color: #666;
  }

  .trial__btn {
    text-align: center;
    padding: 12px 28px 12px 18px;
    background: var(--yellow);
    color: #222;
    font-size: 16px;
    font-variation-settings: "wght" 700;
    line-height: 1.4;
    letter-spacing: 0;
    border-radius: 6px;
    box-shadow: var(--shadow-cta-8);
    --press-y: 8px;

    @media screen and (max-width: 768px) {
      font-size: 1rem;
      padding: 0.75rem 2rem 0.75rem 1rem;
    }

    &::after {
      right: 15px;
      border-top: 1px solid var(--arrow-color);
      border-right: 1px solid var(--arrow-color);

      @media screen and (max-width: 768px) {
        right: 1rem;
      }
    }

    &:hover {
      box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

    @media screen and (max-width: 959px) {
      min-width: 0;
      width: 100%;
    }
  }
}

/* compare */
.compare {
  @media screen and (max-width: 768px) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.compare__table {
  width: 100%;
  border-collapse: collapse;

  @media screen and (max-width: 768px) {
    min-width: 36rem;
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
  }

  .compare__th {
    font-size: 15px;
    color: #fff;
    padding: 18px;
    text-align: center;

    @media screen and (max-width: 768px) {
      padding: 0.75rem 0.625rem;
      width: auto;
    }

    &.compare__th--blank {
      background-color: #f1f1f1;
      border-left: 1px solid #f1f1f1;
      width: 18%;
    }

    &.compare__th--colab {
      background: #444;
      width: 41%;
      font-variation-settings: "wght" 300;
    }

    &.compare__th--dok {
      background: #DE1E1E;
      border-left: 5px solid #DE1E1E;
      border-right: 5px solid #DE1E1E;
      width: 41%;
      font-variation-settings: "wght" 300;
    }

    & sup {
      font-size: 12px;
      vertical-align: middle;
      margin: 0 0 0 5px;
    }
  }

  .compare__rowHead {
    width: 220px;
    background: #E9E9E9;
    border-bottom: 1px solid #CCC;
    font-size: 14px;
    font-variation-settings: "wght" 700;
    padding: 14px 12px;
    text-align: left;
    vertical-align: middle;

    @media screen and (max-width: 768px) {
      padding: 0.75rem 0.625rem;
      width: auto;
    }

  }

  .compare__cell {
    border-bottom: 1px solid #CCC;
    padding: 14px 14px;
    vertical-align: middle;
    background: #fff;

    @media screen and (max-width: 768px) {
      padding: 0.75rem 0.625rem;
      width: auto;
    }

    &.compare__cell--dokCol {
      background: #FFF4F4;
      border-left: 5px solid #DE1E1E;
      border-right: 5px solid #DE1E1E;
    }
  }

  tr:last-child {
    .compare__cell {
      &.compare__cell--dokCol {
        border-bottom: 5px solid #DE1E1E;
      }
    }
  }

  .compare__cellInner {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-direction: column;
  }

  .compare__icon {
    width: 32px;
    margin-top: 2px;
  }

  .compare__cellText {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    color: #111;
    & sup {
      font-size: 12px;
      vertical-align: middle;
      margin: 0 0 0 5px;
    }
    @media screen and (max-width: 768px) {
      font-size: 0.875rem;
    }
  }

  .compare__cellNote {
    margin: 6px 0 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
  }
}

.compare__noteList {
  margin-top: 32px;
  & li {
    display: flex;
    counter-increment: number;
    font-size: 13px;
    line-height: 1.7;
    color: #666;
    &::before {
      content: "※"counter(number);
      margin: 0 5px 0 0;
      flex-shrink: 0;
    }
  }
}

/* estimate */
.estimate__grid {
  display: grid;
  grid-template-columns: repeat(3, 310px);
  gap: 16px 18px;
  justify-content: center;

  @media screen and (max-width: 959px) {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  &.estimate__grid--bottom {
    margin-top: 18px;
    grid-template-columns: repeat(2, 379px);
    justify-content: center;

    @media screen and (max-width: 959px) {
      grid-template-columns: 1fr;
      margin-top: 1.5rem;
      gap: 1.5rem;
    }
  }
}

.estimate-card {
  background: #fff;
  border: 1px solid #CCC;
  border-radius: 8px;
  overflow: hidden;

  &.estimate-card--bottom {
    grid-column: auto;
  }

  .estimate-card__ttl {
    margin: 0;
    padding: 18px;
    background: #E9E9E9;
    font-size: 16px;
    font-variation-settings: "wght" 700;
    color: #111;
    text-align: center;
    line-height: 1.35;
    border-bottom: 1px solid #CCC;

    @media screen and (max-width: 768px) {
      font-size: 0.95rem;
      letter-spacing: -0.04rem;
      padding: 16px 0.5rem;
    }
  }

  .estimate-card__price {
    padding: 14px 14px 16px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;

    @media screen and (max-width: 768px) {
      gap: 12px;
      padding: 0;
    }
  }

  .estimate-card__time {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    font-size: 14px;
    font-variation-settings: "wght" 600;
    color: #DE1E1E;
    background-color: #F1F1F1;
    border: 1px solid #CCCCCC;
    border-radius: 6px;
    padding: 4px 14px;
    line-height: 1;

    em {
      display: inline-block;
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-size: 26px;
      line-height: 1;

      @media screen and (max-width: 768px) {
        font-size: 1.87rem;
      }
    }
  }

  .estimate-card__yen {
    display: inline-flex;
    gap: 6px;
    align-items: baseline;
    font-size: 18px;
    font-variation-settings: "wght" 600;

    em {
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-size: 48px;
      color: #DE1E1E;
    }
  }
}

/* spec */
.spec {
  @media screen and (max-width: 768px) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.spec__table {
  width: 100%;
  border-collapse: collapse;

  @media screen and (max-width: 768px) {
    min-width: 35.8rem;

    .spec__th,
    .spec__cell,
    .spec__rowHead {
      padding: 0.75rem 0.5rem;
      font-size: 0.875rem;
    }
  }
}

.spec__th {
  background: #444;
  color: #fff;
  font-size: 15px;
  font-variation-settings: "wght" 300;
  padding: 12px 14px;
  text-align: center;
  border: 1px solid #CCC;

  &:nth-child(1) {
    width: 18%;

    @media screen and (max-width: 768px) {
      padding: 1.25rem 0.5rem;
    }
  }

  &:nth-child(2) {
    width: 41%;
    text-align: left;

    @media screen and (max-width: 768px) {
      padding: 1.5rem;
    }
  }

  &:nth-child(3) {
    width: 41%;
    text-align: left;

    @media screen and (max-width: 768px) {
      padding: 1.5rem;
    }
  }
}

.spec__rowHead {
  width: 220px;
  background: #E9E9E9;
  border-bottom: 1px solid #CCC;
  font-size: 14px;
  font-variation-settings: "wght" 700;
  padding: 14px 12px;
  text-align: left;
  vertical-align: middle;
}

.spec__cell {
  background: #fff;
  border-top: 1px solid #CCC;
  border-right: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  padding: 14px 14px;
  font-size: 14px;
  line-height: 1.6;
  color: #111;
  vertical-align: middle;

  @media screen and (max-width: 768px) {
    font-size: 0.875rem;
  }
}

.spec__note {
  font-size: 13px;
  color: #666;
  margin-left: 5px;
}

.spec__foot {
  margin-top: 32px;
  padding-left: 18px;
  color: #666;
  font-size: 13px;
  line-height: 1.7;

  li {
    position: relative;

    &::before {
      content: "";
      display: block;
      width: 3px;
      height: 3px;
      background: #666666;
      border-radius: 50%;
      position: absolute;
      top: 10px;
      left: -13px;
    }
  }
}

/* flow */
.flow {
  margin: 0;
  padding: 0;
  list-style: none;

  .flow__item {
    position: relative;
    display: flex;
    padding: 34px 40px;
    background: #fff;
    border-radius: 12px;

    @media screen and (max-width: 768px) {
      flex-direction: column;
      padding: 1.5rem 1rem;
      border-radius: 0.75rem;
    }

    &:not(:last-child) {
      margin-bottom: 82px;

      @media screen and (max-width: 768px) {
        margin-bottom: 2.85rem;
      }
    }

    &::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -32px;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 38px solid transparent;
      border-right: 38px solid transparent;
      border-top: 32px solid #fff;
    }

    &:last-child {
      &::after {
        content: none;
      }
    }

    @media screen and (max-width: 959px) {
      grid-template-columns: 56px 1fr;
    }
  }

  .flow__icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    border-right: solid 1px #E4E4E4;
    padding: 0 6.81818% 0 4.54545%;

    @media screen and (max-width: 768px) {
      border-right: 0;
      padding: 0;
      justify-content: center;
      margin-bottom: 0.75rem;
    }

    img {
      width: 80px;

      @media screen and (max-width: 768px) {
        width: 3.5rem;
      }
    }
  }

  .flow__body {
    padding-left: 6.81818%;
    font-size: 1rem;
    line-height: 1.75;
    flex: 1;

    @media screen and (max-width: 768px) {
      padding-left: 0;
    }

  }

  .flow__step {
    margin: 0 0 10px;

    @media screen and (max-width: 768px) {
      margin: 0 0 5px;
    }

    span {
      display: inline-flex;
      align-items: center;
      height: 28px;
      padding: 3px 14px 0;
      border: 1px solid #CCC;
      background: #F6F4F3;
      border-radius: 6px;
      color: #DE1E1E;
      font-family: "Roboto", sans-serif;
      font-size: 16px;
      font-variation-settings: "wght" 500;
    }
  }

  .flow__ttl {
    margin-bottom: 8px;
    font-size: 28px;
    font-variation-settings: "wght" 700;
    color: #111;

    @media screen and (max-width: 768px) {
      margin-bottom: 0rem;
      font-size: 1.125rem;
    }
  }

  .flow__desc {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.8;
    color: #111;

    @media screen and (max-width: 768px) {
      font-size: 0.875rem;
    }
  }

  .flow__note {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    line-height: 1.7;
  }

  .flow__callout {
    background: #FFF4F4;
    padding: 14px 16px;
    border-radius: 6px;
    margin: 0 0 14px;

    @media screen and (max-width: 768px) {
      margin-bottom: 1.42rem;
    }

    .flow__calloutTtl {
      margin: 0 0 6px;
      font-size: 16px;
      font-variation-settings: "wght" 700;
      color: #DE1E1E;
    }

    .flow__calloutTxt {
      margin: 0 0 6px;
      font-size: 13px;
      line-height: 1.7;
      color: #111;
    }

    .flow__calloutNote {
      margin: 0;
      font-size: 13px;
      color: #666;
    }
  }

  .flow__btn {
    padding: 15px 42px 15px 28px;
    min-width: 410px;
    color: #000;
    font-size: 14px;
    font-variation-settings: "wght" 600;
    line-height: 1.4;
    letter-spacing: 0;
    border-radius: 4px;
    box-shadow: var(--shadow-cta-4);
    --press-y: 4px;

    @media screen and (max-width: 768px) {
      width: 100%;
      min-width: 0;
      padding: 0.4rem 2rem 0.4rem 1rem;
      border-radius: 6px;
      font-size: 0.82rem;
    }

    &::after {
      right: 22px;
      border-top: 1px solid var(--arrow-color);
      border-right: 1px solid var(--arrow-color);

      @media screen and (max-width: 768px) {
        right: 1rem;
        width: 7px;
        height: 7px;
      }
    }

    &:hover {
      box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
  }
}

/* =========================
  recommend
========================= */
.recommend {
  position: relative;
  color: #fff;
  overflow: hidden;
  min-height: 720px;

  @media screen and (max-width: 959px) {
    min-height: auto;
    padding: 8rem 0;
  }

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/bg_recommend_pc_02.png) no-repeat center / cover;
    z-index: 0;
  }

  &::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(1400px, calc(100% - 40px));
    height: 100%;
    background: url(../images/bg_recommend_pc_01.png);
    background-repeat: no-repeat;
    background-size: 86% auto;
    background-position: center bottom;
    z-index: 10;
    pointer-events: none;

    @media screen and (max-width: 959px) {
      left: 0;
      transform: none;
      width: 100%;
      opacity: 0.5;
      background-image:
        url(../images/bg_recommend_sp_01.png),
        url(../images/bg_recommend_sp_02.png);
      background-repeat: no-repeat, no-repeat;
      background-position: -32px -12px, center calc(100% + 8px);
      background-size: 110% auto, 110% auto;
    }
  }

  .recommend__inner {
    position: relative;
    z-index: 20;
    width: min(994px, calc(100% - 40px));
    margin: 0 auto;

    @media screen and (max-width: 768px) {
      width: calc(100% - (var(--sp-pad-x) * 2));
    }
  }

  .recommend__eyebrow {
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    text-align: center;

    @media screen and (max-width: 768px) {
      font-size: 1.125rem;
    }
  }

  .recommend__title {
    margin: 0 0 52px;
    text-align: center;

    @media screen and (max-width: 768px) {
      margin: 0 0 2rem;
    }
  }

  .recommend__main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 26px;

    @media screen and (max-width: 768px) {
      grid-template-columns: 1fr;
    }
  }

  .recommend__links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    @media screen and (max-width: 768px) {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }
}

.recommend-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: #111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
  cursor: pointer;


  .recommend-card__media {
    position: relative;
    height: 158px;

    @media screen and (max-width: 768px) {
      height: 7.5rem;
    }

    &::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.25);
      opacity: 1;
      transition: opacity 0.35s ease;
      z-index: 10;
      pointer-events: none;
    }

    &:hover::after {
      opacity: 0;
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .recommend-card__actionBtn {
      width: 54px;
      height: 54px;
      border-radius: 999px;
      background: #FFC803;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: 10;

      @media screen and (max-width: 768px) {
        width: 42px;
        height: 42px;
      }

      &::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 10px;
        height: 10px;
        border-top: 1px solid #1a1a1a;
        border-right: 1px solid #1a1a1a;
        transform: translate(-60%, -50%) rotate(45deg);
        opacity: .9;

        @media screen and (max-width: 768px) {
          width: 8px;
          height: 8px;
        }
      }

      &.recommend-card__actionBtn--movie {
        &::after {
          border: 0;
          width: 18px;
          height: 18px;
          transform: translate(-50%, -50%);
          background: url(../images/icon_movie.svg) no-repeat center / contain;
          opacity: 1;

          @media screen and (max-width: 768px) {
            width: 14px;
            height: 14px;
          }
        }
      }
    }
  }


  .recommend-card__body {
    padding: 20px 20px 24px;
    background: #fff;
    transition: filter 0.2s ease, background-color 0.2s ease;

    &:hover {
      filter: brightness(0.8);
    }

    @media screen and (max-width: 768px) {
      padding: 0.75rem 1rem 1rem;
    }
  }

  .recommend-card__tag {
    width: 144px;
    text-align: center;
    display: inline-block;
    padding: 6px 0;
    border-radius: 6px;
    background: #DE1E1E;
    color: #fff;
    font-size: 16px;
    font-variation-settings: "wght" 500;
    line-height: 1;
    margin-bottom: 10px;

    @media screen and (max-width: 768px) {
      font-size: 0.82rem;
      width: 103px;
      margin-bottom: 2px;
    }
  }

  .recommend-card__ttl {
    margin: 0 0 10px;
    font-size: 28px;
    font-variation-settings: "wght" 700;

    @media screen and (max-width: 768px) {
      font-size: 1.25rem;
    }
  }

  .recommend-card__txt {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;

    @media screen and (max-width: 768px) {
      font-size: 0.85rem;
    }
  }
}

.recommend-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 18px;
  background: #fff;
  border-radius: 8px;
  color: #111;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
  transition: filter 0.2s ease, background-color 0.2s ease;

  &:hover {
    filter: brightness(0.8);
  }

  .recommend-link__ttl {
    font-size: 18px;
    font-variation-settings: "wght" 700;
  }

  .recommend-link__actionBtn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #FFC803;
    position: relative;
    flex: 0 0 auto;

    @media screen and (max-width: 768px) {
      width: 26px;
      height: 26px;
    }

    &::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 7px;
      height: 7px;
      border-top: 1px solid #1a1a1a;
      border-right: 1px solid #1a1a1a;
      transform: translate(-60%, -50%) rotate(45deg);

      @media screen and (max-width: 768px) {
        width: 6px;
        height: 6px;
      }
    }
  }
}

/* =========================
  faq
========================= */

.faq__inner {
  max-width: 994px;
  margin: 0 auto;

  @media screen and (max-width: 768px) {
    width: 100%;
    margin: 0 auto;
  }
}

.faq__headline {
  position: relative;
  margin: 0 0 48px;
  padding-top: 14px;
  font-size: 24px;
  font-weight: 500;
  color: #111;

  &::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 3px;
    background: var(--dok-primary-color);
    border-radius: 999px;
  }

  @media screen and (max-width: 768px) {
    margin: 0 0 36px;
    font-size: 22px;
  }
}

.faq__list {
  margin: 0;

  dt {
    position: relative;
    margin: 0;
    padding: 34px 0 16px 78px;
    border-top: 1px solid #CCCCCC;
    font-size: 22px;
    font-variation-settings: "wght" 700;
    color: #111;

    &::before {
      content: "Q";
      position: absolute;
      left: 0;
      top: 28px;
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: var(--dok-primary-color);
      color: #fff;
      font-family: "Roboto", sans-serif;
      font-size: 24px;
      font-variation-settings: "wght" 700;
      line-height: 1;
    }

    @media screen and (max-width: 768px) {
      padding: 22px 0 12px 44px;
      font-size: 1rem;
      line-height: 1.4;

      &::before {
        top: 18px;
        width: 32px;
        height: 32px;
        font-size: 1.085rem;
        font-variation-settings: "wght" 600;
      }
    }
  }

  dd {
    position: relative;
    margin: 0;
    padding: 12px 0 34px 78px;

    &:last-of-type {
      border-bottom: 1px solid #CCCCCC;
    }

    &::before {
      content: "A";
      position: absolute;
      left: 0;
      top: 12px;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--dok-primary-color);
      color: var(--dok-primary-color);
      font-family: "Roboto", sans-serif;
      font-size: 24px;
      font-variation-settings: "wght" 700;
      line-height: 1;
    }

    &>div {
      padding-top: 6px;
      font-size: 16px;
      line-height: 1.75;
      color: #111;

      @media screen and (max-width: 768px) {
        padding-top: 2px;
        font-size: 0.875rem;
      }
    }

    p {
      &+p {
        margin-top: 10px;
      }
    }

    @media screen and (max-width: 768px) {
      padding: 0 0 32px 44px;

      &::before {
        width: 30px;
        height: 30px;
        font-size: 1.085rem;
        font-variation-settings: "wght" 600;
      }
    }
  }
}

.faq__link {
  margin-top: 10px;
}

.link {
  color: var(--dok-primary-color);
  border-bottom: solid 1px;

  &:hover {
    opacity: 0.7;
  }
}

/* =========================
  Free Credit
========================= */

.free-credit {
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;

  @media screen and (max-width: 959px) {
    padding-bottom: 6rem;
  }

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/bg_freecredit_02.png) no-repeat center / cover;
    z-index: 0;

    @media screen and (max-width: 959px) {
      background: url(../images/bg_freecredit_02.png) no-repeat left / cover;
    }
  }

  &::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: min(1400px, 100%);
    height: 100%;
    background: url(../images/bg_freecredit_pc_01.png) no-repeat center top;
    background-size: contain;
    z-index: 10;
    background-position: center center;

    @media screen and (max-width: 768px) {
      background: url(../images/bg_freecredit_sp_01.png) no-repeat center / cover;
    }
  }

  .free-credit__inner {
    position: relative;
    z-index: 20;
  }

  .free-credit__eyebrow {
    margin: 0 auto;
    font-family: "Roboto", sans-serif;
    font-size: 20px;

    @media screen and (max-width: 768px) {
      font-size: 1.125rem;
    }
  }

  .free-credit__title {
    margin: 0 0 48px;
    font-variation-settings: "wght" 500;
    text-align: center;
    line-height: 1.5;

    @media screen and (max-width: 768px) {
      font-size: 2rem;
      margin-bottom: 1.5rem;
    }
  }

  .free-credit__btn {
    margin: 0 auto;
    padding: 15px 42px 15px 28px;
    min-width: 496px;
    color: #000;
    font-size: 18px;
    font-variation-settings: "wght" 600;
    line-height: 1.4;
    letter-spacing: 0;
    border-radius: 4px;
    box-shadow: var(--shadow-cta-6);
    --press-y: 6px;

    @media screen and (max-width: 768px) {
      width: 100%;
      min-width: 0;
      font-size: 1rem;
      padding: 0.75rem 2rem 0.75rem 1rem;
    }

    &::after {
      right: 22px;
      border-top: 1px solid var(--arrow-color);
      border-right: 1px solid var(--arrow-color);

      @media screen and (max-width: 768px) {
        right: 1rem;
      }
    }

    &:hover {
      box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }
  }
}

/* =========================
  Modal
========================= */

body {
  &.is-modal-open {
    overflow: hidden;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;

  &.is-open {
    display: block;
  }

  .modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
  }

  .modal__dialog {
    position: relative;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 24px 20px;
    overflow: auto;
  }

  .modal__content {
    min-width: min(994px, calc(100vw - 40px));
    max-height: calc(100vh - 48px);
    text-align: center;
  }

  .modal__video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 6px;
    overflow: hidden;

    iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
    }
  }

  .modal__close {
    position: relative;
    margin: 16px auto 0;
    width: 100%;
    max-width: 240px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    border-radius: 6px;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.18);
    font-size: 16px;
    font-variation-settings: "wght" 500;
    color: #111;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;

    @media screen and (max-width: 768px) {
      margin-top: 1.25rem;
      max-width: 60%;
    }

    span {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 18px;
      line-height: 1;
    }

    &:hover {
      box-shadow: 0 0 0 rgba(0, 0, 0, 0);
      transform: translateY(3px);
      filter: brightness(0.98);
    }
  }

  &.is-open {
    .modal__overlay {
      animation: modalFadeIn 0.18s ease-out both;
    }

    .modal__content {
      animation: modalPopIn 0.18s ease-out both;
    }
  }

  &.is-closing {
    .modal__overlay {
      animation: modalFadeOut 0.14s ease-in both;
    }

    .modal__content {
      animation: modalPopOut 0.14s ease-in both;
    }
  }
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes modalPopIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalFadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes modalPopOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(6px);
  }
}


/* footer */
.footer {
  background: #181616;
  color: #F1F1F1;

  .footer-main {
    padding: 2rem;

    .footer-layout {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 75rem;
      margin: 0 auto;
      gap: 2rem;

      .footer-logo {
        width: 19.6667%;
      }

      .footer-legal-list {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;

        .sitemap-link {
          display: block;
          font-size: 13px;
          font-variation-settings: "wght" 300;
        }
      }
    }
  }
}

@media (width >=992px) {
  .footer {
    & a:not(.footer-logo, .footer-mark-link) {
      transition: opacity .3s;

      &:hover {
        text-decoration: none;
        opacity: .8;
      }
    }
  }
}

@media (width < 992px) {
  .footer {
    padding: 2rem var(--sp-pad-x) 3.5rem;

    .footer-main {
      padding: 0;

      .footer-layout {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        justify-content: center;

        .footer-logo {
          width: 178px;
          margin: 0 auto;
        }

        .footer-legal-list {
          gap: 1.5rem;
          line-height: 1.7;

          .sitemap-link {
            font-feature-settings: "palt";
          }
        }
      }

    }
  }
}
