:root {
  --paper: #fffdf8;
  --soft: #f7efe6;
  --mist: #eaf4ef;
  --leaf: #4f7f68;
  --leaf-dark: #2f5d4a;
  --rose: #d88f84;
  --ink: #2c312f;
  --muted: #66736d;
  --line: #e6ddd1;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(83, 70, 54, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Yu Gothic", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.9;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(230, 221, 209, 0.8);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  text-decoration: none;
  line-height: 1.35;
  min-width: 190px;
}

.brand-main {
  display: block;
  color: var(--leaf-dark);
  font-size: 1.03rem;
  font-weight: 700;
}

.brand-sub {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--leaf-dark);
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--leaf-dark);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--white) !important;
  font-weight: 700;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 42px;
  background:
    radial-gradient(circle at 85% 18%, rgba(216, 143, 132, 0.16), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #f4f8f1 50%, #fff6f0 100%);
}

.hero-inner,
.section-inner,
.page-hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--rose);
  font-weight: 700;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.45;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 4.15rem);
  color: var(--leaf-dark);
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  color: var(--leaf-dark);
}

h3 {
  font-size: 1.16rem;
  color: var(--leaf-dark);
}

p {
  margin: 0;
}

.lead {
  margin-top: 24px;
  color: #46524d;
  font-size: 1.08rem;
}

.hero-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-audience p {
  padding: 9px 13px;
  border: 1px solid rgba(216, 143, 132, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--leaf-dark);
  font-weight: 700;
  font-size: 0.94rem;
}

.hero-center-action {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 18px;
  border: 1px solid rgba(216, 143, 132, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.56);
}

.hero-center-action p {
  color: var(--leaf-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-center-action .button {
  min-width: min(100%, 360px);
  min-height: 56px;
  box-shadow: 0 16px 34px rgba(216, 143, 132, 0.28);
}

.mobile-mentor {
  display: none;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(79, 127, 104, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--leaf-dark);
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
}

.session-guide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.session-guide a {
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 16px;
  border: 1px solid rgba(79, 127, 104, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.session-guide strong {
  color: var(--leaf-dark);
  font-size: 1rem;
}

.session-guide span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid var(--leaf);
  border-radius: 999px;
  background: var(--leaf);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.button.secondary {
  background: transparent;
  color: var(--leaf-dark);
}

.button.rose {
  border-color: var(--rose);
  background: var(--rose);
}

.button.rose:hover {
  background: #cf8176;
}

.hero-visual {
  position: relative;
}

.family-panel {
  padding: 28px;
  border: 1px solid rgba(230, 221, 209, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.profile-photo {
  width: 132px;
  height: 132px;
  margin-bottom: 22px;
  border-radius: 999px;
  border: 8px solid var(--white);
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(49, 64, 57, 0.16);
}

.quote {
  margin-top: 18px;
  color: var(--leaf-dark);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.65;
}

.mentor-name {
  color: var(--leaf-dark);
  font-size: 1.24rem;
  font-weight: 700;
}

.mentor-role {
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-list {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.trust-list span {
  padding: 9px 11px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--leaf-dark);
  font-size: 0.9rem;
  font-weight: 700;
}

.panel-link {
  width: 100%;
  margin-top: 22px;
}

.section {
  padding: 84px 0;
}

.section.soft {
  background: var(--soft);
}

.section.mist {
  background: var(--mist);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.compact-head {
  margin-top: 38px;
  margin-bottom: 22px;
}

.section-head p {
  margin-top: 16px;
  color: var(--muted);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.flow-step,
.voice,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card {
  padding: 26px;
}

.card p,
.flow-step p,
.voice p,
.faq-item p,
.profile-copy p,
.contact-note p {
  color: var(--muted);
}

.card .tag {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--rose);
  font-weight: 700;
  font-size: 0.9rem;
}

.worldview {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.worldview-note {
  padding: 32px;
  border-left: 4px solid var(--rose);
  background: rgba(255, 255, 255, 0.62);
}

.mission-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.mission-note {
  padding: 32px;
  border-left: 4px solid var(--rose);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.worldview-list {
  display: grid;
  gap: 14px;
}

.menu-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 16px;
}

.menu-card .button {
  margin-top: auto;
}

.price {
  color: var(--leaf-dark);
  font-size: 1.05rem;
  font-weight: 700;
}

.choice-label {
  color: var(--leaf-dark) !important;
  font-weight: 700;
}

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

.compare-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.compare-card.highlighted {
  border-color: rgba(216, 143, 132, 0.42);
  background: #fffaf7;
  box-shadow: 0 14px 36px rgba(83, 70, 54, 0.08);
}

.compare-card h3 {
  margin-top: 4px;
}

.compare-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding-left: 1.2em;
  color: var(--muted);
}

.compare-card .button {
  margin-top: auto;
}

.service-compare {
  margin-bottom: 22px;
}

.center-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.metatron-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.8fr);
  gap: 18px;
  margin-top: 28px;
}

.hero-metatron-gallery {
  margin-top: 30px;
}

.compact-metatron-gallery {
  margin-bottom: 24px;
}

.metatron-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.metatron-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f6f2eb;
}

.metatron-photo-wide img {
  aspect-ratio: 16 / 10;
}

.metatron-photo figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

.area-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.area-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(79, 127, 104, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--leaf-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.topic-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
}

.topic-card h3 {
  font-size: 1.02rem;
}

.topic-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.topic-card .tag {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--rose);
  font-size: 0.86rem;
  font-weight: 700;
}

.topic-card:hover {
  box-shadow: 0 12px 28px rgba(83, 70, 54, 0.08);
}

.notice-box {
  padding: 24px;
  border: 1px solid rgba(216, 143, 132, 0.26);
  border-radius: 8px;
  background: #fffaf7;
}

.notice-box p + p {
  margin-top: 10px;
}

.link-list {
  display: grid;
  gap: 12px;
}

.link-list a {
  color: var(--leaf-dark);
  font-weight: 700;
  text-decoration: none;
}

.flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: flow;
}

.flow-step {
  position: relative;
  padding: 26px;
}

.flow-step::before {
  counter-increment: flow;
  content: counter(flow);
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--leaf-dark);
  font-weight: 700;
}

.voice {
  padding: 26px;
}

.voice blockquote {
  margin: 14px 0 0;
  color: #46524d;
}

.changes {
  columns: 2;
  padding-left: 1.2em;
  color: var(--muted);
}

.page-hero {
  padding: 70px 0 52px;
  background: linear-gradient(135deg, #fffdf8, #eef7f2 58%, #fff4ef);
}

.page-hero-inner {
  max-width: 880px;
}

.page-hero p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.profile-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.profile-layout .profile-photo {
  width: 190px;
  height: 190px;
}

.profile-copy {
  display: grid;
  gap: 18px;
}

.note-box {
  padding: 24px;
  border-radius: 8px;
  background: var(--mist);
  color: var(--leaf-dark);
  font-weight: 700;
}

.perspective-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
}

.perspective-intro {
  padding: 28px;
  border-left: 4px solid var(--rose);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.perspective-intro h3 {
  margin-bottom: 14px;
}

.perspective-intro p + p {
  margin-top: 14px;
}

.perspective-intro p {
  color: var(--muted);
}

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

.perspective-grid article {
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.perspective-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--rose);
  font-size: 0.86rem;
  font-weight: 700;
}

.perspective-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-card a {
  display: inline-block;
  margin-top: 8px;
  color: var(--leaf-dark);
  font-size: 1.12rem;
  font-weight: 700;
  word-break: break-word;
}

.sns-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 24px;
}

.site-footer {
  padding: 38px 0;
  background: var(--leaf-dark);
  color: rgba(255, 255, 255, 0.84);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner a {
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 860px) {
  .nav {
    min-height: 66px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 11px 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 30px;
  }

  .hero-inner,
  .worldview,
  .profile-layout,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-2,
  .compare-grid,
  .topic-grid,
  .perspective-layout,
  .flow,
  .metatron-gallery {
    grid-template-columns: 1fr;
  }

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

  .hero-points {
    grid-template-columns: 1fr;
  }

  .session-guide {
    grid-template-columns: 1fr;
  }

  .mobile-mentor {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin-top: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
  }

  .mobile-mentor img {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    border: 4px solid var(--white);
    object-fit: cover;
  }

  .mobile-mentor strong,
  .mobile-mentor span {
    display: block;
  }

  .mobile-mentor strong {
    color: var(--leaf-dark);
    line-height: 1.45;
  }

  .mobile-mentor span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .hero-visual {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  .family-panel {
    padding: 22px;
  }

  .changes {
    columns: 1;
  }

  .profile-layout .profile-photo {
    width: 150px;
    height: 150px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .actions,
  .sns-links {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-audience {
    align-items: stretch;
    flex-direction: column;
  }

  .brand-main {
    font-size: 0.96rem;
  }
}
