/* =============================================
   不登校支援りぼん - Global Stylesheet
   やさしい・柔らかい・未来をイメージ
   ============================================= */

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

:root {
  --green-main: #6aab6a;
  --green-light: #e8f5e8;
  --green-bg: #f4faf4;
  --green-dark: #3d7a3d;
  --orange-accent: #f0965a;
  --orange-light: #fdf0e6;
  --pink-accent: #e8a0b4;
  --pink-light: #fdf2f6;
  --text-main: #3a3a3a;
  --text-light: #6b6b6b;
  --text-white: #ffffff;
  --bg-cream: #fafdf7;
  --bg-white: #ffffff;
  --shadow-soft: 0 4px 20px rgba(106, 171, 106, 0.12);
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text-main);
  background: var(--bg-cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.4;
}

.section-label {
  display: inline-block;
  background: var(--green-main);
  color: var(--text-white);
  font-size: 0.8rem;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: 2rem;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

/* --- Layout --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-main);
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green-main), #8dd48d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-main);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-main);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--orange-accent) !important;
  color: var(--text-white) !important;
  padding: 8px 20px !important;
  border-radius: 24px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: #e0854a !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero Section --- */
/* --- Hero LP Style --- */
.hero-lp {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 70px;
  background: linear-gradient(135deg, #fdf2f6 0%, #fef5f0 30%, #faf8f5 100%);
}

.hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.85;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(253, 242, 246, 1) 0%,
      rgba(253, 242, 246, 0.97) 30%,
      rgba(253, 242, 246, 0.7) 55%,
      rgba(253, 242, 246, 0.2) 80%,
      rgba(253, 242, 246, 0.05) 100%);
  z-index: 2;
}

.hero-lp-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  min-height: calc(78vh - 70px);
  padding-top: 40px;
  padding-bottom: 0;
}

.hero-lp-text {
  flex: 1;
  max-width: 580px;
  padding-bottom: 40px;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.hero-sub-catch {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 2;
  margin-bottom: 24px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--green-light);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  color: var(--text-main);
  line-height: 1.5;
}

.hero-badge strong {
  color: var(--green-dark);
}

.cta-highlight {
  color: #ffd700;
  font-weight: 800;
}

.hero-quote {
  background: linear-gradient(transparent 60%, rgba(232, 112, 138, 0.18) 60%);
  padding: 0 4px;
}

.hero-main-catch {
  font-size: 2.8rem;
  line-height: 1.6;
  margin-bottom: 28px;
  color: var(--text-main);
  font-weight: 800;
}

.hero-catch-line1 {
  font-size: 2.4rem;
  display: block;
}

.hero-catch-line2 {
  font-size: 3.2rem;
  display: block;
}

.hero-catch-line2 em {
  font-style: normal;
  color: #e8708a;
  font-size: 3.6rem;
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 40px;
  line-height: 2;
  font-weight: 500;
}

.hero-cta-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 56px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--text-white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(106, 171, 106, 0.35);
  text-decoration: none;
}

.btn-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(106, 171, 106, 0.45);
}

.btn-hero-cta .cta-main {
  font-size: 1.5rem;
  letter-spacing: 0.12em;
}

.btn-hero-cta .cta-sub {
  font-size: 1.5rem;
  letter-spacing: 0.12em;
}

/* --- Hero Doctor (Right Side) --- */
.hero-lp-doctor {
  position: relative;
  flex-shrink: 0;
  width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: flex-end;
  z-index: 4;
}

.hero-doctor-img {
  width: 300px;
  height: 400px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  position: relative;
}

.hero-doctor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.hero-doctor-label {
  text-align: center;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 0 0 16px 16px;
  width: 100%;
}

.hero-doctor-label .doctor-title {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.hero-doctor-label .doctor-program {
  display: block;
  font-size: 0.85rem;
  color: var(--green-dark);
  line-height: 1.4;
}

.hero-doctor-label .doctor-program strong {
  font-size: 1.1rem;
  color: var(--green-main);
  letter-spacing: 0.05em;
}

/* --- Legacy hero (kept for other pages) --- */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--green-main);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(106, 171, 106, 0.3);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 171, 106, 0.4);
}

.btn-secondary {
  background: var(--text-white);
  color: var(--green-main);
  border: 2px solid var(--green-main);
}

.btn-secondary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--orange-accent);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(240, 150, 90, 0.3);
}

.btn-orange:hover {
  background: #e0854a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 150, 90, 0.4);
}

/* --- Card Styles --- */
.card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

/* --- Section: Why Choose Us --- */
.why-section {
  background: var(--bg-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.why-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--green-bg);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.why-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--green-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--green-dark);
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* --- Section: Program Features --- */
.features-section {
  background: var(--green-bg);
}

.features-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-soft);
}

.feature-num {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--green-main), #8dd48d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.feature-item p {
  font-size: 1rem;
  color: var(--text-light);
}

/* --- Section: Doctor Supervision --- */
.doctor-section {
  background: var(--bg-white);
}

.doctor-content {
  display: flex;
  gap: 48px;
  align-items: center;
}

.doctor-info {
  flex: 1;
}

.doctor-info h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.doctor-info .role {
  color: var(--green-main);
  font-weight: 600;
  margin-bottom: 16px;
}

.doctor-info ul {
  margin-bottom: 20px;
}

.doctor-info ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.doctor-info ul li::before {
  content: "\30FB";
  position: absolute;
  left: 0;
  color: var(--green-main);
  font-weight: 700;
}

.doctor-info .description {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.9;
}

.doctor-photo {
  flex: 0 0 300px;
}

.doctor-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* --- Section: Results --- */
.results-section {
  background: var(--green-bg);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.result-card {
  text-align: center;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  box-shadow: var(--shadow-card);
}

.result-card .number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green-main);
  line-height: 1.2;
}

.result-card .unit {
  font-size: 1rem;
  color: var(--green-main);
}

.result-card .desc {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- Section: Testimonials --- */
.testimonials-section {
  background: var(--bg-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--green-bg);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  font-size: 4rem;
  color: var(--green-main);
  opacity: 0.2;
  position: absolute;
  top: 12px;
  left: 20px;
  line-height: 1;
}

.testimonial-card .quote {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 600;
}

/* --- Section: FAQ --- */
.faq-section {
  background: var(--green-bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-question {
  padding: 20px 28px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--green-light);
}

.faq-question .q-mark {
  color: var(--green-main);
  font-weight: 700;
  margin-right: 12px;
}

.faq-question .arrow {
  font-size: 0.8rem;
  color: var(--green-main);
  transition: transform 0.3s ease;
}

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

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 28px 20px;
}

.faq-answer p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.9;
  padding-left: 28px;
  border-left: 3px solid var(--green-light);
}

/* --- Section: Activities --- */
.activities-section {
  background: var(--bg-white);
}

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

.activity-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.activity-card .thumb {
  height: 200px;
  overflow: hidden;
}

.activity-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.activity-card:hover .thumb img {
  transform: scale(1.05);
}

.activity-card .info {
  padding: 20px;
}

.activity-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.activity-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* --- Section: CTA --- */
.cta-section {
  background: linear-gradient(135deg, var(--green-main) 0%, #8dd48d 100%);
  text-align: center;
  color: var(--text-white);
  padding: 64px 0;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-white);
}

.cta-section p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 28px;
}

.cta-section .btn {
  background: var(--text-white);
  color: var(--green-main);
  font-weight: 700;
}

.cta-section .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* --- Footer --- */
.footer {
  background: var(--green-light);
  color: var(--text-main);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--green-main);
  margin-bottom: 16px;
}

.footer-brand .logo-img {
  width: auto;
  height: auto;
  border-radius: 0;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-links h4 {
  color: var(--green-dark);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: var(--text-light);
  transition: var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-company {
  font-size: 0.85rem;
  margin-top: 16px;
}

.footer-company strong {
  color: var(--text-main);
}

/* --- Course Cards (Program Page) --- */
.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.course-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.course-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.course-card.recommended {
  border: 2px solid var(--orange-accent);
}

.course-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.course-badge.trial {
  background: var(--green-light);
  color: var(--green-dark);
}

.course-badge.main {
  background: var(--orange-light);
  color: var(--orange-accent);
}

.course-badge.peer {
  background: var(--pink-light);
  color: var(--pink-accent);
}

.course-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.course-card .price {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.course-features {
  margin-bottom: 24px;
}

.course-features li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.9rem;
}

.course-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green-main);
  font-weight: 700;
}

/* --- Before/After --- */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.ba-card {
  padding: 32px;
  border-radius: var(--radius-md);
}

.ba-card.before {
  background: #f8f0f0;
  border-left: 4px solid var(--pink-accent);
}

.ba-card.after {
  background: var(--green-light);
  border-left: 4px solid var(--green-main);
}

.ba-card h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.ba-card li {
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.ba-card.before li::before {
  content: "\2717";
  color: var(--pink-accent);
}

.ba-card.after li::before {
  content: "\2713";
  color: var(--green-main);
}

/* --- News Page --- */
.news-hero {
  background: linear-gradient(135deg, var(--green-bg) 0%, #f0f8ec 100%);
  padding: 120px 0 60px;
  text-align: center;
  margin-top: 70px;
}

.news-list {
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: var(--transition);
}

.news-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-soft);
}

.news-date {
  min-width: 100px;
  text-align: center;
}

.news-date .day {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-main);
  line-height: 1.1;
}

.news-date .month {
  font-size: 0.8rem;
  color: var(--text-light);
}

.news-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.news-body p {
  font-size: 1rem;
  color: var(--text-light);
}

.news-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.news-tag.info {
  background: var(--green-light);
  color: var(--green-dark);
}

.news-tag.event {
  background: var(--orange-light);
  color: var(--orange-accent);
}

.news-tag.media {
  background: var(--pink-light);
  color: var(--pink-accent);
}

/* --- Page Hero (for sub pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--green-bg) 0%, #f0f8ec 50%, #fef9f3 100%);
  padding: 120px 0 60px;
  text-align: center;
  margin-top: 70px;
}

.page-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 1rem;
  color: var(--text-light);
}

/* --- Diagnosis Section --- */
.diagnosis-section {
  text-align: center;
  background: var(--green-bg);
}

.diagnosis-box {
  max-width: 500px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.diagnosis-box h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.diagnosis-box p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--green-main);
  padding: 20px 0;
  text-align: center;
}

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

.trust-item {
  color: white;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}

.trust-num small {
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
}

/* --- Insight Section --- */
.insight-section {
  background: var(--bg-white);
}

.insight-banner {
  background: linear-gradient(135deg, #d4888e, #c07080);
  color: white;
  padding: 32px 40px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-bottom: 48px;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.8;
}

.insight-lead {
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 2;
  margin-bottom: 8px;
}

.insight-keyword {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 8px 0;
  text-decoration: underline;
  text-decoration-color: #d4888e;
  text-underline-offset: 6px;
}

.insight-box {
  background: #faf8f5;
  border-left: 4px solid #ccc;
  padding: 24px 32px;
  margin: 24px auto;
  max-width: 400px;
  text-align: center;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 1.05rem;
  line-height: 2;
}

.insight-box ul {
  list-style: none;
  padding: 0;
  margin: 8px 0;
}

.insight-box li {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
}

.insight-arrow {
  font-size: 1.5rem;
  color: #d4888e;
  margin: 16px 0;
}

.insight-highlight {
  font-size: 1.15rem;
  color: var(--text-main);
  line-height: 2;
  margin-bottom: 16px;
}

.insight-result {
  background: #faf8f5;
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 16px auto;
  max-width: 500px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.insight-result p {
  font-size: 1.15rem;
  line-height: 1.8;
}

.big-num {
  font-size: 2.5rem;
  color: #d4888e;
  font-weight: 800;
}

.insight-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 2;
  margin-top: 24px;
}

.insight-conclusion {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.8;
  margin-top: 16px;
}

/* --- Steps Section --- */
.steps-section {
  background: var(--green-bg);
}

.steps-pre {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.steps-list {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.step-item {
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  text-align: center;
}

.step-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-main);
  margin-bottom: 12px;
  font-style: italic;
}

.step-img {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}

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

.step-item h3 {
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.step-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.9;
}

/* --- Before/After Section --- */
.ba-section {
  background: var(--bg-white);
}

.ba-compare {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 800px;
  margin: 40px auto 0;
}

.ba-card {
  flex: 1;
  padding: 32px 28px;
  border-radius: var(--radius-md);
  text-align: left;
}

.ba-card.before {
  background: #f5f0ef;
}

.ba-card.after {
  background: #fdf2f0;
}

.ba-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

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

.ba-card li {
  font-size: 1.05rem;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ba-card.before li::before {
  content: "🌀";
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ba-card.after li::before {
  content: "💡";
  font-size: 0.9rem;
  flex-shrink: 0;
}

.ba-arrow {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: #d4888e;
  padding: 0 16px;
}

/* --- Results Section (updated) --- */
.results-highlight {
  max-width: 600px;
  margin: 0 auto;
}

.result-main-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.result-lead {
  font-size: 1.1rem;
  color: var(--text-main);
}

.result-big {
  font-size: 1.2rem;
  color: var(--text-main);
  margin: 8px 0;
}

.result-big strong {
  font-size: 3.5rem;
  color: #d4888e;
  font-weight: 800;
}

.result-sub {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-top: 16px;
  line-height: 1.8;
}

.result-sub strong {
  color: #d4888e;
  font-size: 1.2rem;
}

.result-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 16px;
  line-height: 1.7;
}

.voice-lead {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.voice-box {
  background: #faf8f5;
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: left;
}

.voice-box h3 {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.voice-hl {
  background: linear-gradient(transparent 60%, rgba(212, 136, 142, 0.2) 60%);
  font-weight: 700;
  color: #d4888e;
}

.voice-box ul {
  padding-left: 20px;
  margin: 12px 0;
}

.voice-box li {
  font-size: 0.95rem;
  line-height: 2;
}

.voice-box>p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* --- Satisfaction Section --- */
.satisfaction-section {
  background: var(--bg-white);
}

.satisfaction-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 32px auto 0;
}

.satisfaction-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #faf8f5;
  border-radius: var(--radius-md);
  padding: 28px;
}

.sat-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--sat-color, #d4888e);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.sat-circle small {
  font-size: 0.9rem;
}

.sat-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.sat-info p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.sat-info strong {
  font-size: 1.6rem;
  color: #d4888e;
  font-weight: 800;
}

.satisfaction-note {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 20px;
}

/* --- Support Section --- */
.support-section {
  background: var(--green-bg);
}

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

.support-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  padding-bottom: 24px;
  transition: var(--transition);
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.support-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.support-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  /* Added rounding */
}

.support-card h3 {
  font-size: 1.05rem;
  color: var(--text-main);
  padding: 16px 16px 8px;
  line-height: 1.6;
}

.support-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 0 16px;
  line-height: 1.8;
}

/* --- Hero Centered (no doctor) --- */
.hero-lp-inner--centered {
  justify-content: flex-start;
}

.hero-lp-inner--centered .hero-lp-text {
  max-width: 600px;
  padding-left: 0;
  margin-left: -40px;
}

/* --- Voices Carousel --- */
.voice-carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 32px;
  padding: 0 40px;
  /* Space for buttons */
}

.voice-track-container {
  overflow: hidden;
  width: 100%;
}

.voice-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-in-out;
}

.voice-card {
  /* Desktop: 3 items visible.
     Computation: (100% - (2 * 20px gap)) / 3 */
  flex: 0 0 calc((100% - 40px) / 3);

  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: left;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--green-light);
  color: var(--green-dark);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--green-main);
  color: white;
}

.prev-btn {
  left: -10px;
}

.next-btn {
  right: -10px;
}

/* Mobile: 1 item visible */
@media (max-width: 768px) {
  .voice-card {
    flex: 0 0 100%;
  }

  .voice-carousel-container {
    padding: 0;
    /* Buttons might overlap or sit on edges */
  }

  .prev-btn {
    left: -16px;
  }

  .next-btn {
    right: -16px;
  }
}

.voice-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: left;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.voice-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.voice-card-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.voice-attr {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}

.voice-card h3 {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 12px;
  color: var(--text-main);
}

.voice-card .voice-summary {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 12px;
}

.voice-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-main);
  transition: var(--transition);
}

.voice-link:hover {
  color: var(--green-dark);
  gap: 8px;
}

.voices-more {
  text-align: center;
  margin-top: 24px;
}

/* --- Horizontal Course Grid (3-column) --- */
.course-horizontal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.course-horizontal-grid .course-detail-card {
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.course-horizontal-grid .course-detail-card.recommended {
  border: 3px solid var(--orange-accent);
  position: relative;
}

.course-horizontal-grid .course-detail-card.recommended::before {
  content: "おすすめ";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-accent);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  z-index: 5;
}

.course-horizontal-grid .course-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-horizontal-grid .btn-course {
  margin-top: auto;
}

/* --- Doctor Introduction Section --- */
.doctor-intro-section {
  background: var(--bg-white);
}

.doctor-intro-content {
  display: flex;
  flex-direction: row-reverse;
  /* Photo to the right */
  align-items: center;
  /* Center vertically */
  justify-content: space-between;
  gap: 40px;
  margin-top: 32px;
  /* Removed overflow: hidden and min-height */
}

.doctor-intro-photo {
  width: 40%;
  max-width: 400px;
  height: auto;
  opacity: 1;
  /* Fully opaque */
  flex-shrink: 0;
  /* Removed absolute positioning */
}

.doctor-intro-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.doctor-intro-info {
  flex: 1;
  position: relative;
  z-index: 1;
  max-width: 70%;
}

.doctor-intro-info h3 {
  font-size: 1.5rem;
  color: var(--text-main);
  margin-bottom: 8px;
}

.doctor-intro-role {
  font-size: 1rem;
  color: var(--green-dark);
  font-weight: 600;
  margin-bottom: 4px;
}

.doctor-intro-alias {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.doctor-intro-profile {
  margin-bottom: 24px;
}

.doctor-intro-profile h4,
.doctor-intro-message h4 {
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-light);
}

.doctor-intro-profile ul {
  list-style: none;
  padding: 0;
}

.doctor-intro-profile li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.doctor-intro-profile li::before {
  content: "\30FB";
  position: absolute;
  left: 0;
  color: var(--green-main);
  font-weight: 700;
}

.doctor-intro-message p {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-main);
  margin-bottom: 12px;
}

/* --- Course Detail Cards --- */
.plan-intro {
  background: #fdfaf0;
  border-radius: var(--radius-md);
  padding: 28px;
  margin: 24px auto;
  max-width: 500px;
  font-size: 1rem;
  line-height: 2;
  text-align: center;
}

.course-detail-card {
  max-width: 600px;
  margin: 32px auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.course-header {
  padding: 20px 28px;
  color: white;
  text-align: center;
}

.course-header .course-catch {
  font-size: 0.85rem;
  margin-bottom: 4px;
  opacity: 0.9;
}

.course-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.trial-bg {
  background: linear-gradient(135deg, #8fb8c9, #a8c8d8);
}

.main-bg {
  background: linear-gradient(135deg, #d4888e, #c07080);
}

.peer-bg {
  background: linear-gradient(135deg, #d4c498, #c8b880);
}

.course-body {
  padding: 28px;
  background: var(--bg-white);
}

.course-body h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 20px 0 8px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.course-body p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-main);
}

.course-body ol {
  padding-left: 28px;
  margin: 8px 0;
}

.course-body li {
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 6px;
}

.course-body li small {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
}

.course-spec {
  font-size: 1.05rem !important;
  margin-bottom: 4px !important;
}

.course-spec small {
  font-size: 0.8rem;
  color: var(--text-light);
}

.course-desc {
  font-size: 0.9rem !important;
  color: var(--text-light) !important;
  font-style: italic;
  margin-bottom: 12px !important;
}

.course-note {
  font-size: 0.8rem !important;
  color: var(--green-dark) !important;
  background: var(--green-light);
  padding: 8px 12px;
  border-radius: 8px;
  margin: 12px 0 20px !important;
}

.btn-course {
  display: block;
  text-align: center;
  padding: 16px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-course:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn-course.trial {
  background: linear-gradient(135deg, #8fb8c9, #7aa8b8);
}

.btn-course.main {
  background: linear-gradient(135deg, #d4888e, #b86870);
}

.btn-course.peer {
  background: linear-gradient(135deg, #c8b880, #b0a060);
  color: #4a3f20;
}

/* --- Course Compare Table --- */
.course-compare {
  max-width: 700px;
  margin: 48px auto 0;
}

.compare-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.compare-table th,
.compare-table td {
  padding: 16px 12px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #eee;
}

.compare-table thead th {
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
}

.th-trial {
  background: #8fb8c9;
}

.th-main {
  background: #d4888e;
}

.th-peer {
  background: #d4c498;
  color: #4a3f20 !important;
}

.compare-table tbody td {
  background: var(--bg-white);
  line-height: 1.6;
}

.compare-table tbody td:first-child {
  background: #faf8f5;
  font-weight: 600;
  color: var(--text-light);
}

.compare-table tbody td small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* --- Voices Detail Page --- */
.voices-detail-section {
  background: var(--green-bg);
  padding: 60px 0;
}

.voice-detail-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 48px;
}

.voice-detail-header {
  background: linear-gradient(135deg, #fdf2f6 0%, #fef5f0 100%);
  padding: 40px;
  text-align: center;
}

.voice-number {
  display: inline-block;
  background: var(--green-main);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.voice-detail-header h2 {
  font-size: 1.6rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 8px;
}

.voice-detail-meta {
  font-size: 0.9rem;
  color: var(--text-light);
}

.voice-detail-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  padding: 40px;
}

.voice-detail-text h3 {
  font-size: 1.15rem;
  color: var(--green-dark);
  margin: 24px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-light);
}

.voice-detail-text h3:first-child {
  margin-top: 0;
}

.voice-detail-text p {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-main);
  margin-bottom: 12px;
}

.voice-detail-video {
  position: sticky;
  top: 100px;
  align-self: start;
}

.voice-detail-video h3 {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 16px;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: #f0f0f0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-coming-soon {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.video-coming-soon span {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.video-coming-soon p {
  font-size: 0.9rem;
}

/* --- Interview Video Section --- */
.interview-video-section {
  background: var(--bg-white);
  padding: 60px 0;
}

.interview-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.interview-video-card {
  display: block;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-decoration: none;
}

.interview-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.interview-video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.interview-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.interview-video-card:hover .interview-video-thumb img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 0, 0, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  padding-left: 4px;
  transition: var(--transition);
}

.interview-video-card:hover .play-overlay {
  background: rgba(255, 0, 0, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.interview-video-info {
  padding: 20px;
  text-align: center;
}

.interview-video-info h3 {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.interview-video-info p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* --- Voice Detail Body Single Column --- */
.voice-detail-body--single {
  display: block;
  padding: 40px;
}

/* --- Latest News Section (Index Page) --- */
.latest-news-section {
  background: var(--bg-white);
  padding: 72px 0;
}

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

.latest-news-card {
  background: var(--green-bg);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.latest-news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.latest-news-card .news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.latest-news-card .news-meta .date {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.latest-news-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-main);
  line-height: 1.6;
}

.latest-news-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
  flex: 1;
}

.latest-news-more {
  text-align: center;
}

.latest-news-more a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-main);
  transition: var(--transition);
}

.latest-news-more a:hover {
  color: var(--green-dark);
  gap: 10px;
}

/* --- Courses Section (Index Page) --- */
.courses-section {
  background: var(--bg-white);
}

/* --- Instagram Section --- */
.instagram-section {
  background: var(--green-bg);
  padding: 48px 0;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--text-white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(131, 58, 180, 0.3);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(131, 58, 180, 0.4);
  opacity: 0.95;
}

/* --- Footer Credit --- */
.footer-credit {
  font-size: 0.8rem;
  opacity: 0.5;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- Decorative Elements --- */
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}

.blob-green {
  background: var(--green-main);
}

.blob-orange {
  background: var(--orange-accent);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  html {
    font-size: 17px;
  }

  .course-grid-3 {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .hero-catch-line1 {
    font-size: 2rem;
  }

  .hero-catch-line2 {
    font-size: 2.6rem;
  }

  .hero-catch-line2 em {
    font-size: 3rem;
  }

  .course-horizontal-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .doctor-intro-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .doctor-intro-info {
    max-width: 100%;
  }

  .doctor-intro-photo {
    position: static;
    transform: none;
    width: 250px;
    opacity: 0.2;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 16px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-lp {
    min-height: auto;
    padding: 32px 0 0;
  }

  .hero-lp-inner {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding-bottom: 0;
    gap: 20px;
  }

  .hero-lp-text {
    padding-bottom: 24px;
    text-align: center;
    max-width: 100%;
    margin-left: 0;
  }

  .hero-bg-image {
    width: 100%;
    height: 50%;
    top: auto;
    bottom: 0;
  }

  .hero-bg-image img {
    opacity: 0.4;
  }

  .hero-bg-overlay {
    background: linear-gradient(180deg,
        rgba(253, 242, 246, 0.98) 0%,
        rgba(253, 242, 246, 0.85) 50%,
        rgba(253, 242, 246, 0.6) 100%);
  }

  .hero-sub-catch {
    font-size: 1.1rem;
  }

  .hero-main-catch {
    font-size: 1.8rem;
  }

  .hero-catch-line1 {
    font-size: 1.5rem;
  }

  .hero-catch-line2 {
    font-size: 2rem;
  }

  .hero-catch-line2 em {
    font-size: 2.3rem;
  }

  .hero-desc {
    font-size: 1.05rem;
  }

  .hero-cta-box {
    justify-content: center;
  }

  .btn-hero-cta {
    padding: 16px 36px;
  }

  .btn-hero-cta .cta-main,
  .btn-hero-cta .cta-sub {
    font-size: 1.2rem;
  }

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

  .course-horizontal-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .doctor-intro-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .doctor-intro-info {
    max-width: 100%;
  }

  .doctor-intro-photo {
    position: static;
    transform: none;
    width: 200px;
    opacity: 1;
    margin: 0 auto 24px;
    /* Added bottom margin for spacing */
  }

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

  .why-grid,
  .results-grid,
  .activities-grid {
    grid-template-columns: 1fr;
  }

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

  .course-grid,
  .course-grid-3 {
    grid-template-columns: 1fr;
  }

  .before-after {
    grid-template-columns: 1fr;
  }

  .doctor-content {
    flex-direction: column;
  }

  .doctor-photo {
    flex: auto;
    max-width: 280px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-item {
    flex-direction: column;
    gap: 12px;
  }

  .news-date {
    text-align: left;
    display: flex;
    gap: 8px;
    align-items: baseline;
  }

  /* Latest News on Index */
  .latest-news-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-badges {
    justify-content: center;
  }

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

  .ba-compare {
    flex-direction: column;
  }

  .ba-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
  }

  .support-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .course-compare {
    overflow-x: auto;
  }

  .voice-detail-body {
    grid-template-columns: 1fr;
  }

  .voice-detail-header {
    padding: 28px 20px;
  }

  .voice-detail-header h2 {
    font-size: 1.3rem;
  }

  .voice-detail-body,
  .voice-detail-body--single {
    padding: 24px 20px;
  }

  .interview-video-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .hero-sub-catch {
    font-size: 1rem;
  }

  .hero-catch-line1 {
    font-size: 1.3rem;
  }

  .hero-catch-line2 {
    font-size: 1.7rem;
  }

  .hero-catch-line2 em {
    font-size: 1.9rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .btn-hero-cta {
    padding: 14px 28px;
  }

  .btn-hero-cta .cta-main,
  .btn-hero-cta .cta-sub {
    font-size: 1.1rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.35rem;
  }
}