/* ========================================
   Design Tokens
   ======================================== */
:root {
  --c-green-dark: #0f3d2e;
  --c-green-mid: #064a37;
  --c-green-main: #06825d;
  --c-green-light: #64d1a1;
  --c-green-pale: #dcede5;
  --c-green-bg: #f3faf7;
  --c-green-card: #33453c;
  --c-black: #212121;
  --c-navy: #1a2b3d;
  --c-white: #ffffff;
  --c-white-94: rgba(255, 255, 255, 0.94);
  --c-gray-bg: #f0f0f0;
  --c-yellow: #ffd24d;
  --c-red: #ea1c3d;
  --c-red-dark: #e0182d;

  --g-green: linear-gradient(122deg, #06825d 0%, #064a37 100%);
  --g-green-hero: linear-gradient(131deg, #06825d 0%, #064a37 100%);
  --g-campaign: linear-gradient(104deg, #83dab4 0%, #8edfff 100%);
  --g-feature-bg: linear-gradient(261deg, #caf4e8 7%, #f3faf7 80%);

  --font: 'Noto Sans JP', sans-serif;
  --cta-h: 20vw; /* 78px at 390 */
}

@media (min-width: 768px) {
  :root {
    --cta-h: 78px;
  }
}

/* ========================================
   Base / Reset
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}

body {
  font-family: var(--font);
  color: var(--c-black);
  line-height: 1.65;
  background: #e8f5e9;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ========================================
   Layout: PC 3-column (outside container)
   ======================================== */
.pc-left,
.pc-right {
  display: none;
}

@media (min-width: 1023px) {
  .pc-left,
  .pc-right {
    display: flex;
    position: fixed;
    top: 0;
    height: 100vh;
    width: calc(50% - 187.5px);
    z-index: 2;
    overflow: hidden;
    padding: clamp(10px, 2vw, 30px);
  }

  .pc-right img {
    max-width: min(100%, 375px);
    height: auto;
  }

  .pc-left {
  }

  .pc-left__inner {
    max-width: 300px;
    width: 100%;
    margin-left: 38px;
    container-type: inline-size;
    display: flex;
    flex-direction: column;
  }

  .pc-left__logo {
    height: 11.56cqi; /* 34.7 */
    width: auto;
    align-self: flex-start;
  }

  .pc-left__badge {
    margin-top: 7.67cqi; /* 23 */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54.33cqi; /* 163 */
    height: 10cqi; /* 30 */
    background: var(--c-yellow);
    border-radius: 0.67cqi; /* 2 */
    font-weight: 900;
    font-size: max(10px, 4.33cqi); /* 13 */
    color: #1a1a1a;
    letter-spacing: 0.18cqi; /* 0.55 */
    white-space: nowrap;
  }

  .pc-left__title {
    margin-top: 3.33cqi; /* 10 */
    font-weight: 900;
    font-size: max(10px, 6cqi); /* 18 */
    line-height: 1.1;
    letter-spacing: 0.09cqi; /* 0.27 */
    background: var(--g-green-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .pc-left__nav {
    margin-top: 22cqi; /* 66 */
    display: flex;
    flex-direction: column;
    gap: 4.33cqi; /* 13 */
  }

  .pc-left__nav-link {
    display: flex;
    align-items: center;
    gap: 2cqi; /* 6 */
    font-weight: 700;
    font-size: max(10px, 4.67cqi); /* 14 */
    line-height: 6.6cqi; /* 19.8 */
    letter-spacing: 0.09cqi; /* 0.27 */
    color: var(--c-black);
    text-decoration: none;
    white-space: nowrap;
  }

  .pc-left__nav-link::before {
    content: '';
    display: block;
    width: 3.33cqi; /* 10 */
    height: 6cqi; /* 18 */
    flex-shrink: 0;
    background: var(--c-white);
    -webkit-mask: url(../img/nav-arrow-01.svg) no-repeat center / contain;
    mask: url(../img/nav-arrow-01.svg) no-repeat center / contain;
  }

  .pc-right {
    right: 0;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  .pc-right__inner {
    max-width: 300px;
    min-height: 300px;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--c-white);
    border-radius: 16px;
    overflow: clip;
    container-type: inline-size;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2cqi; /* 6 */
  }

  .pc-right__info {
    text-align: center;
    letter-spacing: 0.53cqi; /* 1.6 */
  }

  .pc-right__price,
  .pc-right__coupon {
    font-weight: 700;
    font-size: max(10px, 5.33cqi); /* 16 */
    line-height: 9.33cqi; /* 28 */
    color: var(--c-black);
  }

  .pc-right__price-num,
  .pc-right__coupon-num {
    font-size: max(10px, 7.33cqi); /* 22 */
  }

  .pc-right__note {
    font-size: max(10px, 4.67cqi); /* 14 */
    line-height: 9.33cqi; /* 28 */
    color: var(--c-black);
  }

  .pc-right__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80cqi; /* 240 */
    height: 16.67cqi; /* 50 */
    background: var(--c-green-main);
    border-radius: 13.33cqi; /* 40 */
    color: var(--c-white);
    font-weight: 700;
    font-size: max(10px, 5.33cqi); /* 16 */
    letter-spacing: 0.53cqi; /* 1.6 */
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }

  .pc-right__btn:hover {
    background: var(--c-white);
    border-color: var(--c-green-main);
    color: var(--c-green-main);
  }
}

/* ========================================
   Main Content Area (container for cqi)
   ========================================
   390px design base → 1px = 0.2564cqi
   All internal sizes use cqi for proportional scaling.
   Text ≤ 12px design uses max(10px, Xcqi) to enforce minimum.
   ======================================== */
.contents {
  container-type: inline-size;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  background: var(--c-white);
}

@media (min-width: 768px) {
  .contents {
    max-width: 375px;
    box-shadow: 0 0 40px rgba(15, 61, 46, 0.1);
  }
}

/* ========================================
   Header
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white-94);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--c-green-pale);
  padding: 2.31cqi 3.59cqi; /* 9 14 */
}

.site-header__logo {
  height: 4.59cqi; /* 17.9 */
  width: auto;
}

/* ========================================
   Hero / Top Section
   ======================================== */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--c-green-pale);
  aspect-ratio: 390 / 500;
}

.hero__bg {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.hero__badge {
  position: absolute;
  top: 4.10cqi; /* 16 */
  right: 5.64cqi; /* 22 */
  width: 25.64cqi; /* 100 */
  height: 25.64cqi;
  background: var(--c-yellow);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.77cqi 1.03cqi rgba(0, 0, 0, 0.15);
}

.hero__badge-text {
  font-weight: 900;
  font-size: max(10px, 3.33cqi); /* 13 */
  color: var(--c-black);
  text-align: center;
  letter-spacing: 0.14cqi;
  line-height: 1.5;
}

.hero__title-area {
  position: absolute;
  left: 5.64cqi; /* 22 */
  right: 5.64cqi;
  top: 39.74cqi; /* 155 */
  text-align: center;
}

.hero__title {
  font-weight: 900;
  font-size: 9.23cqi; /* 36 */
  line-height: 1.14;
  letter-spacing: 0.07cqi;
  background: var(--g-green-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-weight: 700;
  font-size: 4.10cqi; /* 16 */
  line-height: 1.38;
  color: var(--c-black);
  margin-top: 2.82cqi; /* 11 */
}

/* ========================================
   Campaign Pricing
   ======================================== */
.campaign {
  background: var(--g-campaign);
  padding: 4.10cqi 4.62cqi 4.62cqi; /* 16 18 18 */
}

.campaign__inner {
  position: relative;
}

.campaign__off-badge {
  position: absolute;
  top: -3.59cqi; /* -14 */
  left: -4.10cqi; /* -16 */
  width: 29.23cqi; /* 114 */
  z-index: 2;
}

.campaign__off-text {
  position: absolute;
  top: 2.31cqi; /* 9 */
  left: 2.31cqi; /* 9 */
  font-weight: 900;
  font-size: 5.13cqi; /* 20 */
  color: var(--c-red);
  line-height: 1.1;
  z-index: 3;
}

.campaign__price-area {
  text-align: center;
  padding-top: 1.03cqi; /* 4 */
}

.campaign__price-original {
  display: inline-block;
  font-weight: 700;
  color: var(--c-white);
}

.campaign__price-original .original-label {
  font-size: max(10px, 3.59cqi); /* 14 */
}

.campaign__price-original .original-amount {
  font-weight: 900;
  font-size: 5.13cqi; /* 20 */
}

.campaign__price-original .original-yen {
  font-size: max(10px, 3.59cqi); /* 14 */
}

.campaign__price-arrow {
  width: 8.46cqi; /* 33 */
  margin: 2.05cqi auto; /* 8 */
}

.campaign__price-current {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: var(--c-white);
  position: relative;
  z-index: 1;
}

.campaign__price-current .label {
  font-weight: 900;
  font-size: 3.85cqi; /* 15 */
}

.campaign__price-current .amount {
  font-weight: 900;
  font-size: 13.33cqi; /* 52 */
  line-height: 0.9;
  letter-spacing: -0.27cqi;
  margin: 0 1.03cqi; /* 0 4 */
}

.campaign__price-current .yen-group {
  position: relative;
  display: inline-block;
}

.campaign__price-current .yen {
  font-weight: 900;
  font-size: 5.13cqi; /* 20 */
}

.campaign__price-current .tax {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 400;
  font-size: max(10px, 2.56cqi); /* 10 */
  line-height: 1;
  white-space: nowrap;
}

.campaign__price-bar {
  width: 48.72cqi; /* 190 */
  height: 2.56cqi; /* 10 */
  background: var(--c-yellow);
  margin: -3.08cqi auto 0; /* -12: overlap with price bottom */
  position: relative;
}

.campaign__period {
  text-align: center;
  margin-top: 3.08cqi; /* 12 */
  line-height: 1.31;
}

.campaign__period-main {
  font-weight: 500;
  font-size: max(10px, 3.08cqi); /* 12 */
  color: var(--c-black);
  letter-spacing: 0.12cqi;
}

.campaign__period-note {
  display: block;
  font-weight: 400;
  font-size: max(10px, 2.69cqi); /* 10.5 */
  color: var(--c-black);
  margin-top: 0.51cqi; /* 2 */
}

/* Coupon notice */
.coupon-notice {
  background: linear-gradient(90deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.4) 100%);
  padding: 3.08cqi 4.62cqi; /* 12 18 */
  text-align: center;
  margin-top: 4.62cqi; /* 18 */
  margin-left: -4.62cqi; /* -18 break out of campaign padding */
  margin-right: -4.62cqi;
}

.coupon-notice__text {
  font-weight: 700;
  font-size: max(10px, 3.21cqi); /* 12.5 */
  color: var(--c-black);
  line-height: 1.6;
}

.coupon-notice__code {
  font-weight: 900;
  font-size: 4.10cqi; /* 16 */
  color: var(--c-red-dark);
  line-height: 1;
}

.coupon-notice__code::before {
  content: '「';
}

.coupon-notice__code::after {
  content: '」';
}

/* ========================================
   CTA Button (shared)
   ======================================== */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 61.54cqi; /* 240 */
  height: 12.82cqi; /* 50 */
  border-radius: 10.26cqi; /* 40 */
  font-weight: 700;
  font-size: 4.10cqi; /* 16 */
  letter-spacing: 0.41cqi;
  text-align: center;
  margin: 3.59cqi auto 0; /* 14 */
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-cta--white {
  background: var(--c-white);
  color: var(--c-green-main);
}

.btn-cta--green {
  background: var(--c-green-main);
  color: var(--c-white);
}

@media (hover: hover) {
  .btn-cta--green:hover {
    background: var(--c-white);
    border-color: var(--c-green-main);
    color: var(--c-green-main);
  }
  .btn-cta--white:hover {
    background: var(--c-green-main);
    border-color: var(--c-green-main);
    color: var(--c-white);
  }
}

.btn-cta--green:active {
  background: var(--c-white);
  border-color: var(--c-green-main);
  color: var(--c-green-main);
}

.btn-cta--white:active {
  background: var(--c-green-main);
  border-color: var(--c-green-main);
  color: var(--c-white);
}

.campaign .btn-cta {
  margin-top: 4.62cqi; /* 18 */
}

/* ========================================
   Scene Banner (if10b)
   ======================================== */
.scene-banner {
  position: relative;
  overflow: hidden;
  aspect-ratio: 390 / 302;
}

.scene-banner__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scene-banner__text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 21.28cqi; /* 83 */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4.62cqi; /* 18 */
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 1) 68%);
}

.scene-banner__title {
  font-weight: 900;
  font-size: 5.13cqi; /* 20 */
  line-height: 1.4; /* 28 */
  color: var(--c-black);
  text-align: right;
}

/* ========================================
   Daily Scenes (if10b)
   ======================================== */
.daily-scenes {
  padding: 0 4.62cqi 1.54cqi; /* 0 18 6 */
}

.daily-scenes__title {
  font-weight: 900;
  font-size: 5.13cqi; /* 20 */
  line-height: 1.4; /* 28 */
  color: var(--c-green-dark);
  text-align: center;
}

.daily-scenes__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.59cqi; /* 14 */
  row-gap: 7.95cqi; /* 31 */
  margin-top: 4.36cqi; /* 17 */
}

.daily-scenes__card {
  background: var(--c-green-bg);
  border: 1px solid var(--c-green-light);
  border-radius: 4.10cqi; /* 16 */
  overflow: hidden;
  box-shadow: 0 1.54cqi 4.62cqi rgba(6, 74, 55, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.08cqi 2.56cqi 3.33cqi; /* 12 10 13 */
  gap: 2.05cqi; /* 8 */
}

.daily-scenes__card-label {
  font-weight: 900;
  font-size: max(10px, 3.33cqi); /* 13 */
  line-height: normal;
  color: var(--c-green-dark);
  text-align: center;
}

.daily-scenes__card-icon {
  width: 30.77cqi; /* 120 */
  height: 30.77cqi;
  background: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.daily-scenes__card-icon img {
  width: 20.51cqi; /* 80 */
  height: 20.51cqi;
  object-fit: contain;
}

/* ========================================
   Feature Intro
   ======================================== */
.feature-intro {
  background: var(--g-feature-bg);
  border-bottom: 1px solid var(--c-green-pale);
  padding: 5.13cqi 4.62cqi 0; /* 20 18 0 */
}

.feature-intro__inner {
  display: flex;
  gap: 3.59cqi; /* 14 */
  align-items: flex-start;
}

.feature-intro__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.51cqi; /* 2 */
}

.feature-intro__label {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: var(--c-white);
  padding: 1.28cqi 3.33cqi; /* 5 13 */
  font-weight: 900;
  font-size: max(10px, 3.08cqi); /* 12 */
  color: var(--c-black);
}

.feature-intro__product {
  font-weight: 900;
  font-size: 5.90cqi; /* 23 */
  line-height: 1.3;
  color: var(--c-black);
  margin-top: 2.31cqi; /* 9 */
}

.feature-intro__tagline {
  font-weight: 900;
  font-size: 3.85cqi; /* 15 */
  color: var(--c-black);
}

.feature-intro__desc {
  font-weight: 700;
  font-size: max(10px, 3.21cqi); /* 12.5 */
  line-height: 1.7;
  color: var(--c-black);
  margin-top: 2.56cqi; /* 10 */
}

.feature-intro__desc em {
  font-style: normal;
  background: var(--g-green-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-intro__phone {
  width: 37.95cqi; /* 148 */
  height: 54.62cqi; /* 213 */
  flex-shrink: 0;
  aspect-ratio: 41 / 59;
  background: url(../img/feature-phone-01.png) transparent -3.33cqi -11.10cqi / 117.212% 176.46% no-repeat;
}

/* ========================================
   Feature Cards Section
   ======================================== */
.feature-cards {
  background: var(--c-gray-bg);
  padding: 6.67cqi 4.10cqi 3.59cqi; /* 26 16 14 */
}

.feature-cards__title {
  font-weight: 900;
  font-size: 5.13cqi; /* 20 */
  line-height: 1.4;
  color: var(--c-black);
  text-align: center;
}

.feature-card {
  background: var(--c-white);
  border-radius: 3.59cqi; /* 14 */
  box-shadow: 0 1.03cqi 1.54cqi rgba(6, 74, 55, 0.05);
  display: flex;
  align-items: center;
  padding: 2.82cqi 2.82cqi 0; /* 11 11 0 */
  gap: 4.10cqi; /* 16 */
  margin-top: 5.13cqi; /* 20 */
}

.feature-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.56cqi; /* 10 */
  padding-bottom: 1.54cqi; /* 6 */
  justify-content: center;
  min-width: 0;
}

.feature-card__catch {
  font-weight: 700;
  font-size: 3.59cqi; /* 14 */
  line-height: 1.4;
  color: var(--c-black);
  padding-bottom: 1.54cqi; /* 6 */
}

.feature-card__name {
  font-weight: 900;
  font-size: 3.59cqi; /* 14 */
  line-height: 1.35;
  color: var(--c-green-main);
}

.feature-card__desc {
  font-size: max(10px, 3.08cqi); /* 12 */
  line-height: 1.65;
  color: var(--c-black);
  padding-top: 0.51cqi; /* 2 */
}

.feature-card__image {
  flex: 1;
  height: 48.72cqi; /* 190 */
  overflow: hidden;
  min-width: 0;
}

/*
  Figma背景値メモ（各カード画像の内部フレーム基準）
  --01: w:170 h:203 aspect:67/80  bg: -9.576px -26.318px / 111.265% 111.068%
  --02: w:310 h:190 aspect:31/19  bg: 12.302px -0.411px / 92.063% 100.433%
  --03: w:352 h:235 aspect:349/233 bg: 4.568px 5.093px / 97.915% 97.776%
  --04: w:216 h:258 aspect:36/43  bg: -0.221px 2.643px / 100.205% 100%
*/

.feature-card__image--01 {
  background: url(../img/feature-screenshot-01.jpg) transparent center -6.75cqi / 118.2% 118.7% no-repeat;
}

.feature-card__image--02 {
  background: url(../img/feature-screenshot-02.jpg) transparent center -0.11cqi / 178.4% 100.4% no-repeat;
}

.feature-card__image--03 {
  background: url(../img/feature-screenshot-03.jpg) transparent center center / 215.4% 120.9% no-repeat;
}

.feature-card__image--04 {
  background: url(../img/feature-screenshot-04.jpg) transparent center center / 135.3% 135.8% no-repeat;
}

/* ========================================
   Coupon Section
   ======================================== */
.coupon-section {
  background: var(--g-campaign);
  padding: 7.18cqi 4.62cqi 6.67cqi; /* 28 18 26 */
  text-align: center;
}

.coupon-section__text {
  font-weight: 900;
  font-size: 3.59cqi; /* 14 */
  line-height: 1.6;
  color: var(--c-white);
}

.coupon-section__code {
  color: var(--c-red);
}

/* ========================================
   Flow Section
   ======================================== */
.flow {
  padding: 6.67cqi 4.62cqi 2.05cqi; /* 26 18 8 */
}

.flow__title {
  font-weight: 900;
  font-size: 5.13cqi; /* 20 */
  line-height: 1.4;
  color: var(--c-black);
  text-align: center;
}

.flow__steps {
  margin-top: 2.82cqi; /* 11 */
}

.flow__step {
  display: flex;
  align-items: center;
  gap: 3.59cqi; /* 14 */
  padding: 2.05cqi 7.69cqi; /* 8 30 */
  position: relative;
}

.flow__step-icon {
  width: 19.74cqi; /* 77 */
  max-width: 77px;
  flex-shrink: 0;
  position: relative;
}

.flow__step-arrow {
  position: absolute;
  left: 50%;
  bottom: max(-5.13cqi, -20px);
  width: min(4.36cqi, 17px);
  height: min(7.18cqi, 28px);
  aspect-ratio: 17 / 28;
  transform: translateX(-50%) rotate(90deg);
}

.flow__step-text {
  font-weight: 700;
  font-size: max(10px, 3.46cqi); /* 13.5 */
  line-height: 1.45;
  color: var(--c-black);
}

.flow__step-note {
  font-weight: 400;
  font-size: max(10px, 2.56cqi); /* 10 */
  line-height: 1.6;
  color: var(--c-black);
}

/* ========================================
   Bottom Coupon
   ======================================== */
.coupon-bottom {
  background: var(--c-white);
  padding: 0 4.62cqi 5.13cqi; /* 0 18 20 */
  text-align: center;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background: var(--c-green-dark);
  padding: 4.62cqi; /* 18 */
}

.site-footer__copy {
  font-size: max(10px, 2.82cqi); /* 11 */
  color: var(--c-white);
  text-align: center;
  letter-spacing: 0.08cqi;
}

/* ========================================
   Spacer for fixed CTA
   ======================================== */
.contents-spacer {
  height: var(--cta-h);
}

/* ========================================
   Fixed CTA Bar (outside container)
   ======================================== */
.cta-fixed {
  position: fixed;
  bottom: 0;
  z-index: 10;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cta-fixed.is-visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .cta-fixed {
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 375px;
  }
  .cta-fixed.is-visible {
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 767px) {
  .cta-fixed {
    left: 0;
    width: 100%;
  }
}

.cta-fixed__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.33vw; /* 13 */
  height: var(--cta-h);
  background: linear-gradient(134deg, rgba(131, 218, 180, 0.7) 0%, rgba(142, 223, 255, 0.7) 100%);
  padding: 0 4.62vw; /* 0 18 */
  text-decoration: none;
}

.cta-fixed__info {
  min-width: 0;
  text-shadow: 0 0 6px rgba(131, 218, 180, 1), 0 0 12px rgba(131, 218, 180, 1);
}

.cta-fixed__price,
.cta-fixed__coupon {
  font-weight: 700;
  font-size: max(10px, 3.08vw); /* 12 */
  line-height: 4.87vw; /* 19 */
  color: var(--c-black);
  letter-spacing: 0.31vw; /* 1.2 */
  white-space: nowrap;
}

.cta-fixed__coupon {
  letter-spacing: 0;
}

.cta-fixed__price-num,
.cta-fixed__coupon-num {
  font-size: max(10px, 4.62vw); /* 18 */
}

.cta-fixed__note {
  font-size: max(10px, 2.56vw); /* 10 */
  line-height: 4.87vw; /* 19 */
  color: var(--c-black);
}

.cta-fixed__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 41.03vw; /* 160 */
  height: 8.97vw; /* 35 */
  background: var(--c-green-main);
  border-radius: 10.26vw; /* 40 */
  color: var(--c-white);
  font-weight: 700;
  font-size: max(10px, 3.59vw); /* 14 */
  letter-spacing: 0.36vw; /* 1.4 */
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

@media (hover: hover) {
  .cta-fixed__btn:hover {
    background: var(--c-white);
    border-color: var(--c-green-main);
    color: var(--c-green-main);
  }
}

.cta-fixed__btn:active {
  background: var(--c-white);
  border-color: var(--c-green-main);
  color: var(--c-green-main);
}

@media (min-width: 768px) {
  .cta-fixed__inner {
    padding: 0 18px;
    gap: 13px;
  }
  .cta-fixed__price,
  .cta-fixed__coupon {
    font-size: 12px;
    line-height: 19px;
    letter-spacing: 0;
  }
  .cta-fixed__price-num,
  .cta-fixed__coupon-num {
    font-size: 18px;
  }
  .cta-fixed__note {
    font-size: 10px;
    line-height: 19px;
  }
  .cta-fixed__btn {
    width: 160px;
    height: 35px;
    border-radius: 40px;
    font-size: 14px;
    letter-spacing: 1.4px;
  }
}

/* ========================================
   Scroll Fade Effect (from common/css/share/base.css)
   ======================================== */
.effect-fade {
  opacity: 0;
  transition: opacity 500ms ease-in;
}

.effect-fade.up {
  transform: translate(0, 40px);
  transition: opacity 500ms ease-in, transform 500ms ease-in;
}

.effect-fade.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

@media print {
  .effect-fade {
    opacity: 1;
    transform: translate(0, 0);
  }
}

/* ========================================
   Section Gaps
   ======================================== */
.section-gap {
  height: 7.95cqi; /* 31 */
}