/* ==========================================================
   page-ankerstore-kansha.css
   凡例: [A] 汎用 / [B] 型流用（page-ankerstore-8thcampaign 由来） / [C] LP固有
   ========================================================== */

@font-face {
  font-family: "MontForAnker";
  src: url("/cdn/shop/files/MontForAnker-Book.woff2?v=1736241676") format("woff2"),
    url("/cdn/shop/files/MontForAnker-Book.woff?v=1736241676") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* [A] ── トークン・ベース ── */
.page-ankerstore-kansha {
  --color-primary: #00a9e0;
  --color-primary-dark: #005d8e;
  --color-primary-light: #3ec3f0;
  --color-pink: #e176b6;
  --color-text: #333333;
  --color-black: #1a1a1a;
  --color-white: #ffffff;
  --color-muted: #666666;
  --color-note: #999999;
  --color-gray-bg: #f5f5f5;
  --color-gray-bd: #e0e0e0;
  --color-bg-light: #f0f9ff;
  --color-line: rgba(0, 169, 224, 0.15);
  --color-card: rgba(235, 247, 255, 0.96);
  --clr-theme: #00a9e0;
  --max-width: 1080px;
  --gutter: 20px;
  --font-en: "MontForAnker", "Mont", "Noto Sans JP", sans-serif;
  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;

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

  & .m-en {
    font-family: var(--font-en);
    font-style: normal;
  }

  & .m-sp {
    display: block !important;

    @media (min-width: 1080px) {
      display: none !important;
    }
  }

  & .m-pc {
    display: none !important;

    @media (min-width: 1080px) {
      display: block !important;
    }
  }

  & .campaign-inner {
    max-width: var(--max-width);
    width: calc(100% - var(--gutter) * 2);
    margin: 0 auto;
  }

  & .campaign-fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;

    &.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* [A] ── ボタン ── */
  & .campaign-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    min-height: 48px;
    padding: 0 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: opacity 0.25s ease;

    @media (min-width: 1080px) {
      width: auto;
    }

    &.campaign-btn--primary {
      background: var(--color-primary);
      border: none;

      & span {
        color: var(--color-white);
      }

      & .campaign-btn__arrow {
        border-color: var(--color-white);
      }

      &:hover {
        opacity: 0.85;
      }
    }

    &.campaign-btn--outline {
      background: var(--color-white);
      border: 1px solid var(--color-primary);

      & span {
        color: var(--color-primary);
      }

      &:hover {
        opacity: 0.75;
      }
    }

    & .campaign-btn__arrow {
      display: inline-block;
      width: 7px;
      height: 7px;
      margin-left: 10px;
      border-top: 1.5px solid var(--color-primary);
      border-right: 1.5px solid var(--color-primary);
      transform: translateY(1px) rotate(45deg);
      flex-shrink: 0;
    }
  }

  /* [B] ── KV ── */
  & .campaign-kv {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    overflow: hidden;
    background: var(--color-primary);

    @media (min-width: 1080px) {
      min-height: 536px;
    }

    &::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 1;
      height: 80px;
      pointer-events: none;
      background: linear-gradient(
        to top,
        rgba(0, 169, 224, 1) 0%,
        rgba(0, 169, 224, 0.94) 12%,
        rgba(0, 169, 224, 0.84) 24%,
        rgba(0, 169, 224, 0.7) 36%,
        rgba(0, 169, 224, 0.54) 48%,
        rgba(0, 169, 224, 0.38) 60%,
        rgba(0, 169, 224, 0.23) 72%,
        rgba(0, 169, 224, 0.11) 84%,
        rgba(0, 169, 224, 0.03) 94%,
        rgba(0, 169, 224, 0) 100%
      );

      @media (min-width: 1080px) {
        height: 120px;
      }
    }

    & .campaign-kv__tex {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;

      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.08;
        mix-blend-mode: screen;
      }
    }

    & .campaign-kv__deco {
      position: absolute;
      top: 0;
      bottom: 0;
      z-index: 0;
      width: 200px;
      opacity: 0.3;
      pointer-events: none;

      @media (min-width: 1080px) {
        width: 490px;
      }

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

      &.campaign-kv__deco--l {
        left: 0;
      }

      &.campaign-kv__deco--r {
        right: 0;
      }

      &.campaign-kv__deco--t,
      &.campaign-kv__deco--b {
        right: 0;
        left: 0;
        width: 100%;
        height: auto;
      }

      &.campaign-kv__deco--t {
        top: 0;
        bottom: auto;
      }

      &.campaign-kv__deco--b {
        top: auto;
        bottom: 0;
      }
    }

    & .campaign-kv__logo {
      position: absolute;
      top: 0;
      left: 50%;
      z-index: 3;
      display: flex;
      align-items: center;
      padding: 12px 24px;
      border-radius: 0 0 14px 14px;
      background: var(--color-white);
      white-space: nowrap;
      transform: translateX(-50%);

      @media (min-width: 1080px) {
        padding: 16px 32px;
        border-radius: 0 0 16px 16px;
      }

      & svg {
        display: block;
        width: 110px;
        height: auto;

        @media (min-width: 1080px) {
          width: 140px;
        }
      }
    }

    & .campaign-kv__inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 50px;
      padding: 100px 20px 50px;

      @media (min-width: 1080px) {
        gap: 40px;
        padding: 110px 20px 50px;
      }
    }

    & .campaign-kv__center img {
      width: 100%;
      max-width: 440px;

      @media (min-width: 1080px) {
        max-width: 560px;
      }
    }

    /* [C] ── KV テキスト版（画像未着時） ── */
    & .campaign-kv__title {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      color: var(--color-white);
      text-align: center;

      @media (min-width: 1080px) {
        gap: 16px;
      }

      & .campaign-kv__title-lead {
        margin: 0;
        font-size: clamp(22px, 6vw, 36px);
        line-height: 1;
        letter-spacing: 0.04em;
      }

      & .campaign-kv__title-main {
        margin: 0;
        font-size: clamp(34px, 9vw, 64px);
        font-weight: 900;
        line-height: 1.2;
        letter-spacing: 0.02em;
      }

      & .campaign-kv__title-sub {
        margin: 0;
        font-size: clamp(13px, 3.6vw, 22px);
        font-weight: 700;
        line-height: 1.5;
        letter-spacing: 0.06em;
      }
    }

    & .campaign-kv__date-badge {
      padding: 16px 32px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.2);

      @media (min-width: 1080px) {
        width: 484px;
        max-width: 100%;
        padding: 20px 40px;
      }
    }

    & .campaign-kv__date-row {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: center;
      gap: 6px;
      color: var(--color-white);
    }

    & .campaign-kv__date-num {
      font-size: 22px;
      line-height: 1;
      letter-spacing: 0.04em;

      @media (min-width: 1080px) {
        font-size: 28px;
      }
    }

    & .campaign-kv__date-day {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--color-white);
      color: var(--color-primary);
      font-size: 11px;
      font-weight: 500;
      line-height: 1;
      flex-shrink: 0;

      @media (min-width: 1080px) {
        width: 24px;
        height: 24px;
        font-size: 14px;
      }
    }

    & .campaign-kv__date-sep {
      font-size: 18px;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.12em;

      @media (min-width: 1080px) {
        font-size: 24px;
      }
    }

    & .campaign-kv__date-text {
      font-size: 15px;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.1em;

      @media (min-width: 1080px) {
        font-size: 20px;
      }
    }

    & .campaign-kv__date-live {
      font-size: 17px;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.08em;

      @media (min-width: 1080px) {
        font-size: 24px;
      }
    }
  }

  /* [B] ── キャンペーン終了 ── */
  &.is-ended .campaign-kv {
    min-height: 0;

    & .campaign-kv__inner {
      padding-bottom: 0;
    }
  }

  & .campaign-ended {
    padding: 48px 0 80px;
    background: var(--color-primary);

    @media (min-width: 1080px) {
      padding: 64px 0 100px;
    }

    & .campaign-btn--primary {
      background: var(--color-white);

      & span {
        color: var(--color-primary);
      }

      & .campaign-btn__arrow {
        border-color: var(--color-primary);
      }
    }

    & .campaign-ended__inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 28px;
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
      text-align: center;
    }

    & .campaign-ended__message {
      margin: 0;
      font-size: 16px;
      line-height: 2;
      color: var(--color-white);

      @media (min-width: 1080px) {
        font-size: 18px;
      }
    }
  }

  /* [B] ── イントロ ── */
  & .campaign-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 0 0 50px;
    background: var(--color-primary);
    text-align: center;

    @media (min-width: 1080px) {
      gap: 100px;
      padding: 10px 0 100px;
    }

    & .campaign-intro__inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;

      @media (min-width: 1080px) {
        gap: 60px;
      }
    }

    & .campaign-intro__text {
      margin: 0;
      font-size: 15px;
      line-height: 2;
      color: var(--color-white);

      @media (min-width: 1080px) {
        font-size: 16px;
      }
    }

    & .campaign-intro__anchors {
      display: flex;
      flex-direction: column;
      gap: 10px;
      width: 100%;
      max-width: 320px;

      @media (min-width: 1080px) {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: auto;
        max-width: none;
      }
    }

    & .campaign-anchor {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 100%;
      height: 56px;
      padding: 0 10px 0 15px;
      border-radius: 44px;
      text-decoration: none;
      transition: opacity 0.2s ease;

      @media (min-width: 1080px) {
        width: 240px;
        flex-shrink: 0;
      }

      &:hover {
        opacity: 0.85;
      }

      &.campaign-anchor--blue {
        background: #e1f4fe;

        & .campaign-anchor__num,
        & .campaign-anchor__label {
          color: var(--color-primary-dark);
        }

        & .campaign-anchor__icon {
          background: var(--color-primary-dark);
          color: var(--color-white);
        }
      }

      &.campaign-anchor--pink {
        background: var(--color-pink);

        & .campaign-anchor__num,
        & .campaign-anchor__label {
          color: var(--color-white);
        }

        & .campaign-anchor__icon {
          background: var(--color-white);
          color: var(--color-pink);
        }
      }

      & .campaign-anchor__num {
        display: flex;
        align-items: center;
        padding-top: 3px;
        font-size: 24px;
        font-weight: 600;
        line-height: 1;
        flex-shrink: 0;
      }

      & .campaign-anchor__label {
        display: flex;
        align-items: center;
        flex: 2;
        min-width: 0;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.2;
        text-align: center;
      }

      & .campaign-anchor__icon {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        flex-shrink: 0;

        &::after {
          content: "";
          display: block;
          width: 6px;
          height: 6px;
          border-right: 1.5px solid currentColor;
          border-bottom: 1.5px solid currentColor;
          transform: rotate(45deg) translate(-1px, -1px);
        }
      }
    }

    & .campaign-intro__gallery {
      width: 100%;
      overflow: hidden;
    }

    & .campaign-gallery-item {
      aspect-ratio: 3 / 2;
      border-radius: 10px;
      overflow: hidden;
      background: #e8f4fa;
      pointer-events: none;
      user-select: none;

      @media (min-width: 1080px) {
        border-radius: 18px;
      }

      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
        user-select: none;
        -webkit-user-drag: none;
      }

      &.campaign-gallery-item--dark {
        background: #151920;
      }
    }

    & #store-gallery-splide .splide__list {
      align-items: center;
    }
  }

  /* [B] ── 01 + 02 ラッパー ── */
  & .campaign-sections-wrap {
    background: linear-gradient(
      to bottom,
      rgba(0, 169, 224, 1) 0%,
      rgba(0, 169, 224, 1) 35%,
      rgba(0, 169, 224, 0.94) 42%,
      rgba(0, 169, 224, 0.84) 50%,
      rgba(0, 169, 224, 0.7) 58%,
      rgba(0, 169, 224, 0.54) 66%,
      rgba(0, 169, 224, 0.38) 74%,
      rgba(0, 169, 224, 0.23) 82%,
      rgba(0, 169, 224, 0.11) 90%,
      rgba(0, 169, 224, 0.03) 96%,
      rgba(0, 169, 224, 0) 100%
    ),
    var(--color-white);
  }

  & .campaign-item {
    padding: 40px 0;

    @media (min-width: 1080px) {
      padding: 60px 0;
    }
  }

  /* [B] ── ステップ見出し（01 / 02 共通） ── */
  & .campaign-present__step {
    display: flex;
    align-items: center;
    gap: 16px;

    &::after {
      content: "";
      flex: 1;
      height: 1px;
      background: rgba(255, 255, 255, 0.6);
    }

    & .campaign-present__step-num {
      font-size: 56px;
      line-height: 1;
      letter-spacing: 0.04em;
      color: var(--color-white);
      white-space: nowrap;

      @media (min-width: 1080px) {
        font-size: 78px;
      }
    }

    & .campaign-present__step-label {
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.8);
      white-space: nowrap;

      @media (min-width: 1080px) {
        font-size: 32px;
      }
    }
  }

  /* [B] ── 日付ボックス（01 / 02 共通） ── */
  & .campaign-present__date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px;
    border-radius: 10px;
    background: var(--color-white);

    @media (min-width: 1080px) {
      gap: 8px;
      padding: 20px;
    }

    & .campaign-present__date-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 5px;
      color: var(--color-primary-dark);
    }

    & .campaign-present__date-num {
      font-size: 22px;
      line-height: 1;
      letter-spacing: 0.04em;

      @media (min-width: 1080px) {
        font-size: 28px;
      }
    }

    & .campaign-present__date-day {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--color-primary-dark);
      color: var(--color-white);
      font-size: 11px;
      font-weight: 500;
      line-height: 1;
      flex-shrink: 0;

      @media (min-width: 1080px) {
        width: 24px;
        height: 24px;
        font-size: 12px;
      }
    }

    & .campaign-present__date-sep {
      font-size: 18px;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.1em;

      @media (min-width: 1080px) {
        font-size: 24px;
      }
    }

    & .campaign-present__date-end {
      font-size: 15px;
      font-weight: 500;
      line-height: 1;
      letter-spacing: 0.1em;

      @media (min-width: 1080px) {
        font-size: 20px;
      }
    }

    & .campaign-present__date-note {
      margin: 0;
      font-size: 10px;
      line-height: 1.6;
      letter-spacing: 0.04em;
      color: rgba(26, 26, 26, 0.6);
    }
  }

  /* [B] ── 01 製品プレゼント ── */
  & .campaign-item--present {
    position: relative;
    background: transparent;

    & .campaign-present__inner {
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: var(--max-width);
      width: calc(100% - var(--gutter) * 2);
      margin: 0 auto;

      @media (min-width: 1080px) {
        gap: 28px;
      }
    }

    & .campaign-present__card {
      display: flex;
      flex-direction: column;
      border-radius: 20px;
      overflow: hidden;
      background: var(--color-card);

      @media (min-width: 1080px) {
        flex-direction: row;
        align-items: stretch;
      }
    }

    & .campaign-present__image-panel {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px 20px 0;

      @media (min-width: 1080px) {
        width: 476px;
        padding: 20px 0 20px 20px;
        align-items: stretch;
        flex-shrink: 0;
      }
    }

    & .campaign-present__image-wrap {
      width: 100%;
      padding: 20px;
      border-radius: 16px;
      background: var(--color-white);

      @media (min-width: 1080px) {
        display: flex;
        align-items: center;
        flex: 1;
        border-radius: 20px;
      }

      & img {
        width: 100%;
      }
    }

    & .campaign-present__content {
      display: flex;
      flex-direction: column;
      gap: 24px;
      padding: 24px 24px 32px;

      @media (min-width: 1080px) {
        flex: 1;
        justify-content: center;
        gap: 30px;
        padding: 40px 60px;
      }
    }

    & .campaign-present__content-inner {
      display: flex;
      flex-direction: column;
      gap: 28px;

      @media (min-width: 1080px) {
        gap: 40px;
      }
    }

    & .campaign-present__headline {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding-bottom: 12px;
      border-bottom: 2px dashed var(--color-primary-dark);
      color: var(--color-primary-dark);

      & .campaign-present__headline-pre,
      & .campaign-present__headline-suf {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.3;
        letter-spacing: 0.1em;

        @media (min-width: 1080px) {
          font-size: 20px;
        }
      }

      & .campaign-present__headline-num {
        font-size: 32px;
        line-height: 1;
        letter-spacing: 0.04em;

        @media (min-width: 1080px) {
          font-size: 40px;
        }
      }
    }

    & .campaign-present__gift-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      color: var(--color-primary-dark);
      text-align: center;

      @media (min-width: 1080px) {
        gap: 20px;
      }

      & .campaign-present__body {
        margin: 0;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.6;
        letter-spacing: 0.04em;

        @media (min-width: 1080px) {
          font-size: 16px;
        }
      }

      & .campaign-present__gift-title {
        margin: 0;
        font-size: 22px;
        font-weight: 700;
        line-height: 1.45;
        letter-spacing: 0.04em;

        @media (min-width: 1080px) {
          font-size: 32px;
        }
      }
    }

    & .campaign-present__cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      min-height: 48px;
      padding: 0 24px;
      border-radius: 44px;
      background: var(--color-primary);
      text-decoration: none;
      transition: opacity 0.2s ease;

      @media (min-width: 1080px) {
        padding: 0 32px;
      }

      &:hover {
        opacity: 0.85;
      }

      & span {
        color: var(--color-white);
        font-size: 15px;
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0.04em;

        @media (min-width: 1080px) {
          font-size: 16px;
        }
      }

      & .campaign-present__cta-arrow {
        display: inline-block;
        width: 6px;
        height: 6px;
        margin-left: 4px;
        border-top: 1.5px solid var(--color-white);
        border-right: 1.5px solid var(--color-white);
        transform: translateY(1px) rotate(45deg);
        flex-shrink: 0;
      }
    }
  }

  /* [B] ── 02 記念セール ── */
  & .campaign-item--sale {
    & .campaign-sale__inner {
      display: flex;
      flex-direction: column;
      gap: 32px;
      max-width: var(--max-width);
      width: calc(100% - var(--gutter) * 2);
      margin: 0 auto;

      @media (min-width: 1080px) {
        gap: 40px;
      }
    }

    & .campaign-sale__card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      background: var(--color-primary);
    }

    & .campaign-sale__tex {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;

      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.08;
        mix-blend-mode: screen;
      }
    }

    & .campaign-sale__deco {
      position: absolute;
      top: 0;
      bottom: 0;
      z-index: 0;
      width: 200px;
      pointer-events: none;

      @media (min-width: 1080px) {
        width: 400px;
      }

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

      &.campaign-sale__deco--l {
        left: 0;
        transform: translateX(-45%);

        @media (min-width: 1080px) {
          transform: translateX(-20%);
        }
      }

      &.campaign-sale__deco--r {
        right: 0;
        transform: translateX(45%);

        @media (min-width: 1080px) {
          transform: translateX(20%);
        }
      }

      &.campaign-sale__deco--t,
      &.campaign-sale__deco--b {
        right: 0;
        left: 0;
        width: 100%;
        height: auto;
        transform: none;
      }

      &.campaign-sale__deco--t {
        top: 0;
        bottom: auto;
      }

      &.campaign-sale__deco--b {
        top: auto;
        bottom: 0;
      }
    }

    & .campaign-sale__content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
      max-width: 680px;
      margin: 0 auto;
      padding: 80px 24px;
      text-align: center;

      @media (min-width: 1080px) {
        padding: 60px 24px;
      }
    }

    & .campaign-sale__logo01 img {
      width: 100%;
      max-width: 480px;

      @media (min-width: 1080px) {
        max-width: 600px;
      }
    }

    & .campaign-sale__logo02 img {
      width: 100%;
      max-width: 360px;

      @media (min-width: 1080px) {
        max-width: 440px;
      }
    }

    /* [C] ── セール テキスト版（画像未着時） ── */
    & .campaign-sale__title {
      margin: 0;
      font-size: clamp(18px, 5vw, 32px);
      font-weight: 700;
      line-height: 1.5;
      letter-spacing: 0.06em;
      color: var(--color-white);
    }

    & .campaign-sale__off {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 4px;
      margin: 0;
      color: var(--color-white);
      line-height: 1;

      & .campaign-sale__off-pre {
        font-size: clamp(22px, 6vw, 40px);
        font-weight: 700;
        letter-spacing: 0.04em;
      }

      & .campaign-sale__off-num {
        font-size: clamp(72px, 20vw, 140px);
        letter-spacing: -0.02em;
      }

      & .campaign-sale__off-unit {
        font-size: clamp(28px, 8vw, 56px);
        letter-spacing: 0.02em;
      }
    }

    & .campaign-sale__date-box {
      width: 100%;

      @media (min-width: 1080px) {
        max-width: 480px;
        margin: 0 auto;
      }
    }
  }

  /* [B] ── 店舗マップ ── */
  & .campaign-map {
    padding: 60px 0;

    @media (min-width: 1080px) {
      padding: 80px 0;
    }

    & .campaign-map__heading {
      margin-bottom: 32px;
      text-align: center;
    }

    & .campaign-map__title {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 8px;
      font-size: 24px;
      font-weight: 700;
      color: var(--color-black);

      @media (min-width: 1080px) {
        font-size: 28px;
      }
    }

    & .campaign-map__title-icon {
      color: var(--color-primary);
    }

    & .campaign-map__subtitle {
      margin: 6px 0 0;
      font-size: 14px;
      color: var(--color-muted);
    }

    & .campaign-map__card {
      padding: 16px 16px 28px;
      border-radius: 16px;
      background: var(--color-white);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);

      @media (min-width: 1080px) {
        padding: 24px;
      }
    }

    & .campaign-map__iframe-wrap {
      width: 100%;
      aspect-ratio: 4 / 5;
      border: 1px solid var(--color-line);
      border-radius: 10px;
      overflow: hidden;
      background: var(--color-bg-light);

      @media (min-width: 1080px) {
        aspect-ratio: 21 / 9;
      }

      & iframe {
        display: block;
        width: 100%;
        height: calc(100% + 60px);
        margin-top: -60px;
        border: 0;
      }
    }

    & .campaign-map__cta {
      margin-top: 20px;
      text-align: center;

      @media (min-width: 1080px) {
        margin-top: 28px;
      }
    }
  }

  /* [B] ── 注意事項 ── */
  & .campaign-notes {
    padding: 40px 0 56px;
    background: var(--color-white);

    @media (min-width: 1080px) {
      padding: 0 0 80px;
    }

    & .campaign-notes__box {
      padding: 24px 20px;
      border-radius: 12px;
      background: var(--color-gray-bg);

      @media (min-width: 1080px) {
        padding: 28px 32px;
      }
    }

    & .campaign-notes__title {
      display: flex;
      align-items: center;
      gap: 6px;
      margin: 0 0 14px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--color-gray-bd);
      font-size: 13px;
      font-weight: 700;
      color: var(--color-muted);
    }

    & .campaign-notes__list {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin: 0;
      padding: 0;
      list-style: none;

      & li {
        display: flex;
        align-items: flex-start;
        gap: 3px;
        font-size: 11px;
        line-height: 1.7;
        color: var(--color-note);

        @media (min-width: 1080px) {
          font-size: 12px;
        }

        &::before {
          content: "※";
          flex-shrink: 0;
        }
      }
    }
  }
}
