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

/* 40代以上向け：読みやすいベースフォントサイズ */
html {
  font-size: 17px; /* スマホ：やや大きめの基準 */
}

@media (min-width: 768px) {
  html {
    font-size: 18px; /* PC：さらに読みやすく */
  }
}

:root {
  /* Light warm theme */
  --background: #f7f5f2;
  --foreground: #3d3a35;
  --card: #fdfcf9;
  --card-foreground: #3d3a35;
  --primary: #8b5a5a;
  --primary-foreground: #fdfcf9;
  --secondary: #f0ece6;
  --secondary-foreground: #4a4640;
  --muted: #e8e4de;
  --muted-foreground: #605c56; /* コントラスト向上：#7a756e → #605c56 */
  --accent: #a87583;
  --border: #e0dbd4;
  --deep-green: #a87583;
  --deep-green-foreground: #fdfcf9;
  --radius: 0.5rem;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.8; /* 行間を広げて読みやすく：1.6 → 1.8 */
  -webkit-font-smoothing: antialiased;
}

.font-serif {
  font-family: 'Noto Serif JP', serif;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-target {
  opacity: 0;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animation-delay-100 { animation-delay: 0.1s; }
.animation-delay-200 { animation-delay: 0.2s; }
.animation-delay-300 { animation-delay: 0.3s; }
.animation-delay-400 { animation-delay: 0.4s; }
.animation-delay-500 { animation-delay: 0.5s; }
.animation-delay-600 { animation-delay: 0.6s; }

/* Full Image Section（画像セクション共通） */
.full-image-section {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0;
}

.full-image-section p {
  margin: 0;
  line-height: 0;
}

.full-image-section img {
  width: 100%;
  height: auto;
  display: block;
}

/* Utility Classes */
.container {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-lg {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.text-xs { font-size: 0.8125rem; } /* 読みやすさ向上：0.75rem → 0.8125rem */
.text-sm { font-size: 0.9375rem; } /* 読みやすさ向上：0.875rem → 0.9375rem */
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }

.leading-relaxed { line-height: 1.8; }
.leading-tight { line-height: 1.25; }

.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }

.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }

.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }

.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-2 { border: 2px solid var(--border); }

.overflow-hidden { overflow: hidden; }

.w-full { width: 100%; }
.h-auto { height: auto; }
.min-h-screen { min-height: 100vh; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.inline-block { display: inline-block; }
.block { display: block; }

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

.relative { position: relative; }
.absolute { position: absolute; }

.z-10 { z-index: 10; }

.uppercase { text-transform: uppercase; }
.line-through { text-decoration: line-through; }

.cursor-pointer { cursor: pointer; }
.transition-colors { transition: color 0.2s, background-color 0.2s, border-color 0.2s; }

/* Color utilities */
.text-primary { color: var(--primary); }

/* Text-primary inside H2 - larger size */
h2 .text-primary {
  font-size: 1.15em;
}
.text-muted-foreground { color: var(--muted-foreground); }
.text-foreground { color: var(--foreground); }
.text-white { color: #ffffff; }

.bg-background { background-color: var(--background); }
.bg-card { background-color: var(--card); }
.bg-secondary { background-color: var(--secondary); }
.bg-deep-green { background-color: var(--deep-green); }

.text-deep-green-foreground { color: var(--deep-green-foreground); }

/* Sections */
section {
  padding: 4rem 1rem;
}

@media (min-width: 768px) {
  section {
    padding: 5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  section {
    padding: 8rem 1.5rem;
  }
}

/* Hero Section */
.hero-section {
  background-color: var(--deep-green);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.hero-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(253, 252, 249, 0.7);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.025em;
  margin-bottom: 2rem;
  color: var(--deep-green-foreground);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-description {
  color: rgba(253, 252, 249, 0.9);
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 2.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1rem;
  }
}

.hero-image {
  width: 100%;
  max-width: 32rem;
  margin: 0 auto 2.5rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-badge {
  font-size: 0.75rem;
  letter-spacing: 0.025em;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: #a15656;
}

/* Hero Section with Full FV Image */
.hero-section-fv {
  min-height: auto;
  padding: 0;
  padding-bottom: 0;
}

.hero-fv-image {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.hero-fv-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* FV Bottom Area (mauve background) */
.hero-fv-bottom {
  background-color: #a07783;
  max-width: 640px;
  margin: 0 auto;
  padding-bottom: 2rem;
}

.hero-fv-herbal {
  margin-top: -7.0rem;
  padding: 0;
  padding-left: 1rem;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 768px){
.hero-fv-herbal {
  margin-top: -11.5rem;
}
}

.hero-fv-herbal img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-section-fv .hero-content {
  padding: 0 1.0rem;
  max-width: 640px;
  margin: 0 auto;
}

/* Enhanced Badges with Icons */
.hero-badges-enhanced {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  margin-bottom: 2rem;
  padding: 0;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 0.5rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
}

.hero-badge-item:last-child {
  grid-column: 1 / -1;
  justify-self: center;
}

.hero-badge-item svg {
  flex-shrink: 0;
  opacity: 0.9;
  width: 16px;
  height: 16px;
}

@media (min-width: 400px) {
  .hero-badge-item {
    padding: 0.5rem 0.875rem;
    font-size: 0.875rem;
    gap: 0.4rem;
  }

  .hero-badge-item svg {
    width: 16px;
    height: 16px;
  }
}

@media (min-width: 768px) {
  .hero-section-fv .hero-content {
    padding: 2rem 1.5rem 0;
  }

  .hero-badges-enhanced {
    gap: 0.75rem;
  }

  .hero-badge-item {
    padding: 0.875rem 1.75rem;
    font-size: 1.0625rem;
    border-radius: 0.5rem;
  }

  .hero-badge-item svg {
    width: 18px;
    height: 18px;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-indicator span {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 252, 249, 0.6);
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, rgba(253, 252, 249, 0.6), transparent);
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background-color: #ffffff;
  color: var(--deep-green);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.btn-accent {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-accent:hover {
  background-color: #7a4e4e;
}

.btn-lg {
  padding: 1.5rem 2.5rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* Icon */
.icon {
  width: 1rem;
  height: 1rem;
  display: inline-block;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-xl {
  width: 2rem;
  height: 2rem;
}

/* Section Titles */
.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.025em;
  line-height: 1.625;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 1.875rem;
  }
}

.section-title-lg {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .section-title-lg {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .section-title-lg {
    font-size: 2.25rem;
  }
}

/* Deep Green Section */
.section-deep-green {
  background-color: var(--deep-green);
}

.section-deep-green .section-title {
  color: var(--deep-green-foreground);
}

.section-deep-green > .container p,
.section-deep-green > .container-lg p {
  color: rgba(253, 252, 249, 0.8);
}

/* Override for form-section inside deep-green (form has white background) */
.section-deep-green .form-section p {
  color: var(--muted-foreground);
}

/* Override for herbal cards inside deep-green (cards have white background) */
.section-deep-green .herbal-card p {
  color: var(--muted-foreground);
}

.section-deep-green .herbal-name {
  color: var(--foreground);
}

.section-deep-green .herbal-reading {
  color: var(--muted-foreground);
}

.section-deep-green .herbal-section-label {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
}

.section-deep-green .herbal-note {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.section-deep-green .herbal-note p {
  color: rgba(253, 252, 249, 0.85);
}

/* Secondary Section */
.section-secondary {
  background-color: rgba(240, 236, 230, 0.3);
}

/* Section with Background Image */
.section-bg-image {
  position: relative;
  background-color: #4a4640;
}

.section-bg-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  height: 100%;
  background-image: url('images/photo_compounding.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  z-index: 1;
}

.section-bg-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(61, 58, 53, 0.5) 0%,
    rgba(61, 58, 53, 0.55) 50%,
    rgba(61, 58, 53, 0.6) 100%
  );
  z-index: 2;
}

@media (max-width: 767px) {
  .section-bg-image::before {
    mask-image: none;
    -webkit-mask-image: none;
    max-width: 100%;
  }
}

.section-bg-image > .container {
  position: relative;
  z-index: 3;
}

.section-bg-image .section-title {
  color: #ffffff;
}

.section-bg-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.section-bg-text p {
  color: rgba(255, 255, 255, 0.85);
}

.text-accent {
  color: #f0c9a6;
}

h2 .text-accent {
  font-size: 1.15em;
}

.card-glass-dark {
  padding: 2rem 1rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: #ffffff;
}

/* Section with Worries Background Image */
.section-bg-worries {
  position: relative;
  background-color: #e6e5e6;
}

.section-bg-worries::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  height: 100%;
  background-image: url('images/photo_worries.jpg');
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  z-index: 1;
}

.section-bg-worries > .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .section-bg-worries::before {
    mask-image: none;
    -webkit-mask-image: none;
    max-width: 100%;
  }
}

.section-bg-worries .section-title {
  color: var(--foreground);
}

.section-worries-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.section-worries-text p {
  color: var(--foreground);
}

.text-primary-dark {
  color: var(--primary);
}

h2 .text-primary-dark {
  font-size: 1.15em;
}

/* Highlight Large Text */
.text-highlight-large {
  color: #ffd700;
  font-size: 1.4em;
  font-weight: 600;
}

/* White Large Text */
.text-white-large {
  color: #ffffff;
  font-size: 1.2em;
  font-weight: 600;
}

.card-worries {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.85);
  border: 2px solid var(--primary);
  color: var(--foreground);
  backdrop-filter: blur(4px);
}

/* Card */
.card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}

.card-highlight {
  background-color: rgba(139, 90, 90, 0.05);
  border: 2px solid var(--primary);
}

.card-glass {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Feature Grid */
.feature-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--deep-green-foreground);
}

.feature-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  color: var(--deep-green-foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .feature-title {
    font-size: 1.125rem;
  }
}

.feature-description {
  font-size: 0.875rem;
  color: rgba(253, 252, 249, 0.8);
  line-height: 1.625;
  white-space: pre-line;
}

/* Icon Box */
.icon-box {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.icon-box-primary {
  background-color: rgba(139, 90, 90, 0.1);
}

.icon-box-primary svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
}

.icon-box-light {
  background-color: rgba(255, 255, 255, 0.2);
}

.icon-box-light svg {
  width: 2rem;
  height: 2rem;
  color: var(--deep-green-foreground);
}

/* Testimonials */
.testimonial-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 2rem;
  }
}

.testimonial-quote {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  color: rgba(255, 255, 255, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-age {
  font-size: 0.875rem;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.testimonial-content {
  font-size: 0.875rem;
  color: var(--deep-green-foreground);
  line-height: 1.625;
}

@media (min-width: 768px) {
  .testimonial-content {
    font-size: 1rem;
  }
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.about-card {
  padding: 1rem;
  border-radius: 0.75rem;
  background-color: var(--card);
  border: 1px solid var(--border);
  text-align: center;
}

.about-card svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary);
  margin: 0 auto 0.5rem;
}

.about-card-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.about-card-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

/* Safety Grid */
.safety-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .safety-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .safety-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.safety-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.safety-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: rgba(139, 90, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.safety-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.safety-title {
  font-weight: 500;
  color: var(--foreground);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.safety-description {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background-color: var(--card);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .faq-question {
    font-size: 1rem;
  }
}

.faq-question:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.faq-question svg {
  width: 1rem;
  height: 1rem;
  color: var(--muted-foreground);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Offer Section */
.offer-price-box {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
}

.offer-original-price {
  font-size: 0.875rem;
  color: rgba(253, 252, 249, 0.7);
  text-decoration: line-through;
  margin-bottom: 0.75rem;
}

.offer-discount-badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.375rem 1rem;
  background-color: #ffffff;
  color: var(--deep-green);
  border-radius: 9999px;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.offer-price {
  font-family: 'Noto Serif JP', serif;
  font-size: 3rem;
  color: #ffffff;
}

@media (min-width: 768px) {
  .offer-price {
    font-size: 3.75rem;
  }
}

.offer-price-note {
  font-size: 0.875rem;
  color: rgba(253, 252, 249, 0.8);
  margin-top: 0.75rem;
}

/* Form */
.form-section {
  background-color: #fdfcf9;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .form-section {
    padding: 2.5rem;
  }
}

.form-group {
  margin-bottom: 2.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.form-label-hint {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 400;
  margin-left: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  background-color: var(--card);
  color: var(--foreground);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(139, 90, 90, 0.2);
}

.form-textarea {
  min-height: 6rem;
  resize: vertical;
}

/* Radio Pills */
.radio-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.radio-pill {
  position: relative;
}

.radio-pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-pill label {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--foreground);
}

.radio-pill label:hover {
  background-color: var(--secondary);
}

.radio-pill input:checked + label {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

/* Radio List */
.radio-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.radio-item input[type="radio"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--primary);
  cursor: pointer;
}

.radio-item label {
  font-size: 0.875rem;
  color: var(--foreground);
  cursor: pointer;
}

/* Checkbox List */
.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.checkbox-item input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--primary);
  cursor: pointer;
}

.checkbox-item label {
  font-size: 0.875rem;
  color: var(--foreground);
  cursor: pointer;
}

/* Form Summary */
.form-summary {
  padding: 1.5rem;
  border-radius: 1rem;
  background-color: rgba(139, 90, 90, 0.05);
  border: 1px solid rgba(139, 90, 90, 0.2);
  margin-bottom: 2rem;
  text-align: center;
}

.form-summary-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-summary-header svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

.form-summary-header span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
}

.form-summary p.form-summary-title {
  color: var(--foreground);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-summary p.form-summary-original {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.form-summary p.form-summary-price {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--primary);
}

.form-summary p.form-summary-price span {
  font-size: 1.5rem;
}

.form-summary p.form-summary-note {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

/* Footer */
footer {
  background-color: var(--deep-green);
  padding: 4rem 1.5rem;
}

.footer-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.footer-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.125rem;
  color: var(--deep-green-foreground);
  margin-bottom: 1.5rem;
  letter-spacing: 0.025em;
}

.footer-info {
  margin-bottom: 2rem;
}

.footer-info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(253, 252, 249, 0.8);
  margin-bottom: 0.5rem;
}

.footer-info-item svg {
  width: 1rem;
  height: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-links a {
  font-size: 0.75rem;
  color: rgba(253, 252, 249, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--deep-green-foreground);
}

.footer-copyright {
  font-size: 0.75rem;
  color: rgba(253, 252, 249, 0.6);
}

/* Aspect Ratio */
.aspect-4-3 {
  aspect-ratio: 4 / 3;
}

.object-cover {
  object-fit: cover;
}

/* List styling */
.check-list {
  display: inline-block;
  text-align: left;
}

.check-list li {
  margin-bottom: 0.25rem;
}

/* Image styling */
.rounded-image {
  border-radius: 1rem;
  overflow: hidden;
}

.rounded-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Circle Tags Grid */
.circle-tags-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 320px;
  margin: 0 auto 1.5rem;
}

.circle-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: center;
  padding: 0.5rem;
  box-shadow: 0 3px 10px rgba(139, 90, 90, 0.25);
}

@media (min-width: 480px) {
  .circle-tags-grid {
    max-width: 360px;
    gap: 1rem;
  }

  .circle-tag {
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  .circle-tags-grid {
    max-width: 400px;
  }

  .circle-tag {
    font-size: 0.9375rem;
  }
}

/* Single Section Image */
.section-image-single {
  max-width: 320px;
  margin: 0 auto 2rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.2);
}

.section-image-single img {
  width: 100%;
  height: auto;
  display: block;
}

.section-deep-green .section-image-single {
  border: 3px solid rgba(255, 255, 255, 0.15);
}

@media (min-width: 768px) {
  .section-image-single {
    max-width: 380px;
    border-radius: 1rem;
  }
}

/* Overlapping Images Layout */
.overlapping-images {
  margin: 2.5rem 0 1rem;
  padding: 0 1rem;
}

.overlapping-images-wrapper {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  padding-bottom: 85%;
}

.overlap-img {
  position: absolute;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.15), 0 4px 10px -5px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--background);
}

.overlap-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlap-img-1 {
  width: 45%;
  aspect-ratio: 4 / 3;
  top: 0;
  left: 0;
  z-index: 2;
}

.overlap-img-2 {
  width: 75%;
  aspect-ratio: 4 / 3;
  top: 20%;
  right: 0;
  z-index: 1;
}

@media (min-width: 480px) {
  .overlapping-images-wrapper {
    padding-bottom: 70%;
  }

  .overlap-img-1 {
    width: 40%;
  }

  .overlap-img-2 {
    width: 70%;
    top: 18%;
  }
}

@media (min-width: 768px) {
  .overlapping-images {
    margin: 3rem 0 1.5rem;
  }

  .overlapping-images-wrapper {
    max-width: 480px;
    padding-bottom: 60%;
  }

  .overlap-img {
    border-radius: 0.75rem;
    border-width: 4px;
  }

  .overlap-img-2 {
    width: 68%;
  }
}

/* Mobile-specific improvements for 40+ readability */
@media (max-width: 767px) {
  /* Increase base font size for better readability */
  body {
    font-size: 18px;
    line-height: 1.8;
  }

  /* Base text size increase */
  p, li, span {
    font-size: 1rem;
    line-height: 1.8;
  }

  /* Larger touch targets for interactive elements */
  .btn {
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
  }

  .btn-lg {
    padding: 1.25rem 2rem;
    font-size: 1.0rem;
  }

  /* Better spacing for form elements */
  .radio-pill label {
    padding: 0.75rem 1.125rem;
    font-size: 1rem;
  }

  .radio-item label,
  .checkbox-item label {
    font-size: 1rem;
  }

  .faq-question {
    padding: 1.125rem;
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 1rem;
    line-height: 1.8;
  }

  /* Improve card padding on mobile */
  .card {
    padding: 1.25rem;
  }

  .card p {
    font-size: 1rem;
    line-height: 1.8;
  }

  /* Better feature card layout on mobile */
  .feature-card {
    padding: 1.5rem;
  }

  .feature-title {
    font-size: 1.0625rem;
  }

  .feature-description {
    font-size: 0.9375rem;
    line-height: 1.8;
  }

  /* Safety card improvements */
  .safety-card {
    padding: 1.25rem;
  }

  .safety-title {
    font-size: 1rem;
  }

  .safety-description {
    font-size: 0.9375rem;
    line-height: 1.7;
  }

  /* Testimonial improvements */
  .testimonial-content {
    font-size: 1rem;
    line-height: 1.8;
  }

  .testimonial-age {
    font-size: 1rem;
  }

  /* About card improvements */
  .about-card {
    padding: 1rem;
  }

  .about-card-label {
    font-size: 0.875rem;
  }

  .about-card-value {
    font-size: 1rem;
  }

  /* Hero section mobile adjustments */
  .hero-title {
    font-size: 1.5rem;
    line-height: 1.6;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.8;
  }

  .hero-subtitle {
    font-size: 0.8125rem;
  }

  .hero-badge {
    font-size: 0.875rem;
  }

  /* Section title mobile size - larger for readability */
  .section-title {
    font-size: 1.25rem;
    line-height: 1.6;
  }

  .section-title-lg {
    font-size: 1.375rem;
    line-height: 1.6;
  }

  /* Form improvements */
  .form-label {
    font-size: 1rem;
  }

  .form-label-hint {
    font-size: 0.875rem;
  }

  .form-input {
    font-size: 1rem;
    padding: 0.875rem 1rem;
  }

  .form-summary-title {
    font-size: 1rem;
  }

  .form-summary-original {
    font-size: 0.875rem;
  }

  .form-summary-price {
    font-size: 1.125rem;
  }

  .form-summary-note {
    font-size: 0.875rem;
  }

  /* Offer section */
  .offer-price {
    font-size: 2.5rem;
  }

  .offer-original-price {
    font-size: 1rem;
  }

  .offer-price-note {
    font-size: 1rem;
  }

  /* Footer improvements */
  .footer-info-item {
    font-size: 1rem;
  }

  .footer-links a {
    font-size: 0.875rem;
  }

  /* Container mobile padding */
  .container,
  .container-lg {
    padding: 0 1.25rem;
  }

  /* General text size utilities override for mobile */
  .text-sm {
    font-size: 0.9375rem;
  }

  .text-xs {
    font-size: 0.875rem;
  }
}



@media only screen and (min-width: 768px){
  .sp_only{
    display: none;
  }
}

@media only screen and (max-width: 768px){
  .pc_only{
    display: none;
  }
}

/* Why Kampo Works Section */
.section-why-kampo {
  background-color: var(--deep-green);
}

.section-why-kampo .section-title {
  color: var(--deep-green-foreground);
}

.section-why-kampo .text-center p {
  color: rgba(253, 252, 249, 0.85);
}

.section-why-kampo .card-highlight {
  background-color: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.section-why-kampo .card-highlight p {
  color: var(--foreground);
}

.section-why-kampo .card-highlight .text-primary {
  color: var(--primary);
}

.why-kampo-label {
  text-align: center;
  margin-bottom: 2rem;
}

.why-kampo-label span {
  display: inline-block;
  font-family: 'Noto Serif JP', serif;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 9999px;
  letter-spacing: 0.05em;
  background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .why-kampo-label span {
    font-size: 1.125rem;
    padding: 0.625rem 2rem;
  }
}

.why-kampo-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .why-kampo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.why-kampo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .why-kampo-card {
    padding: 2rem 1.5rem;
  }
}

.why-kampo-number {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .why-kampo-number {
    font-size: 1.75rem;
  }
}

.why-kampo-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.025em;
}

@media (min-width: 768px) {
  .why-kampo-title {
    font-size: 1.125rem;
  }
}

.why-kampo-description {
  font-size: 0.875rem;
  color: rgba(253, 252, 249, 0.8);
  line-height: 1.75;
}

@media (max-width: 767px) {
  .why-kampo-description {
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

/* Herbal Medicine Examples Section */
.section-herbal {
  background-color: var(--background);
}

.section-herbal .section-title {
  color: var(--foreground);
}

.text-primary-large {
  color: var(--primary);
  font-size: 1.2em;
  font-weight: 600;
}

.herbal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .herbal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
  }
}

.herbal-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  .herbal-card {
    flex-direction: column;
    text-align: center;
  }
}

.herbal-image {
  width: 100px;
  height: 100px;
  min-width: 100px;
  background-color: rgba(139, 90, 90, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  margin: 0.75rem;
}

@media (min-width: 768px) {
  .herbal-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    min-width: auto;
    border-radius: 0;
    margin: 0;
  }
}

.herbal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.herbal-content {
  padding: 0.75rem 1rem 0.75rem 0;
  text-align: left;
  flex: 1;
}

@media (min-width: 768px) {
  .herbal-content {
    padding: 1.5rem 1.25rem 1.75rem;
    text-align: center;
  }
}

.herbal-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .herbal-name {
    font-size: 1.25rem;
  }
}

.herbal-reading {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted-foreground);
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .herbal-reading {
    font-size: 0.8125rem;
  }
}

.herbal-description {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .herbal-description {
    font-size: 0.875rem;
    line-height: 1.75;
  }
}

@media (max-width: 767px) {
  .herbal-description {
    font-size: 0.875rem;
    line-height: 1.75;
  }

  .herbal-description br {
    display: none;
  }
}

.herbal-note {
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(139, 90, 90, 0.06);
  border-radius: 1rem;
  border: 1px solid rgba(139, 90, 90, 0.15);
}

.herbal-note p {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .herbal-note {
    padding: 2rem;
  }

  .herbal-note p {
    font-size: 0.875rem;
  }
}

@media (max-width: 767px) {
  .herbal-note p {
    font-size: 0.9375rem;
  }
}

/* ========================================
   Flow Steps Section
   ======================================== */
.flow-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.25rem;
  width: 100%;
  max-width: 400px;
}

.flow-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
}

.flow-step-content {
  width: 100%;
  text-align: center;
}

.flow-step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.flow-step-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.flow-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  color: var(--muted-foreground);
}

.flow-step-arrow svg {
  opacity: 0.5;
}

.flow-step-notice {
  margin-top: 0.75rem;
  padding: 0.75rem;
  background-color: rgba(139, 90, 90, 0.08);
  border-radius: 0.5rem;
  border-left: 3px solid var(--primary);
}

.flow-step-notice-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.flow-step-notice-text {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* ========================================
   Choice Grid Section
   ======================================== */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

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

.choice-card {
  background-color: var(--card);
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  text-align: center;
}

.choice-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--secondary);
  border-radius: 50%;
  margin: 0 auto 1rem;
}

.choice-icon:has(img) {
  background: none;
  border-radius: 0;
  width: auto;
  height: auto;
  overflow: visible;
}

.choice-icon img {
  width: 5rem;
  height: auto;
  color: var(--primary);
}

.choice-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #4d79ba;
  margin-bottom: 0.5rem;
}

.choice-description {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.choice-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4d79ba;
  text-decoration: none;
  border: 1px solid #4d79ba;
  border-radius: 2rem;
  padding: 0.1rem 1.5rem;
  transition: background-color 0.2s, color 0.2s;
}

.choice-link:hover {
  background-color: #4d79ba;
  color: #fff;
}

@media (max-width: 767px) {
  .choice-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .choice-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    text-align: left;
  }

  .choice-icon {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0;
    flex-shrink: 0;
  }

  .choice-icon svg {
    width: 20px;
    height: 20px;
  }

  .choice-icon img {
    width: 4rem;
  }

  .choice-text {
    min-width: 0;
  }

  .choice-title {
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }

  .choice-description {
    font-size: 0.875rem;
  }

  .choice-description br {
    display: none;
  }
}

/* ========================================
   Order Section
   ======================================== */
.order-box {
  background-color: rgba(253, 252, 249, 0.08);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
}

.order-summary {
  text-align: center;
  margin-bottom: 1.5rem;
}

.order-summary-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(253, 252, 249, 0.15);
  color: var(--deep-green-foreground);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.order-summary-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--deep-green-foreground);
  margin-bottom: 1rem;
}

.order-price-section {
  background-color: rgba(253, 252, 249, 0.1);
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.order-original-price {
  font-size: 0.875rem;
  color: rgba(253, 252, 249, 0.6);
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.order-discount-badge {
  display: inline-block;
  background-color: #fff;
  color: var(--deep-green);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}

.order-price {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--deep-green-foreground);
  line-height: 1.2;
}

.order-price-tax {
  font-size: 0.875rem;
  font-weight: 400;
}

.order-shipping {
  font-size: 0.875rem;
  color: rgba(253, 252, 249, 0.8);
  margin-top: 0.25rem;
}

.order-next-price {
  background-color: rgba(253, 252, 249, 0.05);
  border-radius: 0.5rem;
  padding: 0.75rem;
}

.order-next-price p {
  font-size: 0.875rem;
  color: rgba(253, 252, 249, 0.85);
}

.order-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: rgba(253, 252, 249, 0.05);
  border-radius: 0.75rem;
}

.order-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--deep-green-foreground);
}

.order-benefit-item svg {
  flex-shrink: 0;
  opacity: 0.8;
}

/* Choose Us Grid */
.choose-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .choose-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.choose-us-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.choose-us-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: rgba(139, 90, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.choose-us-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--primary);
}

.choose-us-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.choose-us-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

@media (max-width: 767px) {
  .choose-us-description {
    font-size: 0.9375rem;
  }
}

/* Section with Doctor Background Image */
.section-bg-doctor {
  position: relative;
  background-color: #e6e5e6;
}

.section-bg-doctor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  height: 100%;
  background-image: url('images/bg_doctor.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  z-index: 1;
}

@media (max-width: 767px) {
  .section-bg-doctor::before {
    mask-image: none;
    -webkit-mask-image: none;
    max-width: 100%;
  }
}

.section-bg-doctor > .container {
  position: relative;
  z-index: 3;
}

.section-bg-doctor .section-title {
  color: var(--foreground);
}

/* ========================================
   Section Description
   ======================================== */
.section-desc {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.section-desc-dark {
  color: rgba(253, 252, 249, 0.8);
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* ========================================
   Bridge Section
   ======================================== */
.bridge-text {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 2;
}

.bridge-divider {
  border: none;
  border-top: 1px solid var(--border);
  width: 4rem;
  margin: 1.5rem auto 2rem;
}

/* ========================================
   Additional Text Utilities
   ======================================== */
.text-emphasis {
  color: var(--foreground);
  font-weight: 500;
}

.text-deep-green-emphasis {
  color: var(--deep-green-foreground);
  font-weight: 500;
}

.feature-note-text {
  color: #faed57;
}

/* ========================================
   Card Variants
   ======================================== */
.card-warm {
  background-color: rgba(240, 236, 230, 0.5);
}

.card-centered-text {
  font-size: 1rem;
  text-align: center;
  line-height: 1.8;
  color: var(--foreground);
}

.card-centered-subtext {
  font-size: 0.9375rem;
  text-align: center;
  line-height: 1.8;
  color: var(--muted-foreground);
}

.card-heading {
  font-size: 1rem;
  text-align: center;
  line-height: 1.8;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* ========================================
   Pill Label
   ======================================== */
.pill-label {
  display: inline-block;
  width: 100%;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  background-color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
}

/* ========================================
   Choose Us Icon Image
   ======================================== */
.choose-us-icon img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

/* ========================================
   Glass Card Text
   ======================================== */
.glass-card-text {
  font-size: 1.25rem;
  text-align: center;
  line-height: 1.8;
  font-weight: 500;
}

/* ========================================
   Body Type Cards
   ======================================== */
.body-type-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.body-type-card {
  padding: 1.25rem;
  background-color: rgba(240, 236, 230, 0.5);
}

.body-type-title {
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.5rem;
  text-align: center;
}

.body-type-image {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 1rem auto;
  border-radius: 8px;
}

@media (min-width: 768px) {
  .body-type-image {
    max-width: 320px;
  }
}

.body-type-description {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

/* ========================================
   Herbal Section Label
   ======================================== */
.herbal-section-label {
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* ========================================
   Survey Comparison Cards (Flow Step 1)
   ======================================== */
.survey-comparison {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.survey-card {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-align: center;
}

.survey-card-yes {
  background-color: rgba(139, 104, 78, 0.1);
  border: 1px solid rgba(139, 104, 78, 0.2);
}

.survey-card-no {
  background-color: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.survey-card-label {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.survey-card-yes .survey-card-label {
  color: var(--primary);
}

.survey-card-no .survey-card-label {
  color: var(--muted-foreground);
}

.survey-card-text {
  font-size: 0.8125rem;
  line-height: 1.5;
}

.survey-card-yes .survey-card-text {
  color: var(--foreground);
}

.survey-card-no .survey-card-text {
  color: var(--muted-foreground);
}

.survey-cta-text {
  font-size: 0.8125rem;
  color: var(--primary);
  margin-top: 0.75rem;
  text-align: center;
  font-weight: 500;
}

.survey-fallback {
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgba(107, 114, 95, 0.08);
  border: 1px solid rgba(107, 114, 95, 0.15);
  border-radius: 8px;
}

.survey-fallback-text {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.btn-survey {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  background-color: var(--primary);
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity 0.2s;
}

/* ========================================
   Kampo Improvement Note
   ======================================== */
.kampo-note {
  margin: 3.0rem -1.0rem 0;;
  padding: 1.25rem;
  background-color: rgba(253, 252, 249, 0.08);
  border: 1px solid rgba(253, 252, 249, 0.15);
  border-radius: 8px;
  text-align: center;
}

.kampo-note-heading {
  font-size: 1.125rem;
  color: #ffd54f !important;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.kampo-note-text {
  font-size: 1rem;
  color: rgba(253, 252, 249, 0.8);
  line-height: 1.8;
}

/* ========================================
   Offer Section Elements
   ======================================== */
.offer-badge-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  color: var(--deep-green);
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 500;
}

.offer-product-info {
  margin-bottom: 2rem;
  text-align: center;
}

.offer-product-label {
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  color: rgba(253, 252, 249, 0.7);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.offer-product-name {
  font-size: 1.125rem;
  color: var(--deep-green-foreground);
  font-weight: 500;
}

.offer-product-qty {
  font-size: 0.9375rem;
  color: rgba(253, 252, 249, 0.8);
  margin-top: 0.25rem;
}

.offer-next-box {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: rgba(253, 252, 249, 0.1);
  border-radius: 8px;
  text-align: center;
}

.offer-next-text {
  font-size: 0.8125rem;
  color: rgba(253, 252, 249, 0.8);
  line-height: 1.6;
}

/* Offer Image Block */
.offer-image-block {
  position: relative;
  text-align: center;
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}

.offer-image-bg {
  width: 100%;
  height: auto;
  display: block;
}

.offer-cta-link {
  display: block;
  margin-top: -8.0rem;
  padding: 0 1rem;
}

.offer-cta-btn {
  width: 95%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
  animation: floatBounce 2.5s ease-in-out infinite;
}

@media (min-width: 768px) {
  .offer-cta-link {
    margin-top: -15rem;
  }

  .offer-cta-btn {
    width: 85%;
    max-width: 720px;
  }
}

@keyframes floatBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ========================================
   Section Kokolab Images & CTA
   ======================================== */
.section-kokolab {
  padding-top: 0;
  padding-bottom: 2rem;
}

.section-kokolab-images {
  max-width: 720px;
  margin: 0 auto;
}

.section-kokolab-img {
  width: 100%;
  height: auto;
  display: block;
}

.section-kokolab .container {
  padding-top: 2.5rem;
}

.section-kokolab-cta {
  text-align: center;
  padding: 2rem 1rem 0;
}

.section-kokolab-cta-btn {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
  animation: floatBounce 2.5s ease-in-out infinite;
}

@media (max-width: 767px) {
  .section-kokolab {
    padding: 0 0 1.5rem;
  }

  .section-kokolab-images {
    max-width: 100%;
  }

  .section-kokolab-cta {
    padding: 1.5rem 0.75rem 0;
  }

  .section-kokolab-cta-btn {
    width: 100%;
    max-width: none;
  }
}

/* ========================================
   Disclaimer & Notes
   ======================================== */
.disclaimer-text {
  font-size: 0.8125rem;
  color: rgba(253, 252, 249, 0.6);
  text-align: center;
  margin-top: 2rem;
}

.order-notes {
  font-size: 0.8125rem;
  color: rgba(253, 252, 249, 0.6);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.8;
}








