* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  gap: 24px;
}
.nav-brand {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #1a1a1a;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 24px;
}
.nav-link {
  font-size: 12px;
  color: #555;
  text-decoration: none;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-link:hover { color: #4a7c59; }
.nav-badge {
  background: #1a1a1a;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 6px 18px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-badge:hover { background: #4a7c59; }

/* ── HERO ── */
.hero {
  margin-top: 64px;
  position: relative;
  height: calc(100vh - 64px);
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-img {
  position: absolute;
  inset: 0;
  background: url('../imgs/banner.png') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  padding: 64px 64px;
  color: #fff;
  max-width: 780px;
}
.hero-tag {
  display: inline-block;
  background: #4a7c59;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 5px 14px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}
.hero-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.2;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin-top: 12px;
  margin-bottom: 32px;
}
.hero-partners {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-partner-pill {
  border: 1px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 6px 16px;
}

/* ── SECTIONS ── */
section { padding: 96px 64px; }
.section-inner { max-width: 1080px; margin: 0 auto; }

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #4a7c59;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sec-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 20px;
}
.sec-body {
  font-size: 15px;
  line-height: 2;
  color: #555;
  max-width: 640px;
}
.rule {
  width: 40px;
  height: 3px;
  background: #4a7c59;
  margin: 20px 0 40px;
}

/* ── INTRO / FEATURE BAND ── */
.intro { background: #f7f7f5; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.check-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  font-weight: bold;
}
/*
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #4a7c59;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  margin-top: 2px;
}
*/

/* ── WHY NOW ── */
.why-now { background: #f7f7f5; }

.why-body {
  max-width: 720px;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-text {
  font-size: 16px;
  line-height: 2.2;
  color: #444;
}

/* ── LEARNING JOURNEY ── */
.journey { background: #f7f7f5; }

.journey-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.jstep { width: 100%; }

.jstep-inner {
  padding: 52px 64px;
  max-width: 800px;
}

.jstep--light { background: #fff; border: 1px solid #e8e8e8; }
.jstep--dark  { background: #1a1a1a; }
.jstep--green { background: #4a7c59; }

.jstep-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #4a7c59;
  margin-bottom: 4px;
}
.jstep--dark  .jstep-num { color: #7ab88a; }
.jstep--green .jstep-num { color: rgba(255,255,255,0.6); }

.jstep-verb {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 20px;
}
.jstep--dark  .jstep-verb { color: #fff; }
.jstep--green .jstep-verb { color: #fff; }

.jstep-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.jstep--dark  .jstep-title { color: #fff; }
.jstep--green .jstep-title { color: #fff; }

.jstep-partner {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #4a7c59;
  margin-bottom: 14px;
}
.jstep-partner--light { color: #7ab88a; }

.jstep-desc {
  font-size: 15px;
  line-height: 2;
  color: #555;
}
.jstep-desc--light { color: rgba(255,255,255,0.75); }

.jstep-arrow {
  text-align: left;
  padding-left: 64px;
  font-size: 28px;
  color: #4a7c59;
  padding-top: 12px;
  padding-bottom: 12px;
  line-height: 1;
  background: #f7f7f5;
}

@media (max-width: 900px) {
  .jstep-inner { padding: 36px 24px; }
  .jstep-arrow { padding-left: 24px; }
}

/* ── OVERVIEW NUMBERS ── */
.overview { background: #1a1a1a; color: #fff; }
.overview .sec-title { color: #fff; }
.overview .sec-body { color: rgba(255,255,255,0.6); }
.overview .eyebrow { color: #7ab88a; }
.overview .rule { background: #7ab88a; }
.ov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px;
}
.ov-item {
  background: #1a1a1a;
  padding: 40px 32px;
}
.ov-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: #7ab88a;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
}
.ov-val {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  color: #fff;
}
.ov-val strong {
  display: block;
  font-size: 32px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #7ab88a;
  line-height: 1;
  margin-bottom: 6px;
}

/* ── FEATURES 4 ── */
.features { background: #fff; }
.feat-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 48px;
}
.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feat-row.reverse { direction: rtl; }
.feat-row.reverse > * { direction: ltr; }
.feat-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.feat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #e8e8e8;
  line-height: 1;
  margin-bottom: 8px;
}
.feat-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #1a1a1a;
}
.feat-body {
  font-size: 14px;
  line-height: 2;
  color: #666;
}

/* ── CURRICULUM ── */
.curriculum { background: #f7f7f5; }
.phase-head {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #fff;
  background: #1a1a1a;
  display: inline-block;
  padding: 6px 18px;
  margin-bottom: 24px;
  margin-top: 48px;
}
.phase-head:first-of-type { margin-top: 0; }
.month-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}
.month-card {
  background: #fff;
  padding: 28px 24px;
  border-top: 3px solid #e0e0e0;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.month-card:hover {
  border-top-color: #4a7c59;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.month-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #4a7c59;
  margin-bottom: 10px;
}
.month-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 12px;
}
.month-body {
  font-size: 13px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 16px;
}
.month-output {
  font-size: 12px;
  color: #fff;
  background: #4a7c59;
  padding: 8px 12px;
  line-height: 1.6;
}

/* ── SKILLS ── */
.skills { background: #fff; }
.skill-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.skill-item {
  padding: 32px 20px;
  border: 1px solid #e8e8e8;
  text-align: center;
  transition: border-color 0.25s, background 0.25s;
}
.skill-item:hover {
  border-color: #4a7c59;
  background: #f4f9f5;
}
.skill-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.skill-name {
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}
.skill-desc {
  font-size: 12px;
  line-height: 1.8;
  color: #888;
}

/* ── CAREER ── */
.career { background: #f7f7f5; }
.career-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.career-card {
  background: #fff;
  padding: 36px 28px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.25s, transform 0.25s;
}
.career-card:hover {
  border-bottom-color: #4a7c59;
  transform: translateY(-4px);
}
.career-icon {
  font-size: 32px;
  height: 100px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.career-icon img {
  max-height: 100%;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.career-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.career-body {
  font-size: 13px;
  line-height: 1.9;
  color: #666;
}

/* ── SCHEDULE ── */
.schedule { background: #1a1a1a; color: #fff; }
.schedule .sec-title { color: #fff; }
.schedule .eyebrow { color: #7ab88a; }
.schedule .rule { background: #7ab88a; }
.timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 24px;
  border-left: 2px solid rgba(255,255,255,0.15);
}
.tl-item {
  position: relative;
  padding: 0 0 48px 40px;
}
.tl-item::before {
  content: '';
  position: absolute;
  left: -7px; top: 6px;
  width: 12px; height: 12px;
  background: #7ab88a;
  border-radius: 50%;
}
.tl-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #7ab88a;
  margin-bottom: 6px;
}
.tl-event {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}
.tl-note {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

/* ── PARTNERSHIP ── */
.partnership { background: #fff; }
.partner-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}
.partner-table th {
  background: #1a1a1a;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  padding: 16px 24px;
  text-align: left;
}
.partner-table td {
  padding: 32px 24px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  vertical-align: top;
}
.partner-table tr:last-child td { border-bottom: none; }
.partner-name-cell {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a !important;
  white-space: nowrap;
}
.partner-table tr:hover td { background: #fafaf8; }


/* ── ECOSYSTEM ── */
.ecosystem { background: #f7f7f5; }

.eco-diagram { margin-top: 56px; }

.eco-nodes {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.eco-node {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eco-node-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-left: 4px solid #4a7c59;
  padding: 28px 32px;
  width: 100%;
  transition: box-shadow 0.25s;
}
.eco-node-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.eco-node-card--dark { background: #1a1a1a; border-left-color: #7ab88a; }
.eco-node-card--dark .eco-node-tag  { color: #7ab88a; }
.eco-node-card--dark .eco-node-role { color: #fff; }
.eco-node-card--dark .eco-node-desc { color: rgba(255,255,255,0.7); }

.eco-node-tag {
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  font-weight: 700;
  color: #4a7c59;
  margin-bottom: 4px;
}
.eco-node-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.eco-node-desc {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}

.eco-arrow {
  font-size: 28px;
  color: #4a7c59;
  padding: 8px 0 8px 36px;
  line-height: 1;
}

.eco-flow {
  background: #1a1a1a;
  padding: 36px 48px;
  margin-top: 0;
}

.eco-flow-note {
  font-size: 14px;
  line-height: 2;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.eco-flow-steps {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.eco-step {
  background: rgba(74,124,89,0.15);
  border: 1px solid rgba(74,124,89,0.4);
  padding: 12px 28px;
}

.eco-step-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #7ab88a;
}

.eco-step-arrow {
  font-size: 18px;
  color: rgba(255,255,255,0.35);
  padding: 0 12px;
  line-height: 1;
}

.eco-step-arrow--loop {
  font-size: 26px;
  color: #7ab88a;
}

.eco-center { display: none; }


/* ── PROGRAM OVERVIEW ── */
.prog-overview { background: #fff; width: 100% !important; overflow: scroll; }

.po-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: #e8e8e8;
  border: 1px solid #e8e8e8;
  margin-top: 48px;
}

.po-item {
  background: #fff;
  padding: 32px 28px;
}

.po-item--wide {
  grid-column: span 2;
}

.po-item--full {
  grid-column: span 4;
  background: #f7f7f5;
  border-top: 2px solid #4a7c59;
}

.po-key {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #4a7c59;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.po-val {
  font-family: 'Shippori Mincho', serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

.po-val--sm {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.po-sub {
  font-size: 14px;
  font-weight: 400;
  color: #888;
  margin-left: 4px;
}

.po-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.po-list li {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  padding-left: 16px;
  position: relative;
}

.po-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #4a7c59;
  font-weight: 700;
}

.po-note {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 8px;
}

.po-caption {
  font-size: 12px;
  color: #999;
  margin-top: 8px;
}

.po-cert {
  font-family: 'Shippori Mincho', serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 8px 0;
  padding: 12px 20px;
  border-left: 4px solid #4a7c59;
  background: #fff;
  display: inline-block;
}

/* ── WHO IS THIS FOR ── */
.who-for { background: #1a1a1a; }
.who-for .sec-title { color: #fff; }
.who-for .eyebrow { color: #7ab88a; }
.who-for .rule { background: #7ab88a; }

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  margin-top: 48px;
}

.who-item {
  background: #1a1a1a;
  padding: 36px 28px;
  text-align: center;
  transition: background 0.25s;
  cursor: default;
}

.who-item:hover {
  background: rgba(74,124,89,0.15);
}

.who-icon {
  display: block;
  font-size: 32px;
  margin-bottom: 16px;
}

.who-item p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
}


/* ── FAQ ── */
.faq { background: #f7f7f5; }
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid #e0e0e0;
}
.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  list-style: none;
}
.faq-q::before {
  content: 'Q';
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #4a7c59;
  flex-shrink: 0;
}
.faq-a {
  padding: 0 0 24px 32px;
  font-size: 14px;
  line-height: 2;
  color: #666;
}

/* ── CTA ── */
.cta-section {
  background: #4a7c59;
  color: #fff;
  text-align: center;
  padding: 120px 64px;
}
.cta-quote {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(28px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 32px;
}
.cta-body {
  font-size: 15px;
  line-height: 2.2;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 48px;
}
.cta-btn {
  display: inline-block;
  width: 320px;
  box-sizing: border-box;
  background: #fff;
  color: #4a7c59;
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 18px 0;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s;
}
.cta-btn:hover {
  background: #1a1a1a;
  color: #fff;
}
.cta-btn-secondary {
  display: block;
  width: 320px;
  box-sizing: border-box;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.7);
  font-family: 'Shippori Mincho', serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 18px 0;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s;
  margin: 16px auto 0;
}
.cta-btn-secondary:hover {
  background: #fff;
  color: #4a7c59;
}
.cta-note {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
}

/* ── FOOTER ── */
footer {
  background: #111;
  color: rgba(255,255,255,0.4);
  padding: 40px 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.footer-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-link {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-link:hover { color: rgba(255,255,255,0.8); }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }
.rd5 { transition-delay: 0.5s; }

/* ── CULTURAL EXPERIENCE ── */
.cult-exp { background: #1a1a1a; }
.cult-exp .sec-title { color: #fff; }
.cult-exp .eyebrow { color: #7ab88a; }
.cult-exp .rule { background: #7ab88a; }

.cult-intro {
  margin-bottom: 48px;
}

.cult-lead {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 700;
  color: #7ab88a;
  margin-bottom: 12px;
}

.cult-body {
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
}

.cult-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 48px;
}

.cult-cat {
  background: #1a1a1a;
  padding: 0;
  overflow: hidden;
  transition: background 0.25s;
}
.cult-cat:hover { background: #222; }

.cult-cat-head {
  background: #4a7c59;
  padding: 16px 28px;
}

.cult-cat-en {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #fff;
}

.cult-list {
  list-style: none;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cult-list li {
  font-family: 'Shippori Mincho', serif;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.cult-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #7ab88a;
  font-size: 12px;
}

.cult-message {
  text-align: center;
  padding: 56px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}

.cult-msg-main {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 16px;
}

.cult-msg-sub {
  font-size: 15px;
  line-height: 2;
  color: rgba(255,255,255,0.55);
}

.cult-notes {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 32px;
}

.cult-note-head {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #7ab88a;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.cult-note-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cult-note-list li {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,255,255,0.4);
  padding-left: 16px;
  position: relative;
}
.cult-note-list li::before {
  content: '※';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.3);
}


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  section { padding: 64px 24px; }
  nav { padding: 0 16px; gap: 8px; }
  .nav-links { display: none; }
  .hero-content { padding: 40px 24px; }
  .intro-grid, .feat-row { grid-template-columns: 1fr; }
  .feat-row.reverse { direction: ltr; }
  .ov-grid { grid-template-columns: 1fr 1fr; }
  .month-grid { grid-template-columns: 1fr; }
  .skill-grid { grid-template-columns: repeat(2, 1fr); }
  .career-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── SUB PAGES ── */
.subpage {
  min-height: 100vh;
  padding-top: 64px;
  background: #fff;
}
.subpage-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 48px 120px;
}
.subpage-back {
  display: inline-block;
  font-size: 13px;
  color: #4a7c59;
  text-decoration: none;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.subpage-back:hover { opacity: 0.7; }
.subpage-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.subpage-rule {
  width: 40px;
  height: 3px;
  background: #4a7c59;
  margin: 20px 0 40px;
}
.subpage-lead {
  font-size: 15px;
  line-height: 2;
  color: #444;
  margin-bottom: 40px;
}
.subpage-section { margin-top: 56px; }
.subpage-sec-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8e8e8;
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.9;
}
.info-table th {
  width: 200px;
  background: #f7f7f5;
  padding: 16px 20px;
  text-align: left;
  font-weight: 500;
  color: #555;
  border-bottom: 1px solid #e8e8e8;
  vertical-align: top;
  white-space: nowrap;
}
.info-table td {
  padding: 16px 20px;
  color: #1a1a1a;
  border-bottom: 1px solid #e8e8e8;
  vertical-align: top;
}
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }
.contact-card {
  background: #f7f7f5;
  padding: 32px 36px;
  margin-bottom: 20px;
  border-left: 4px solid #4a7c59;
}
.contact-card-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}
.contact-dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px 20px;
  font-size: 14px;
  line-height: 1.8;
}
.contact-dl dt {
  color: #888;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-top: 2px;
}
.contact-dl dd { color: #1a1a1a; }
.subpage-note {
  margin-top: 32px;
  font-size: 13px;
  color: #999;
  line-height: 1.8;
  padding-top: 20px;
  border-top: 1px solid #e8e8e8;
}
@media (max-width: 600px) {
  .subpage-inner { padding: 48px 20px 80px; }
  .info-table th { width: 120px; font-size: 12px; padding: 12px 12px; }
  .info-table td { font-size: 13px; padding: 12px 12px; }
  .contact-dl { grid-template-columns: 1fr; gap: 4px 0; }
  .contact-dl dt { margin-top: 12px; }
}
