/* ========================================
   季節のことわり — Landing Page Styles v3
   ======================================== */

/* --- CSS Variables --- */
:root {
  --color-deep:       #1a1612;
  --color-ink:        #2c2418;
  --color-earth:      #4a3728;
  --color-wood:       #6b5240;
  --color-gold:       #b8975a;
  --color-gold-deep:  #8f6a44;
  --color-gold-light: #d4b07a;
  --color-gold-pale:  #f0e0c0;
  --color-sage:       #7a8c6e;
  --color-cream:      #faf7f2;
  --color-warm-white: #f5f0e8;
  --color-paper:      #ede8df;
  --color-mist:       #e8e2d8;
  --color-text:       #2c2418;
  --color-text-light: #5c4f3f;
  --color-text-muted: #625447;
  --color-accent:     #8b5e3c;
  /* 自然素材パレット */
  --color-matcha:     #6b7f49;  /* 抹茶 */
  --color-wakakusa:   #8aab4e;  /* 若草 */
  --color-ai:         #2d4a6b;  /* 藍 */
  --color-ume:        #b55d7a;  /* 梅 */
  --color-kaki:       #c85e2a;  /* 柿 */
  --color-washi:      #f7f3ed;  /* 和紙 */
  --font-serif: 'Noto Serif JP', 'Georgia', 'Times New Roman', serif;
  --font-sans:  'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  --font-roman: 'Cormorant Garamond', 'Georgia', serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: 'Noto Serif JP', 'Georgia', serif;
  color: #2c2418;
  background-color: #faf7f2;
  line-height: 2.1;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
.nowrap { white-space: nowrap; }

/* Scrollbar */
::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: #ede8df; }
::-webkit-scrollbar-thumb { background: #b8975a; border-radius: 2px; }

/* ========================================
   LAYOUT UTILITIES
   ======================================== */
.container       { max-width: 860px;  margin: 0 auto; padding: 0 32px; }
.container--wide { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }

/* ========================================
   SHARED DECORATIVE ELEMENTS
   ======================================== */
.section-kamon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}
.section-kamon::before,
.section-kamon::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(107,127,73,0.58), transparent);
  max-width: 80px;
}
.section-kamon span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.88rem;
  letter-spacing: 0.28em;
  color: #50663b;
  text-transform: uppercase;
  font-weight: 600;
}

.section-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.88rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #50663b;
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-title {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: #3d3328;
  margin-bottom: 24px;
  text-wrap: balance;
}
.section-title--white { color: #f5f0e8; }

.section-divider {
  width: 40px;
  height: 2px;
  background: #8aab4e;
  margin: 28px auto;
}
.section-divider--left { margin-left: 0; }

.section-lead {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-weight: 400;
  font-size: 0.93rem;
  line-height: 2.2;
  color: #5c4f3f;
  margin-bottom: 36px;
  word-break: normal;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.gold-line {
  display: flex; align-items: center; gap: 20px; margin: 40px 0;
}
.gold-line::before,
.gold-line::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, #f0e0c0, transparent);
}
.gold-line-symbol { color: #8aab4e; font-size: 0.6rem; letter-spacing: 0.3em; }

.editorial-photo {
  position: relative;
  z-index: 1;
  margin: 44px auto 0;
  max-width: 620px;
}
.editorial-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(184,151,90,0.18);
  box-shadow: 0 18px 48px rgba(60,51,40,0.08);
}
.editorial-photo figcaption {
  margin-top: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: #6b6258;
  text-align: center;
}
.editorial-photo--why {
  max-width: 560px;
}
.editorial-photo--examples {
  max-width: 520px;
  margin-top: 40px;
}
.editorial-photo--bonus {
  max-width: 500px;
  margin-bottom: 48px;
}
.editorial-photo--bonus img {
  aspect-ratio: 3 / 2;
}

/* ========================================
   FADE-IN ANIMATION
   ======================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ========================================
   PROGRESS BAR
   ======================================== */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, #b8975a, #d4b07a);
  z-index: 1001;
  width: 0%;
  transition: width 0.1s linear;
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background-color: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: padding 0.3s ease, background-color 0.3s ease;
}
.site-header.scrolled {
  padding: 12px 40px;
  background-color: rgba(251, 248, 243, 0.97);
}

.header-logo {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-weight: 400;
  font-size: clamp(0.68rem, 1.2vw, 0.78rem);
  line-height: 1.55;
  letter-spacing: 0.08em;
  color: #3d3328;
  flex: 1 1 auto;
  min-width: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  padding: 9px 22px;
  border: 1px solid rgba(107,127,73,0.55);
  color: #6b7f49;
  font-size: 0.73rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  letter-spacing: 0.14em;
  border-radius: 2px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.header-cta:hover { background-color: #6b7f49; color: #fbf8f3; }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #fbf8f3;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107,127,73,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(107,127,73,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(143,106,68,0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* 回転装飾リング */
.hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-deco--circle1 {
  width: 640px; height: 640px;
  border: 1px solid rgba(60,51,40,0.07);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: slow-rotate 60s linear infinite;
}
.hero-deco--circle2 {
  width: 440px; height: 440px;
  border: 1px solid rgba(60,51,40,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: slow-rotate-reverse 45s linear infinite;
}
@keyframes slow-rotate        { to { transform: translate(-50%, -50%) rotate(360deg);  } }
@keyframes slow-rotate-reverse{ to { transform: translate(-50%, -50%) rotate(-360deg); } }
@keyframes season-dot-counter  { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(-360deg); } }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 130px 32px 160px;
  max-width: 820px;
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.86rem;
  letter-spacing: 0.48em;
  color: #6b7f49;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.3s forwards;
  font-weight: 600;
}

.hero-title {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-weight: 400;
  color: #3d3328;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.9s ease 0.6s forwards;
  text-wrap: balance;
}
.hero-title .line-jp {
  display: block;
  font-size: clamp(1.7rem, 4.5vw, 3rem);
  line-height: 1.65;
  letter-spacing: 0.08em;
}
.hero-title .line-jp--accent {
  color: #6b7f49;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.8vw, 2.5rem);
}
.hero-title .line-en {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  color: #8f6a44;
  letter-spacing: 0.28em;
  margin-top: 18px;
  font-weight: 500;
}

.hero-divider {
  width: 56px; height: 1px;
  background: rgba(107,127,73,0.55);
  margin: 36px auto;
  opacity: 0;
  animation: fadeIn 0.9s ease 0.9s forwards;
}

.hero-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: #4a4034;
  letter-spacing: 0.06em;
  line-height: 2.5;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeInUp 0.9s ease 1.1s forwards;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-course-title {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: clamp(1.02rem, 2vw, 1.24rem);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: #3d3328;
  margin: 0 auto 22px;
  opacity: 0;
  animation: fadeInUp 0.9s ease 1s forwards;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeInUp 0.9s ease 1.3s forwards;
}
.hero-badge {
  padding: 6px 18px;
  border: 1px solid rgba(60,51,40,0.18);
  color: #6b7f49;
  font-size: 0.85rem;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.1em;
  border-radius: 20px;
  background: rgba(107,127,73,0.06);
}

.hero-cta-group {
  opacity: 0;
  animation: fadeInUp 0.9s ease 1.5s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn-primary {
  display: inline-block;
  padding: 19px 52px;
  background: linear-gradient(135deg, #b8975a 0%, #d4b07a 100%);
  color: #1a1612;
  font-family: 'Noto Serif JP', Georgia, serif;
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.2em;
  border-radius: 2px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 4px 20px rgba(184,151,90,0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184,151,90,0.28);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 38px;
  border: 1px solid rgba(60,51,40,0.28);
  color: #4a3728;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 0.97rem;
  letter-spacing: 0.14em;
  border-radius: 2px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.btn-secondary:hover {
  background-color: rgba(60,51,40,0.06);
  border-color: rgba(60,51,40,0.45);
}

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}
.hero-scroll span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  color: rgba(60,51,40,0.38);
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(60,51,40,0.28), transparent);
  animation: scroll-anim 2s ease infinite;
}
@keyframes scroll-anim {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ========================================
   KEYFRAMES
   ======================================== */
@keyframes fadeIn    { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp  { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* ========================================
   SECTION — SYMPATHY (light bg)
   ======================================== */
.section-sympathy {
  background-color: #f5f0e8;
  padding: 96px 0;
}
.sympathy-intro {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  line-height: 2.1;
  color: #2c2418;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 400;
}
.sympathy-intro em { font-style: normal; color: #8b5e3c; }

.checklist { display: grid; gap: 0; max-width: 680px; margin: 0 auto 56px; }
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #e8e2d8;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.checklist-item:first-child { border-top: 1px solid #e8e2d8; }
.checklist-item.visible { opacity: 1; transform: translateX(0); }

.checklist-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background-color: #e8eed8;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
  font-size: 0.7rem;
  color: #6b7f49;
}
.checklist-icon::after { content: '✓'; }

.checklist-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.08rem;
  line-height: 2.2;
  color: #5c4f3f;
}

.sympathy-close {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 2.3;
  color: #2c2418;
  padding: 44px 40px;
  background-color: #ede8df;
  border-left: 3px solid #8aab4e;
  border-radius: 0 4px 4px 0;
  text-align: left;
}
.sympathy-close strong { color: #8b5e3c; font-weight: 500; }

/* ========================================
   SECTION — PROBLEM (cream bg)
   ======================================== */
.section-problem {
  background-color: #faf7f2;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.section-problem::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(139,94,60,0.14) 0%, transparent 60%);
  pointer-events: none;
}

.problem-heading {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  font-weight: 400;
  color: #2c2418;
  text-align: center;
  line-height: 1.75;
  margin-bottom: 16px;
  position: relative;
  text-wrap: balance;
}
.problem-heading em { font-style: normal; color: #8b5e3c; }

.problem-subtext {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.02rem;
  color: #625447;
  letter-spacing: 0.06em;
  margin-bottom: 60px;
  text-wrap: balance;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: rgba(184,151,90,0.12);
  border: 1px solid rgba(184,151,90,0.12);
  margin-bottom: 60px;
}
.problem-card {
  background-color: #fff;
  padding: 36px 28px;
  position: relative;
}
.problem-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background-color: #8b5e3c;
  transition: height 0.5s ease;
}
.problem-card.visible::before { height: 100%; }

.problem-card-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  color: rgba(139,94,60,0.52);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 16px;
}
.problem-card-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.02rem;
  color: #5c4f3f;
  line-height: 2.3;
}

.problem-answer {
  padding: 56px 40px;
  background-color: #f0ebe2;
  border: 1px solid rgba(184,151,90,0.18);
  border-radius: 4px;
  text-align: center;
  position: relative;
}
.problem-answer-q {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: #8b5e3c;
  margin-bottom: 28px;
  line-height: 2;
  text-wrap: balance;
}
.problem-answer-a {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.75rem);
  color: #2c2418;
  line-height: 1.95;
  font-weight: 400;
  text-wrap: balance;
}
.problem-answer-a em { font-style: normal; color: #8b5e3c; }

/* ========================================
   SECTION — WHY (light bg)
   ======================================== */
.section-why { background-color: #f5f0e8; padding: 96px 0; }

.why-prose {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}

.why-keywords {
  max-width: 560px;
  margin: 0 auto 44px;
  padding: 18px 24px;
  border-top: 1px solid rgba(107,127,73,0.22);
  border-bottom: 1px solid rgba(107,127,73,0.22);
}
.why-keywords span {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 400;
  color: #4a3728;
  letter-spacing: 0.04em;
  line-height: 2;
}

.why-body {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #5c4f3f;
  line-height: 2.5;
  margin-bottom: 40px;
  text-align: center;
}

.why-examples {
  margin: 52px auto;
  padding: 44px 36px;
  background-color: #ede8df;
  border-left: 3px solid rgba(107,127,73,0.35);
  text-align: left;
  max-width: 480px;
}
.why-examples p {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #2c2418;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

.why-body--question {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 400;
  color: #8b5e3c;
  margin-top: 8px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: #e8e2d8;
  margin: 56px 0;
}
.why-col        { background-color: #f5f0e8; padding: 44px 36px; }
.why-col--dark  { background-color: #e8e2d8; }

.why-col-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.64rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #50663b;
  display: block;
  margin-bottom: 18px;
}
.why-col-title {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 22px;
  line-height: 1.8;
  color: #2c2418;
}
.why-col--dark .why-col-title { color: #2c2418; }

.why-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.why-list li {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 2.3;
  color: #5c4f3f;
  padding-left: 18px;
  position: relative;
}
.why-col--dark .why-list li { color: #5c4f3f; }
.why-list li::before { content: '・'; position: absolute; left: 0; color: #8aab4e; }

.why-conclusion {
  text-align: center;
  padding: 56px 40px;
  background-color: #ede8df;
  border-top: 3px solid #8aab4e;
}
.why-conclusion-text {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  color: #2c2418;
  line-height: 2;
  margin-bottom: 14px;
}
.why-conclusion-text em { font-style: normal; color: #8b5e3c; }
.why-conclusion-sub {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.0rem;
  color: #625447;
  line-height: 2.3;
}

/* ========================================
   SECTION — NIJUUSHI (cream bg)
   ======================================== */
.section-nijuushi { background-color: #faf7f2; padding: 96px 0; }

.nijuushi-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: 72px;
}

/* 円環ビジュアル */
.nijuushi-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nijuushi-circle {
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid #f0e0c0;
  position: relative;
  animation: slow-rotate 30s linear infinite;
}
.nijuushi-circle-inner {
  position: absolute; inset: 22px;
  border-radius: 50%;
  border: 1px dashed rgba(184,151,90,0.28);
  display: flex; align-items: center; justify-content: center;
}
.nijuushi-center-text {
  text-align: center;
  animation: slow-rotate-reverse 30s linear infinite;
}
.nijuushi-center-kanji {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: 1.7rem;
  color: #4a3728;
  line-height: 1.3;
}
.nijuushi-center-en {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: #625447;
  margin-top: 8px;
}
.season-dot {
  position: absolute;
  width: 34px; height: 34px;
  border-radius: 50%;
  background-color: #ede8df;
  border: 1px solid #f0e0c0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem;
  color: #6b5240;
  font-family: 'Noto Serif JP', serif;
  transform: translate(-50%, -50%);
  animation: season-dot-counter 30s linear infinite;
}

.nijuushi-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 2.5;
  color: #5c4f3f;
  margin-bottom: 22px;
}
.nijuushi-desc strong { color: #2c2418; font-weight: 500; }

.nijuushi-quote {
  padding: 28px 36px;
  background-color: #ede8df;
  border-left: 3px solid #8aab4e;
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: 1.1rem;
  line-height: 2.3;
  color: #2c2418;
  margin-top: 36px;
}

/* ========================================
   SECTION — LEARN (paper bg)
   ======================================== */
.section-learn { background-color: #ede8df; padding: 96px 0; }

.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: #e8e2d8;
  margin: 56px 0;
}
.learn-card {
  background-color: #f5f0e8;
  padding: 36px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.learn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(26,22,18,0.1);
  z-index: 1;
  position: relative;
}

.learn-card-season {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #50663b;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.learn-card-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  color: #a58c5e;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 14px;
}
.learn-card-title {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 500;
  color: #2c2418;
  margin-bottom: 16px;
  line-height: 1.8;
}
.learn-card-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.learn-card-list li {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.0rem;
  color: #5c4f3f;
  padding-left: 14px;
  position: relative;
  line-height: 2.2;
}
.learn-card-list li::before { content: '—'; position: absolute; left: 0; color: #8aab4e; }

/* ========================================
   SECTION — BONUS TEASER
   ======================================== */
.section-bonus-teaser {
  background-color: #ede8df;
  padding: 0 0 84px;
}

.bonus-teaser {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) 1.18fr;
  gap: 34px;
  align-items: center;
  background-color: rgba(245,240,232,0.78);
  border: 1px solid rgba(184,151,90,0.28);
  padding: 30px 34px;
}

.bonus-teaser-label {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #6b7f49;
  margin-bottom: 10px;
}

.bonus-teaser-title {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: clamp(1.34rem, 2.4vw, 1.9rem);
  font-weight: 500;
  line-height: 1.55;
  color: #2c2418;
  margin-bottom: 8px;
}

.bonus-teaser-value {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.96rem;
  font-weight: 400;
  color: #5c4f3f;
}

.bonus-teaser-value strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #8b5e3c;
  white-space: nowrap;
}

.bonus-teaser-topics {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.0;
  letter-spacing: 0.04em;
  color: #4e4438;
}

.bonus-teaser-note {
  margin-top: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.9;
  color: #6b6258;
}

.bonus-teaser-cta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.8;
  color: #6b6258;
}

.bonus-teaser-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(107,127,73,0.42);
  color: #4d6331;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.bonus-teaser-link:hover {
  background-color: rgba(107,127,73,0.08);
  border-color: rgba(107,127,73,0.68);
  color: #354722;
}

/* ========================================
   SECTION — EXAMPLES (dark bg)
   ======================================== */
.section-examples {
  background-color: #f5f0e8;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.section-examples::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(184,151,90,0.06) 0%, transparent 60%);
  pointer-events: none;
}
/* section-title default is dark; --white variant only used in truly dark sections */

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 56px 0;
}
.example-card {
  background-color: #fff;
  border: 1px solid rgba(184,151,90,0.18);
  padding: 32px 26px;
  border-radius: 4px;
  transition: background-color 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
}
.example-card:hover {
  background-color: #faf7f2;
  border-color: rgba(184,151,90,0.35);
  transform: translateY(-4px);
}
.example-card-q {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: 1.05rem;
  color: #6b5240;
  margin-bottom: 14px;
  line-height: 2.0;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(184,151,90,0.16);
}
.example-card-q::before {
  content: 'Q.';
  font-family: 'Cormorant Garamond', serif;
  color: #8b5e3c;
  margin-right: 7px;
}
.example-card-a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.0rem;
  color: #5c4f3f;
  line-height: 2.4;
}

.examples-outro {
  text-align: center;
  padding: 56px 40px;
  background-color: #ede8df;
  border: 1px solid rgba(184,151,90,0.14);
  border-radius: 4px;
  position: relative;
}
.examples-outro-text {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  color: #2c2418;
  line-height: 2.1;
}
.examples-outro-text em { font-style: normal; color: #8b5e3c; }

/* ========================================
   SECTION — INSTRUCTOR (cream bg)
   ======================================== */
.section-instructor { background-color: #faf7f2; padding: 96px 0; }

.instructor-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid #e8e2d8;
}
.instructor-block:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.instructor-photo-frame {
  aspect-ratio: 3/4;
  background-color: #ede8df;
  border: 1px solid #e8e2d8;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.instructor-photo-frame img {
  object-position: center top;
}
.instructor-photo-frame::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 36px; height: 36px;
  border-top: 2px solid #8aab4e;
  border-left: 2px solid #8aab4e;
}
.instructor-photo-frame::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 36px; height: 36px;
  border-bottom: 2px solid #8aab4e;
  border-right: 2px solid #8aab4e;
}
.instructor-photo-placeholder {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  color: #625447;
  text-align: center;
  line-height: 2.2;
}
.instructor-photo-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px;
  background-color: #6b7f49;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: #fff;
  text-transform: uppercase;
}

.instructor-tag {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid #c4d4aa;
  color: #50663b;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  border-radius: 2px;
}
.instructor-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.86rem;
  letter-spacing: 0.24em;
  color: #625447;
  font-weight: 600;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.instructor-name-jp {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: #2c2418;
  margin-bottom: 22px;
  line-height: 1.4;
}
.instructor-credentials {
  list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px;
}
.instructor-credentials li {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400; font-size: 1.02rem;
  color: #5c4f3f; padding-left: 18px; position: relative; line-height: 2.2;
}
.instructor-credentials li::before {
  content: '◆';
  position: absolute; left: 0;
  font-size: 0.48rem; color: #8aab4e; top: 6px;
}
.instructor-rare {
  padding: 22px 26px;
  background-color: #ede8df;
  border-left: 3px solid #8aab4e;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400; font-size: 1.02rem;
  line-height: 2.3; color: #5c4f3f;
}
.instructor-rare strong { color: #8b5e3c; font-weight: 500; }
.instructor-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400; font-size: 1.05rem;
  line-height: 2.5; color: #5c4f3f; margin-top: 22px;
}

/* ========================================
   SECTION — FUTURE (paper bg)
   ======================================== */
.section-future { background-color: #ede8df; padding: 96px 0; text-align: center; }

.future-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 56px 0;
}
.future-card {
  padding: 36px 22px;
  background-color: #f5f0e8;
  border: 1px solid #e8e2d8;
  border-radius: 4px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.future-card:hover {
  border-color: #f0e0c0;
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(184,151,90,0.1);
}
.future-card-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background-color: #f0e0c0;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.future-card-title {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #2c2418;
  margin-bottom: 10px;
  line-height: 1.9;
}
.future-card-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400; font-size: 0.97rem;
  color: #625447; line-height: 2.3;
}

/* ========================================
   SECTION — SCHEDULE (warm-white bg)
   ======================================== */
.section-schedule { background-color: #f5f0e8; padding: 96px 0; }

.schedule-list { display: flex; flex-direction: column; gap: 2px; margin: 56px 0; }
.schedule-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 36px 44px;
  background-color: #ede8df;
  position: relative;
  transition: background-color 0.3s ease;
}
.schedule-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px;
  background-color: #e8e2d8;
  transition: background-color 0.3s ease;
}
.schedule-item:hover { background-color: #faf7f2; }
.schedule-item:hover::before { background-color: #6b7f49; }

.schedule-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: #6b7f49;
  text-transform: uppercase;
  text-align: center;
}
.schedule-num strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1;
  color: rgba(80,102,59,0.58);
  margin-top: 4px;
}
.schedule-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.16em;
  color: #6b7f49;
  margin-bottom: 7px;
}
.schedule-season {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
  color: #2c2418;
  margin-bottom: 7px;
}
.schedule-detail {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400; font-size: 1rem;
  color: #4a3728;
  line-height: 2.1;
}
.schedule-badge { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.schedule-badge span {
  display: inline-block;
  padding: 4px 13px;
  background-color: #e8eed8;
  color: #4a5e30;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  border-radius: 20px;
}

/* ========================================
   SECTION — PRICING (dark bg)
   ======================================== */
.section-pricing {
  background-color: #efe7da;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.section-pricing::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(107,127,73,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(143,106,68,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background-color: rgba(0,0,0,0.07);
  margin: 56px 0;
  position: relative;
}
.pricing-card {
  background-color: #fbf8f3;
  padding: 52px 44px;
  position: relative;
}
.pricing-card--recommended { background-color: rgba(107,127,73,0.06); }

.pricing-recommend-badge {
  position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #b8975a, #d4b07a);
  color: #1a1612;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 6px 22px;
  white-space: nowrap;
}

.pricing-card-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  color: #8f6a44;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
  font-weight: 600;
}
.pricing-card-name {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 400;
  color: #3d3328;
  margin-bottom: 28px;
  line-height: 1.9;
}
.pricing-card-name small {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500 !important;
  color: #625447 !important;
  letter-spacing: 0.03em;
}
.pricing-card-price {
  padding: 18px 20px 20px;
  margin: 0 0 26px;
  background: rgba(240,224,192,0.28);
  border-top: 1px solid rgba(184,151,90,0.28);
  border-bottom: 1px solid rgba(184,151,90,0.2);
}
.pricing-price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.8vw, 4rem);
  font-weight: 600;
  color: #2c2418;
  line-height: 1;
  letter-spacing: 0.01em;
}
.pricing-price-tax {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.96rem;
  color: #625447;
  margin-left: 6px;
  font-weight: 500;
}
.pricing-price-per {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #625447;
  margin-top: 8px;
  margin-bottom: 0;
}

.pricing-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 11px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.pricing-features li {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400; font-size: 1.0rem;
  color: #5c4f3f;
  display: flex; align-items: flex-start; gap: 10px; line-height: 2.3;
}
.pricing-features li::before { content: '✓'; color: #b8975a; flex-shrink: 0; font-size: 0.8rem; margin-top: 4px; }

.pricing-value-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
}
.pricing-value-tags li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
  color: #4a3728;
  background: rgba(107,127,73,0.1);
  border: 1px solid rgba(107,127,73,0.22);
  border-radius: 2px;
  padding: 5px 10px;
}

.pricing-total-value {
  margin-bottom: 32px;
  padding: 20px 22px;
  background: rgba(250,247,242,0.72);
  border: 1px solid rgba(184,151,90,0.24);
}
.pricing-total-value-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.05rem;
  color: #625447;
  letter-spacing: 0.06em;
  margin-bottom: 7px;
  font-weight: 500;
}
.pricing-total-value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  color: #8f6a44;
  font-weight: 600;
  text-decoration: none;
}
.pricing-total-value-num span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: #625447;
  text-decoration: none;
  margin-left: 7px;
  font-weight: 500;
}

.btn-pricing {
  display: block; width: 100%;
  padding: 18px 28px; text-align: center;
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  border-radius: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  cursor: pointer; border: none;
}
.btn-pricing--primary {
  background: linear-gradient(135deg, #b8975a 0%, #d4b07a 100%);
  color: #1a1612;
  box-shadow: 0 4px 18px rgba(184,151,90,0.16);
}
.btn-pricing--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,151,90,0.26);
}
.btn-pricing--secondary {
  background: transparent;
  border: 1px solid rgba(60,51,40,0.28);
  color: #4a3728;
}
.btn-pricing--secondary:hover {
  background-color: rgba(60,51,40,0.06);
  border-color: rgba(60,51,40,0.48);
}

.pricing-note {
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400; font-size: 1rem;
  color: #4a3728;
  margin-top: 28px; line-height: 2.3;
  position: relative;
}

/* ========================================
   SECTION — BONUS (warm-white bg)
   ======================================== */
.section-bonus { background-color: #f5f0e8; padding: 96px 0; }

.bonus-intro {
  text-align: center;
  padding: 44px 36px;
  background-color: #ede8df;
  border: 1px solid #e8e2d8;
  margin-bottom: 56px;
}
.bonus-intro-text {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: #2c2418; line-height: 2.2;
}
.bonus-intro-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  color: #8f6a44; margin-top: 14px;
  font-weight: 600;
}
.bonus-intro-value span {
  display: block;
  font-size: 0.98rem;
  color: #625447;
  margin: 8px 0 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
}

.bonus-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: #e8e2d8;
  margin-bottom: 56px;
}
.bonus-item { background-color: #f5f0e8; padding: 32px 26px; }
.bonus-item-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.86rem;
  letter-spacing: 0.22em;
  color: #6b7f49; text-transform: uppercase;
  display: block; margin-bottom: 11px;
  font-weight: 600;
}
.bonus-item-title {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: 1.08rem; font-weight: 500;
  color: #2c2418; margin-bottom: 10px; line-height: 1.9;
}
.bonus-item-price {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.92rem;
  color: #625447;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 16px;
  margin-top: 12px;
  background: rgba(250,247,242,0.72);
  border: 1px solid rgba(184,151,90,0.22);
}
.bonus-item-price span {
  font-weight: 500;
  letter-spacing: 0.06em;
}
.bonus-item-price del {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: #8b5e3c;
  font-weight: 600;
  line-height: 1.1;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(139,94,60,0.72);
}
.bonus-item-price strong {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #50663b;
  border: 1px solid rgba(107,127,73,0.35);
  border-radius: 2px;
  padding: 4px 10px;
  margin-top: 3px;
}
.bonus-item-desc {
  margin-top: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400; font-size: 0.97rem;
  color: #625447; line-height: 2.3;
}

.bonus-total {
  text-align: center;
  padding: 56px 40px;
  background: #f0ebe2;
  border: 1px solid rgba(184,151,90,0.2);
  border-radius: 4px; position: relative; overflow: hidden;
}
.bonus-total-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.78rem; letter-spacing: 0.42em;
  color: #8f6a44; text-transform: uppercase;
  display: block; margin-bottom: 18px;
  font-weight: 600;
}
.bonus-total-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  color: #8f6a44; font-weight: 600;
  margin-bottom: 11px;
}
.bonus-total-text {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: 1.0rem;
  color: #5c4f3f;
  line-height: 2.2;
}

/* ========================================
   SECTION — FAQ (cream bg)
   ======================================== */
.section-faq { background-color: #faf7f2; padding: 96px 0; }

.faq-list { display: flex; flex-direction: column; gap: 2px; margin: 56px 0; }
.faq-item { background-color: #f5f0e8; overflow: hidden; }

.faq-question {
  padding: 26px 36px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  transition: background-color 0.3s ease;
  user-select: none;
}
.faq-question:hover { background-color: #ede8df; }

.faq-q-text {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: 1.07rem;
  font-weight: 500;
  color: #2c2418;
  line-height: 2.0;
  letter-spacing: 0.02em;
}
.faq-q-text::before { content: 'Q. '; color: #6b7f49; font-family: 'Cormorant Garamond', serif; }

.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  position: relative;
  border: 1px solid #e8e2d8;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  margin-top: 2px;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: #6b7f49;
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq-icon::before { width: 9px; height: 1px; }
.faq-icon::after  { width: 1px; height: 9px; }

.faq-item.open .faq-icon { background-color: #6b7f49; border-color: #6b7f49; }
.faq-item.open .faq-icon::before { background-color: #fff; }
.faq-item.open .faq-icon::after  { background-color: #fff; transform: scaleY(0); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.faq-a-inner { padding: 0 36px 28px; border-top: 1px solid #e8e2d8; }
.faq-a-inner p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400; font-size: 1.05rem;
  color: #5c4f3f; line-height: 2.5; padding-top: 22px;
}
.faq-a-inner p::before { content: 'A. '; color: #50663b; font-family: 'Cormorant Garamond', serif; font-weight: 600; }

/* ========================================
   SECTION — FINAL CTA (dark bg)
   ======================================== */
.section-cta {
  background-color: #f6f0e7;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(107,127,73,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: clamp(1.5rem, 3.8vw, 2.5rem);
  font-weight: 400;
  color: #3d3328;
  line-height: 1.85;
  margin-bottom: 22px;
  position: relative;
}
.cta-title em { font-style: normal; color: #6b7f49; }

.cta-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400; font-size: 1.02rem;
  color: #5c4f3f;
  line-height: 2.4; margin-bottom: 56px; position: relative;
}

.cta-price-display { position: relative; margin-bottom: 44px; }
.cta-price-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem; letter-spacing: 0.32em;
  color: #8f6a44; text-transform: uppercase;
  display: block; margin-bottom: 14px;
  font-weight: 600;
}
.cta-price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6.5vw, 4.6rem);
  font-weight: 600; color: #2c2418; line-height: 1;
  letter-spacing: 0.01em;
}
.cta-price-tax {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  color: #625447; margin-top: 10px;
  font-weight: 500;
}
.cta-value-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  color: #4a3728;
  margin-top: 18px;
  padding: 16px 24px;
  border: 1px solid rgba(184,151,90,0.28);
  background: rgba(250,247,242,0.62);
  display: inline-block;
  border-radius: 4px;
  line-height: 2.1;
  font-weight: 400;
}

.cta-btn-group {
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  position: relative; margin-bottom: 44px;
}

.btn-cta-main {
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 22px 68px;
  background: linear-gradient(135deg, #b8975a 0%, #d4b07a 50%, #b8975a 100%);
  background-size: 200% 100%;
  color: #1a1612;
  font-family: 'Noto Serif JP', Georgia, serif;
  font-weight: 600; font-size: 1.02rem;
  letter-spacing: 0.2em; border-radius: 2px;
  transition: background-position 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 24px rgba(184,151,90,0.2);
}
.btn-cta-main:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 12px 38px rgba(184,151,90,0.32);
}

.btn-cta-single {
  display: inline-block;
  padding: 13px 38px;
  border: 1px solid rgba(60,51,40,0.28);
  color: #5c4f3f;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500; font-size: 0.95rem;
  letter-spacing: 0.1em; border-radius: 2px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.btn-cta-single:hover {
  border-color: rgba(60,51,40,0.5);
  color: #3d3328;
}

.cta-guarantee {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 500;
  font-size: 0.97rem;
  color: #625447; position: relative;
}
.cta-guarantee::before { content: '🔒'; font-size: 0.95rem; }
.cta-store-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: #4a3728;
  line-height: 2;
  margin-top: 18px;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background-color: #2c2418;
  padding: 56px 40px;
  text-align: center;
  border-top: 1px solid rgba(184,151,90,0.1);
}
.footer-logo {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-weight: 400; font-size: 0.97rem;
  letter-spacing: 0.28em; color: #d4b07a; margin-bottom: 18px;
}
.footer-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.68rem; letter-spacing: 0.3em;
  color: rgba(184,151,90,0.45); margin-bottom: 36px;
}
.footer-divider { width: 36px; height: 1px; background: rgba(184,151,90,0.28); margin: 0 auto 28px; }
.footer-copy {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem; color: rgba(240,224,192,0.72); letter-spacing: 0.08em;
  font-weight: 400;
}

/* ========================================
   STICKY CTA — MOBILE
   ======================================== */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 999;
  background-color: rgba(251,248,243,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 18px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(184,151,90,0.22);
  box-shadow: 0 -4px 20px rgba(60,51,40,0.08);
}
@media (max-width: 768px) {
  .sticky-cta { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
}
.sticky-cta-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem; color: #5c4f3f; line-height: 1.8;
}
.sticky-cta-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem; color: #b8975a;
}
.sticky-cta-btn {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(135deg, #b8975a 0%, #d4b07a 100%);
  color: #2c2418;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.1em; border-radius: 2px;
  white-space: nowrap; flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(184,151,90,0.2);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 960px) {
  .nijuushi-intro  { grid-template-columns: 1fr; gap: 44px; }
  .nijuushi-visual { display: none; }
  .instructor-block { grid-template-columns: 1fr; gap: 36px; }
  .instructor-photo-frame { max-width: 220px; margin: 0 auto; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .why-grid      { grid-template-columns: 1fr; }
  .learn-grid    { grid-template-columns: 1fr; }
  .bonus-teaser  { grid-template-columns: 1fr; gap: 24px; }
  .examples-grid { grid-template-columns: 1fr 1fr; }
  .future-grid   { grid-template-columns: 1fr 1fr; }
  .bonus-list    { grid-template-columns: 1fr 1fr; }
  .problem-cards { grid-template-columns: 1fr; }
  .pricing-price-amount { font-size: clamp(3.1rem, 9vw, 4.2rem); }
  .cta-price-num { font-size: clamp(3.2rem, 10vw, 4.6rem); }
}

@media (max-width: 600px) {
  .container, .container--wide { padding: 0 18px; }
  .site-header { padding: 13px 18px; }
  .site-header.scrolled { padding: 9px 18px; }
  .hero-content { padding: 110px 18px 70px; }
  section { padding: 64px 0; }
  .section-sympathy, .section-problem, .section-why,
  .section-nijuushi, .section-learn, .section-examples,
  .section-instructor, .section-future, .section-schedule,
  .section-pricing, .section-bonus, .section-faq, .section-cta {
    padding: 64px 0;
  }
  .section-bonus-teaser {
    padding: 0 0 58px;
  }
  .why-col, .pricing-card { padding: 32px 24px; }
  .problem-card { padding: 28px 22px; }
  .bonus-item { padding: 26px 22px; }
  .bonus-teaser {
    padding: 24px 22px;
    gap: 20px;
  }
  .bonus-teaser-label {
    font-size: 0.74rem;
    letter-spacing: 0.04em;
  }
  .bonus-teaser-title {
    font-size: 1.34rem;
  }
  .bonus-teaser-value strong {
    font-size: 1.48rem;
  }
  .bonus-teaser-topics {
    font-size: 0.92rem;
    line-height: 1.9;
    letter-spacing: 0.02em;
  }
  .bonus-teaser-note {
    margin-top: 10px;
    font-size: 0.82rem;
  }
  .bonus-teaser-cta {
    margin-top: 14px;
    gap: 10px;
    font-size: 0.8rem;
  }
  .bonus-teaser-link {
    min-height: 36px;
    padding: 0 16px;
    font-size: 0.78rem;
  }
  .editorial-photo {
    margin-top: 34px;
  }
  .editorial-photo--bonus {
    margin-bottom: 38px;
  }
  .editorial-photo figcaption {
    font-size: 0.74rem;
    letter-spacing: 0.04em;
  }
  .section-title,
  .problem-heading,
  .cta-title {
    letter-spacing: 0.02em;
    text-wrap: balance;
  }
  .section-title {
    font-size: clamp(1.42rem, 6.6vw, 1.85rem);
    line-height: 1.78;
  }
  .problem-heading {
    font-size: clamp(1.5rem, 6.8vw, 1.95rem);
    line-height: 1.82;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-title .line-jp {
    letter-spacing: 0.04em;
    font-size: clamp(1.68rem, 8vw, 2.2rem);
  }
  .hero-subtitle {
    letter-spacing: 0.015em;
    font-size: 0.98rem;
    line-height: 2.32;
    max-width: 330px;
  }
  .why-keywords {
    padding: 16px 18px;
    margin-bottom: 36px;
  }
  .why-keywords span {
    font-size: 1.04rem;
    letter-spacing: 0.02em;
  }
  .pricing-card-price {
    padding: 18px 16px 20px;
  }
  .pricing-price-amount {
    font-size: clamp(3rem, 14vw, 3.8rem);
  }
  .pricing-price-tax {
    display: block;
    margin: 8px 0 0;
  }
  .pricing-value-tags li {
    font-size: 0.82rem;
  }
  .bonus-item-price del {
    font-size: 1.75rem;
  }
  .cta-price-num {
    font-size: clamp(3.2rem, 15vw, 4.1rem);
  }
  .cta-value-note {
    display: block;
    padding: 15px 18px;
    font-size: 0.94rem;
    line-height: 2.05;
  }
  .cta-guarantee {
    flex-wrap: wrap;
    line-height: 1.9;
  }
  .examples-grid { grid-template-columns: 1fr; }
  .future-grid   { grid-template-columns: 1fr; }
  .bonus-list    { grid-template-columns: 1fr; }
  .schedule-item { grid-template-columns: 1fr; gap: 10px; padding: 26px 22px 26px 26px; }
  .schedule-num  { display: none; }
  .schedule-badge { flex-direction: row; flex-wrap: wrap; }
  .btn-cta-main  { padding: 18px 36px; font-size: 1.05rem; }
  .faq-question  { padding: 20px 22px; }
  .faq-q-text {
    font-size: 1rem;
    letter-spacing: 0;
    line-height: 1.95;
  }
  .faq-a-inner   { padding: 0 22px 22px; }
  .pricing-recommend-badge { font-size: 0.75rem; padding: 5px 16px; }
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ========================================
   SECTION — NOT RECIPE (cream)
   ======================================== */
.section-not-recipe {
  background-color: #faf7f2;
  padding: 96px 0;
}
.not-recipe-lead {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: clamp(0.88rem, 1.6vw, 1rem);
  color: #5c4f3f;
  line-height: 2.5;
}
.not-recipe-lead strong {
  font-weight: 500;
  color: #2c2418;
}
.not-recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.not-recipe-card {
  background: #fff;
  border: 1px solid rgba(184,151,90,0.16);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.not-recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(184,151,90,0.12);
}
.not-recipe-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background-color: #ede8df;
}
.not-recipe-card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #ede8df;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  color: #6b7f49;
  letter-spacing: 0.1em;
}
.not-recipe-card-body {
  padding: 24px 22px 28px;
}
.not-recipe-card-food {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.78rem;
  color: #6b7f49;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.not-recipe-card-q {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: 0.9rem;
  color: #2c2418;
  line-height: 1.8;
  margin-bottom: 12px;
  font-weight: 500;
}
.not-recipe-card-a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  color: #6b5240;
  line-height: 2;
}

/* ========================================
   SECTION — JAPANESE INGREDIENTS (warm white)
   ======================================== */
.section-ingredients {
  background-color: #f5f0e8;
  padding: 96px 0;
}
.ingredients-lead {
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: clamp(0.88rem, 1.6vw, 1rem);
  color: #5c4f3f;
  line-height: 2.5;
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ingredient-item {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(184,151,90,0.14);
  transition: transform 0.3s ease;
}
.ingredient-item:hover { transform: translateY(-3px); }
.ingredient-item-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  background-color: #ede8df;
}
.ingredient-item-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background-color: #ede8df;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #6b7f49;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.08em;
}
.ingredient-item-name {
  padding: 10px 12px 12px;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.82rem;
  color: #4a3728;
  text-align: center;
  line-height: 1.5;
}
.ingredient-item-note {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.65rem;
  color: #625447;
  font-weight: 400;
  margin-top: 2px;
}
.ingredients-note {
  margin-top: 48px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  color: #625447;
  line-height: 2.2;
  padding: 28px 40px;
  background: #ede8df;
  border-radius: 4px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   SECTION — INSTRUCTOR ROLES (warm white, within instructor)
   ======================================== */
.instructor-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background-color: rgba(107,127,73,0.12);
  border: 1px solid rgba(107,127,73,0.12);
  border-radius: 4px;
  overflow: hidden;
  margin: 56px 0 80px;
}
.instructor-role-col {
  background-color: #fff;
  padding: 40px 36px;
}
.instructor-role-col:first-child {
  border-right: none;
}
.instructor-role-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: #6b7f49;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.instructor-role-axis {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.05rem;
  color: #2c2418;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.5;
}
.instructor-role-list {
  list-style: none;
  padding: 0; margin: 0;
}
.instructor-role-list li {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  color: #5c4f3f;
  line-height: 1.9;
  padding: 6px 0;
  border-bottom: 1px solid #f0ebe2;
  padding-left: 14px;
  position: relative;
}
.instructor-role-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #8aab4e;
  font-size: 0.7rem;
}

/* ========================================
   SECTION — VOICE / TESTIMONIALS (cream)
   ======================================== */
.section-voice {
  background-color: #faf7f2;
  padding: 96px 0;
}
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.voice-card {
  background: #fff;
  border: 1px solid rgba(184,151,90,0.14);
  border-radius: 4px;
  padding: 36px 32px;
  position: relative;
}
.voice-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4rem;
  color: rgba(184,151,90,0.15);
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}
.voice-card-text {
  font-family: 'Noto Serif JP', Georgia, serif;
  font-size: 0.95rem;
  color: #3d3328;
  line-height: 2.2;
  margin-bottom: 20px;
  padding-top: 20px;
}
.voice-card-meta {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  color: #6b7f49;
  letter-spacing: 0.1em;
}
.voice-note {
  text-align: center;
  margin-top: 40px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 0.82rem;
  color: #4a3728;
  letter-spacing: 0.08em;
}

/* ========================================
   SECTION — FIT CHECK (paper)
   ======================================== */
.section-fitcheck {
  background-color: #ede8df;
  padding: 96px 0;
}
.fitcheck-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.fitcheck-col {
  background: #fff;
  border-radius: 4px;
  padding: 40px 36px;
}
.fitcheck-col--yes {
  border-top: 3px solid #6b7f49;
}
.fitcheck-col--no {
  border-top: 3px solid #c8bfb4;
}
.fitcheck-col-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  color: #2c2418;
  font-weight: 500;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0ebe2;
  letter-spacing: 0.05em;
}
.fitcheck-list {
  list-style: none;
  padding: 0; margin: 0;
}
.fitcheck-list li {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  color: #5c4f3f;
  line-height: 2;
  padding: 9px 0 9px 22px;
  border-bottom: 1px solid #f5f0e8;
  position: relative;
}
.fitcheck-col--yes .fitcheck-list li::before {
  content: '◎';
  position: absolute; left: 0;
  color: #6b7f49;
  font-size: 0.7rem;
}
.fitcheck-col--no .fitcheck-list li::before {
  content: '—';
  position: absolute; left: 0;
  color: #c8bfb4;
  font-size: 0.7rem;
}
.fitcheck-note {
  margin-top: 36px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  color: #625447;
  line-height: 2.2;
  padding: 24px 32px;
  background: #faf7f2;
  border-radius: 4px;
}

/* ========================================
   RESPONSIVE — NEW SECTIONS
   ======================================== */
@media (max-width: 768px) {
  .not-recipe-grid    { grid-template-columns: 1fr; }
  .ingredients-grid   { grid-template-columns: repeat(2, 1fr); }
  .instructor-roles   { grid-template-columns: 1fr; }
  .voice-grid         { grid-template-columns: 1fr; }
  .fitcheck-grid      { grid-template-columns: 1fr; }
}
