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

/* Variables */
:root {
  --orange: #FF6B35;
  --teal: #0D7377;
  --teal-dark: #0a4f53;
  --teal-light: #14a8ae;
  --gold: #FFD166;
  --white: #FFFFFF;
  --gray-light: #F8F9FA;
  --gray-mid: #E8E8E8;
  --gray-text: #666666;
  --black: #222222;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  color: var(--black);
  line-height: 1.6;
  font-size: 16px;
}

/* Utility */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--orange);
  text-align: center;
  margin-bottom: 6px;
}
.section-title {
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  line-height: 1.45;
  margin-bottom: 28px;
}
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 32px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(255,107,53,0.35);
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,53,0.45); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 15px 28px;
  border-radius: 32px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.65);
  cursor: pointer;
  transition: background 0.15s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* Section padding */
.section { padding: 56px 20px; }

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-mid);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--orange);
  letter-spacing: 1px;
  text-decoration: none;
}
.navbar-cta {
  font-size: 13px;
  padding: 10px 20px;
  display: none;
}
/* デスクトップ横並びメニュー */
.navbar-menu {
  display: none;
  gap: 4px;
  align-items: center;
}
.navbar-menu a {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.navbar-menu a:hover {
  background: var(--gray-light);
  color: var(--teal);
}
/* ハンバーガーボタン */
.navbar-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.15s;
}
.navbar-hamburger:hover { background: var(--gray-light); }
.navbar-hamburger span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.navbar-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar-hamburger.open span:nth-child(2) { opacity: 0; }
.navbar-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* モバイルドロワーメニュー */
.navbar-drawer {
  display: none;
  position: fixed;
  top: 57px;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-mid);
  z-index: 99;
  flex-direction: column;
  padding: 12px 20px 20px;
  gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.navbar-drawer.open { display: flex; }
.navbar-drawer a {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
}
.navbar-drawer a:hover { background: var(--gray-light); color: var(--teal); }
.navbar-drawer .drawer-cta {
  margin-top: 8px;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  border-radius: 32px;
  box-shadow: 0 4px 14px rgba(255,107,53,0.35);
}
.navbar-drawer .drawer-cta:hover { background: #e85d2a; color: var(--white); }
@media (min-width: 860px) {
  .navbar-menu { display: flex; }
  .navbar-cta { display: inline-block; }
  .navbar-hamburger { display: none; }
  .navbar-drawer { display: none !important; }
}

@media (min-width: 768px) {
  .section { padding: 80px 40px; }
  .section-title { font-size: 28px; }
  body { font-size: 16px; }
  .navbar { padding: 16px 40px; }
  .navbar-logo { font-size: 22px; }
}

/* Hero */
.hero {
  background: linear-gradient(170deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 60px 24px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1200&q=80') center/cover no-repeat;
  opacity: 0.18;
}
.hero > * { position: relative; }
.hero-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 14px;
  letter-spacing: 1px;
}
.hero-badge-gold {
  display: inline-block;
  background: var(--gold);
  color: #7a4800;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 14px;
  letter-spacing: 1px;
}
.hero h1 {
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 16px;
}
.hero h1 .accent { color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub .highlight {
  color: var(--gold);
  font-weight: 700;
}

/* Hero Coupon Main Block */
.hero-coupon-main {
  background: rgba(255,255,255,0.1);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 22px 20px 14px;
  margin: 0 auto 24px;
  max-width: 460px;
  position: relative;
}
.hero-coupon-free {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.hero-coupon-weeks {
  display: block;
  color: var(--gold);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.hero-limited-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 10px;
  margin: 8px 0 10px;
  letter-spacing: 1px;
}
.hero-coupon-or {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  margin: 6px 0;
}
.hero-coupon-intern {
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.hero-coupon-intern strong {
  color: var(--gold);
  font-weight: 900;
}
.hero-coupon-caption {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  margin-top: 8px;
}

/* Contact Form Section */
.contact-section {
  background: var(--gray-light);
}
.contact-wrapper {
  max-width: 560px;
  margin: 0 auto;
}
.line-cta-block {
  background: linear-gradient(135deg, #06C755 0%, #00a040 100%);
  border-radius: 16px;
  padding: 22px 20px 16px;
  text-align: center;
  margin-bottom: 32px;
}
.line-cta-block p {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  margin-top: 10px;
}
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: #06C755;
  font-size: 16px;
  font-weight: 900;
  padding: 14px 28px;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-line:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }
.btn-line-icon { font-size: 22px; line-height: 1; }
.contact-form-box {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.contact-form-box h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 20px;
  text-align: center;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.form-group label .required {
  color: var(--orange);
  font-size: 10px;
  margin-left: 5px;
  font-weight: 700;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--black);
  background: #fff;
  transition: border-color 0.15s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,115,119,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit-btn {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  margin-top: 8px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
}
.form-note {
  font-size: 11px;
  color: var(--gray-text);
  text-align: center;
  margin-top: 12px;
  line-height: 1.7;
}
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: var(--teal);
  font-weight: 700;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-img-wrap {
  max-width: 560px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.hero-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .hero { padding: 88px 40px 72px; }
  .hero h1 { font-size: 40px; }
  .hero-sub { font-size: 16px; }
  .hero-img-wrap img { height: 320px; }
}

/* ===== Coupon Section ===== */
.coupon-section {
  background: linear-gradient(135deg, #fffbea 0%, #fff5e0 100%);
  border-top: 4px solid var(--gold);
}
.coupon-section .section-label { color: var(--orange); }
.coupon-section .section-title { color: var(--black); }
.coupon-guarantee {
  text-align: center;
  margin-bottom: 28px;
}
.coupon-guarantee-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  letter-spacing: 1px;
}
.coupon-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
  align-items: stretch;
}
.coupon-or-divider {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-text);
  padding: 4px 0;
}
.coupon-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 4px 24px rgba(255,107,53,0.13);
  border: 2px solid var(--gold);
  position: relative;
  text-align: center;
}
.coupon-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #7a4800;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 12px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.coupon-icon { font-size: 40px; margin-bottom: 12px; }
.coupon-card h3 {
  font-size: 17px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1.45;
  margin-bottom: 10px;
}
.coupon-duration {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  padding: 8px 24px;
  border-radius: 12px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.coupon-desc {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.6;
}
.coupon-tier-list {
  list-style: none;
  margin: 10px 0 6px;
  text-align: left;
  width: 100%;
}
.coupon-tier-list li {
  font-size: 12px;
  color: var(--black);
  padding: 5px 10px;
  border-left: 3px solid var(--teal);
  margin-bottom: 4px;
  background: var(--gray-light);
  border-radius: 0 4px 4px 0;
  font-weight: 600;
}
.coupon-tier-list li.campaign {
  border-left-color: var(--orange);
  color: var(--orange);
}
.coupon-tier-note {
  font-size: 11px;
  color: var(--gray-text);
  margin-top: 2px;
}

@media (min-width: 640px) {
  .coupon-cards { flex-direction: row; align-items: flex-start; }
  .coupon-or-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    writing-mode: vertical-rl;
    font-size: 12px;
    color: var(--gray-text);
    align-self: center;
  }
}

/* ===== Free Reason Section ===== */
.free-reason-section { background: var(--gray-light); }
.free-reason-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  border-left: 5px solid var(--teal);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.free-reason-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.free-reason-box p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}
.free-reason-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.free-reason-tag {
  background: #E8F7F7;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}

/* ===== Direct Payment Section ===== */
.direct-pay-section {
  background: var(--white);
}
.direct-pay-box {
  max-width: 640px;
  margin: 0 auto;
}
.direct-pay-lead {
  text-align: center;
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 28px;
}
.direct-pay-lead strong {
  color: var(--teal);
  font-weight: 900;
}
.direct-pay-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.direct-pay-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #F0FAF9;
  border: 1.5px solid #C5EAE9;
  border-radius: 14px;
  padding: 18px 20px;
}
.direct-pay-icon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.direct-pay-title {
  font-size: 15px;
  font-weight: 900;
  color: var(--teal-dark);
  margin-bottom: 4px;
}
.direct-pay-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}
.direct-pay-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 10px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
@media (min-width: 640px) {
  .direct-pay-cards { gap: 16px; }
}

/* ===== Schools Section ===== */
.schools-section { background: var(--white); }
.schools-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-text);
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 16px;
  background: var(--gray-light);
  border-radius: 8px;
}
.school-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}
.school-card {
  background: var(--gray-light);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--gray-mid);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.school-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.school-name {
  font-size: 16px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1.3;
}
.school-price {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
  flex-shrink: 0;
  background: #FFF0EB;
  padding: 4px 10px;
  border-radius: 8px;
}
.school-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.school-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 8px;
  background: #E8F7F7;
  color: var(--teal);
}
.school-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}
.school-link {
  font-size: 12px;
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.school-link:hover { text-decoration: underline; }

@media (min-width: 560px) {
  .school-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .school-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* Target */
.target-section { background: #FFF5F0; }
.target-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
}
.target-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  padding: 14px 16px;
  border-radius: 10px;
  border-left: 4px solid var(--orange);
  font-size: 14px;
  line-height: 1.5;
}
.target-check {
  color: var(--orange);
  font-weight: 900;
  font-size: 18px;
  flex-shrink: 0;
  line-height: 1.4;
}

/* Reasons */
.reasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 560px;
  margin: 0 auto;
}
.reason-card {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
}
.reason-icon { font-size: 32px; margin-bottom: 10px; }
.reason-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 6px;
  line-height: 1.4;
}
.reason-desc { font-size: 11px; color: var(--gray-text); line-height: 1.5; }

@media (min-width: 768px) {
  .reasons-grid { grid-template-columns: repeat(4, 1fr); max-width: 800px; }
}

/* Australia */
.australia-section { background: var(--teal); }
.australia-section .section-label { color: var(--gold); }
.australia-section .section-title { color: var(--white); }
.aus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto 28px;
}
.aus-item {
  background: rgba(255,255,255,0.13);
  border-radius: 10px;
  padding: 18px 12px;
  text-align: center;
  color: var(--white);
}
.aus-icon { font-size: 26px; margin-bottom: 8px; }
.aus-name { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.aus-desc { font-size: 11px; opacity: 0.75; line-height: 1.4; }
.aus-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 560px;
  margin: 0 auto;
}
.aus-photo {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}
.aus-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (min-width: 768px) {
  .aus-grid { grid-template-columns: repeat(4, 1fr); max-width: 800px; }
  .aus-photos { max-width: 800px; }
}

/* Support Timeline */
.support-section { background: var(--gray-light); }
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 560px;
  margin: 0 auto;
}
.timeline-item {
  display: flex;
  gap: 18px;
  padding-bottom: 28px;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 20px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--gray-mid);
}
.timeline-dot {
  width: 42px;
  height: 42px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255,107,53,0.3);
}
.timeline-body { padding-top: 6px; }
.timeline-body h3 { font-size: 15px; font-weight: 700; color: var(--teal); margin-bottom: 6px; }
.timeline-body ul { padding-left: 16px; }
.timeline-body li { font-size: 13px; color: var(--gray-text); line-height: 1.6; }

/* Plans */
#plans { scroll-margin-top: 64px; }
.plans-section { background: var(--white); }
.plan-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}
.plan-card {
  border: 2px solid var(--gray-mid);
  border-radius: 16px;
  padding: 24px;
  position: relative;
}
.plan-card.featured { border-color: var(--orange); }
.plan-badge-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.plan-badge {
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 12px;
}
.plan-name { font-size: 18px; font-weight: 700; color: var(--teal); margin-bottom: 4px; }
.plan-duration { font-size: 12px; color: var(--gray-text); margin-bottom: 16px; }
.plan-price { font-size: 32px; font-weight: 900; color: var(--orange); margin-bottom: 4px; }
.plan-price-note { font-size: 12px; color: var(--gray-text); margin-bottom: 16px; }
.plan-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.plan-features li { font-size: 13px; color: var(--black); display: flex; gap: 8px; align-items: flex-start; }
.plan-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.plan-cta { display: block; text-align: center; }

@media (min-width: 768px) {
  .plan-cards { flex-direction: row; max-width: 800px; }
  .plan-card { flex: 1; }
}

/* Testimonials */
.testimonials-section { background: #FFF5F0; }
.testimonial-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--white);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.testimonial-meta { font-size: 12px; color: var(--gray-text); }
.testimonial-tag {
  display: inline-block;
  background: #E8F7F7;
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.testimonial-text { font-size: 13px; color: #444; line-height: 1.7; }

@media (min-width: 768px) {
  .testimonial-cards { flex-direction: row; flex-wrap: wrap; max-width: 800px; }
  .testimonial-card { flex: 1 1 340px; }
}

/* FAQ */
.faq-section { background: var(--white); }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 640px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--gray-mid);
  border-radius: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--gray-light);
  border: none;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.15s;
}
.faq-question:hover { background: #f0f0f0; }
.faq-question .q-mark { color: var(--orange); font-weight: 900; flex-shrink: 0; }
.faq-question .faq-arrow {
  font-size: 12px;
  color: var(--gray-text);
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 14px 20px;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
  border-top: 1px solid var(--gray-mid);
}
.faq-item.open .faq-answer { display: block; }

/* Final CTA */
#contact { scroll-margin-top: 64px; }
.final-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  padding: 64px 24px;
  text-align: center;
}
.final-cta h2 {
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 12px;
}
.final-cta p { color: rgba(255,255,255,0.78); font-size: 14px; margin-bottom: 32px; }
.final-cta-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.final-cta-btns .btn-primary { font-size: 16px; padding: 18px 40px; }
.final-cta-btns .btn-outline { font-size: 14px; }

/* Footer */
footer {
  background: #1a1a1a;
  padding: 32px 20px;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  line-height: 2.2;
}
.footer-logo { color: var(--orange); font-weight: 900; font-size: 18px; margin-bottom: 10px; }
.footer-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 11px; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }

@media (min-width: 768px) {
  .final-cta h2 { font-size: 32px; }
  .final-cta-btns { flex-direction: row; justify-content: center; }
}

/* ===== News / Blog Section ===== */
.news-section {
  background: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 560px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .news-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.news-card {
  background: var(--gray-light);
  border-radius: 14px;
  border: 1px solid var(--gray-mid);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.news-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}

.news-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--gray-mid);
}
.news-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.news-card:hover .news-thumb-img {
  transform: scale(1.04);
}

.news-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

/* カテゴリバッジ */
.news-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  align-self: flex-start;
}
.news-cat-default {
  background: #E8F7F7;
  color: var(--teal);
}
.news-cat-blog {
  background: #FFF0EB;
  color: var(--orange);
}
.news-cat-volunteer {
  background: #FFFBE6;
  color: #7a4800;
}

.news-date {
  font-size: 11px;
  color: var(--gray-text);
  margin: 0;
}

.news-title {
  font-size: 14px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.5;
  margin: 2px 0;
}
.news-title a {
  color: inherit;
  text-decoration: none;
}
.news-title a:hover {
  color: var(--teal);
}

.news-excerpt {
  font-size: 12px;
  color: #666;
  line-height: 1.7;
  flex: 1;
}

.news-more {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
}
.news-more:hover {
  text-decoration: underline;
}
