:root {
  --green: #22B184;
  --green-dark: #178f6a;
  --green-pale: #D9EDE7;
  --ink: #2b2b2b;
  --grey: #777;
  --line: #e6e6e6;
  --radius: 10px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.9;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }

/* mock notice */
.mock-note {
  background: #FFF4D6;
  color: #8a6d1a;
  font-size: 12px;
  text-align: center;
  padding: 6px 12px;
  letter-spacing: .05em;
}

/* header */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-in {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1080px; margin: 0 auto; padding: 0 22px;
}
.logo img { height: 40px; width: auto; }
nav { display: flex; align-items: center; gap: 22px; font-size: 13.5px; }
nav a { color: #444; }
nav a:hover { color: var(--green); }
.btn {
  display: inline-block;
  background: var(--green); color: #fff;
  border-radius: 999px; padding: 10px 22px;
  font-size: 13.5px; font-weight: 700;
  transition: .2s;
}
.btn:hover { background: var(--green-dark); }
.btn.ghost { background: #fff; color: var(--green); border: 2px solid var(--green); }
.btn.ghost:hover { background: var(--green-pale); }
.btn.line { background: #06C755; }
@media (max-width: 760px) { nav .hide-sp { display: none; } }

/* hero */
.hero { position: relative; }
.hero img { width: 100%; height: 66vh; min-height: 420px; object-fit: cover; }
.hero .veil {
  position: absolute; inset: 0;
  background: linear-gradient(15deg, rgba(0,40,28,.45), rgba(0,40,28,.05) 60%);
}
.hero-copy {
  position: absolute; left: 0; right: 0; bottom: 56px;
  color: #fff;
}
.hero-copy h1 {
  font-size: clamp(28px, 4.6vw, 46px);
  font-weight: 800; letter-spacing: .06em;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
  line-height: 1.5;
}
.hero-copy p {
  margin-top: 10px; font-size: clamp(13px, 1.7vw, 16px);
  text-shadow: 0 1px 10px rgba(0,0,0,.4);
}

/* sections */
section { padding: 84px 0; }
.sec-label {
  display: inline-block; background: var(--green-pale); color: var(--green-dark);
  font-size: 12px; font-weight: 700; letter-spacing: .14em;
  border-radius: 999px; padding: 4px 16px; margin-bottom: 14px;
}
h2 { font-size: clamp(22px, 3.2vw, 32px); font-weight: 800; letter-spacing: .04em; line-height: 1.6; }
.lead { margin-top: 16px; color: #555; font-size: 15px; max-width: 640px; }

/* people cards */
.people { background: linear-gradient(#fff, var(--green-pale) 140%); }
.cards {
  margin-top: 44px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 980px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px 22px; position: relative;
  box-shadow: 0 6px 24px rgba(40,80,60,.06);
  transition: .2s; display: flex; flex-direction: column;
}
a.card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(40,80,60,.13); }
.card .tag {
  font-size: 11px; font-weight: 700; color: var(--green-dark);
  background: var(--green-pale); border-radius: 999px;
  padding: 3px 12px; align-self: flex-start; letter-spacing: .08em;
}
.card .avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--green-pale); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin: 18px 0 12px;
}
.card h3 { font-size: 16.5px; font-weight: 800; line-height: 1.55; }
.card .who { font-size: 12.5px; color: var(--green-dark); font-weight: 700; margin-top: 6px; }
.card p { font-size: 12.5px; color: #666; margin-top: 8px; flex: 1; }
.card .more { margin-top: 14px; font-size: 12.5px; font-weight: 700; color: var(--green); }
.card.soon { opacity: .62; background: #fafafa; }
.badge-soon {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 700; color: #999;
  border: 1px solid #ccc; border-radius: 999px; padding: 2px 10px;
}
.badge-kari {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 700; color: #b8860b;
  background: #FFF4D6; border-radius: 999px; padding: 2px 10px;
}
.people-cta { margin-top: 40px; text-align: center; }
.people-cta p { font-size: 14px; color: #555; margin-bottom: 16px; }

/* steps */
.steps { background: #fff; }
.step-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 760px) { .step-grid { grid-template-columns: 1fr; } }
.step {
  background: var(--green-pale); border-radius: var(--radius); padding: 30px 26px;
}
.step .num { font-size: 13px; font-weight: 800; color: var(--green); letter-spacing: .2em; }
.step h3 { font-size: 17px; font-weight: 800; margin: 8px 0 10px; }
.step p { font-size: 13.5px; color: #555; }

/* place */
.place { background: var(--green-pale); }
.place-grid { margin-top: 44px; display: grid; grid-template-columns: 1.4fr 1fr; gap: 18px; }
@media (max-width: 760px) { .place-grid { grid-template-columns: 1fr; } }
.place-grid img { border-radius: var(--radius); width: 100%; height: 100%; object-fit: cover; }
.facts { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; }
.fact {
  background: #fff; border-radius: 999px; padding: 8px 20px;
  font-size: 13px; font-weight: 700; color: var(--green-dark);
  box-shadow: 0 3px 12px rgba(40,80,60,.07);
}
.scenes { margin-top: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 760px) { .scenes { grid-template-columns: 1fr; } }
.scene { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 6px 24px rgba(40,80,60,.06); }
.scene img { height: 150px; width: 100%; object-fit: cover; }
.scene div { padding: 16px 18px 18px; }
.scene h3 { font-size: 14px; font-weight: 800; color: var(--green-dark); letter-spacing: .08em; }
.scene p { font-size: 12.5px; color: #666; margin-top: 4px; }

/* pricing */
.price table {
  margin-top: 40px; width: 100%; border-collapse: collapse; font-size: 14px;
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 6px 24px rgba(40,80,60,.06);
}
.price th, .price td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.price th { background: var(--green); color: #fff; font-size: 13px; letter-spacing: .08em; }
.price td.yen { font-weight: 800; color: var(--green-dark); white-space: nowrap; }
.price .note { margin-top: 14px; font-size: 12px; color: #999; }

/* access / cta */
.cta { background: linear-gradient(160deg, var(--green), var(--green-dark)); color: #fff; text-align: center; }
.cta h2 { color: #fff; }
.cta p { margin-top: 14px; font-size: 14.5px; opacity: .95; }
.cta-btns { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn { background: #fff; color: var(--green-dark); font-size: 15px; padding: 14px 34px; }
.cta .btn.line { background: #06C755; color: #fff; }
.cta .addr { margin-top: 30px; font-size: 12.5px; opacity: .85; }

footer { padding: 34px 0; text-align: center; font-size: 12px; color: #999; }

/* ===== member article page ===== */
.article-hero { background: var(--green-pale); padding: 60px 0 0; }
.article-hero .wrap { max-width: 820px; }
.crumb { font-size: 12.5px; color: var(--green-dark); font-weight: 700; }
.article-hero h1 { font-size: clamp(24px, 3.6vw, 34px); font-weight: 800; line-height: 1.6; margin: 16px 0 6px; }
.article-hero .who-line { font-size: 14px; color: var(--green-dark); font-weight: 700; margin-bottom: 30px; }
.article-hero img { border-radius: var(--radius) var(--radius) 0 0; height: 340px; width: 100%; object-fit: cover; }
.article-body { max-width: 820px; margin: 0 auto; padding: 50px 22px 80px; }
.article-body h2 { font-size: 20px; margin: 44px 0 14px; padding-left: 14px; border-left: 5px solid var(--green); }
.article-body p { font-size: 15px; color: #444; margin-top: 14px; }
.profile-box {
  background: var(--green-pale); border-radius: var(--radius); padding: 26px 28px; margin-top: 10px;
  display: flex; gap: 22px; align-items: center;
}
.profile-box .avatar {
  width: 84px; height: 84px; border-radius: 50%; flex-shrink: 0;
  background: #fff; color: var(--green-dark);
  display: flex; align-items: center; justify-content: center; font-size: 36px;
}
.profile-box h3 { font-size: 17px; font-weight: 800; }
.profile-box p { font-size: 13px; color: #555; margin-top: 4px; }
.consult-list { margin: 18px 0 0; padding: 0; list-style: none; }
.consult-list li {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 20px; margin-top: 10px; font-size: 14px;
  box-shadow: 0 3px 12px rgba(40,80,60,.05);
}
.consult-list li::before { content: "💬 "; }
.article-cta {
  margin-top: 56px; background: var(--green-pale); border-radius: var(--radius);
  padding: 40px 30px; text-align: center;
}
.article-cta h2 { border: none; padding: 0; margin: 0 0 10px; }
.article-cta p { font-size: 13.5px; }
.article-cta .cta-btns { margin-top: 22px; }
.dummy-note {
  margin-top: 40px; background: #FFF4D6; border-radius: 12px;
  font-size: 12px; color: #8a6d1a; padding: 14px 18px;
}
