/* ============================================================
   vital-apple-199.css — コンテンツ監査アカデミー
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600;700&family=Figtree:wght@400;500;600&family=Dosis:wght@400;600;700&display=swap');

/* --- TOKENS --- */
:root {
  --bg-white: #ffffff;
  --text-charcoal: #3b3a3a;
  --link-blue: #428eb4;
  --link-blue-hover: #3b3a3a;
  --footer-blue: #1a4d8f;
  --border-beige: #D3CCC0;
  --border-subtle: #E2E2E2;
  --bg-soft: #f7f7f7;
  --muted-grey: #8a8989;
  --star-orange: #FD9A52;
  --error-red: #EB6260;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  color: var(--text-charcoal);
  background: var(--bg-white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--link-blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--link-blue-hover); }
ul { list-style: none; }

/* --- CONTAINER --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* --- ANNOUNCEMENT BAR --- */
.announcement-bar {
  background: var(--text-charcoal);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-family: 'Figtree', sans-serif;
}
.announcement-bar a { color: #fff; text-decoration: underline; }

/* --- HEADER --- */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.logo svg { height: 44px; width: auto; }
.logo span {
  font-family: 'EB Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-charcoal);
  letter-spacing: 0.02em;
}
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  font-family: 'Dosis', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-charcoal);
  transition: color .2s;
}
.site-nav a:hover { color: var(--muted-grey); }
.site-nav a.active { color: var(--link-blue); }
.nav-cta {
  font-family: 'Dosis', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1.5px solid var(--text-charcoal);
  border-radius: 30px;
  padding: 8px 22px;
  color: var(--text-charcoal) !important;
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--text-charcoal); color: #fff !important; }

/* Mobile hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-charcoal); margin: 5px 0;
  transition: all .3s;
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 0; left: -100%; width: 280px; height: 100vh;
  background: var(--bg-white); z-index: 2000; padding: 30px 24px;
  transition: left .3s ease; box-shadow: 2px 0 20px rgba(0,0,0,.12);
  overflow-y: auto;
}
.mobile-drawer.open { left: 0; }
.mobile-drawer .close-btn {
  background: none; border: none; cursor: pointer;
  color: var(--error-red); font-size: 1.5rem; position: absolute; top: 16px; right: 16px;
}
.mobile-drawer nav { margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }
.mobile-drawer nav a {
  font-family: 'Dosis', sans-serif; font-size: 1rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-charcoal);
}
.drawer-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 1999;
}
.drawer-overlay.open { display: block; }

@media (max-width: 1024px) {
  .site-nav { display: none; }
  .hamburger { display: block; }
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: 'Figtree', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 30px;
  padding: 12px 32px;
  cursor: pointer;
  transition: all .25s;
  text-align: center;
}
.btn-outline {
  border: 1.5px solid var(--text-charcoal);
  color: var(--text-charcoal);
  background: transparent;
}
.btn-outline:hover { background: var(--text-charcoal); color: #fff; }
.btn-solid {
  background: var(--link-blue);
  color: #fff;
  border: 1.5px solid var(--link-blue);
}
.btn-solid:hover { background: #356e8c; border-color: #356e8c; color: #fff; }
.btn-dark {
  background: var(--text-charcoal);
  color: #fff;
  border: 1.5px solid var(--text-charcoal);
}
.btn-dark:hover { background: #555; border-color: #555; }

/* --- SECTION BASE --- */
.section { padding: 75px 0; border-bottom: 1px solid var(--border-beige); }
.section:last-of-type { border-bottom: none; }
@media (max-width: 768px) { .section { padding: 50px 0; } }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-charcoal);
  margin-bottom: 14px;
}
h1, h2, h3 { font-family: 'EB Garamond', serif; color: var(--text-charcoal); }
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 500; line-height: 1.2; }
h3 { font-size: 1.4rem; font-weight: 500; }
h4 { font-family: 'EB Garamond', serif; font-size: 1.15rem; font-weight: 500; }

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: none;
}
@media (max-width: 768px) { .hero { min-height: 520px; } }
.hero-bg {
  position: absolute; inset: 0;
  background: url('../picture/hero-bg.webp') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 760px;
  padding: 0 24px;
}
.hero-content .eyebrow { color: rgba(255,255,255,.75); }
.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-content p { font-size: 1.1rem; opacity: .9; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- ABOUT SECTION --- */
.about-section { text-align: center; }
.about-section .inner { max-width: 720px; margin: 0 auto; }
.about-section p { margin-bottom: 18px; line-height: 1.7; }
.script-callout {
  font-family: 'Caveat', 'Segoe Script', cursive;
  font-size: 1.6rem;
  color: var(--text-charcoal);
  margin: 28px 0;
  position: relative;
  display: inline-block;
}
.script-callout::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--border-beige);
  border-radius: 2px;
  margin-top: 4px;
}

/* --- SERVICES / COURSES --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  padding: 32px 28px;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  transition: box-shadow .25s;
}
.service-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); }
.service-card .icon-wrap {
  width: 52px; height: 52px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--link-blue);
  font-size: 1.3rem;
}
.service-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.service-card p { font-size: 0.95rem; color: #555; line-height: 1.65; }

/* --- PRICING SECTION --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  border: 1.5px solid var(--border-subtle);
  border-radius: 6px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color .25s, box-shadow .25s;
  position: relative;
}
.pricing-card.featured {
  border-color: var(--link-blue);
  box-shadow: 0 8px 32px rgba(66,142,180,.15);
}
.pricing-card .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--link-blue); color: #fff;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  padding: 4px 16px; border-radius: 20px;
}
.pricing-card .plan-name {
  font-family: 'EB Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  margin-bottom: 8px;
}
.pricing-card .price {
  font-size: 2.6rem; font-weight: 700;
  color: var(--text-charcoal);
  margin: 16px 0 4px;
  font-family: 'Figtree', sans-serif;
}
.pricing-card .price span { font-size: 1rem; font-weight: 400; color: var(--muted-grey); }
.pricing-card .period { font-size: 0.85rem; color: var(--muted-grey); margin-bottom: 28px; }
.pricing-card ul { text-align: left; margin-bottom: 32px; }
.pricing-card ul li {
  font-size: 0.9rem; padding: 7px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex; align-items: center; gap: 10px;
}
.pricing-card ul li:last-child { border-bottom: none; }
.pricing-card ul li i { color: var(--link-blue); font-size: 0.85rem; }

/* --- WHY US (2-col) --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 20px;
}
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; gap: 32px; } }
.why-img { border-radius: 4px; overflow: hidden; }
.why-img img { width: 100%; height: 420px; object-fit: cover; }
.why-content h2 { margin-bottom: 20px; }
.why-content p { margin-bottom: 16px; line-height: 1.7; }
.why-list { margin: 24px 0 32px; }
.why-list li {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 16px; font-size: 0.95rem; line-height: 1.6;
}
.why-list li i { color: var(--link-blue); margin-top: 3px; flex-shrink: 0; }

/* --- PROCESS STEPS --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 960px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { text-align: center; }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--link-blue);
  color: #fff;
  font-family: 'Dosis', sans-serif;
  font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step-card h4 { margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; color: #555; }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 0;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: 'EB Garamond', serif; font-size: 1.15rem; font-weight: 500;
}
.faq-question i { transition: transform .3s; flex-shrink: 0; color: var(--link-blue); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s;
  font-size: 0.95rem; color: #555; line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding-top: 14px; }

/* --- CTA BANNER --- */
.cta-banner {
  background: var(--text-charcoal);
  color: #fff;
  text-align: center;
  padding: 70px 40px;
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p { opacity: .85; max-width: 560px; margin: 0 auto 32px; }
.cta-banner .btn-solid { background: var(--link-blue); border-color: var(--link-blue); font-size: 0.9rem; padding: 14px 40px; }

/* --- CONTACT SECTION --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
  margin-top: 20px;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info h3 { margin-bottom: 20px; }
.contact-info p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 8px; }
.contact-info i { color: var(--link-blue); width: 20px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.82rem; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-grey); }
.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid var(--border-form, #dedede);
  border-radius: 3px;
  padding: 11px 14px;
  font-family: 'Figtree', sans-serif;
  font-size: 0.95rem;
  color: var(--text-charcoal);
  background: #fff;
  transition: border-color .2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--link-blue); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* --- FOOTER --- */
.site-footer {
  background: var(--footer-blue);
  color: #fff;
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand .logo-footer {
  font-family: 'EB Garamond', serif;
  font-size: 1.4rem; font-weight: 600; color: #fff;
  margin-bottom: 14px; display: block;
}
.footer-brand p { font-size: 0.88rem; opacity: .8; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.9rem;
  transition: background .2s, border-color .2s;
}
.social-links a:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.5); color: #fff; }
.footer-col h5 {
  font-family: 'Dosis', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.8); font-size: 0.88rem; transition: color .2s; }
.footer-col ul li a:hover { color: #86ccee; }
.footer-newsletter input {
  width: 100%; border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08); color: #fff;
  padding: 10px 14px; border-radius: 3px;
  font-family: 'Figtree', sans-serif; font-size: 0.9rem;
  margin-bottom: 10px;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,.5); }
.footer-newsletter input:focus { outline: none; border-color: rgba(255,255,255,.5); }
.footer-newsletter button {
  width: 100%; background: var(--text-charcoal); color: #fff;
  border: none; padding: 11px; border-radius: 3px;
  font-family: 'Dosis', sans-serif; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  cursor: pointer; transition: background .2s;
}
.footer-newsletter button:hover { background: #555; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; opacity: .6; }
.footer-bottom a { color: rgba(255,255,255,.7); font-size: 0.8rem; }
.footer-bottom a:hover { color: #86ccee; }

/* --- COOKIES GDPR --- */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--text-charcoal); color: #fff;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar p { font-size: 0.88rem; opacity: .9; max-width: 700px; }
.cookie-bar p a { color: #86ccee; }
.cookie-bar .cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--link-blue); color: #fff; border: none;
  padding: 9px 24px; border-radius: 20px;
  font-family: 'Dosis', sans-serif; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; cursor: pointer;
  transition: background .2s;
}
.cookie-btn-accept:hover { background: #356e8c; }
.cookie-btn-settings {
  background: transparent; color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.3);
  padding: 9px 20px; border-radius: 20px;
  font-family: 'Dosis', sans-serif; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; cursor: pointer;
  transition: border-color .2s, color .2s;
}
.cookie-btn-settings:hover { border-color: rgba(255,255,255,.6); color: #fff; }

/* --- INNER PAGE HERO --- */
.inner-hero {
  background: var(--bg-soft);
  padding: 60px 0 50px;
  border-bottom: 1px solid var(--border-beige);
}
.inner-hero h1 { margin-bottom: 12px; }
.inner-hero p { max-width: 600px; color: #555; }
.breadcrumb { font-size: 0.8rem; color: var(--muted-grey); margin-bottom: 14px; }
.breadcrumb a { color: var(--link-blue); }
.breadcrumb span { margin: 0 6px; }

/* --- CONTENT PROSE --- */
.prose { max-width: 820px; }
.prose h2 { margin-bottom: 16px; margin-top: 40px; font-size: 1.7rem; }
.prose h3 { margin-bottom: 12px; margin-top: 28px; font-size: 1.25rem; }
.prose p { margin-bottom: 16px; line-height: 1.75; }
.prose ul { margin-bottom: 16px; padding-left: 20px; }
.prose ul li { margin-bottom: 8px; list-style: disc; }
.prose strong { font-weight: 600; }

/* --- OUR VALUES --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 48px;
}
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 36px 32px;
  border-left: 3px solid var(--link-blue);
  background: var(--bg-soft);
}
.value-card .icon-wrap {
  font-size: 1.6rem; color: var(--link-blue); margin-bottom: 16px;
}
.value-card h3 { margin-bottom: 12px; }
.value-card p { font-size: 0.95rem; color: #555; line-height: 1.7; }

/* --- RATES TABLE --- */
.rates-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.rates-table th {
  background: var(--text-charcoal); color: #fff;
  padding: 14px 20px; text-align: left;
  font-family: 'Dosis', sans-serif; font-size: 0.8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
}
.rates-table td { padding: 14px 20px; border-bottom: 1px solid var(--border-subtle); font-size: 0.93rem; }
.rates-table tr:hover td { background: var(--bg-soft); }
.price-tag { font-weight: 700; color: var(--link-blue); font-size: 1.05rem; }

/* --- PAYMENT INFO --- */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 768px) { .payment-methods { grid-template-columns: 1fr 1fr; } }
.payment-card {
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 28px 24px;
  text-align: center;
}
.payment-card i { font-size: 2rem; color: var(--link-blue); margin-bottom: 14px; }
.payment-card h4 { margin-bottom: 8px; }
.payment-card p { font-size: 0.88rem; color: #555; }

/* --- SCROLL REVEAL --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* --- UTILITY --- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.text-blue { color: var(--link-blue); }
.text-muted { color: var(--muted-grey); }
.bg-soft { background: var(--bg-soft); }
