:root {
  --brand-magenta:        #B60081;
  --brand-magenta-dark:   #7E0059;
  --brand-magenta-tint:   #FAEAF3;

  --color-black:          #1A1A1A;
  --color-text:           #333333;
  --color-text-muted:     #888888;
  --color-border:         #E5E5E5;
  --color-surface:        #F8F8F8;
  --color-white:          #FFFFFF;

  --font-base: 'Helvetica Neue', Arial, 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;

  --fs-display: 36px;
  --fs-h1:      22px;
  --fs-h2:      18px;
  --fs-h3:      14px;
  --fs-body:    14px;
  --fs-cap:     12px;

  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   12px;
  --space-lg:   16px;
  --space-xl:   24px;
  --space-2xl:  32px;
  --space-3xl:  48px;

  --section-pad-y: 32px;
  --section-pad-x: 16px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-card: 0 1px 3px rgba(0,0,0,.08);
  --shadow-float: 0 4px 14px rgba(182,0,129,.35);

  --header-h: 56px;
  --mobile-w: 390px;
}

/* ═══════════════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--font-base);
  /*font-size: var(--fs-body);*/
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
section {padding: 0;}

@media (max-width: 750px) {
  section {
    padding: 0;
  }
}

/* ═══════════════════════════════════════════════════
   PAGE FRAME
   ═══════════════════════════════════════════════════ */
.page {
  max-width: var(--mobile-w);
  margin: 0 auto;
  background: var(--color-white);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 0 1px var(--color-border);
}

/* ═══════════════════════════════════════════════════
   HEADER  (logo LEFT  /  Language button + hamburger RIGHT)
   ═══════════════════════════════════════════════════ */
 

/* ═══════════════════════════════════════════════════
   DRAWER  (slides from RIGHT, BLACK background, WHITE text)
   ═══════════════════════════════════════════════════ */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  z-index: 110;
}
.drawer-overlay.is-open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 75%;
  max-width: 300px;
  background: #1A1A1A;
  color: var(--color-white);
  transform: translateX(100%);
  transition: transform .25s ease-out;
  z-index: 120;
  overflow-y: auto;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }

.drawer-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 24px;
  line-height: 1;
}
.drawer-close::before { content: '×'; font-weight: 300; }

.drawer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: var(--space-md);
}
.drawer-nav a {
  padding: 14px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-white);
  text-align: center;
  width: 100%;
}

.drawer-follow {
  margin-top: var(--space-2xl);
  text-align: center;
}
.drawer-follow-label {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: var(--space-md);
}
.drawer-follow-icons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
}
.drawer-follow-icons a {
  width: 44px;
  height: 44px;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Facebook 'f' */
.icon-fb {
  width: 24px; height: 24px;
  background: #1877F2;
  border-radius: 4px;
  position: relative;
}
.icon-fb::after {
  content: 'f';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
}
/* Weibo */
.icon-wb {
  width: 24px; height: 24px;
  background: #DF2029;
  border-radius: 50%;
  position: relative;
}
.icon-wb::after {
  content: '';
  position: absolute;
  width: 10px; height: 6px;
  background: #fff;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* ═══════════════════════════════════════════════════
   MAIN — placeholder
   ═══════════════════════════════════════════════════ */
main { background: var(--color-white); }
.main-placeholder {
  margin: var(--space-2xl) var(--space-lg);
  padding: var(--space-2xl) var(--space-lg);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--fs-cap);
  line-height: 1.8;
}
.main-placeholder strong {
  display: block;
  color: var(--color-text);
  font-size: var(--fs-h3);
  margin-bottom: var(--space-sm);
}

/* ═══════════════════════════════════════════════════
   FOOTER  (matches existing site structure)
   ═══════════════════════════════════════════════════ */
.site-footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
}
.footer-corp {
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
}
.footer-corp-aeon {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.footer-corp-aeon img {
  height: 28px;
}
.footer-corp-aeon-text {
  font-size: var(--fs-cap);
  line-height: 1.5;
  color: var(--color-text);
}
.footer-corp-plant img {
  height: 36px;
}

.footer-bottom {
  background: var(--color-surface);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 var(--space-xs);
  font-size: var(--fs-cap);
}
.footer-links a {
  color: var(--color-text);
  font-weight: 500;
  position: relative;
  padding: 0 var(--space-sm);
}
.footer-links a:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: var(--color-border);
}
.footer-copy {
  font-size: 10px;
  color: var(--color-text-muted);
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   SEASONAL ZONE — wraps Hero + Topics mini with bg photo
   ═══════════════════════════════════════════════════ */
.seasonal-zone {
  position: relative;
  overflow: hidden;
}
.seasonal-bg {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: calc(100% + 160px);
  background: url('img/slider_background_26ss.jpg') center/cover no-repeat;
  z-index: 0;
  will-change: transform;
}
/* Reduce/disable parallax for users with motion sensitivity */
@media (prefers-reduced-motion: reduce) {
  .seasonal-bg {
    will-change: auto;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════
   HERO  (4:5 portrait — frosted glass card carousel)
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.1;
  z-index: 1;
}

.hero .pc-carousel {
  display: block;
}
.hero .sp-carousel {
  display: none;
}

@media (max-width: 750px) {
  .hero .pc-carousel {
    display: none;
  }
  .hero .sp-carousel {
    display: block;
  }
}

/* Carousel — 3-slide */
.hero .hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10% var(--space-lg) 0;  /* upward shift: card sits slightly above center */
  opacity: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Frosted glass card — frame around campaign image */
.hero-slide a {
  position: relative;
  display: block;
  width: 100%;
  max-width: 320px;
  padding: 12px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  box-shadow:
    0 12px 36px rgba(0, 60, 120, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.05);
}
/* Backdrop-filter unsupported fallback */
@supports not ((backdrop-filter: blur(14px)) or (-webkit-backdrop-filter: blur(14px))) {
  .hero-slide a {
    background: rgba(255, 255, 255, 0.95);
  }
}

/* Subtle corner accent decoration (top-left + bottom-right L-shapes) */
/*
.hero-slide a::before,
.hero-slide a::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  border-color: rgba(182, 0, 129, 0.55);  
  border-style: solid;
  border-width: 0;
  z-index: 2;
}
.hero-slide a::before {
  top: 6px;
  left: 6px;
  border-top-width: 1.5px;
  border-left-width: 1.5px;
}
.hero-slide a::after {
  bottom: 6px;
  right: 6px;
  border-bottom-width: 1.5px;
  border-right-width: 1.5px;
}
*/

/* Campaign image area inside the frame
   Default: 4:5 portrait (matches Hero ratio). Override per-card via inline style. */
.hero-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg,
      #D8D8D8 0 8px,
      #E8E8E8 8px 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'SF Mono', Consolas, monospace;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  line-height: 1.4;
}
.hero-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dots — positioned over the bottom of the seasonal area */
.hero-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .65);
  cursor: pointer;
  transition: background .2s, transform .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.hero-dot.is-active {
  background: #FFFFFF;
  transform: scale(1.25);
}

/* ═══════════════════════════════════════════════════
   HERO TOPICS MINI  (1 card swipe carousel — landscape thumb)
   PC: shows 2 cards (handled in PC media query later)
   ═══════════════════════════════════════════════════ */
.hero-topics-mini {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: var(--space-md) var(--space-md) var(--space-md) var(--section-pad-x);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--section-pad-x);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hero-topics-mini::-webkit-scrollbar { display: none; }

.topics-mini-element {
  display: flex;
  gap: var(--space-md);
  width: fit-content;
}

.topic-mini {
  /*flex: 0 0 calc(100% - var(--space-md) * 2);*/
  scroll-snap-align: start;
  display: flex;
  gap: var(--space-md);
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 18px rgba(0, 60, 120, 0.10);
  text-decoration: none;
  color: inherit;
  width: 418px; /* fixed width to prevent layout shift during image loading */
}
@media (max-width: 750px) {
  .topic-mini {
    width: 300px;
  }
}
@supports not ((backdrop-filter: blur(12px)) or (-webkit-backdrop-filter: blur(12px))) {
  .topic-mini {
    background: rgba(255, 255, 255, 0.95);
  }
}
.topic-mini-img {
  width: 120px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  overflow: hidden;
  background: 
    repeating-linear-gradient(45deg,
      #E5E5E5 0 8px,
      #EFEFEF 8px 16px);
}
.topic-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.topic-mini-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.topic-mini-tag {
  font-size: 9px;
  font-weight: 700;
  color: var(--brand-magenta);
  letter-spacing: .08em;
  display: block;
}
.topic-mini-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* ═══════════════════════════════════════════════════
   SECTION — HOW TO ENJOY AEON
   ═══════════════════════════════════════════════════ */
.s-howto {
  background: var(--color-surface);
  padding: var(--section-pad-y) var(--section-pad-x);
}
.s-howto-title {
  font-size: var(--fs-h1);
  font-weight: 800;
  color: var(--color-black);
  letter-spacing: -.01em;
  margin: 0 0 var(--space-xl) 0;
  line-height: 1.2;
  text-align: center;
}
.s-howto-title .accent {
  color: var(--brand-magenta);
}

.howto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--space-md);
  row-gap: var(--space-xl);
}
.howto-item {
  display: flex;
  flex-direction: column;
}
.howto-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
}
.howto-headline {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.3;
  margin: 0 0 var(--space-xs) 0;
}
.howto-text {
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.5;
  margin: 0;
}

/* ═══════════════════════════════════════════════════
   SECTION — STORES NEAR YOU
   ═══════════════════════════════════════════════════ */
.s-stores {
  background: var(--color-white);
  padding: var(--section-pad-y) var(--section-pad-x);
  border-top: 1px solid var(--color-border);
}
.s-stores-title {
  font-size: var(--fs-h1);
  font-weight: 800;
  color: var(--color-black);
  margin: 0 0 var(--space-xl) 0;
  line-height: 1.2;
  text-align: center;
}

/* Section-level dev toggle (smaller than the global one) */
.section-dev-toggle {
  display: flex;
  align-items: stretch;
  background: #FFF8E1;
  border: 1px dashed #C8A85A;
  border-radius: var(--radius-sm);
  font-family: 'SF Mono', Consolas, monospace;
  font-size: 9px;
  letter-spacing: .04em;
  margin-bottom: var(--space-md);
  overflow: hidden;
}
.section-dev-toggle .label {
  padding: 6px 8px;
  background: #F4C430;
  color: #1A1A1A;
  font-weight: 700;
}
.section-dev-toggle button {
  flex: 1;
  padding: 6px;
  border: none;
  background: transparent;
  color: #8B7355;
  cursor: pointer;
}
.section-dev-toggle button.is-active {
  background: #1A1A1A;
  color: #F4C430;
  font-weight: 700;
}

/* GPS state visibility */
.s-stores .gps-state-a, .s-stores .gps-state-b {
  display: none;
}
.s-stores.is-gps-allowed .gps-state-a { display: block; }
.s-stores.is-gps-denied .gps-state-b { display: block; }

.no-stores {
  text-align: left;
}

/* Location bar */
.stores-loc-bar {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  font-size: var(--fs-cap);
  color: var(--color-text);
}
.stores-loc-dot {
  width: 8px;
  height: 8px;
  background: #16A34A;
  border-radius: 50%;
  flex-shrink: 0;
}
.stores-loc-dot.is-disabled { background: var(--color-text-muted); }
.stores-loc-text { flex: 1; }
.stores-loc-text.is-disabled { color: var(--color-text-muted); }

/* Store list */
.store-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
  margin-bottom: var(--space-md);
}
.store-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-xs);
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
}
.store-distance {
  font-size: var(--fs-cap);
  color: var(--color-text-muted);
  min-width: 40px;
  text-align: left;
  flex-shrink: 0;
}
.store-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--color-white);
}
.store-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.store-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.store-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
  letter-spacing: .01em;
  /* Allow truncation if very long */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.store-type-badge {
  align-self: flex-start;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 2px 8px;
  border-radius: 12px;
  white-space: nowrap;
}
.store-chevron {
  color: var(--color-text-muted);
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}

/* View all link */
.stores-viewall {
  display: block;
  text-align: center;
  padding: var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--color-text);
}

/* City buttons (GPS denied fallback) */
.stores-cities-hint {
  font-size: var(--fs-cap);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-md) 0;
  text-align: center;
}
.stores-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.city-btn {
  padding: 8px 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  font-size: var(--fs-cap);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
}
.city-btn:hover { background: var(--color-surface); }

/* ═══════════════════════════════════════════════════
   SECTION — REGIONS OF JAPAN
   ═══════════════════════════════════════════════════ */
.s-regions {
  background: var(--color-white);
  padding: var(--section-pad-y) 0;
  border-top: 1px solid var(--color-border);
}
.s-regions-title {
  font-size: var(--fs-h1);
  font-weight: 800;
  color: var(--color-black);
  margin: 0 0 var(--space-xs) 0;
  padding: 0 var(--section-pad-x);
  line-height: 1.2;
  text-align: center;
}
.s-regions-subtitle {
  font-size: var(--fs-cap);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-lg) 0;
  padding: 0 var(--section-pad-x);
  text-align: center;
}

/* Map */
.regions-map {
  padding: 0 var(--section-pad-x);
  margin-bottom: var(--space-lg);
}
.regions-map svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: 380px;
}
.region-shape {
  cursor: pointer;
  transition: opacity .2s, stroke-width .2s;
}
.region-shape:not(.is-active) {
  opacity: .55;
}
.region-shape.is-active {
  opacity: 1;
  stroke-width: 3;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.25));
}
.region-shape:hover { opacity: .85; }
.region-label {
  font-family: var(--font-base);
  font-size: 9px;
  font-weight: 700;
  fill: white;
  text-anchor: middle;
  pointer-events: none;
  letter-spacing: .02em;
}
.region-label.is-dark { fill: #1A1A1A; }

/* Photo grid wrapper */
.regions-photos-wrap {
  position: relative;
  margin-bottom: var(--space-lg);
  padding: 0 var(--section-pad-x);
  background: var(--color-surface);
}
.regions-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  aspect-ratio: 1 / 1;
}
.regions-photo {
  background: 
    repeating-linear-gradient(45deg,
      #C8C8C8 0 8px,
      #D8D8D8 8px 16px);
  position: relative;
  overflow: hidden;
}
.regions-photo span {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(0,0,0,.6);
  font-family: 'SF Mono', Consolas, monospace;
  letter-spacing: .04em;
  background: rgba(255,255,255,.85);
  padding: 3px 7px;
  border-radius: 3px;
}

/* Arrow buttons */
.regions-photo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.8);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  border: none;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  padding: 0 0 8px 0;
}
.regions-photo-arrow.prev { left: calc(var(--section-pad-x) + 12px); }
.regions-photo-arrow.next { right: calc(var(--section-pad-x) + 12px); }
.regions-photo-arrow:hover { background: rgba(0,0,0,.8); }

/* Region name heading (moved above photos for mobile feedback) */
.regions-current {
  padding: 0 var(--section-pad-x);
  margin-bottom: var(--space-md);
  text-align: center;
}

/* Info panel */
.regions-info {
  padding: 0 var(--section-pad-x);
}
.regions-info-name {
  font-size: var(--fs-h2);
  font-weight: 800;
  color: var(--color-black);
  margin: 0 0 var(--space-md) 0;
  padding-bottom: var(--space-sm);
  border-bottom: 3px solid var(--brand-magenta);
  display: inline-block;
  line-height: 1.2;
}
.regions-info-prefectures {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-md);
}
.region-pref-btn {
  padding: 5px 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  font-size: var(--fs-cap);
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
}
.region-pref-btn:hover {
  background: var(--brand-magenta-tint);
  border-color: var(--brand-magenta);
  color: var(--brand-magenta-dark);
}
.regions-info-desc {
  font-size: var(--fs-body);
  color: var(--color-text);
  line-height: 1.6;
  margin: 0 0 var(--space-lg) 0;
}
.regions-info-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px 20px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-size: var(--fs-body);
  font-weight: 600;
  text-decoration: none;
}
.regions-info-cta:hover { background: var(--brand-magenta-dark); }
.regions-info-cta:visited { color: var(--color-white); }
.regions-info-cta span { color: var(--color-white); }

/* ═══════════════════════════════════════════════════
   SECTION — LATEST TOPICS (manual swipe, max 6 cards)
   ═══════════════════════════════════════════════════ */
.s-topics {
  background: var(--color-surface);
  padding: var(--section-pad-y) 0;
  border-top: 1px solid var(--color-border);
}
.s-topics-title {
  font-size: var(--fs-h1);
  font-weight: 800;
  color: var(--color-black);
  margin: 0 0 var(--space-xs) 0;
  padding: 0 var(--section-pad-x);
  line-height: 1.2;
  text-align: center;
}
.s-topics-subtitle {
  font-size: var(--fs-cap);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-lg) 0;
  padding: 0 var(--section-pad-x);
  text-align: center;
}

/* Horizontal scroller — native swipe with snap */
.topics-scroller {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--section-pad-x);
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--section-pad-x) var(--space-md);
  margin-bottom: var(--space-md);
  scrollbar-width: none;
}
.topics-scroller::-webkit-scrollbar { display: none; }

.topic-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.topic-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.topic-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.topic-photo span {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(0,0,0,.6);
  font-family: 'SF Mono', Consolas, monospace;
  background: rgba(255,255,255,.85);
  padding: 3px 7px;
  border-radius: 3px;
}
.topic-content {
  padding: var(--space-md);
}
.topic-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: .08em;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}
.topic-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.4;
  margin: 0 0 var(--space-sm) 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.topic-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 11px;
  color: var(--color-text-muted);
}
.topic-meta .divider {
  opacity: .5;
}
.topic-area {
  font-weight: 500;
}
.topic-date {
  font-size: 11px;
  color: var(--color-text-muted);
}

/* View all link */
.topics-viewall {
  display: block;
  margin: 0 var(--section-pad-x);
  text-align: center;
  padding: var(--space-md);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--color-text);
}

/* ═══════════════════════════════════════════════════
   SECTION — COUPON (real photo bg: AEON MALL exterior)
   Mobile: img-kv_1_sp.jpg (squarish)
   PC (≥1024px): img-kv_1.jpg (cinematic landscape, see @media block)
   ═══════════════════════════════════════════════════ */
.s-coupon {
  position: relative;
  overflow: hidden;
  background: url('/img/index26/img-kv_1_sp.webp') center/cover no-repeat;
  padding: var(--section-pad-y) var(--section-pad-x);
  color: var(--color-black);
  text-align: center;
}

/* White overlay for text readability (gradient: lighter top → stronger bottom) */
.s-coupon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.85) 70%,
    rgba(255, 255, 255, 0.92) 100%);
  z-index: 0;
  pointer-events: none;
}

/* Hide old decorative summer SVG (clouds + sun) */
.coupon-deco { display: none; }

.s-coupon > *:not(.coupon-deco) {
  position: relative;
  z-index: 1;
}

.s-coupon-title {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--brand-magenta);
  margin: 0 0 var(--space-md) 0;
  text-align: center;
}
.s-coupon-subtitle {
  font-size: var(--fs-body);
  line-height: 1.5;
  color: var(--color-text);
  margin: 0 0 var(--space-xl) 0;
  text-align: center;
}
.s-coupon-banner {
  display: block;
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,80,140,.15);
}
.s-coupon-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}
.coupon-image-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: white;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--brand-magenta);
  font-size: 11px;
  font-family: 'SF Mono', Consolas, monospace;
  font-weight: 700;
  padding: var(--space-md);
  letter-spacing: .04em;
}
.coupon-image-placeholder .ph-main {
  font-size: 14px;
  margin-bottom: var(--space-xs);
}
.coupon-image-placeholder .ph-sub {
  font-size: 10px;
  opacity: .8;
  font-weight: 500;
}
.s-coupon-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--brand-magenta-dark);
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--brand-magenta-dark);
  padding-bottom: 2px;
}
.s-coupon-link::after {
  content: '→';
  display: inline-block;
  font-weight: 400;
}

/* ═══════════════════════════════════════════════════
   SECTION — POPULAR STORES (3 default + show-more reveals 4-6)
   ═══════════════════════════════════════════════════ */
.s-popular {
  background: var(--color-white);
  padding: var(--section-pad-y) var(--section-pad-x);
  border-top: 1px solid var(--color-border);
}
.s-popular-title {
  font-size: var(--fs-h1);
  font-weight: 800;
  color: var(--color-black);
  margin: 0 0 var(--space-xs) 0;
  line-height: 1.2;
  text-align: center;
}
.s-popular-subtitle {
  font-size: var(--fs-cap);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-md) 0;
  text-align: center;
}

/* Popular store list */
.popular-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--color-border);
  margin-bottom: var(--space-md);
}
.popular-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-xs);
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
  color: inherit;
}
.popular-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background:
    repeating-linear-gradient(45deg,
      rgba(255,255,255,.28) 0 5px,
      transparent 5px 10px),
    var(--region-color, #888);
}
/* When real brand icon image is present, switch to white bg */
.popular-logo:has(img) {
  background: var(--color-white);
}
.popular-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.popular-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.popular-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
  letter-spacing: .01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.popular-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.popular-badge {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 2px 7px;
  border-radius: 10px;
  background: var(--color-white);
  white-space: nowrap;
}
.popular-badge-airport {
  color: var(--brand-magenta);
  /* background: var(--brand-magenta-tint); */
  border-color: rgba(182,0,129,.3);
  font-weight: 700;
}
.popular-chevron {
  color: var(--color-text-muted);
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}

/* Show more button + collapsed state */
.s-popular:not(.is-expanded) .popular-row.is-extra { display: none; }
.s-popular.is-expanded .popular-show-more { display: none; }

.popular-show-more {
  display: block;
  width: 100%;
  text-align: center;
  padding: var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-body);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  letter-spacing: .02em;
}
.popular-show-more:hover { background: var(--color-border); }

/* ═══════════════════════════════════════════════════
   SECTION — FOLLOW US
   ═══════════════════════════════════════════════════ */
.s-follow {
  background: var(--color-white);
  padding: var(--section-pad-y) var(--section-pad-x);
  border-top: 1px solid var(--color-border);
  text-align: center;
}
.s-follow-title {
  font-size: var(--fs-h1);
  font-weight: 800;
  color: var(--color-black);
  margin: 0 0 var(--space-xl) 0;
  line-height: 1.2;
}
.follow-group {
  margin-bottom: var(--space-xl);
}
.follow-group:last-child { margin-bottom: 0; }
.follow-group-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: .1em;
  margin-bottom: var(--space-md);
}
.follow-icons {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.follow-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}
.follow-icon-bg {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 22px;
  color: var(--color-white);
  font-family: Arial, sans-serif;
}
.follow-icon-bg.is-fb     { background: #1877F2; }
.follow-icon-bg.is-weibo  { background: #DF2029; }
.follow-icon-bg.is-red    { background: #FF2742; }
.follow-icon-bg.is-wechat { background: #07C160; }
.follow-icon-label {
  font-size: 10px;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   SECTION — RECOMMEND SITE
   ═══════════════════════════════════════════════════ */
.s-recommend {
  background: var(--color-surface);
  padding: var(--section-pad-y) var(--section-pad-x);
  border-top: 1px solid var(--color-border);
  text-align: center;
}
.s-recommend-title {
  font-size: var(--fs-h1);
  font-weight: 800;
  color: var(--color-black);
  margin: 0 0 var(--space-xl) 0;
  line-height: 1.2;
}
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.recommend-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
}
.recommend-banner {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 700;
  letter-spacing: .02em;
  overflow: hidden;
}
.recommend-banner img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  display: block;
}
.recommend-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 4px 0;
  letter-spacing: .01em;
}
.recommend-desc {
  font-size: 10px;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin: 0;
}

/* ═══════════════════════════════════════════════════
   FLOATING COUPON BUTTON
   ═══════════════════════════════════════════════════ */
.float-coupon {
  position: fixed;
  bottom: 20px;
  right: 16px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand-magenta);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-float);
  z-index: 100;
  color: var(--color-white);
  border: none;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
}
@media (min-width: 391px) {
  .float-coupon {
    right: calc(50% - var(--mobile-w) / 2 + 16px);
  }
}
.float-coupon .coupon-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ═══════════════════════════════════════════════════
   STEP STATUS BAR (dev)
   ═══════════════════════════════════════════════════ */
.step-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 6px var(--space-lg);
  font-size: 10px;
  text-align: center;
  letter-spacing: .04em;
  z-index: 200;
  font-family: 'SF Mono', Consolas, monospace;
}
.step-bar strong { color: var(--brand-magenta-tint); }


/* ════════════════════════════════════════════════════════════════
   ▼▼▼ PC VERSION (≥ 1024px) ▼▼▼
   Inner content max-width 1280px, centered. BG sections full-bleed.
   ════════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {

  /* ─── FOUNDATION ───────────────────────────────────────────── */
  body { background: #ECECEC; }
  .page {
    max-width: 100%;
    box-shadow: none;
  }

  /* ─── HEADER (inline nav) ──────────────────────────────────── */
  .site-header {
    padding-inline: max(32px, calc((100% - 1280px) / 2));
  }
  .header-inner {
    height: 72px;
  }
  .header-logo img {
    height: 36px;
  }
  .header-nav {
    display: flex;
    gap: var(--space-xl);
    margin-left: var(--space-2xl);
    margin-right: auto;
  }
  .header-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: .02em;
    white-space: nowrap;
    transition: color .15s ease;
  }
  .header-nav a:hover { color: var(--brand-magenta); }
  .hamburger { display: none; }
  .drawer, .drawer-overlay { display: none !important; }

  /* ─── HERO (≥1024) — cinematic 21:9 banner with landscape PC images ─── */
  .hero {
    aspect-ratio: 21 / 9;
  }
  .hero-slide {
    padding: 0 var(--space-2xl);
    align-items: center;
    justify-content: center;
  }
  .hero-slide a {
    max-width: 900px;
    width: 90%;
    padding: 10px;
  }
  /* PC default: 16:9 landscape (matches typical campaign banner asset).
     Override per-card via inline style: --hero-card-ratio: 21 / 9; etc. */
  .hero-card-img {
    aspect-ratio: 2 / 1;
  }
  /* Adjust corner accent to fit smaller padding */
  /*
  .hero-slide a::before { top: 4px; left: 4px; }
  .hero-slide a::after { bottom: 4px; right: 4px; }
  */

  /* ─── HERO TOPICS MINI (2 cards visible on PC) ─────────────── */
  .hero-topics-mini {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--space-lg) 0;
    gap: var(--space-lg);
  }
  /*.topic-mini {
    flex: 0 0 calc((100% - var(--space-lg)) / 2);
  }*/
  .topic-mini-img {
    width: 160px;
  }
  .topic-mini-title {
    font-size: 14px;
  }

  /* ─── HOW TO ENJOY AEON (2col → 3col) ──────────────────────── */
  .s-howto {
    padding: var(--space-2xl) max(32px, calc((100% - 1280px) / 2));
  }
  .s-howto-title {
    font-size: 32px;
    margin-bottom: var(--space-2xl);
  }
  .howto-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    max-width: 1100px;
    margin: 0 auto;
  }
  .howto-headline { font-size: 16px; }
  .howto-text { font-size: 13px; }

  /* ─── STORES NEAR YOU (vertical list → 3-col compact row cards) ─ */
  .s-stores {
    padding: var(--space-2xl) max(32px, calc((100% - 1280px) / 2));
  }
  .s-stores-title {
    font-size: 32px;
    margin-bottom: var(--space-2xl);
  }
  .stores-loc-bar {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .store-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    border-top: none;
    max-width: 1100px;
    margin: 0 auto var(--space-md);
  }
  .store-row {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    padding: var(--space-md);
    /* keep horizontal row layout (default) — compact card height */
  }
  .stores-viewall {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .stores-pref-list {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ─── REGIONS OF JAPAN (PC: left = info / right = map) ─────── */
  .s-regions {
    /*padding: var(--space-2xl) max(32px, calc((100% - 1280px) / 2));*/
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "title  map"
      "subt   map"
      "name   map"
      "photos map"
      "info   map";
    grid-template-rows: auto auto auto auto 1fr;
    column-gap: var(--space-2xl);
    align-items: start;
    max-width: 1280px;
    width: 1100px;
    margin: 0 auto;
  }
  .s-regions-title    { grid-area: title;  font-size: 36px; padding: 0; text-align: left; margin-bottom: var(--space-xs); }
  .s-regions-subtitle { grid-area: subt;   padding: 0; text-align: left; margin-bottom: var(--space-xl); }
  .regions-current    { grid-area: name;   text-align: left; padding: 0; margin-bottom: var(--space-md); }
  .regions-photos-wrap{
    grid-area: photos;
    padding: 0;
    margin-bottom: var(--space-lg);
    max-width: 70%;  /* 30% smaller than full width */
  }
  .regions-info       { grid-area: info;   padding: 0; max-width: 100%; }
  .regions-map        { grid-area: map;    margin: 0; align-self: center; }

  /* Larger map on PC */
  .regions-map svg {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  /* Adjust photo arrow positions for PC (no extra section padding) */
  .s-regions .regions-photo-arrow.prev { left: 12px; }
  .s-regions .regions-photo-arrow.next { right: 12px; }

  /* Region name heading larger on PC */
  .s-regions .regions-info-name {
    font-size: 28px;
  }
  .s-regions .regions-info-desc {
    font-size: 15px;
    line-height: 1.6;
  }

  /* ─── LATEST TOPICS (1 card scroll → grid of 3) ────────────── */
  .s-topics {
    /*padding: var(--space-2xl) 0;*/
    padding: 50px;
  }
  .s-topics-title {
    font-size: 32px;
    padding: 0 max(32px, calc((100% - 1280px) / 2));
  }
  .s-topics-subtitle {
    padding: 0 max(32px, calc((100% - 1280px) / 2));
  }
  .topics-scroller {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    width: 1100px;
    margin: 0 auto var(--space-lg);
    /*padding: 0 max(32px, calc((100% - 1280px) / 2)) var(--space-md);*/
    padding: 50px;
    overflow: visible;
    scroll-snap-type: none;
  }
  .topic-card {
    flex: 1;
  }
  .topic-card-title {
    font-size: 15px;
  }
  .topics-viewall {
    max-width: 320px;
    margin: 0 auto;
  }

  /* ─── HAPPY COUPON (stacked, larger, PC landscape photo) ──── */
  .s-coupon {
    padding: var(--space-2xl) max(32px, calc((100% - 1280px) / 2));
    background: url('/img/index26/img-kv_1.webp') center/cover no-repeat;
  }
  .s-coupon-title {
    font-size: 56px;
  }
  .s-coupon-subtitle {
    font-size: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .s-coupon-banner {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ─── POPULAR STORES (3+show-more → 6 in 3-col compact rows) ─── */
  .s-popular {
    padding: var(--space-2xl) max(32px, calc((100% - 1280px) / 2));
  }
  .s-popular-title {
    font-size: 32px;
  }
  .popular-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    border-top: none;
    max-width: 1100px;
    margin: 0 auto var(--space-md);
  }
  .popular-row {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    padding: var(--space-md);
    /* keep horizontal row layout (default): logo - info - chevron */
    border-bottom: 1px solid var(--color-border) !important;
  }
  /* On PC, show all 6 stores by default; hide the show-more button */
  .s-popular .popular-row.is-extra { display: flex !important; }
  .s-popular .popular-show-more { display: none; }

  /* ─── FOLLOW US (stacked → side-by-side groups) ────────────── */
  .s-follow {
    padding: var(--space-2xl) max(32px, calc((100% - 1280px) / 2));
  }
  .s-follow-title {
    font-size: 32px;
    margin-bottom: var(--space-2xl);
  }
  .s-follow-inner {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    max-width: 1000px;
    margin: 0 auto;
  }
  .follow-group {
    flex: 1;
    margin-bottom: 0;
    max-width: 440px;
  }
  .follow-icon-bg { width: 56px; height: 56px; font-size: 24px; }
  .follow-icon-label { font-size: 12px; }

  /* ─── RECOMMEND SITE (3-col, larger cards) ─────────────────── */
  .s-recommend {
    padding: var(--space-2xl) max(32px, calc((100% - 1280px) / 2));
  }
  .s-recommend-title {
    font-size: 32px;
    margin-bottom: var(--space-2xl);
  }
  .recommend-grid {
    gap: var(--space-3xl);
    max-width: 600px;
    margin: 0 auto;
  }
  .recommend-name { font-size: 16px; }
  .recommend-desc { font-size: 13px; }

  /* ─── FOOTER (stacked → horizontal) ────────────────────────── */
  .site-footer {
    padding: var(--space-2xl) max(32px, calc((100% - 1280px) / 2));
  }
  .footer-corp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto var(--space-xl);
  }
  .footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
  }
  .footer-links {
    justify-content: center;
    gap: var(--space-xl);
  }

  /* ─── FLOATING COUPON BUTTON (slightly larger on PC) ───────── */
  .float-coupon {
    width: 72px;
    height: 72px;
    right: 32px;
    bottom: 32px;
  }
}