:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-pale: #F5E9C8;
  --gold-deep: #8B6914;
  --charcoal: #1A1A1A;
  --charcoal-soft: #2C2C2C;
  --warm-white: #FAFAF7;
  --cream: #F7F3E8;
  --text-main: #222222;
  --text-soft: #555555;
  --text-muted: #888888;
  --border: rgba(201,168,76,0.25);
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Serif JP', serif;
  background: var(--warm-white);
  color: var(--text-main);
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26,26,26,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 700;
}

.logo-text {
  color: var(--warm-white);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.logo-text span {
  color: var(--gold-light);
  font-weight: 700;
}

nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

nav a:hover { color: var(--gold-light); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--charcoal);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201,168,76,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 60%),
    linear-gradient(160deg, #1A1A1A 0%, #0D0D0D 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease both;
}

.hero-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.1s ease both;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 2;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  animation: fadeInUp 0.8s 0.3s ease both;
  margin-bottom: 2rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

.author-info strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 0.8s 0.4s ease both;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal);
  padding: 0.9rem 2rem;
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-light);
  padding: 0.9rem 2rem;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  border: 1px solid rgba(201,168,76,0.4);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(201,168,76,0.1);
}

/* Hero Right - Stats */
.hero-right {
  animation: fadeInRight 1s 0.3s ease both;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.2);
}

.stat-box {
  background: rgba(26,26,26,0.95);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: background 0.3s;
}

.stat-box:hover {
  background: rgba(201,168,76,0.08);
}

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-unit {
  font-size: 0.9rem;
  color: var(--gold);
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}

.hero-badge {
  margin-top: 1px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.3);
  border-top: none;
  padding: 1.2rem 1.5rem;
  text-align: center;
}

.hero-badge p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.hero-badge strong {
  color: var(--gold-light);
}

/* ===== SECTIONS ===== */
section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 2;
  max-width: 600px;
}

/* ===== ALARM - なぜ今？ ===== */
.alarm-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.alarm-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.alarm-section .section-title {
  color: var(--warm-white);
}

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

.alarm-section .section-label::before {
  background: var(--gold-light);
}

.alarm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.15);
  margin-top: 3rem;
}

.alarm-card {
  background: var(--charcoal-soft);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.alarm-card:hover {
  background: #333;
}

.alarm-card::before {
  content: attr(data-num);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: rgba(201,168,76,0.08);
  line-height: 1;
}

.alarm-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.alarm-card h3 {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.alarm-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
}

/* ===== COMPARISON ===== */
.comparison-section {
  background: var(--cream);
}

.comparison-table-wrap {
  margin-top: 3rem;
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.comparison-table th {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 1rem 1.2rem;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  white-space: nowrap;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  color: var(--text-soft);
  background: white;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--text-main);
}

.comparison-table tr.highlight td {
  background: linear-gradient(90deg, rgba(201,168,76,0.08), rgba(201,168,76,0.04));
  color: var(--text-main);
  border-left: 3px solid var(--gold);
}

.comparison-table tr.highlight td:first-child {
  color: var(--gold-deep);
}

.badge-best {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  margin-left: 0.5rem;
  letter-spacing: 0.05em;
}

.dot-great { color: #C9A84C; font-size: 1.1rem; }
.dot-mid { color: #888; }
.dot-low { color: #ccc; }

/* ===== GOLD FRUITS ===== */
.fruits-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.fruits-section::after {
  content: '金の果実';
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  font-family: 'Shippori Mincho', serif;
  font-size: 8rem;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
}

.fruits-section .section-title {
  color: var(--warm-white);
}

.fruits-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}

.fruits-left p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 2.2;
  margin-bottom: 1.5rem;
}

.fruits-left strong {
  color: var(--gold-light);
}

.fruits-highlight {
  background: rgba(201,168,76,0.1);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  margin: 1.5rem 0;
}

.fruits-highlight p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* Simulator */
.simulator {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 2rem;
}

.simulator h3 {
  font-size: 0.9rem;
  color: var(--gold-light);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.sim-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 1rem;
}

.sim-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  min-width: 90px;
}

.sim-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  color: white;
  padding: 0.5rem 0.8rem;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.sim-input:focus {
  border-color: var(--gold);
}

.sim-result {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  text-align: center;
}

.sim-total {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: var(--gold-light);
  line-height: 1;
}

.sim-total-unit {
  font-size: 1rem;
  color: var(--gold);
  margin-left: 0.3rem;
}

.sim-breakdown {
  margin-top: 0.8rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

.sim-breakdown span {
  color: rgba(255,255,255,0.6);
  margin: 0 0.5rem;
}

.sim-note {
  margin-top: 0.5rem;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.3);
}

/* ===== STEPS ===== */
.steps-section {
  background: var(--warm-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
  background: rgba(0,0,0,0.06);
}

.step-card {
  display: block;
  background: white;
  padding: 2.5rem 2rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  z-index: 1;
}

.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.step-card h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.step-card ul {
  list-style: none;
  padding: 0;
}

.step-card ul li {
  font-size: 0.95rem;
  color: var(--text-soft);
  padding: 0.4rem 0;
  padding-left: 1rem;
  position: relative;
  line-height: 1.7;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.step-card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.step-card.gold-step {
  background: linear-gradient(160deg, var(--charcoal) 0%, #222 100%);
  border-top: 3px solid var(--gold);
}

.step-card.gold-step .step-num {
  color: var(--gold-light);
}

.step-card.gold-step h3 {
  color: var(--warm-white);
}

.step-card.gold-step ul li {
  color: rgba(255,255,255,0.55);
  border-bottom-color: rgba(255,255,255,0.05);
}

.step-card.gold-step ul li::before {
  color: var(--gold-light);
}

/* ===== METHODS ===== */
.methods-section {
  background: var(--cream);
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.method-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
}

.method-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-gold);
}

.method-card.recommended {
  border-color: var(--gold);
  border-width: 2px;
}

.method-rec-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  letter-spacing: 0.08em;
}

.method-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.method-card h3 {
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.method-card p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.method-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.68rem;
  padding: 0.2rem 0.6rem;
  background: rgba(0,0,0,0.04);
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.tag.gold-tag {
  background: rgba(201,168,76,0.12);
  color: var(--gold-deep);
}

/* ===== SEO / ABOUT ===== */
.about-section {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.2);
}

.about-section .section-title {
  color: var(--warm-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: center;
}

.about-text p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 2.2;
  margin-bottom: 1rem;
}

.about-text strong {
  color: var(--gold-light);
}

.about-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.kw-badge {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-light);
  font-size: 0.72rem;
  padding: 0.35rem 0.8rem;
  letter-spacing: 0.05em;
}

.about-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2.5rem;
}

.about-card-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.about-list {
  list-style: none;
}

.about-list li {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.7;
}

.about-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

/* ===== CTA FINAL ===== */
.cta-section {
  background: linear-gradient(160deg, var(--gold-deep) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
  position: relative;
}

.cta-section p {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.6);
  margin-bottom: 2.5rem;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-dark {
  background: var(--charcoal);
  color: var(--gold-light);
  padding: 1rem 2.5rem;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.btn-white {
  background: rgba(255,255,255,0.9);
  color: var(--charcoal);
  padding: 1rem 2.5rem;
  font-family: 'Noto Serif JP', serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-white:hover {
  background: white;
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background: #0D0D0D;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.footer-brand strong {
  display: block;
  color: var(--gold-light);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  margin-top: 1.5rem;
  text-align: center;
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav { display: none; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { order: -1; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .alarm-grid { grid-template-columns: 1fr; }
  .fruits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .methods-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .comparison-table { font-size: 0.88rem; }
}

/* ===== 高齢者対応 スマホ文字サイズ強化 ===== */
@media(max-width:768px){
  body{font-size:1.05rem;}
  .article-body p{font-size:1.05rem;line-height:2.1;}
  .article-body li{font-size:1rem;line-height:2.1;}
  .article-body h2{font-size:1.35rem;}
  .article-body h3{font-size:1.15rem;}
  .data-table{font-size:.92rem;}
  .data-table th{font-size:.88rem;padding:.8rem .6rem;}
  .data-table td{padding:.8rem .6rem;}
  .box p,.box li{font-size:1rem;}
  .nav-btn{font-size:.95rem;}
  .related-link{font-size:.95rem;}
  .footer-copy{font-size:.85rem;}
  .toc li{font-size:.95rem;}
}
