/* ========================================
   MIRAGE II - LP Design (Final)
   Based on: ミラージュLP（最終）.ai
   ======================================== */

/* --- @font-face --- */
@font-face {
  font-family: "Kozuka Gothic Pr6N";
  src: url("../fonts/KozGoPr6N-Bold.otf") format("opentype");
  font-weight: bold;
  font-display: swap;
}

@font-face {
  font-family: "BIZ UDMincho";
  src: url("../fonts/BIZUDMincho-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "BIZ UDMincho";
  src: url("../fonts/BIZUDMincho-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "TBUDGothic Std";
  src: url("../fonts/TBUDGothicStd.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "M PLUS 2p";
  src: url("../fonts/mplus-2p-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "M PLUS 2p";
  src: url("../fonts/mplus-2p-bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #C8607A;
  --color-primary-light: #E8A0B0;
  --color-primary-dark: #A04060;
  --color-primary-pale: #F5D5DC;
  --color-gold: #C9A96E;
  --color-gold-light: #E0CC9D;
  --color-brown: #6B3A3A;
  --color-brown-dark: #4A2020;
  --color-white: #FFFFFF;
  --color-bg: #FFF9FA;
  --color-bg-cream: #FDF6F0;
  --color-bg-pink: #FFF0F3;
  --color-bg-dark: #8B3A55;
  --color-text: #3A2A2E;
  --color-text-light: #6E5A5F;
  --color-text-white: #FFFFFF;
  --color-border: #F0D0D8;

  --font-ja: "Kozuka Gothic Pr6N", "TBUDGothic Std", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-ja-serif: "BIZ UDMincho", "Noto Serif JP", "Yu Mincho", "游明朝", YuMincho, serif;
  --font-en: "Playfair Display", "BIZ UDMincho", serif;
  --font-round: "M PLUS 2p", "Noto Sans JP", "Hiragino Sans", sans-serif;

  --max-width: 900px;
  --header-height: 60px;
  --section-padding: 80px 20px;
  --section-padding-sp: 56px 16px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-ja);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.8;
  overflow-x: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.7;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-ja);
  font-weight: 600;
  line-height: 1.4;
}

.en-text {
  font-family: var(--font-en);
  letter-spacing: 0.08em;
}

.sp-only { display: none; }

/* --- Section Header (Label + Sub) --- */
.section-header {
  margin-bottom: 40px;
  text-align: left;
  border-left: 3px solid var(--color-brown);
  padding-left: 16px;
}

.section-header--light {
  border-left-color: rgba(255,255,255,0.6);
}

.section-header--light .section-label {
  color: rgba(255,255,255,0.8);
}

.section-header--light .section-label-sub {
  color: rgba(255,255,255,0.6);
}

.section-label {
  font-family: var(--font-en);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  font-weight: 500;
}

.section-label-sub {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 2px;
}

.section-desc {
  text-align: center;
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 40px;
  color: var(--color-text-light);
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  /* v13.11: ヒーローセクションと連続するライトピンク強化 */
  background: rgba(251, 232, 236, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  font-family: var(--font-en);
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  color: var(--color-text);
  font-weight: 500;
}

.header__logo span {
  font-size: 0.85em;
}

/* --- Navigation --- */
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav__link {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
}

.nav__cta {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 20px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  transition: background-color var(--transition);
}

.nav__cta:hover {
  background-color: var(--color-primary-dark);
  opacity: 1;
}

/* Hamburger */
.hamburger {
  display: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 10001;
  box-shadow: 0 2px 12px rgba(59, 32, 37, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hamburger:active {
  transform: scale(0.93);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background-color: var(--color-text);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: var(--transition);
}

.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }

.hamburger[aria-expanded="true"] span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

/* ナビオーバーレイ */
.nav-overlay {
  display: none;
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 26, 31, 0.35);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.nav-overlay.is-open {
  display: block;
}

/* ナビ内部構造 */
.nav-header {
  padding: 32px 28px 20px;
  border-bottom: 1px solid rgba(200, 96, 122, 0.15);
}

.nav-header img {
  width: 120px;
  height: auto;
}

.nav-menu-en {
  font-family: var(--font-en);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.nav-menu-sub {
  font-family: var(--font-ja-serif);
  font-size: 0.72rem;
  color: var(--color-text-light);
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.nav-footer {
  padding: 16px 24px 32px;
  border-top: 1px solid rgba(200, 96, 122, 0.15);
}

.nav-cta {
  display: block;
  width: 100%;
  padding: 14px 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white) !important;
  text-align: center;
  font-family: var(--font-ja-serif);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  border-radius: 28px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(200, 96, 122, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover,
.nav-cta:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 96, 122, 0.4);
  opacity: 1;
}

.nav-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  padding-top: 12px;
}

.nav-legal a {
  font-size: 0.65rem;
  color: #9E8A8F;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-legal a:hover {
  color: var(--color-primary);
}

/* PC表示時はSP専用ナビ構造を非表示 */
.nav-overlay,
.nav .nav-header,
.nav .nav-menu,
.nav .nav-footer {
  display: none;
}

/* ========================================
   1. HERO / FV
   ======================================== */
.hero {
  margin-top: var(--header-height);
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('../images/common/hero-bg.png') center/cover no-repeat,
              linear-gradient(180deg, #FCEEF2 0%, #F8D4DD 40%, #F0B8C8 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(255,200,210,0.5) 0%, transparent 50%);
  z-index: 1;
}

.hero__wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 120px;
  background: var(--color-bg);
  z-index: 2;
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero__inner {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 20px 140px;
  text-align: center;
}

.hero__content {
  max-width: 600px;
  margin: 0 auto;
}

.hero__sub {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  margin-bottom: 20px;
  opacity: 0.85;
}

.hero__title {
  font-family: var(--font-ja-serif);
  font-size: 1.8rem;
  line-height: 1.7;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--color-brown-dark);
}

.hero__note {
  font-size: 0.7rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: var(--font-ja);
  text-align: center;
}

.btn--rounded {
  border-radius: 30px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(200, 96, 122, 0.3);
}

.btn--primary:hover {
  box-shadow: 0 6px 24px rgba(200, 96, 122, 0.45);
  opacity: 1;
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--color-primary);
  color: var(--color-primary);
}

.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  opacity: 1;
}

.btn--outline-white {
  background: rgba(255,255,255,0.25);
  border: 1.5px solid rgba(255,255,255,0.8);
  color: var(--color-brown-dark);
  backdrop-filter: blur(4px);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.5);
  opacity: 1;
}

.btn--gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, #B8944F 100%);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
}

.btn--gold:hover {
  box-shadow: 0 6px 24px rgba(201, 169, 110, 0.45);
  opacity: 1;
  transform: translateY(-1px);
}

.btn--wide {
  width: 100%;
  max-width: 280px;
}

/* ========================================
   2. INTRODUCTION
   ======================================== */
.intro {
  position: relative;
  padding: 80px 20px 60px;
  background: var(--color-bg);
}

.intro__catch {
  font-family: var(--font-ja-serif);
  text-align: center;
  font-size: 1.3rem;
  color: var(--color-brown);
  margin-bottom: 48px;
  letter-spacing: 0.1em;
}

.intro__body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.intro__text {
  text-align: center;
}

.intro__quote {
  font-family: var(--font-ja-serif);
  font-size: 1.15rem;
  line-height: 2;
  color: var(--color-text);
  letter-spacing: 0.08em;
}

.intro__image {
  flex-shrink: 0;
}

.intro__image img {
  max-height: 300px;
  width: auto;
  filter: drop-shadow(0 16px 40px rgba(200, 96, 122, 0.12));
}

/* ========================================
   3. VOICE
   ======================================== */
.section--voice {
  background: var(--color-bg);
}

.voice-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.voice-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--color-white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 20px rgba(200, 96, 122, 0.06);
}

.voice-card__photo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
}

.voice-card__photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-pale) 0%, var(--color-primary-light) 100%);
}

.voice-card__body {
  flex: 1;
}

.voice-card__label {
  display: inline-block;
  font-size: 0.7rem;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 2px 12px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-weight: 500;
}

.voice-card__title {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--color-text);
}

.voice-card__text {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ========================================
   4. WHY US
   ======================================== */
.section--whyus {
  position: relative;
  background: linear-gradient(135deg, var(--color-brown-dark) 0%, var(--color-brown) 100%);
  color: var(--color-white);
  overflow: hidden;
}

.section--whyus__deco-left,
.section--whyus__deco-right {
  position: absolute;
  width: 260px;
  height: 180px;
  opacity: 0.35;
  background: url('../images/common/leaf-deco.png') center/contain no-repeat;
  z-index: 0;
}

.section--whyus__deco-left {
  left: -40px;
  top: 15%;
}

.section--whyus__deco-right {
  right: -40px;
  bottom: 8%;
  transform: scaleX(-1);
}

.whyus-quote {
  font-family: var(--font-ja-serif);
  font-size: 1.35rem;
  line-height: 1.9;
  text-align: center;
  color: var(--color-white);
  margin-bottom: 40px;
  font-weight: 500;
  font-style: normal;
  border: none;
  padding: 0;
}

.whyus-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.whyus-text {
  max-width: 400px;
}

.whyus-text p {
  line-height: 2;
  margin-bottom: 16px;
  opacity: 0.9;
  font-size: 0.9rem;
}

.whyus-image {
  flex-shrink: 0;
}

.whyus-image img {
  max-height: 220px;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

/* ========================================
   5. CONCEPT BANNER
   ======================================== */
.concept-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: var(--color-white);
  padding: 56px 20px;
  text-align: center;
}

.concept-banner__text {
  font-family: var(--font-ja-serif);
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.08em;
}

.concept-banner__em {
  color: var(--color-primary-light);
  font-style: normal;
}

.concept-banner__note {
  font-size: 0.65rem;
  opacity: 0.5;
  margin-top: 16px;
}

/* ========================================
   6. WHY NOW
   ======================================== */
.section--whynow {
  background: var(--color-bg);
  text-align: center;
}

.section--whynow .section-header {
  text-align: left;
}

.whynow-title {
  font-size: 1.4rem;
  color: var(--color-brown);
  margin-bottom: 40px;
  text-align: center;
}

.concern-icons {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.concern-icon-item {
  text-align: center;
}

.concern-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 2px 12px rgba(200, 96, 122, 0.08);
}

.concern-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.concern-icon-item__label {
  font-size: 0.85rem;
  color: var(--color-text);
  font-weight: 500;
}

.whynow-body {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

.whynow-body p {
  font-size: 0.9rem;
  line-height: 2;
  margin-bottom: 16px;
  color: var(--color-text-light);
}

.whynow-highlight {
  background: linear-gradient(135deg, #FCEEF2 0%, #FFF5F7 100%);
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 600px;
  margin: 0 auto;
}

.whynow-highlight__title {
  font-family: var(--font-ja-serif);
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-brown);
  font-weight: 500;
}

.whynow-highlight__title small {
  font-size: 0.65em;
}

.whynow-highlight__note {
  font-size: 0.7rem;
  color: var(--color-text-light);
  margin-top: 16px;
  line-height: 1.6;
}

/* ========================================
   7. PRODUCT CTA (Mid-page)
   ======================================== */
.product-cta {
  position: relative;
  background: url('../images/common/cta-bg.jpg') center/cover no-repeat,
              linear-gradient(180deg, #FCEEF2 0%, #F8D4DD 50%, #F0B8C8 100%);
  padding: 80px 20px;
  overflow: hidden;
}

.product-cta__wave {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--color-bg);
  clip-path: ellipse(55% 100% at 50% 0%);
  z-index: 1;
}

.product-cta__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.product-cta__image img {
  max-height: 260px;
  width: auto;
  filter: drop-shadow(0 12px 32px rgba(200, 96, 122, 0.2));
}

.product-cta__info {
  text-align: center;
}

.product-cta__brand {
  font-family: var(--font-en);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--color-brown-dark);
  margin-bottom: 4px;
}

.product-cta__brand span {
  font-family: var(--font-ja);
  font-size: 0.85rem;
  display: block;
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.product-cta__spec {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.product-cta__price {
  font-family: var(--font-en);
  font-size: 2.8rem;
  color: var(--color-brown-dark);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  font-weight: 500;
}

.product-cta__price small {
  font-size: 0.35em;
  font-family: var(--font-ja);
}

.product-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* ========================================
   8. WHY THIS
   ======================================== */
.compare-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.compare-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--color-border);
}

.compare-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
}

.compare-card__icon svg {
  width: 56px;
  height: 56px;
}

.compare-card__type {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.compare-card__eval {
  font-size: 1.2rem;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.compare-card__issue {
  font-size: 0.75rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.mirage-solution {
  background: linear-gradient(135deg, #FFF5F7 0%, #FCEEF2 100%);
  border-radius: 16px;
  overflow: hidden;
}

.mirage-solution__inner {
  padding: 40px 32px;
  text-align: center;
}

.mirage-solution__title {
  font-size: 1.3rem;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
  font-weight: 600;
}

.mirage-solution__text {
  font-size: 0.9rem;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 24px;
}

.mirage-solution__image img {
  margin: 0 auto;
  max-height: 200px;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(200, 96, 122, 0.15));
}

/* ========================================
   9. EXPERIENCE
   ======================================== */
.section--experience {
  background: var(--color-bg);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.step {
  text-align: center;
}

.step__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brown) 0%, var(--color-brown-dark) 100%);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-en);
  font-size: 1.2rem;
  font-weight: 500;
}

.step__desc {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

.experience-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text);
  line-height: 1.8;
}

/* ========================================
   10. ACTIVE FORMULA
   ======================================== */
.section--formula {
  background: var(--color-bg-cream);
  position: relative;
  overflow: hidden;
}

.section--formula__deco {
  position: absolute;
  top: 0;
  right: -40px;
  width: 260px;
  height: 180px;
  opacity: 0.25;
  background: url('../images/common/leaf-deco.png') center/contain no-repeat;
  transform: scaleX(-1) rotate(15deg);
}

.formula-intro {
  text-align: center;
  font-size: 0.9rem;
  line-height: 2;
  margin-bottom: 48px;
  color: var(--color-text);
}

.formula-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  align-items: center;
  position: relative;
}

.formula-center {
  grid-row: 1 / 3;
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.formula-center img {
  max-height: 220px;
  width: auto;
  filter: drop-shadow(0 8px 24px rgba(200, 96, 122, 0.12));
}

.formula-card {
  text-align: center;
  padding: 20px 16px;
}

.formula-card--top-left {
  grid-column: 1;
  grid-row: 1;
}

.formula-card--top-right {
  grid-column: 3;
  grid-row: 1;
}

.formula-card--bottom-left {
  grid-column: 1;
  grid-row: 2;
}

.formula-card--bottom-center {
  grid-column: 3;
  grid-row: 2;
}

.formula-card__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.3rem;
  font-weight: 600;
}

.formula-card__circle--nmn {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
}

.formula-card__title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-text);
}

.formula-card__sub {
  font-size: 0.7rem;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.formula-card__text {
  font-size: 0.75rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ========================================
   11. WHY ME
   ======================================== */
.section--whyme {
  background: var(--color-bg);
}

.whyme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.whyme-card {
  text-align: center;
}

.whyme-card__image {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  margin-bottom: 16px;
  background-size: cover;
  background-position: center;
}

.whyme-card__image--generation {
  background: linear-gradient(135deg, #F8D4DD 0%, #FCEEF2 100%);
}

.whyme-card__image--season {
  background: linear-gradient(135deg, #D4E8F8 0%, #EEF2FC 100%);
}

.whyme-card__image--skin {
  background: linear-gradient(135deg, #F8ECD4 0%, #FCF2EE 100%);
}

.whyme-card__label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.whyme-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.5;
}

.whyme-card__text {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* ========================================
   12. STORY
   ======================================== */
.section--story {
  background: var(--color-bg-cream);
}

.story-body {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.story-text {
  flex: 1;
  min-width: 280px;
}

.story-text p {
  font-family: var(--font-ja-serif);
  font-size: 0.9rem;
  line-height: 2.2;
  margin-bottom: 20px;
  color: var(--color-text);
}

.story-image {
  flex-shrink: 0;
}

.story-image__placeholder {
  width: 200px;
  height: 260px;
  border-radius: 12px;
  background: linear-gradient(135deg, #F8D4DD 0%, #FCEEF2 100%);
}

/* ========================================
   13. Q&A
   ======================================== */
.section--faq {
  background: var(--color-bg);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 40px 20px 0;
  text-align: left;
  font-family: var(--font-ja);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  position: relative;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-question__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-brown);
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0;
  flex-shrink: 0;
  font-weight: 500;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-primary);
  transition: transform var(--transition);
}

.faq-item.is-open .faq-question::after {
  content: "\2212";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer__inner {
  padding: 0 0 20px 44px;
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.8;
  display: flex;
  gap: 10px;
}

.faq-answer__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.7rem;
  flex-shrink: 0;
  font-weight: 600;
}

.faq-note {
  text-align: center;
  font-size: 0.7rem;
  color: var(--color-text-light);
  margin-top: 32px;
}

/* ========================================
   14. INGREDIENTS & SAFETY
   ======================================== */
.section--safety {
  background: var(--color-bg-cream);
}

.safety-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.safety-image {
  flex-shrink: 0;
}

.safety-image img {
  max-height: 200px;
  width: auto;
  border-radius: 8px;
}

.safety-info {
  flex: 1;
  min-width: 280px;
}

.safety-dl__item {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.safety-dl__item:last-child {
  border-bottom: none;
}

.safety-dl__item dt {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.safety-dl__item dd {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* ========================================
   15. OFFER
   ======================================== */
.section--offer {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.section--offer .section-header {
  border-left-color: var(--color-gold);
}

.section--offer .section-label {
  color: var(--color-gold);
}

.section--offer .section-label-sub {
  color: rgba(255,255,255,0.6);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.offer-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.offer-card--recommend {
  border-color: var(--color-gold);
}

.offer-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-white);
  padding: 4px 20px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

.offer-card__title {
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 16px;
  font-weight: 500;
}

.offer-card__price {
  font-family: var(--font-en);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.offer-card__amount {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-white);
}

.offer-card__benefit {
  font-size: 0.8rem;
  color: var(--color-gold-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 20px 24px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.footer__brand {
  font-family: var(--font-en);
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--color-white);
}

.footer__text {
  font-size: 0.75rem;
  width: 100%;
  margin-top: 8px;
}

.footer__text a {
  color: rgba(255,255,255,0.7);
}

.footer__links-wrap {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__links-wrap a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.footer__links-wrap a:hover {
  color: var(--color-white);
  opacity: 1;
}

.footer__bottom {
  max-width: var(--max-width);
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.7rem;
}

.footer__lang {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 12px;
}

.footer__lang a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

.footer__lang a.is-active {
  color: var(--color-white);
}

/* --- Cookie Consent Banner --- */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(44, 26, 31, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  padding: 16px 20px;
}

.cookie-consent__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-consent__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  line-height: 1.6;
}

.cookie-consent__text a {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.cookie-consent__btn {
  white-space: nowrap;
  padding: 8px 20px;
  font-size: 0.75rem;
  border-radius: 20px;
}

/* --- Scroll Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- Disclaimer --- */
.disclaimer {
  font-size: 0.7rem;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 24px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* --- Tablet & below (1024px) --- */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__logo {
    z-index: 1;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 82%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, #FFF9FA 0%, #FDF6F0 100%);
    flex-direction: column;
    padding: 0;
    gap: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(105%);
    box-shadow: none;
    align-items: stretch;
    z-index: 9999;
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateX(0);
    box-shadow: -8px 0 40px rgba(44, 26, 31, 0.12);
  }

  /* PC用のリンク・CTAは非表示にし、新構造で表示 */
  .nav > .nav__link,
  .nav > .nav__cta {
    display: none;
  }

  .nav .nav-header,
  .nav .nav-menu,
  .nav .nav-footer {
    display: block;
  }

  .nav .nav-menu {
    padding: 16px 16px 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .nav .nav-menu a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease;
  }

  .nav .nav-menu a:hover,
  .nav .nav-menu a:active {
    background: rgba(200, 96, 122, 0.08);
  }
}

/* --- Tablet (768px) --- */
@media (max-width: 768px) {
  .sp-only { display: inline; }

  .section {
    padding: var(--section-padding-sp);
  }

  .hero {
    min-height: 75vh;
  }

  .hero__title {
    font-size: 1.45rem;
  }

  .hero__inner {
    padding: 40px 16px 120px;
  }

  .intro__body {
    flex-direction: column;
    gap: 32px;
  }

  .intro__image img {
    max-height: 240px;
  }

  .voice-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .whyus-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .whyus-text {
    text-align: center;
  }

  .concern-icons {
    gap: 32px;
  }

  .product-cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .compare-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .formula-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .formula-center {
    grid-row: auto;
    grid-column: auto;
    order: -1;
  }

  .formula-card--top-left,
  .formula-card--top-right,
  .formula-card--bottom-left,
  .formula-card--bottom-center {
    grid-column: auto;
    grid-row: auto;
  }

  .whyme-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .whyme-card__image {
    height: 140px;
  }

  .story-body {
    flex-direction: column;
    align-items: center;
  }

  .story-text {
    text-align: center;
  }

  .safety-layout {
    flex-direction: column;
    align-items: center;
  }

  .safety-info {
    text-align: center;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__links-wrap {
    justify-content: center;
  }

  .cookie-consent__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Smartphone (480px) --- */
@media (max-width: 480px) {
  .hero__title {
    font-size: 1.25rem;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero__buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .intro__catch {
    font-size: 1.1rem;
  }

  .concern-icons {
    gap: 20px;
  }

  .concern-icon {
    width: 72px;
    height: 72px;
  }

  .compare-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .product-cta__price {
    font-size: 2.2rem;
  }

  .whynow-title {
    font-size: 1.2rem;
  }
}

/* ============================================
   v13: Nav list and Lang Picker (Header version)
   ============================================ */
.nav__list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav__list li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__lang {
  margin-left: 8px;
}

/* Header lang picker */
.lang-picker {
  position: relative;
  display: inline-block;
}
.lang-picker__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(176, 141, 87, 0.4);
  border-radius: 0;
  padding: 7px 12px;
  font-family: "BIZ UDMincho", "Noto Serif JP", serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #1A1419;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  white-space: nowrap;
}
.lang-picker__toggle:hover,
.lang-picker__toggle:focus-visible {
  border-color: #B08D57;
  background: rgba(176, 141, 87, 0.06);
  outline: none;
}
.lang-picker__icon-globe { color: #B08D57; flex-shrink: 0; }
.lang-picker__current { letter-spacing: 0.14em; }
.lang-picker__icon-chevron {
  color: #8A6D3F;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.lang-picker__toggle[aria-expanded="true"] .lang-picker__icon-chevron {
  transform: rotate(180deg);
}
.lang-picker__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 220px;
  background: #FAF6F0;
  border: 1px solid rgba(176, 141, 87, 0.4);
  border-radius: 0;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  box-shadow: 0 12px 32px -10px rgba(26, 20, 25, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 200;
}
.lang-picker__toggle[aria-expanded="true"] + .lang-picker__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-picker__menu li { margin: 0; padding: 0; list-style: none; }
.lang-picker__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  font-family: "BIZ UDMincho", "Noto Serif JP", serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.2s ease;
  border-bottom: 1px solid rgba(176, 141, 87, 0.12);
}
.lang-picker__menu li:last-child .lang-picker__item { border-bottom: none; }
.lang-picker__item .lang-picker__name { font-weight: 500; }
.lang-picker__item .lang-picker__name[lang="en"] { font-family: "Playfair Display", serif; font-style: italic; font-weight: 500; letter-spacing: 0.12em; }
.lang-picker__item .lang-picker__name[lang="ko"] { font-family: "Noto Serif KR", "BIZ UDMincho", serif; }
.lang-picker__item .lang-picker__name[lang="zh-CN"] { font-family: "Noto Serif SC", "BIZ UDMincho", serif; }
.lang-picker__item .lang-picker__name[lang="fr"] { font-family: "Playfair Display", "Noto Serif", serif; font-style: italic; }
.lang-picker__item.is-active {
  color: #5C1F2E;
  background: rgba(176, 141, 87, 0.08);
  cursor: default;
}
.lang-picker__item.is-active .lang-picker__check {
  color: #B08D57;
  font-size: 0.85rem;
}
a.lang-picker__item {
  color: #1A1419;
  cursor: pointer;
}
a.lang-picker__item:hover,
a.lang-picker__item:focus-visible {
  background: rgba(176, 141, 87, 0.1);
  color: #5C1F2E;
  outline: none;
}
.lang-picker__item.is-disabled {
  color: #B5A89B;
  cursor: not-allowed;
}
.lang-picker__soon {
  font-family: "Playfair Display", "BIZ UDMincho", serif;
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: #B08D57;
  opacity: 0.85;
}
@media (max-width: 1024px) {
  .lang-picker__toggle { padding: 6px 10px; font-size: 0.72rem; }
  .lang-picker__menu { right: -10px; min-width: 200px; }
}

/* v13: Sub-page nav close button (SP) */
.nav__close {
  display: none;
}
@media (max-width: 1024px) {
  .nav__close {
    display: block;
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: 0;
    font-size: 1.8rem;
    color: var(--color-text);
    cursor: pointer;
    line-height: 1;
    padding: 8px 12px;
    z-index: 100;
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 60px 16px 24px;
  }
  .nav__list li {
    width: 100%;
    border-bottom: 1px solid rgba(176, 141, 87, 0.15);
  }
  .nav__list li:last-child {
    border-bottom: none;
  }
  .nav__link {
    display: block;
    padding: 16px 8px;
    text-align: left;
  }
  .nav__lang {
    margin-top: 12px;
    margin-left: 0;
    padding: 12px 8px;
  }
  .nav__lang .lang-picker {
    width: 100%;
  }
  .nav__lang .lang-picker__toggle {
    width: 100%;
    justify-content: center;
  }
  .nav__lang .lang-picker__menu {
    right: 0;
    left: 0;
    min-width: 0;
  }
}

/* Body scroll lock when nav drawer is open
   (nav.js writes `nav-is-open` on <body>; keep this in sync) */
body.nav-is-open {
  overflow: hidden;
}

/* Hamburger only shows on SP */
@media (min-width: 1025px) {
  .hamburger { display: none; }
}

/* ============================================
   v13.10: LINE 友だち追加 フローティングボタン
   全 JA サブページ共通 — TOP の style.css と同一スタイル
   ============================================ */
.line-float {
    position: fixed;
    right: 12px;
    bottom: 90px;
    z-index: 9997;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 64px;
    height: 80px;
    padding: 8px 6px;
    background: #06C755;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 6px 18px -4px rgba(6, 199, 85, 0.45),
                0 4px 12px rgba(0, 0, 0, 0.18);
    font-family: "Noto Serif JP", "BIZ UDMincho", serif;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.3s ease,
                background 0.3s ease;
}
.line-float:hover,
.line-float:focus {
    transform: translateY(-3px);
    background: #05B14B;
    box-shadow: 0 12px 28px -4px rgba(6, 199, 85, 0.55),
                0 6px 14px rgba(0, 0, 0, 0.22);
    color: #fff;
    outline: none;
}
.line-float__logo {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: block;
}
.line-float__text {
    display: block;
}
@media screen and (max-width: 1024px) {
    .line-float {
        right: 8px;
        bottom: 78px;
        width: 56px;
        height: 72px;
        font-size: 0.62rem;
        gap: 2px;
        padding: 6px 4px;
    }
    .line-float__logo {
        width: 26px;
        height: 26px;
    }
}

/* ============================================
   v13.11: 統一サイトフッター (.site-footer)
   全 8 JA ページで使用する共通フッター
   ボルドー bg #2C1A1F、editorial 多列レイアウト
   ============================================ */
.site-footer {
    background: var(--color-bg-dark);
    color: rgba(255, 255, 255, 0.92);
    padding: 56px 5% 28px;
    font-family: var(--font-ja-serif);
    font-size: 0.85rem;
    line-height: 1.85;
    letter-spacing: 0.04em;
}
.site-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
}
.site-footer__brand-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.site-footer__brand {
    font-family: var(--font-en);
    font-size: 1.4rem;
    letter-spacing: 0.18em;
    color: #fff;
    margin: 0;
    font-weight: 500;
}
.site-footer__brand span {
    font-size: 0.78em;
}
.site-footer__tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.86);
    margin: 0;
    line-height: 1.7;
    /* v13.16: 日本語の途中で分断しない(「エイジングケ/ア」防止)*/
    word-break: keep-all;
    overflow-wrap: anywhere;
}
.site-footer__company {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 8px;
    line-height: 1.6;
}
.site-footer__col-title {
    font-family: var(--font-en);
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.site-footer__links {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.site-footer__links li { margin: 0; }
.site-footer__links a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}
.site-footer__links a:hover {
    color: #fff;
    padding-left: 4px;
}
.site-footer__notes {
    max-width: 1100px;
    margin: 40px auto 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.7rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
    text-align: left;
}
.site-footer__notes p { margin: 0 0 6px; color: rgba(255, 255, 255, 0.78); }
.site-footer__notes p:last-child { margin: 0; }
.site-footer__bottom {
    max-width: 1100px;
    margin: 24px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.74);
}
.site-footer__bottom a {
    color: rgba(255, 255, 255, 0.85);
    margin-right: 14px;
    text-decoration: none;
}
.site-footer__bottom a:hover { color: #fff; }

@media (max-width: 768px) {
    .site-footer { padding: 44px 5% 22px; }
    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .site-footer__bottom {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    .site-footer__bottom a { margin: 0 8px; }
}

/* ============================================
   v13.13: 統一ページヒーロー & Information 系セクション規則
   全 6 サブページで使用する共通レイアウト/タイポ
   ============================================ */

/* --- 共通: パンくず統一 --- */
.breadcrumb {
    font-family: var(--font-ja-serif);
    font-size: 0.78rem;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--color-text-light);
    margin: 0 0 28px;
    padding: 0;
}
.breadcrumb a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumb a:hover { color: var(--color-primary-dark); }
.breadcrumb__sep {
    margin: 0 8px;
    color: var(--color-border);
    user-select: none;
}

/* --- 共通: ページヒーロー(全 6 サブページのタイトル領域) --- */
.page-hero {
    margin-top: var(--header-height);
    padding: 64px 5% 56px;
    text-align: center;
    position: relative;
}
.page-hero__inner {
    max-width: 760px;
    margin: 0 auto;
}
.page-hero__eyebrow {
    font-family: var(--font-en);
    font-size: 0.78rem;
    letter-spacing: 0.32em;
    color: var(--color-gold);
    margin: 0 0 18px;
    text-transform: uppercase;
    line-height: 1;
}
.page-hero__title {
    font-family: var(--font-ja-serif);
    font-size: clamp(1.6rem, 3.6vw, 2.2rem);
    font-weight: 700;
    color: #761e3b;
    letter-spacing: 0.08em;
    line-height: 1.5;
    margin: 0 0 22px;
}
.page-hero__lead {
    font-family: var(--font-ja-serif);
    font-size: clamp(0.88rem, 1.6vw, 1rem);
    color: var(--color-text-light);
    line-height: 1.95;
    letter-spacing: 0.04em;
    margin: 0 auto;
    max-width: 640px;
}

/* --- Variant: Marketing 系(contact/events/partners は v13.14 で適用)--- */
.page-hero--editorial {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 50%, #FFF0F5 100%);
    padding: 80px 5% 72px;
}

/* --- Variant: Information 系(privacy/tokushoho/ingredients) --- */
.page-hero--info {
    background: linear-gradient(180deg, #FFFAF7 0%, #FAF6F0 100%);
    padding: 56px 5% 44px;
    border-bottom: 1px solid var(--color-border);
}
.page-hero--info .page-hero__title {
    font-size: clamp(1.5rem, 3.2vw, 2rem);
    margin-bottom: 14px;
}
.page-hero--info .page-hero__lead {
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    color: var(--color-text-light);
}

/* --- 共通: Information 系コンテンツセクション --- */
.info-section {
    padding: 48px 5% 80px;
    background: #fff;
}
.info-section__inner {
    max-width: 760px;
    margin: 0 auto;
    font-family: var(--font-ja-serif);
    color: var(--color-text);
    line-height: 1.95;
    letter-spacing: 0.04em;
    font-size: 0.92rem;
}
.info-section__inner p {
    margin: 0 0 14px;
}
.info-section__inner ul,
.info-section__inner ol {
    list-style: disc;
    padding-left: 1.6em;
    margin: 12px 0 16px;
}
.info-section__inner ol { list-style: decimal; }
.info-section__inner li {
    margin: 0 0 6px;
    line-height: 1.85;
}

/* H2 統一 */
.info-h2 {
    font-family: var(--font-ja-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #761e3b;
    margin: 40px 0 14px;
    padding: 0 0 10px 14px;
    border-bottom: 1px solid var(--color-border);
    border-left: 3px solid var(--color-gold);
    letter-spacing: 0.06em;
    line-height: 1.5;
}
.info-h2:first-child {
    margin-top: 0;
}

/* H3 統一 */
.info-h3 {
    font-family: var(--font-ja-serif);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 24px 0 10px;
    padding: 0;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

/* テーブル(tokushoho 等の表形式情報)統一 */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0 28px;
    font-size: 0.88rem;
    line-height: 1.85;
}
.info-table th,
.info-table td {
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--color-border);
}
.info-table th {
    width: 30%;
    background: #FFFAF7;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.04em;
}
.info-table td {
    color: var(--color-text);
}

/* 注釈ブロック */
.info-note {
    background: #FFFAF7;
    border-left: 3px solid var(--color-gold);
    padding: 14px 18px;
    margin: 20px 0;
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.85;
    border-radius: 0 4px 4px 0;
}

/* リストの最終更新日 */
.info-meta {
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
    font-size: 0.78rem;
    color: var(--color-text-light);
    text-align: right;
    letter-spacing: 0.06em;
}

/* SP 調整 */
@media (max-width: 768px) {
    .page-hero { padding: 48px 5% 40px; }
    .page-hero--editorial { padding: 60px 5% 52px; }
    .page-hero--info { padding: 44px 5% 32px; }
    .info-section { padding: 36px 5% 60px; }
    .info-section__inner { font-size: 0.88rem; }
    .info-h2 {
        font-size: 1.05rem;
        margin: 32px 0 12px;
        padding-left: 12px;
    }
    .info-h3 { font-size: 0.98rem; }
    /* v14.15: SP では table を block 化して縦並び表示にする
       長い URL や日本語ラベルでの列幅圧迫を完全回避 */
    .info-table,
    .info-table tbody,
    .info-table tr,
    .info-table th,
    .info-table td {
        display: block;
        width: 100%;
    }
    .info-table { font-size: 0.85rem; }
    .info-table th {
        background: #FFFAF7;
        padding: 10px 14px 6px;
        font-weight: 600;
        border-top: 1px solid var(--color-border);
        border-bottom: none;
        letter-spacing: 0.06em;
    }
    .info-table td {
        padding: 6px 14px 14px;
        border-bottom: 1px solid var(--color-border);
        word-break: break-word;
    }
    .info-table td a {
        word-break: break-all; /* 長い URL を折り返し可能に */
    }
    .info-table tr:first-child th { border-top: none; }
    /* 期間限定キャンペーン行も block 表示に強制(campaign.css の display:table-row を上書き)*/
    .campaign-active .info-table tr[data-campaign-block] {
        display: block !important;
    }
}

/* v13.13: Information ページの PDF ボタン */
.info-cta-area {
    margin: 40px 0 0;
    text-align: center;
}
.info-pdf-btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #FFFEFB 0%, #FAF6F0 100%);
    color: #761e3b;
    border: 1px solid #B08D57;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-ja-serif);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 14px -4px rgba(118, 30, 59, 0.15);
}
.info-pdf-btn:hover {
    background: #761e3b;
    color: #fff;
    border-color: #761e3b;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px -6px rgba(118, 30, 59, 0.4);
}

/* ============================================
   v13.14: Marketing 系ページ用 standalone パンくず
   ヒーロー直下に配置されるパンくずのスタイル
   ============================================ */
.breadcrumb--standalone {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 5% 0;
    background: transparent;
}

@media (max-width: 768px) {
    .breadcrumb--standalone {
        padding: 16px 5% 0;
    }
}

/* ============================================
   v13.17: ニュースページ共通スタイル
   一覧 (.page-hero--news, .news-list, .news-card)
   個別記事 (.news-article 系)
   ============================================ */

/* --- ヒーロー: News 系モディファイア --- */
.page-hero--news {
    background: linear-gradient(180deg, #FFFEFB 0%, #FAF6F0 100%);
    padding: 64px 5% 48px;
    border-bottom: 1px solid var(--color-border);
}
.page-hero--news .page-hero__title {
    font-size: clamp(1.6rem, 3.2vw, 2.1rem);
}

/* --- 一覧ページ --- */
.news-list-section {
    padding: 56px 5% 100px;
    background: #FFFEFB;
}
.news-list-section__inner {
    max-width: 1100px;
    margin: 0 auto;
}
.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.news-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -12px rgba(118, 30, 59, 0.18);
    border-color: var(--color-gold);
}
.news-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.news-card__thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    background: #F0E8E0;
}
.news-card__body {
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.news-card__meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0 0 12px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: var(--color-text-light);
    font-family: var(--font-en);
}
.news-card__category {
    color: var(--color-gold);
    text-transform: uppercase;
    font-weight: 600;
}
.news-card__date {
    color: var(--color-text-light);
}
.news-card__title {
    font-family: var(--font-ja-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: #761e3b;
    line-height: 1.55;
    margin: 0 0 12px;
    letter-spacing: 0.04em;
    /* v13.17 fix: 日本語句読点の孤立を抑制 */
    word-break: keep-all;
    overflow-wrap: anywhere;
    line-break: strict;
}
.news-card__excerpt {
    font-family: var(--font-ja-serif);
    font-size: 0.85rem;
    color: var(--color-text);
    line-height: 1.85;
    margin: 0 0 18px;
    flex: 1;
    word-break: keep-all;
    overflow-wrap: anywhere;
}
.news-card__readmore {
    font-family: var(--font-en);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    color: var(--color-gold);
    text-transform: uppercase;
    align-self: flex-start;
    transition: color 0.3s ease, letter-spacing 0.3s ease;
}
.news-card:hover .news-card__readmore {
    color: var(--color-brown-dark, #4A2020);
    letter-spacing: 0.2em;
}
.news-list-empty {
    text-align: center;
    padding: 60px 0;
    color: var(--color-text-light);
    font-family: var(--font-ja-serif);
    font-size: 0.92rem;
}

/* --- 個別記事 --- */
.news-back-link-bar {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 5% 0;
    background: transparent;
}
.news-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-en);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}
.news-back-link:hover { color: #761e3b; }
.news-back-link__arrow {
    transition: transform 0.3s ease;
}
.news-back-link:hover .news-back-link__arrow {
    transform: translateX(-3px);
}

.news-article {
    background: #FFFEFB;
}
.news-article__hero {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    background: #F0E8E0;
}
.news-article__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-article__hero-caption {
    position: absolute;
    bottom: 16px;
    left: 5%;
    right: 5%;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-ja-serif);
    font-size: 0.78rem;
    line-height: 1.7;
    letter-spacing: 0.06em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    max-width: 1100px;
    margin: 0 auto;
}

.news-article__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 56px 5% 80px;
}
.news-article__meta {
    display: flex;
    gap: 18px;
    align-items: center;
    margin: 0 0 24px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    font-family: var(--font-en);
}
.news-article__category {
    color: var(--color-gold);
    text-transform: uppercase;
    font-weight: 600;
}
.news-article__date {
    color: var(--color-text-light);
}

.news-article__title {
    font-family: var(--font-ja-serif);
    font-size: clamp(1.4rem, 3.2vw, 2rem);
    font-weight: 700;
    color: #761e3b;
    line-height: 1.55;
    margin: 0 0 14px;
    letter-spacing: 0.06em;
}

/* v14.8: 記事サブタイトル(タイトルと lead の間) */
.news-article__subtitle {
    font-family: var(--font-ja-serif);
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: #5a3a25;
    line-height: 1.7;
    letter-spacing: 0.03em;
    margin: 0 0 28px;
    font-weight: 500;
    font-style: italic;
}

.news-article__lead {
    font-family: var(--font-ja-serif);
    font-size: 1rem;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.04em;
    margin: 0 0 40px;
    padding: 24px 0 28px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.news-article__body {
    font-family: var(--font-ja-serif);
    color: var(--color-text);
    line-height: 1.95;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
}
.news-article__body p {
    margin: 0 0 22px;
}
.news-article__h2 {
    font-family: var(--font-ja-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #761e3b;
    margin: 48px 0 18px;
    padding: 0 0 12px 14px;
    border-bottom: 1px solid var(--color-border);
    border-left: 3px solid var(--color-gold);
    letter-spacing: 0.06em;
    line-height: 1.5;
}
.news-article__h3 {
    font-family: var(--font-ja-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 32px 0 12px;
    letter-spacing: 0.06em;
}

.news-article__figure {
    margin: 36px 0;
}
.news-article__figure-img {
    width: 100%;
    display: block;
    border-radius: 4px;
    background: #F0E8E0;
}
.news-article__figure-caption {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--color-text-light);
    line-height: 1.7;
    text-align: center;
    font-family: var(--font-ja-serif);
}
.news-article__figure-credit {
    display: block;
    font-family: var(--font-en);
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    color: var(--color-gold);
    margin-top: 4px;
    text-transform: uppercase;
}

.news-article__disclaimer {
    background: #FFFAF7;
    border-left: 3px solid var(--color-gold);
    padding: 14px 18px;
    margin: 36px 0;
    font-size: 0.82rem;
    color: var(--color-text-light);
    line-height: 1.85;
    border-radius: 0 4px 4px 0;
    font-family: var(--font-ja-serif);
}

.news-article__tags {
    margin: 40px 0 32px;
    display: flex;
    gap: 8px 12px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}
.news-article__tag {
    display: inline-block;
    padding: 6px 14px;
    background: #FFFAF7;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    font-family: var(--font-ja-serif);
    font-size: 0.78rem;
    color: var(--color-text-light);
    letter-spacing: 0.04em;
}

.news-article__footer-cta {
    margin-top: 48px;
    padding: 36px 28px;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
    border-radius: 6px;
    text-align: center;
}
.news-article__footer-cta-title {
    font-family: var(--font-ja-serif);
    font-size: 1rem;
    font-weight: 600;
    color: #761e3b;
    margin: 0 0 18px;
    letter-spacing: 0.08em;
}
.news-article__footer-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.news-article__cta-btn {
    display: inline-block;
    padding: 13px 28px;
    background: #761e3b;
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-family: var(--font-ja-serif);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 14px -4px rgba(118, 30, 59, 0.4);
}
.news-article__cta-btn:hover {
    background: #5C1F2E;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px -6px rgba(118, 30, 59, 0.5);
}
.news-article__cta-btn--outline {
    background: transparent;
    color: #761e3b;
    border: 1px solid #761e3b;
    box-shadow: none;
}
.news-article__cta-btn--outline:hover {
    background: #761e3b;
    color: #fff;
    box-shadow: 0 10px 26px -6px rgba(118, 30, 59, 0.5);
}

/* SP */
@media (max-width: 768px) {
    .news-list { grid-template-columns: 1fr; gap: 24px; }
    .news-list-section { padding: 36px 5% 70px; }
    .news-article__inner { padding: 36px 5% 60px; }
    .news-article__hero { aspect-ratio: 16 / 10; }
    .news-article__hero-caption { font-size: 0.72rem; }
    .news-article__title { font-size: 1.45rem; line-height: 1.6; }
    .news-article__lead { font-size: 0.92rem; padding: 20px 0 22px; margin-bottom: 32px; }
    .news-article__body { font-size: 0.9rem; }
    .news-article__h2 { font-size: 1.05rem; margin: 36px 0 14px; padding-left: 12px; }
    .news-article__footer-cta { padding: 28px 16px; }
    .news-article__footer-cta-btns { flex-direction: column; }
    .news-article__cta-btn { display: block; width: 100%; }
}

/* ============================================
   v13.17: News ページ専用スタイル
   /ja/news/ 一覧 + /ja/news/{slug}/ 個別記事
   ============================================ */

/* --- News 用ヒーローモディファイア --- */
.page-hero--news {
    background: linear-gradient(180deg, #FFFEFB 0%, #FAF6F0 100%);
    padding: 56px 5% 44px;
    border-bottom: 1px solid var(--color-border);
}
.page-hero--news .page-hero__title {
    font-size: clamp(1.5rem, 3.2vw, 2rem);
    margin-bottom: 14px;
}
.page-hero--news .page-hero__lead {
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
}

/* --- News 一覧 --- */
.news-list-section {
    padding: 56px 5% 96px;
    background: #fff;
}
.news-list {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 36px;
}
.news-card {
    display: flex;
    flex-direction: column;
    background: #FFFEFB;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px -10px rgba(118, 30, 59, 0.18);
    border-color: var(--color-gold);
    color: inherit;
}
.news-card__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #FAF6F0;
}
.news-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.news-card:hover .news-card__thumb img {
    transform: scale(1.05);
}
.news-card__body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.news-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}
.news-card__category {
    color: var(--color-gold);
    font-family: var(--font-en);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
}
.news-card__date {
    color: var(--color-text-light);
    font-family: var(--font-en);
}
.news-card__title {
    font-family: var(--font-ja-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: #761e3b;
    line-height: 1.6;
    margin: 0 0 12px;
    letter-spacing: 0.04em;
}
.news-card__excerpt {
    font-family: var(--font-ja-serif);
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.85;
    margin: 0 0 16px;
    letter-spacing: 0.03em;
    flex: 1;
}
.news-card__readmore {
    font-family: var(--font-en);
    font-size: 0.75rem;
    color: var(--color-gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: auto;
}
.news-card__readmore::after {
    content: "  →";
    transition: transform 0.3s ease;
    display: inline-block;
}
.news-card:hover .news-card__readmore::after {
    transform: translateX(4px);
}

/* --- News 個別記事 --- */
.news-back-link-bar {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 5% 0;
}
.news-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ja-serif);
    font-size: 0.82rem;
    color: var(--color-text-light);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}
.news-back-link:hover { color: #761e3b; }
.news-back-link__arrow {
    font-family: var(--font-en);
    transition: transform 0.3s ease;
}
.news-back-link:hover .news-back-link__arrow {
    transform: translateX(-4px);
}

.news-article {
    background: #fff;
}
.news-article__hero {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    background: #FAF6F0;
    margin-top: var(--header-height);
}
.news-article__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.news-article__hero-caption {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 5% 0;
    font-family: var(--font-ja-serif);
    font-size: 0.74rem;
    color: var(--color-text-light);
    line-height: 1.7;
    letter-spacing: 0.04em;
}

.news-article__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 5% 80px;
    font-family: var(--font-ja-serif);
    color: var(--color-text);
    line-height: 1.95;
    letter-spacing: 0.04em;
}
.news-article__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
}
.news-article__category {
    color: var(--color-gold);
    font-family: var(--font-en);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
}
.news-article__date {
    color: var(--color-text-light);
    font-family: var(--font-en);
    letter-spacing: 0.1em;
}
.news-article__title {
    font-family: var(--font-ja-serif);
    font-size: clamp(1.4rem, 3.2vw, 2rem);
    font-weight: 700;
    color: #761e3b;
    line-height: 1.55;
    letter-spacing: 0.06em;
    margin: 0 0 24px;
}
.news-article__lead {
    font-family: var(--font-ja-serif);
    font-size: 1rem;
    color: var(--color-text);
    line-height: 2;
    letter-spacing: 0.04em;
    margin: 0 0 40px;
    padding: 24px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}
.news-article__lead p {
    margin: 0 0 12px;
}
.news-article__lead p:last-child { margin: 0; }

.news-article__body {
    font-size: 0.95rem;
}
.news-article__body p {
    margin: 0 0 18px;
    line-height: 1.95;
}
.news-article__h2 {
    font-family: var(--font-ja-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: #761e3b;
    margin: 48px 0 18px;
    padding: 0 0 12px 14px;
    border-bottom: 1px solid var(--color-border);
    border-left: 3px solid var(--color-gold);
    letter-spacing: 0.06em;
    line-height: 1.5;
}
.news-article__h3 {
    font-family: var(--font-ja-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 32px 0 12px;
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.news-article__figure {
    margin: 32px 0;
}
.news-article__figure-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}
.news-article__figure-caption {
    margin: 12px 0 0;
    font-size: 0.78rem;
    color: var(--color-text-light);
    line-height: 1.7;
    text-align: center;
    letter-spacing: 0.04em;
}
.news-article__figure-credit {
    display: block;
    margin-top: 6px;
    font-family: var(--font-en);
    font-size: 0.72rem;
    color: var(--color-gold);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.news-article__disclaimer {
    margin: 40px 0 0;
    padding: 18px 22px;
    background: #FFFAF7;
    border-left: 3px solid var(--color-gold);
    border-radius: 0 4px 4px 0;
    font-size: 0.8rem;
    color: var(--color-text-light);
    line-height: 1.85;
    letter-spacing: 0.03em;
}
.news-article__disclaimer p {
    margin: 0 0 6px;
}
.news-article__disclaimer p:last-child { margin: 0; }

.news-article__tags {
    margin: 36px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.news-article__tag {
    display: inline-block;
    padding: 5px 12px;
    background: #FFFAF7;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    font-family: var(--font-ja-serif);
    font-size: 0.74rem;
    color: var(--color-text-light);
    letter-spacing: 0.04em;
}

.news-article__footer-cta {
    margin: 56px 0 0;
    padding: 36px 5%;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8ED 100%);
    border-radius: 8px;
    text-align: center;
}
.news-article__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}
.news-article__cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #761e3b;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-family: var(--font-ja-serif);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 18px -4px rgba(118, 30, 59, 0.3);
}
.news-article__cta-btn:hover {
    background: #5C1F2E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -4px rgba(118, 30, 59, 0.45);
}
.news-article__cta-btn--outline {
    background: transparent;
    color: #761e3b;
    border: 1px solid #761e3b;
    box-shadow: none;
}
.news-article__cta-btn--outline:hover {
    background: #761e3b;
    color: #fff;
}

@media (max-width: 768px) {
    .news-list-section { padding: 40px 5% 72px; }
    .news-list { gap: 24px; grid-template-columns: 1fr; }
    .news-card__body { padding: 18px 20px 22px; }
    .news-card__title { font-size: 1rem; }
    
    .news-article__hero { aspect-ratio: 4 / 3; }
    .news-article__inner { padding: 28px 5% 56px; }
    .news-article__meta { font-size: 0.72rem; gap: 12px; }
    .news-article__title { font-size: 1.3rem; line-height: 1.6; }
    .news-article__lead { font-size: 0.92rem; padding: 20px 0; line-height: 1.9; }
    .news-article__body { font-size: 0.9rem; }
    .news-article__h2 { font-size: 1.08rem; margin: 36px 0 14px; padding-left: 12px; }
    .news-article__h3 { font-size: 0.98rem; margin: 24px 0 10px; }
    .news-article__figure { margin: 24px 0; }
    .news-article__disclaimer { padding: 14px 16px; font-size: 0.76rem; }
    .news-article__footer-cta { padding: 28px 5%; margin-top: 40px; }
    .news-article__cta-btn { font-size: 0.82rem; padding: 11px 22px; }
}

/* ============================================================
   v13.23: 多言語実装に伴う lang-picker 拡張
   ============================================================ */
.lang-picker__item .lang-picker__name[lang="zh-CN"] {
    font-family: "Noto Serif SC", "BIZ UDMincho", "Noto Serif JP", serif;
}
.lang-picker__item .lang-picker__name[lang="fr"] {
    font-family: "Playfair Display", "BIZ UDMincho", serif;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.08em;
}
a.lang-picker__item {
    color: var(--color-text);
    transition: background 0.2s ease, color 0.2s ease;
}
a.lang-picker__item:hover,
a.lang-picker__item:focus-visible {
    background: rgba(176, 141, 87, 0.10);
    color: var(--color-primary-dark);
    opacity: 1;
}

/* ============================================================
   v13.24.1: SP 改行制御 — news-article (cannes-collaboration)
   ============================================================ */
/* v14.5: news-article の word-break / nowrap / SP-only-br ヘルパーを撤廃。
   日本語本文の不自然な改行(nowrap span による行分断、word-break: keep-all による
   英数字混在箇所での意図しない折り返し)を解消。本文はブラウザ既定の折り返しに任せる。 */

/* ============================================================
   v14.17: br.sp / br.pc ユーティリティクラス
   - br.sp: SP のみで改行 (PC では非表示)
   - br.pc: PC のみで改行 (SP では非表示)
   - .nowrap: 改行禁止スコープ(span でラップして使用)
   ============================================================ */
br.sp { display: none; }
br.pc { display: inline; }
.nowrap { white-space: nowrap; }
@media (max-width: 768px) {
  br.sp { display: inline; }
  br.pc { display: none; }
}
