:root {
  --bg: #fffdf8;
  --bg-soft: #fbf5eb;
  --bg-muted: #f6f1e8;
  --paper: #ffffff;
  --text: #1f211c;
  --muted: #686d61;
  --green: #557747;
  --green-dark: #405f37;
  --green-soft: #e6efe1;
  --sand: #d7bd91;
  --sand-soft: #f1e3cc;
  --line: rgba(85, 119, 71, .22);
  --line-soft: rgba(85, 119, 71, .12);
  --shadow: 0 18px 55px rgba(56, 63, 45, .08);
  --shadow-card: 0 14px 40px rgba(56, 63, 45, .07);
  --radius: 28px;
  --radius-md: 20px;
  --container: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(85, 119, 71, .12);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.logo-mark { width: 42px; height: 42px; display: grid; place-items: center; color: var(--green); }
.logo-mark svg { width: 100%; height: 100%; }
.logo strong {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.05;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.logo small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.main-nav { display: flex; align-items: center; gap: 28px; font-size: 15px; }
.main-nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav-list li { margin: 0; padding: 0; }
.main-nav a { position: relative; padding: 26px 0; color: #2b2d28; }
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--green);
  transition: .2s ease;
}
.main-nav a:hover::after,
.main-nav .current-menu-item > a::after,
.main-nav .current-menu-ancestor > a::after,
.main-nav a.is-active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 650;
  font-size: 15px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 10px 25px rgba(85, 119, 71, .18); }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { border-color: rgba(85, 119, 71, .45); color: var(--green-dark); background: rgba(255,255,255,.65); }
.btn-light { border-color: rgba(85, 119, 71, .28); color: var(--green-dark); background: #fff; min-height: 42px; padding-inline: 18px; }
.btn-small { min-height: 42px; padding-inline: 20px; }
.btn-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--green-dark); font-weight: 700; }
.text-link::after { content: '→'; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
}
.burger span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--green-dark); }

.section { padding: 74px 0; }
.section-tight { padding: 48px 0; }
.section-soft { background: linear-gradient(110deg, #fffdf8 0%, #fbf5eb 100%); }
.section-muted { background: var(--bg-muted); }
.centered { text-align: center; }
.section-heading { max-width: 760px; margin: 0 auto 34px; }
.section-heading h2,
.cta-panel h2,
.form-panel h2,
.split-text h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.02em;
}
.section-heading h2 { font-size: clamp(34px, 4vw, 48px); }
.section-heading p { color: var(--muted); margin-bottom: 0; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--sand);
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}
.lead { color: #42483d; font-size: 18px; max-width: 620px; }

.hero { overflow: hidden; padding: 34px 0 38px; }
.hero-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 26px;
  align-items: center;
}
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(31px, 3.6vw, 46px);
  line-height: 1;
  letter-spacing: -.04em;
  max-width: 720px;
}
.hero h1 span { color: var(--green); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
  max-width: 650px;
}
.stat-item {
  display: grid;
  gap: 3px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.stat-item strong { font-size: 20px; color: var(--green-dark); }
.stat-item span { color: var(--muted); font-size: 14px; line-height: 1.35; }
.hero-photo {
  position: relative;
  justify-self: end;
  width: min(100%, 360px);
  height: 230px;
  min-height: 0;
  border-radius: 34px;
  overflow: visible;
  box-shadow: none;
  isolation: isolate;
  padding: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(244,226,197,.36));
}
.hero-photo::before {
  content: '';
  position: absolute;
  inset: -18px -22px 26px 42px;
  z-index: -1;
  border-radius: 42% 58% 52% 48%;
  background:
    radial-gradient(circle at 28% 30%, rgba(125,187,130,.28), rgba(125,187,130,0) 58%),
    linear-gradient(135deg, rgba(244,226,197,.72), rgba(255,248,239,.24));
  transform: rotate(-4deg);
  pointer-events: none;
}
.hero-photo::after {
  content: '';
  position: absolute;
  left: -14px;
  bottom: 22px;
  width: 82px;
  height: 82px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(111,175,122,.18);
  pointer-events: none;
}
.hero-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 50% 24%;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(31,33,28,.16);
}
.hero-card {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  max-width: 260px;
  padding: 20px;
  background: rgba(255, 253, 248, .86);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.hero-card span { display: block; color: var(--muted); font-size: 13px; }
.hero-card strong { display: block; margin-top: 4px; font-family: var(--serif); font-size: 22px; line-height: 1.15; }

.home .hero-photo {
  width: min(100%, 460px);
  height: 440px;
  padding: 0;
  border-radius: 0 0 0 44px;
  overflow: hidden;
  background: none;
  box-shadow: var(--shadow);
}
.home .hero-photo::before {
  inset: 0;
  z-index: 1;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(255,253,248,.86) 0%, rgba(255,253,248,.10) 36%, rgba(255,253,248,0) 100%);
  transform: none;
}
.home .hero-photo::after { display: none; }
.home .hero-photo img {
  border-radius: 0;
  box-shadow: none;
  object-position: 48% 36%;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.direction-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 28px;
  align-items: center;
  min-height: 230px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.direction-card-warm { background: linear-gradient(135deg, #fff 0%, #fff8ec 100%); }
.icon-circle {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
}
.icon-circle svg { width: 48px; height: 48px; }
.icon-warm { background: var(--sand); }
.direction-card h3,
.service-card h3,
.course-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 500;
}
.direction-card p { color: var(--muted); margin: 0 0 18px; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr) minmax(180px, .55fr);
  gap: 48px;
  align-items: center;
}
.about-grid > * { min-width: 0; }
.about-photo {
  overflow: hidden;
  width: 100%;
  max-width: 420px;
  justify-self: start;
  border-radius: 999px;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 48% 44%; }
.about-text { min-width: 0; }
.about-text h2 { font-size: clamp(36px, 4vw, 58px); }
.about-text p { color: #42483d; max-width: 650px; }
.about-numbers {
  display: grid;
  gap: 26px;
  padding: 26px;
  border-left: 1px solid var(--line);
}
.about-numbers div {
  display: grid;
  gap: 3px;
}
.about-numbers strong { font-size: 20px; color: var(--green-dark); }
.about-numbers span { color: var(--muted); font-size: 14px; line-height: 1.35; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.service-card {
  padding: 26px;
  border: 1px solid rgba(85, 119, 71, .18);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
}
.service-card p { color: var(--muted); margin: 0 0 18px; }
.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 24px;
}
.service-meta { font-size: 14px; }
.price {
  display: block;
  margin: 12px 0 12px;
  color: var(--green-dark);
  font-size: 24px;
  font-weight: 600;
}

.course-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.course-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 22px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}
.course-art {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
  background: var(--green-soft);
}
.course-photo { object-position: 50% 40%; }
.course-card p { color: var(--muted); }

.content-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.content-cards.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.offer-card {
  min-height: 100%;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.offer-card.is-featured { border-color: rgba(85,119,71,.32); box-shadow: 0 18px 55px rgba(85,119,71,.12); }
.offer-image { aspect-ratio: 16 / 9; background: var(--bg-soft); overflow: hidden; }
.offer-image img { width: 100%; height: 100%; object-fit: cover; }
.offer-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.offer-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.offer-icon svg { width: 28px; height: 28px; }
.offer-card h3 { margin: 0; font-family: var(--serif); font-size: 27px; font-weight: 500; line-height: 1.12; }
.offer-meta { margin: 8px 0 14px; color: var(--muted); font-size: 14px; }
.offer-price { color: var(--green-dark); font-family: var(--serif); font-size: 28px; margin: 0 0 12px; }
.offer-text { color: #4a4f43; margin: 0 0 18px; }
.check-list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 9px; }
.check-list li { position: relative; padding-left: 25px; color: #43483d; font-size: 15px; }
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}
.offer-footer { margin-top: auto; display: flex; align-items: center; justify-content: flex-start; gap: 16px; }
.label { display: inline-flex; align-items: center; min-height: 28px; padding: 0 11px; border-radius: 999px; background: var(--sand-soft); color: #5d4f35; font-size: 12px; font-weight: 750; }

.compare-wrap { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-card); background: #fff; border: 1px solid var(--line-soft); }
.compare-table { width: 100%; min-width: 780px; border-collapse: collapse; }
.compare-table th,
.compare-table td { padding: 18px 20px; border-bottom: 1px solid rgba(85,119,71,.12); vertical-align: top; }
.compare-table tr:last-child th,
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table th { text-align: left; width: 180px; color: var(--green-dark); font-weight: 760; background: rgba(230,239,225,.55); }
.compare-table thead th { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--text); background: var(--bg-soft); }
.compare-table thead th:first-child { color: var(--green-dark); font-family: var(--sans); font-size: 14px; font-weight: 750; }

.chip-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.chip {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow-card);
}
.chip strong { display: block; line-height: 1.25; }
.chip span { display: block; color: var(--muted); font-size: 14px; margin-top: 6px; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 26px;
  min-height: 185px;
  box-shadow: var(--shadow-card);
}
.step-number { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--green); color: #fff; font-weight: 800; margin-bottom: 18px; }
.step h3 { margin: 0 0 8px; font-size: 19px; }
.step p { margin: 0; color: var(--muted); }

.split-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 24px; align-items: stretch; }
.faq-panel,
.contact-panel,
.cta-panel,
.form-panel,
.split-text {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.faq-panel { padding: 28px; }
.faq-item { border-bottom: 1px solid rgba(85,119,71,.12); }
.faq-item:last-child { border-bottom: 0; }
.faq-question {
  width: 100%;
  min-height: 58px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
}
.faq-question::after { content: '+'; color: var(--green-dark); font-size: 22px; }
.faq-item.is-open .faq-question::after { content: '–'; }
.faq-answer { display: none; padding: 0 24px 18px 0; color: var(--muted); }
.faq-item.is-open .faq-answer { display: block; }
.contact-panel { padding: 34px; background: linear-gradient(135deg, #fff 0%, #eef5e9 100%); }
.contact-panel h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 31px; font-weight: 500; }
.contact-panel p { color: var(--muted); margin: 0 0 24px; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.cta-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 22px; align-items: stretch; }
.cta-panel { overflow: hidden; display: grid; grid-template-columns: .76fr 1.24fr; }
.cta-image { min-height: 300px; background: var(--bg-soft); }
.cta-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cta-text { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.cta-panel h2 { font-size: clamp(32px, 4vw, 46px); }
.cta-panel p { color: var(--muted); }
.form-panel { padding: 34px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-grid label { display: grid; gap: 7px; color: var(--muted); font-size: 13px; }
.form-grid .wide { grid-column: 1 / -1; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(85,119,71,.20);
  border-radius: 12px;
  padding: 13px 14px;
  background: #fffdf8;
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(85,119,71,.10); }
textarea { resize: vertical; min-height: 94px; }
.form-note { color: var(--muted); font-size: 12px; margin: 12px 0 18px; }

.site-footer { background: #f5efe4; border-top: 1px solid rgba(85,119,71,.14); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 34px; }
.footer-grid h4 { margin: 0 0 12px; color: var(--green-dark); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 7px; color: var(--muted); font-size: 14px; }
.footer-brand p { color: var(--muted); margin: 18px 0 0; max-width: 290px; font-size: 14px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 18px; border-top: 1px solid rgba(85,119,71,.14); color: var(--muted); font-size: 13px; }

@media (max-width: 1020px) {
  .main-nav {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 12px 20px;
  }
  .main-nav-list {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 0; }
  .main-nav a::after { display: none; }
  .burger { display: block; }
  .hero-grid, .split-grid, .cta-grid { grid-template-columns: 1fr; }
  .direction-grid,
  .course-grid,
  .review-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-photo { justify-self: center; width: min(100%, 340px); height: 220px; min-height: 0; border-radius: 28px; }
  .hero-photo img { min-height: 0; border-radius: 24px; }
  .content-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .chip-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid { grid-template-columns: minmax(220px, .55fr) minmax(0, 1fr); }
  .about-numbers { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); border-left: 0; border-top: 1px solid var(--line); }
  .course-card { grid-template-columns: 180px 1fr; }
  .home .hero-photo { width: min(100%, 460px); height: 440px; border-radius: var(--radius); }
  .home .hero-photo::before { border-radius: var(--radius); }
  .about-photo { max-width: 360px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 26px, var(--container)); }
  .header-actions .btn { display: none; }
  .section { padding: 54px 0; }
  .hero { padding: 26px 0 34px; }
  .hero-grid { min-height: auto; padding: 0; gap: 20px; }
  .hero h1 { font-size: clamp(30px, 9vw, 40px); }
  .lead { font-size: 16px; }
  .hero-stats { grid-template-columns: 1fr; margin-top: 20px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-photo { width: min(100%, 310px); height: 210px; padding: 8px; }
  .home .hero-photo,
  .home .hero-photo img { min-height: 400px; height: 400px; }
  .hero-card { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .direction-card { grid-template-columns: 1fr; padding: 26px; }
  .icon-circle { width: 82px; height: 82px; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-photo { width: min(280px, 100%); margin: 0 auto; }
  .about-numbers { grid-template-columns: 1fr; padding: 0; border-top: 0; }
  .cards-grid,
  .content-cards, .content-cards.two, .steps, .chip-grid, .form-grid,
  .course-grid { grid-template-columns: 1fr; }
  .course-card { grid-template-columns: 1fr; }
  .post-type-archive-akashi_service .hero-photo,
  .post-type-archive-akashi_course .hero-photo { width: min(100%, 340px); height: 260px; }
  .offer-footer { align-items: stretch; flex-direction: column; }
  .offer-footer .btn { width: 100%; }
  .cta-panel { grid-template-columns: 1fr; }
  .cta-image { min-height: 210px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

.section-link-row { margin-top: 28px; }
.split-text {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.split-text p { color: var(--muted); margin: 0; }
.about-photo-tall { height: 430px; border-radius: var(--radius); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.review-card p { margin: 0 0 22px; color: #42483d; }
.review-card strong { display: block; color: var(--green-dark); }
.review-card span { color: var(--muted); font-size: 14px; }
.steps-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.steps-list li {
  display: grid;
  gap: 2px;
  padding-left: 20px;
  border-left: 2px solid var(--line);
}
.steps-list span { color: var(--muted); }

.cta-grid-wide { grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr); }
.cta-grid-wide .cta-panel { grid-template-columns: .48fr 1fr; }
.form-panel-compact { padding: 26px; }
.form-panel-compact h2 { font-size: 28px; margin-bottom: 16px; }
.form-panel-compact .form-grid { grid-template-columns: 1fr; gap: 11px; }
.form-panel-compact textarea { min-height: 78px; }

.contact-hub {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 22px;
  align-items: stretch;
}
.primary-contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.contact-primary {
  min-height: 270px;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-primary.telegram { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); color: #fff; }
.contact-primary.whatsapp { background: linear-gradient(135deg, #fff8ed 0%, #eef7ee 100%); }
.contact-primary h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 34px; font-weight: 500; }
.contact-primary p { margin: 0 0 12px; color: inherit; opacity: .84; }
.contact-primary strong { font-size: 20px; }
.contact-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 18px;
}
.contact-side,
.legal-card {
  padding: 28px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
}
.contact-side h3 { margin: 0 0 18px; font-family: var(--serif); font-size: 30px; font-weight: 500; }
.contact-list { display: grid; gap: 12px; }
.contact-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
}
.contact-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}
.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
}
.contact-row strong,
.contact-copy span { display: block; }
.contact-copy span { color: var(--muted); font-size: 13px; }

.post-type-archive-akashi_service .hero-photo,
.post-type-archive-akashi_course .hero-photo {
  width: min(100%, 380px);
  height: 300px;
  padding: 10px;
  border-radius: 32px;
}
.post-type-archive-akashi_service .hero-photo img,
.post-type-archive-akashi_course .hero-photo img {
  border-radius: 24px;
  object-position: center 24%;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.legal-grid div {
  padding: 18px;
  border-radius: 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
}
.legal-grid strong { display: block; color: var(--green-dark); margin-bottom: 6px; }
.legal-grid span { color: var(--muted); font-size: 14px; }
.text-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.text-page h2 { font-family: var(--serif); font-weight: 500; }
.legal-text { font-size: 17px; }

@media (max-width: 1020px) {
  .review-grid,
  .contact-hub,
  .primary-contacts,
  .cta-grid-wide,
  .cta-grid-wide .cta-panel { grid-template-columns: 1fr; }
  .legal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .review-grid,
  .legal-grid { grid-template-columns: 1fr; }
  .split-text,
  .contact-side,
  .legal-card,
  .text-page { padding: 24px; border-radius: 22px; }
  .contact-primary { min-height: 230px; padding: 24px; }
}

/* Detail page: universal product/course template */
.detail-hero { padding: 32px 0 36px; }
.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .65fr);
  gap: 36px;
  align-items: center;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}
.breadcrumbs a { color: var(--green-dark); font-weight: 650; }
.detail-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -.04em;
  max-width: 780px;
}
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line-soft);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
}
.detail-hero-photo {
  position: relative;
  height: 300px;
  padding: 10px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,.8), rgba(241,227,204,.52));
}
.detail-hero-photo::before {
  content: '';
  position: absolute;
  inset: -16px 36px 28px -20px;
  z-index: 0;
  border-radius: 48% 52% 44% 56%;
  background: rgba(111,175,122,.15);
  transform: rotate(4deg);
}
.detail-hero-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 24px;
  box-shadow: 0 20px 55px rgba(31,33,28,.13);
}
.detail-section { padding-top: 58px; }
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}
.detail-content { display: grid; gap: 22px; }
.content-block {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 34px;
}
.content-block h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
}
.content-block p { color: #454b40; margin: 0 0 14px; }
.content-block p:last-child { margin-bottom: 0; }
.simple-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.simple-card {
  border: 1px solid var(--line-soft);
  background: var(--bg-soft);
  border-radius: 18px;
  padding: 20px;
}
.simple-card h3 { margin: 0 0 8px; font-size: 18px; }
.simple-card p { color: var(--muted); font-size: 15px; margin: 0; }
.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}
.clean-list li {
  position: relative;
  padding-left: 28px;
  color: #42483d;
}
.clean-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}
.mini-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.mini-steps div {
  padding: 18px;
  border-radius: 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
}
.mini-steps span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  margin-bottom: 12px;
}
.mini-steps h3 { margin: 0 0 6px; font-size: 16px; }
.mini-steps p { margin: 0; color: var(--muted); font-size: 14px; }
.plain-accordion {
  border-top: 1px solid rgba(85,119,71,.12);
}
.warning-block {
  background: linear-gradient(135deg, #fff 0%, #fff8ef 100%);
  border-color: rgba(215,189,145,.38);
}
.detail-sidebar {
  position: sticky;
  top: 98px;
}
.side-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 26px;
}
.side-label {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.side-price {
  font-family: var(--serif);
  color: var(--green-dark);
  font-size: 38px;
  line-height: 1;
  margin-bottom: 18px;
}
.side-facts {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}
.side-facts li {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(85,119,71,.10);
}
.side-facts li:last-child { border-bottom: 0; padding-bottom: 0; }
.side-card .btn + .btn { margin-top: 10px; }

@media (max-width: 1020px) {
  .detail-hero-grid,
  .detail-layout { grid-template-columns: 1fr; }
  .detail-hero-photo { max-width: 380px; width: 100%; justify-self: center; height: 260px; }
  .detail-sidebar { position: static; }
  .simple-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .detail-hero { padding: 24px 0 32px; }
  .detail-hero h1 { font-size: clamp(34px, 11vw, 46px); }
  .detail-hero-photo { height: 230px; }
  .content-block, .side-card { padding: 24px; border-radius: 22px; }
  .simple-card-grid, .mini-steps { grid-template-columns: 1fr; }
}
