/* ============================================
   レンタルスタジオ リノ — Mock Site
   POP / Friendly / Photo-rich
   ============================================ */

:root {
  --bg: #fffaf3;
  --bg-cream: #fdeede;
  --bg-pink: #ffe4dc;
  --bg-mint: #e8f3ec;
  --bg-yellow: #fff3c4;
  --bg-dark: #1a1614;
  --ink: #1a1614;
  --ink-2: #4a4540;
  --ink-3: #8a857f;
  --line: #ece4d6;
  --line-2: #d8ccb6;
  --coral: #ff6b4a;        /* primary accent */
  --coral-deep: #e84d2a;
  --yellow: #ffc83d;
  --mint: #5fb586;
  --sky: #5aa9e6;
  --max: 1280px;
  --pad: clamp(20px, 4vw, 56px);
  --r-card: 24px;
  --r-photo: 20px;
  --font-display: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-sans: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", -apple-system, system-ui, sans-serif;
  --font-mincho: "Shippori Mincho", "Noto Serif JP", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink);
  background: var(--bg);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* --------- Typography --------- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 24px; height: 2px;
  background: var(--coral);
  display: inline-block;
}

.lede {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--ink-2);
  line-height: 2;
  max-width: 56ch;
}

/* --------- Layout --------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

section {
  padding: clamp(72px, 10vw, 120px) 0;
}

.section-head {
  display: grid;
  gap: 20px;
  margin-bottom: clamp(40px, 6vw, 72px);
  max-width: 760px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.section-head h2 .marker {
  background: linear-gradient(transparent 60%, var(--bg-yellow) 60%);
  padding: 0 4px;
}

/* --------- Photo slot system --------- */
.photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-photo);
  background:
    linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-pink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  font-size: 12px;
  letter-spacing: 0.1em;
  isolation: isolate;
}
.photo::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1.5px dashed rgba(232, 77, 42, 0.35);
  border-radius: calc(var(--r-photo) - 8px);
  pointer-events: none;
}
.photo.var-mint { background: linear-gradient(135deg, var(--bg-mint) 0%, #c8e3d0 100%); }
.photo.var-yellow { background: linear-gradient(135deg, var(--bg-yellow) 0%, #ffe79a 100%); }
.photo.var-pink { background: linear-gradient(135deg, var(--bg-pink) 0%, #ffc8b8 100%); }
.photo.var-sky { background: linear-gradient(135deg, #d9ecf8 0%, #b4d8ed 100%); }
.photo.var-cream { background: linear-gradient(135deg, var(--bg-cream) 0%, #f8d4ad 100%); }

.photo-tag {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 16px;
  z-index: 1;
}
.photo-tag svg { opacity: 0.5; }
.photo-tag .label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-2);
}
.photo-tag .hint { font-size: 10px; letter-spacing: 0.08em; color: var(--ink-3); }

/* --------- Header / Nav --------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.brand {
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 100px;
  background: var(--coral);
  color: #fff;
  display: grid; place-items: center;
  font-size: 18px;
  font-weight: 700;
  transform: rotate(-6deg);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-2);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--coral); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--coral);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 0 var(--coral-deep);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 0 var(--coral-deep); }

.menu-toggle { display: none; }

/* --------- Hero --------- */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero-copy .eyebrow { margin-bottom: 20px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.2;
  letter-spacing: 0.005em;
  margin-bottom: 24px;
}
.hero h1 .hl {
  background: linear-gradient(transparent 65%, #ffe79a 65%);
  padding: 0 6px;
}
.hero h1 .accent {
  color: var(--coral);
  display: inline-block;
  position: relative;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 6px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 6'><path d='M0 3 Q 25 0, 50 3 T 100 3' fill='none' stroke='%23ff6b4a' stroke-width='2'/></svg>") repeat-x;
  background-size: 80px 6px;
}

.hero p.lede { margin-bottom: 32px; font-size: 17px; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 5px 0 var(--coral-deep);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--coral-deep); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
}
.hero-rating .stars { color: var(--yellow); letter-spacing: -0.04em; font-size: 16px; }

/* Hero photo collage */
.hero-collage {
  position: relative;
  aspect-ratio: 5 / 6;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.hero-collage .photo { width: 100%; height: 100%; }
.hero-collage .photo:nth-child(1) { grid-row: span 2; }
.hero-collage .sticker {
  position: absolute;
  background: var(--coral);
  color: #fff;
  width: 88px; height: 88px;
  border-radius: 100px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.04em;
  transform: rotate(-12deg);
  bottom: -16px; left: -16px;
  box-shadow: 0 4px 0 var(--coral-deep);
  z-index: 2;
}
.hero-collage .sticker.yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 4px 0 #d99e15;
  top: -20px; right: 30%;
  transform: rotate(8deg);
  bottom: auto; left: auto;
}

.hero-meta {
  display: flex;
  gap: clamp(20px, 4vw, 56px);
  margin-top: 56px;
  padding: 28px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--r-card);
  flex-wrap: wrap;
  justify-content: space-between;
}
.hero-meta-item { display: grid; gap: 4px; }
.hero-meta-item strong {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--ink);
  font-family: var(--font-display);
}
.hero-meta-item span { font-size: 12px; color: var(--ink-3); letter-spacing: 0.08em; }

/* --------- Concept --------- */
.concept {
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.concept-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.concept-photos .photo:nth-child(1) { aspect-ratio: 3/4; margin-top: 40px; }
.concept-photos .photo:nth-child(2) { aspect-ratio: 3/4; }
.concept p { font-size: 16px; line-height: 2.1; color: var(--ink-2); margin-bottom: 1.4em; }
.concept p:last-child { margin-bottom: 0; }
.concept p strong { color: var(--coral); font-weight: 700; }

/* --------- Stores Grid --------- */
.stores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.store-card {
  background: #fff;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 2px solid var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.store-card:hover { transform: translateY(-6px); box-shadow: 0 12px 0 var(--ink); }
.store-card .photo { border-radius: 0; aspect-ratio: 4/3; border-bottom: 2px solid var(--ink); }
.store-card .photo::before { inset: 18px; }
.store-card-body { padding: 28px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.store-num {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  font-weight: 700;
}
.store-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.store-name .en { display: block; font-size: 10px; letter-spacing: 0.24em; color: var(--ink-3); margin-top: 6px; font-weight: 500; }
.store-meta { display: grid; gap: 6px; font-size: 13px; color: var(--ink-2); }
.store-meta dt { color: var(--ink-3); font-size: 11px; letter-spacing: 0.14em; font-weight: 600; margin-top: 4px; }
.store-meta dd { font-size: 14px; }
.store-price {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1.5px dashed var(--line-2);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.store-price .num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--coral);
}
.store-price .unit { font-size: 12px; color: var(--ink-3); }
.store-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.store-link:hover { gap: 10px; color: var(--coral); }
.store-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
  background: var(--coral);
  color: #fff;
  padding: 6px 12px;
  border-radius: 100px;
  border: 2px solid var(--ink);
}
.store-badge.yellow { background: var(--yellow); color: var(--ink); }
.store-badge.mint { background: var(--mint); color: #fff; }

/* --------- Gallery (NEW) --------- */
.gallery {
  background: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-grid .photo { border: 2px solid var(--ink); }
.gallery-grid .photo:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .photo:nth-child(4) { grid-row: span 2; }
.gallery-grid .photo:nth-child(7) { grid-column: span 2; }
.gallery-note {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
}

/* --------- Features --------- */
.features {
  background: var(--bg-dark);
  color: #fff;
}
.features .section-head h2 { color: #fff; }
.features .section-head h2 .marker { background: linear-gradient(transparent 60%, var(--coral) 60%); color: #fff; padding: 0 6px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.1);
  padding: 32px 28px;
  border-radius: var(--r-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.feature:hover { background: rgba(255,255,255,0.1); border-color: var(--coral); }
.feature-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--coral);
  color: #fff;
  border-radius: 100px;
}
.feature h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.feature p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.9; }

/* --------- Pricing --------- */
.pricing-table-wrap {
  overflow-x: auto;
  border: 2px solid var(--ink);
  background: #fff;
  border-radius: var(--r-card);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 720px;
}
.pricing-table thead th {
  text-align: left;
  padding: 20px 24px;
  background: var(--bg-yellow);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  border-bottom: 2px solid var(--ink);
}
.pricing-table thead th:not(:first-child) { text-align: right; }
.pricing-table tbody td {
  padding: 20px 24px;
  border-bottom: 1px dashed var(--line-2);
  color: var(--ink-2);
}
.pricing-table tbody td:first-child {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.pricing-table tbody td:first-child small { font-weight: 500; color: var(--ink-3); margin-left: 8px; font-size: 12px; }
.pricing-table tbody td:not(:first-child) {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.pricing-table tbody tr:last-child td { border-bottom: 0; }
.pricing-table tbody tr:hover td { background: #fffaf0; }
.pricing-note { font-size: 13px; color: var(--ink-3); margin-top: 16px; }

/* --------- Use cases --------- */
.usecases { background: var(--bg-cream); }
.uc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.uc {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.uc:hover { transform: translateY(-4px); box-shadow: 0 8px 0 var(--ink); }
.uc .photo { border-radius: 0; aspect-ratio: 4/3; border-bottom: 2px solid var(--ink); }
.uc-body { padding: 20px 22px; display: grid; gap: 6px; }
.uc-tag { font-size: 11px; letter-spacing: 0.16em; color: var(--coral); font-weight: 700; }
.uc h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.uc p { font-size: 13px; color: var(--ink-2); line-height: 1.8; }

/* --------- Voice / Testimonials (NEW) --------- */
.voices { background: var(--bg); }
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--r-card);
  padding: 28px;
  display: grid;
  gap: 20px;
  position: relative;
}
.voice::before {
  content: "“";
  position: absolute;
  top: -8px; left: 16px;
  font-family: var(--font-mincho);
  font-size: 80px;
  line-height: 1;
  color: var(--coral);
}
.voice p { font-size: 15px; line-height: 1.9; color: var(--ink-2); margin-top: 32px; }
.voice-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1.5px dashed var(--line-2);
}
.voice-avatar {
  width: 56px; height: 56px;
  border-radius: 100px;
  background: var(--bg-pink);
  border: 2px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.voice-avatar::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.5px dashed rgba(232, 77, 42, 0.35);
  border-radius: 100px;
}
.voice-avatar.var2 { background: var(--bg-mint); }
.voice-avatar.var3 { background: var(--bg-yellow); }
.voice-person div { display: grid; gap: 2px; }
.voice-name { font-weight: 700; font-size: 14px; }
.voice-role { font-size: 12px; color: var(--ink-3); }

/* --------- LINE Flow (NEW) --------- */
.line-flow { background: var(--bg-mint); }
.line-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.flow-step {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--r-card);
  padding: 28px;
  display: grid;
  gap: 12px;
  position: relative;
}
.flow-step::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--r-card);
  box-shadow: 6px 6px 0 var(--mint);
  z-index: -1;
}
.flow-num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mint);
  font-weight: 800;
}
.flow-step h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.flow-step p { font-size: 14px; line-height: 1.9; color: var(--ink-2); }

.line-cta {
  background: #06c755;
  color: #fff;
  border-radius: var(--r-card);
  padding: clamp(32px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  border: 2px solid var(--ink);
  box-shadow: 0 8px 0 #044d22;
}
.line-cta .eyebrow { color: #fff; }
.line-cta .eyebrow::before { background: #fff; }
.line-cta h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  margin: 12px 0 8px;
}
.line-cta-body p { color: rgba(255,255,255,0.95); font-size: 15px; margin-bottom: 20px; line-height: 1.8; }
.line-cta-body .line-note { font-size: 12px; opacity: 0.85; margin-top: 12px; margin-bottom: 0; }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #06c755;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 100px;
  border: 2px solid var(--ink);
  box-shadow: 0 5px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-line:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--ink); }

.line-qr { display: grid; place-items: center; }
.qr-placeholder {
  background: #fff;
  border: 2px dashed rgba(0,0,0,0.3);
  border-radius: 20px;
  padding: 20px;
  width: 200px;
  display: grid;
  gap: 10px;
  text-align: center;
}
.qr-frame {
  aspect-ratio: 1;
  background: repeating-conic-gradient(#1a1614 0% 25%, transparent 0% 50%) 50% / 16px 16px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  display: grid;
  place-items: center;
  position: relative;
}
.qr-frame::before {
  content: "";
  position: absolute;
  inset: 30%;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 8px;
}
.qr-frame span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.1em;
}
.qr-hint { font-size: 11px; color: var(--ink-3); line-height: 1.6; }

/* --------- FAQ --------- */
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.2s ease;
}
.faq-item[open] { background: var(--bg-cream); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--coral);
  color: #fff;
  border-radius: 100px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-q .icon { transform: rotate(45deg); background: var(--ink); }
.faq-a {
  padding: 0 24px 24px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 2;
}

/* --------- CTA --------- */
.cta-block {
  background: var(--coral);
  color: #fff;
  padding: clamp(60px, 10vw, 110px) var(--pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before, .cta-block::after {
  content: "";
  position: absolute;
  border-radius: 100px;
  background: rgba(255,255,255,0.12);
  z-index: 0;
}
.cta-block::before { width: 200px; height: 200px; top: -60px; left: -40px; }
.cta-block::after { width: 280px; height: 280px; bottom: -100px; right: -80px; }
.cta-block .eyebrow { color: #fff; }
.cta-block .eyebrow::before { background: #fff; }
.cta-block h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 20px 0 24px;
  line-height: 1.35;
  position: relative;
}
.cta-block p { color: rgba(255,255,255,0.9); max-width: 52ch; margin: 0 auto 32px; position: relative; font-size: 16px; }
.cta-block .btn-primary {
  background: #fff;
  color: var(--coral-deep);
  position: relative;
  box-shadow: 0 5px 0 rgba(0,0,0,0.2);
}
.cta-block .btn-primary:hover { background: var(--ink); color: #fff; }

/* --------- Footer --------- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 72px var(--pad) 28px;
  font-size: 14px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer h4 {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; display: grid; gap: 12px; }
.site-footer a { color: rgba(255,255,255,0.65); transition: color 0.2s ease; }
.site-footer a:hover { color: var(--coral); }
.site-footer .brand-block .brand { color: #fff; display: inline-flex; margin-bottom: 16px; }
.site-footer .brand-block .brand-mark { background: var(--coral); }
.site-footer .brand-block p { color: rgba(255,255,255,0.55); line-height: 1.9; max-width: 38ch; margin-bottom: 18px; }
.footer-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: #06c755;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 100px;
  box-shadow: 0 4px 0 #04a344;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-line-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #04a344; color: #fff !important; }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
}

/* --------- Store detail page --------- */
.breadcrumb {
  font-size: 13px;
  color: var(--ink-3);
  padding: 24px 0;
}
.breadcrumb a { color: var(--coral); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 10px; color: var(--line-2); }

.store-hero {
  padding: 40px 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.store-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}
.store-hero h1 small { display: block; font-size: 0.32em; letter-spacing: 0.18em; color: var(--ink-3); margin-top: 14px; font-weight: 500; }
.store-keyfacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.kf {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 18px 20px;
}
.kf-label { font-size: 11px; letter-spacing: 0.14em; color: var(--coral); margin-bottom: 6px; font-weight: 700; }
.kf-value { font-family: var(--font-display); font-size: 22px; font-weight: 700; }

.store-hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.store-hero-photos .photo:nth-child(1) { grid-column: span 2; aspect-ratio: 16/10; }
.store-hero-photos .photo:nth-child(2),
.store-hero-photos .photo:nth-child(3) { aspect-ratio: 1; }

.detail-body { padding: 60px 0; display: grid; grid-template-columns: 2fr 1fr; gap: 56px; }
.detail-body article h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin: 48px 0 16px;
  position: relative;
  padding-left: 16px;
}
.detail-body article h2::before {
  content: "";
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 5px; background: var(--coral); border-radius: 4px;
}
.detail-body article h2:first-child { margin-top: 0; }
.detail-body article p { color: var(--ink-2); margin-bottom: 1.3em; line-height: 2; }
.detail-body article ul { margin: 0 0 1.6em 1.2em; color: var(--ink-2); line-height: 2; }
.detail-body article .photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}
.detail-body article .photo-row .photo { aspect-ratio: 1; }

.detail-aside {
  position: sticky;
  top: 90px;
  align-self: start;
  background: var(--bg-yellow);
  border: 2px solid var(--ink);
  border-radius: var(--r-card);
  padding: 32px 28px;
}
.detail-aside h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}
.detail-aside dl { display: grid; gap: 12px; font-size: 14px; }
.detail-aside dt { font-size: 11px; letter-spacing: 0.12em; color: var(--coral); font-weight: 700; }
.detail-aside dd { color: var(--ink); padding-bottom: 12px; border-bottom: 1px dashed var(--line-2); font-weight: 500; }
.detail-aside dd:last-of-type { border-bottom: 0; }
.detail-aside .btn { width: 100%; justify-content: center; margin-top: 20px; }

/* --------- Responsive --------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-collage { max-width: 520px; aspect-ratio: 5/5; }
  .concept-grid { grid-template-columns: 1fr; }
  .stores-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .uc-grid { grid-template-columns: repeat(2, 1fr); }
  .voices-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .store-hero { grid-template-columns: 1fr; }
  .detail-body { grid-template-columns: 1fr; gap: 40px; }
  .detail-aside { position: static; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: var(--ink);
    border-radius: 100px;
  }
  .stores-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .uc-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-grid .photo:nth-child(1),
  .gallery-grid .photo:nth-child(4),
  .gallery-grid .photo:nth-child(7) { grid-column: auto; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .store-keyfacts { grid-template-columns: 1fr; }
  .hero-collage .sticker { width: 76px; height: 76px; font-size: 10px; }
  .hero-meta { padding: 20px; }
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================
   画像差し込み対応
   .photo の中に <img src="..."> を入れるだけで
   プレースホルダーUIが消え、画像がぴったりフィット
   ============================================ */
.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}
.photo:has(img) .photo-tag { display: none; }
.photo:has(img)::before,
.photo:has(img)::after { display: none; }

/* ============================================
   Instagram セクション
   SnapWidget 等の埋め込み or ダミーグリッド両対応
   ============================================ */
.instagram {
  background: #fff;
  padding: 88px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 760px;
  margin: 28px auto 32px;
}
.ig-tile {
  aspect-ratio: 1 / 1;
  border: 2px solid var(--ink);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-tile.var-pink   { background: #ffe1d6; }
.ig-tile.var-yellow { background: #fff3c4; }
.ig-tile.var-mint   { background: #d6efde; }
.ig-tile.var-sky    { background: #d6e9ef; }
.ig-tile.var-cream  { background: #fff5e6; }
.ig-tile .photo-tag {
  text-align: center;
  font-size: 11px;
  color: var(--ink);
  opacity: 0.6;
  pointer-events: none;
}
.ig-tile .photo-tag .label {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}
.ig-tile .photo-tag .hint {
  display: block;
  font-size: 10px;
  letter-spacing: 0.5px;
}
.ig-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.ig-actions .btn svg { vertical-align: middle; margin-right: 2px; }
.ig-actions .hash {
  display: inline-block;
  margin-right: 2px;
  color: var(--accent);
  font-weight: 900;
}
.ig-note {
  text-align: center;
  font-size: 14px;
  color: var(--ink);
  opacity: 0.75;
  margin-top: 6px;
}
.ig-note strong { color: var(--accent); }

@media (max-width: 640px) {
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .ig-tile { border-radius: 10px; box-shadow: 3px 3px 0 var(--ink); }
  .ig-tile .photo-tag { font-size: 9px; }
  .ig-actions { flex-direction: column; align-items: stretch; }
  .ig-actions .btn { justify-content: center; }
}

/* ============================================
   Calendar Widget (.lino-cal)
   Google カレンダー連動の月グリッド
   ============================================ */
.lino-cal {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 20px 18px 18px;
  box-shadow: 5px 5px 0 var(--ink);
  max-width: 560px;
  margin: 0 auto;
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}
.cal-title {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cal-store {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  font-weight: 700;
}
.cal-month {
  font-size: 19px;
  font-weight: 900;
  color: var(--ink);
  font-family: var(--font-display);
}
.cal-nav {
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  background: var(--bg-yellow);
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform 0.1s ease;
}
.cal-nav:hover { transform: translate(-1px,-1px); box-shadow: 3px 3px 0 var(--ink); }
.cal-nav:active { transform: translate(1px,1px); box-shadow: 1px 1px 0 var(--ink); }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-wd {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 0;
  color: var(--ink-2);
  border-bottom: 1px dashed var(--line-2);
  letter-spacing: 0.06em;
}
.cal-wd-sun { color: var(--coral); }
.cal-wd-sat { color: var(--sky); }

.cal-day {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
  padding: 4px 2px;
  min-height: 54px;
}
.cal-day.cal-blank { border: none; background: transparent; }
.cal-day.cal-today {
  border: 2px solid var(--coral);
  background: #fff5f1;
}
.cal-d {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 2px;
}
.cal-day.cal-sun .cal-d { color: var(--coral); }
.cal-day.cal-sat .cal-d { color: var(--sky); }

.cal-mk {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  font-family: var(--font-display);
}
.cal-mk.mk-open    { color: var(--mint); }
.cal-mk.mk-full    { color: var(--coral-deep); }
.cal-mk.mk-past    { color: var(--ink-3); opacity: 0.4; }
.cal-mk.mk-loading { color: var(--ink-3); font-size: 16px; }

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--line-2);
  font-size: 12px;
  color: var(--ink-2);
}
.cal-legend b { display: inline-block; font-size: 16px; margin-right: 4px; vertical-align: -2px; }
.cal-legend b.mk-open { color: var(--mint); }
.cal-legend b.mk-full { color: var(--coral-deep); }
.cal-legend b.mk-past { color: var(--ink-3); }
.cal-mode {
  background: var(--bg-yellow);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
}
.cal-mode.cal-err { background: #ffd5cc; }

.cal-note {
  margin-top: 14px;
  font-size: 12px;
  text-align: center;
  color: var(--ink-3);
  line-height: 1.6;
}
.cal-note a { color: var(--coral); font-weight: 700; text-decoration: underline; }

/* Wrapper section on store pages */
.store-calendar {
  margin: 48px 0 24px;
  padding: 32px 0;
  background: var(--bg-cream);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.store-calendar h2 {
  text-align: center;
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 8px;
}
.store-calendar .lede {
  text-align: center;
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 24px;
}

@media (max-width: 560px) {
  .lino-cal { padding: 16px 12px 14px; }
  .cal-day { min-height: 44px; padding: 3px 1px; }
  .cal-d { font-size: 10px; }
  .cal-mk { font-size: 18px; }
  .cal-month { font-size: 17px; }
  .cal-nav { width: 34px; height: 34px; }
}

/* Fix Instagram section accent reference (--accent was undefined) */
.ig-actions .hash { color: var(--coral); }

/* ============================================
   Hamburger animation
   ============================================ */
.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   Dropdown menu (desktop)
   ============================================ */
.has-dropdown { position: relative; }
.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.has-dropdown > a svg { transition: transform 0.2s ease; flex-shrink: 0; }
.has-dropdown:hover > a svg,
.has-dropdown:focus-within > a svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -16px;
  min-width: 270px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 20px;
  box-shadow: 4px 4px 0 var(--ink);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 300;
  padding: 8px;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dropdown ul { list-style: none; display: grid; gap: 2px; }
.dropdown li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 12px;
  transition: background 0.15s ease;
}
.dropdown li a:hover { background: var(--bg-cream); }
.dd-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.dd-info { font-size: 11px; letter-spacing: 0.08em; font-weight: 700; color: var(--coral); white-space: nowrap; }

/* ============================================
   Mobile nav drawer
   ============================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 20, 0.55);
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}
.nav-overlay.open { opacity: 1; visibility: visible; }

.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 92vw);
  background: var(--bg);
  z-index: 401;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-drawer.open { transform: none; }

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 1;
}
.drawer-close {
  width: 40px; height: 40px;
  border: 2px solid var(--ink);
  border-radius: 100px;
  font-size: 18px;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.drawer-close:hover { background: var(--ink); color: #fff; }

.drawer-section {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--coral);
  font-weight: 700;
  padding: 20px 24px 8px;
}
.drawer-links { list-style: none; padding: 0 12px; }
.drawer-links li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 12px;
  border-bottom: 1px dashed var(--line-2);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 0;
  transition: color 0.15s ease, background 0.15s ease;
}
.drawer-links li a:hover { color: var(--coral); background: var(--bg-cream); border-radius: 12px; }
.drawer-links li a .dl-price { font-size: 12px; color: var(--coral); font-weight: 700; }
.drawer-line-cta {
  margin: 20px 24px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: #06c755;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border-radius: 100px;
  letter-spacing: 0.04em;
  box-shadow: 0 5px 0 #04a344;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.drawer-line-cta:hover { transform: translateY(-2px); box-shadow: 0 7px 0 #04a344; }

/* ============================================
   Floating LINE button
   ============================================ */
.line-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #06c755;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 100px;
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4), 0 4px 0 #04a344;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease;
  text-decoration: none;
}
.line-float:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(6, 199, 85, 0.5), 0 4px 0 #04a344; }
.line-float.hidden { opacity: 0; pointer-events: none; }

@media (max-width: 640px) {
  .line-float {
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 16px;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(6, 199, 85, 0.45), 0 3px 0 #04a344;
  }
  body { padding-bottom: 76px; }
}

/* ============================================
   News page
   ============================================ */
.news-hero {
  padding: clamp(48px, 6vw, 80px) 0 clamp(40px, 5vw, 64px);
  border-bottom: 2px solid var(--line);
}
.news-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  margin: 16px 0 18px;
}
.news-hero .lede { margin-bottom: 28px; }

.news-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  padding: clamp(40px, 6vw, 72px) 0 clamp(60px, 8vw, 100px);
  align-items: start;
}

/* Category filter tabs */
.news-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.news-filter {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 2px solid var(--line-2);
  color: var(--ink-3);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  background: none;
}
.news-filter:hover,
.news-filter.active { border-color: var(--coral); color: var(--coral); background: var(--bg-pink); }

/* News article card */
.news-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 28px;
  padding: 32px 0;
  border-bottom: 1.5px dashed var(--line-2);
  align-items: start;
}
.news-card:first-of-type { padding-top: 0; }

.news-date-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 56px;
}
.news-date {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  font-weight: 600;
  white-space: nowrap;
}
.news-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1.5px solid currentColor;
  white-space: nowrap;
}
.news-badge.campaign { color: var(--coral); border-color: var(--coral); background: var(--bg-pink); }
.news-badge.info { color: var(--sky); border-color: var(--sky); background: #e8f2fc; }
.news-badge.new-store { color: var(--mint); border-color: var(--mint); background: var(--bg-mint); }

.news-content { display: grid; gap: 10px; }
.news-content h2 {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.news-content p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-2);
}
.news-line-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  padding: 10px 20px;
  background: #06c755;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-radius: 100px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 0 #04a344;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: fit-content;
}
.news-line-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #04a344; }

/* News sidebar */
.news-aside {
  position: sticky;
  top: 90px;
  display: grid;
  gap: 24px;
}
.news-aside-block {
  background: var(--bg-yellow);
  border: 2px solid var(--ink);
  border-radius: var(--r-card);
  padding: 24px;
}
.news-aside-block.line-block {
  background: #ebfbf1;
  border-color: #06c755;
  text-align: center;
}
.news-aside-block h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--ink);
}
.news-aside-block p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.news-aside-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: #06c755;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border-radius: 100px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 0 #04a344;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.news-aside-line-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #04a344; }
.news-aside-store-list { list-style: none; display: grid; gap: 6px; }
.news-aside-store-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line-2);
  color: var(--ink-2);
  transition: color 0.2s ease;
}
.news-aside-store-list a:hover { color: var(--coral); }
.news-aside-store-list a span { font-size: 11px; color: var(--coral); font-weight: 700; }

@media (max-width: 980px) {
  .news-layout { grid-template-columns: 1fr; }
  .news-aside { position: static; }
}
@media (max-width: 640px) {
  .news-card { grid-template-columns: 1fr; gap: 12px; }
  .news-date-col { flex-direction: row; align-items: center; }
}
.ig-note strong { color: var(--coral); }
