:root {
  --bg: #F7F3EC;
  --paper: #FFFDF8;
  --sand: #EFE8DC;
  --ink: #383733;
  --muted: #6B675E;
  --line: #E3DCCF;
  --green: #7E9C88;
  --green-deep: #4A6857;
  --green-soft: #E4ECE5;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; display: block; }
a { color: var(--green-deep); }
h1, h2, h3 {
  font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
h1, h2, h3, .btn { word-break: auto-phrase; text-wrap: balance; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap { max-width: 760px; margin: 0 auto; padding-inline: 20px; }
section { padding-block: 64px; }
section.alt { background: var(--paper); }
.kicker {
  display: block;
  color: var(--green-deep);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
h2 { font-size: clamp(1.4rem, 4.6vw, 1.8rem); margin-bottom: 28px; }
h3 { font-size: 1.1rem; }
.lead { color: var(--muted); }
.small { font-size: .9rem; color: var(--muted); }

/* ヘッダー */
.site-header { padding-block: 16px; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.brand { font-family: "Zen Maru Gothic", sans-serif; font-weight: 700; text-decoration: none; color: var(--ink); line-height: 1.3; }
.brand small { display: block; font-size: .75rem; color: var(--muted); font-weight: 500; }
.header-link { font-size: .85rem; font-weight: 700; text-decoration: none; border: 1px solid var(--green-deep); border-radius: 999px; padding: 6px 16px; white-space: nowrap; }

/* ボタン */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 28px;
  text-align: center;
  line-height: 1.5;
}
.btn-primary { background: var(--green-deep); color: #fff; }
.btn-primary:hover { background: #3C5848; }
.btn-secondary { border: 1px solid var(--green-deep); color: var(--green-deep); background: transparent; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ファーストビュー */
.hero { padding-block: 32px 48px; }
.hero .wrap { display: grid; gap: 32px; align-items: center; }
.hero h1 { font-size: clamp(1.4rem, 7vw, 2.2rem); margin-bottom: 20px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.chips li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: .85rem;
  font-weight: 700;
}
.avatar {
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 6px var(--paper), 0 0 0 7px var(--line);
  margin-inline: auto;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 720px) {
  .hero .wrap { grid-template-columns: 1fr auto; }
  .avatar { width: 220px; }
}

/* 受付状況 */
.status-bar { padding-block: 14px 0; }
.status {
  background: var(--green-soft);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.status .dot {
  flex: none;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green-deep);
  margin-top: .65em;
}
.status strong { display: block; }
.status span { font-size: .9rem; color: var(--muted); }

/* こんなこと、ありませんか */
.worries { display: grid; gap: 10px; margin-bottom: 32px; }
.worries li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px 14px 44px;
  position: relative;
}
.worries li::before {
  content: "";
  position: absolute;
  left: 16px; top: 22px;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--green);
}
.answer { font-size: 1.1rem; }

/* サンプル */
.notice {
  background: var(--sand);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.samples { display: grid; gap: 16px; }
.sample-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}
.sample-card .tag {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green-deep);
  border-radius: 999px;
  padding: 2px 12px;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.sample-card .chat {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 16px 16px 16px 4px;
  padding: 12px 16px;
  margin-bottom: 14px;
}
.sample-card ul { display: grid; gap: 4px; font-size: .95rem; margin-bottom: 16px; }
.sample-card li { padding-left: 14px; position: relative; }
.sample-card li::before { content: ""; position: absolute; left: 0; top: .8em; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.sample-card a { font-weight: 700; text-decoration: none; }
.sample-card a:hover { text-decoration: underline; }

/* 進め方 */
.flow { display: grid; gap: 14px; margin-bottom: 24px; }
.flow li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.flow h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.flow h3 span { color: var(--green-deep); font-size: .85rem; }
@media (min-width: 720px) { .flow { grid-template-columns: 1fr 1fr; } }

/* お任せいただけること */
.services { display: grid; gap: 14px; margin-bottom: 20px; }
.service {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.service h3 { margin-bottom: 8px; }
.service ul { display: grid; gap: 4px; font-size: .95rem; }
.service li { padding-left: 14px; position: relative; }
.service li::before { content: ""; position: absolute; left: 0; top: .8em; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
@media (min-width: 720px) { .services { grid-template-columns: 1fr 1fr; } }
.caution {
  border: 1px solid var(--line);
  border-left: 3px solid var(--green-deep);
  background: var(--paper);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: .95rem;
  margin-top: 16px;
}
section.alt .service { background: var(--paper); }
section.alt .caution { background: var(--bg); }

/* ひとりに頼む不安への答え */
.reassure { display: grid; gap: 14px; }
.reassure li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}
.reassure .q { color: var(--green-deep); font-weight: 700; margin-bottom: 6px; }

/* 料金 */
.plans { display: grid; gap: 14px; margin-bottom: 24px; }
.plan {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}
.plan h3 { font-size: 1.15rem; margin-bottom: 10px; }
.figure {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--green-deep);
  line-height: 1.4;
  margin-bottom: 8px;
}
.figure small { font-size: .95rem; font-weight: 500; color: var(--muted); }
@media (min-width: 720px) { .plans { grid-template-columns: 1fr 1fr; } }

/* 私について */
.profile-head { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.profile-head .avatar { width: 96px; margin: 0; box-shadow: 0 0 0 4px var(--bg), 0 0 0 5px var(--line); }
.profile-name { font-family: "Zen Maru Gothic", sans-serif; font-weight: 700; font-size: 1.25rem; line-height: 1.4; }
.profile-name small { font-size: .85rem; color: var(--muted); font-weight: 500; }
.profile-role { font-size: .9rem; color: var(--muted); line-height: 1.6; margin-top: 4px; }
.sub-title { font-size: 1.05rem; margin: 36px 0 14px; }
.timeline { border-left: 2px solid var(--line); padding-left: 20px; display: grid; gap: 16px; }
.timeline li { position: relative; }
.timeline li::before {
  content: "";
  position: absolute; left: -27px; top: .55em;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--green);
}
.timeline li:last-child::before { background: var(--green-deep); border-color: var(--green-deep); }
.timeline strong { display: block; }
.timeline span { font-size: .95rem; color: var(--muted); }
.strengths { display: grid; gap: 12px; }
.strengths li { background: var(--bg); border-radius: 12px; padding: 14px 18px; }
.strengths strong { color: var(--green-deep); }
.strengths span { display: block; font-size: .85rem; color: var(--muted); }
.values { display: grid; gap: 8px; }
.values li { font-weight: 700; padding-left: 14px; position: relative; }
.values li::before { content: ""; position: absolute; left: 0; top: .8em; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* よくあるご質問 */
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 32px 16px 0;
  font-weight: 700;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "＋"; position: absolute; right: 4px; top: 16px; color: var(--green-deep); }
.faq details[open] summary::after { content: "－"; }
.faq .a { padding: 0 0 18px; }

/* 相談 */
.contact { background: var(--green-soft); }
.contact-steps { counter-reset: c; display: grid; gap: 8px; margin: 24px 0 32px; }
.contact-steps li {
  counter-increment: c;
  background: var(--paper);
  border-radius: 10px;
  padding: 10px 14px 10px 48px;
  position: relative;
}
.contact-steps li::before {
  content: counter(c);
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--green-deep); color: #fff;
  font-size: .8rem; font-weight: 700;
  display: grid; place-items: center; line-height: 1;
}
.contact .btn-primary { width: 100%; max-width: 420px; font-size: 1.05rem; padding-block: 16px; }
.contact .small { margin-top: 14px; }

footer { padding-block: 28px; text-align: center; font-size: .8rem; color: var(--muted); }
footer a { color: var(--muted); }

/* サンプルのページ */
.page-head { padding-block: 24px 8px; }
.back-link { font-size: .9rem; font-weight: 700; text-decoration: none; }
.step { margin-bottom: 44px; }
.step:last-child { margin-bottom: 0; }
.step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.step-num {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: .9rem;
  line-height: 1;
}
.chat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px 18px 18px 4px;
  padding: 14px 18px;
  max-width: 520px;
  margin-bottom: 10px;
}
.numbered { counter-reset: n; display: grid; gap: 8px; margin-bottom: 14px; }
.numbered li { counter-increment: n; position: relative; padding-left: 30px; }
.numbered li::before {
  content: counter(n);
  position: absolute; left: 0; top: .35em;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: .75rem; font-weight: 700;
  display: grid; place-items: center;
  line-height: 1;
}
.assume {
  border-left: 3px solid var(--green);
  padding: 4px 0 4px 14px;
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 18px;
}
.phase {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
}
.phase summary {
  cursor: pointer;
  padding: 12px 16px;
  font-weight: 700;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.phase summary::-webkit-details-marker { display: none; }
.phase summary::after { content: "＋"; color: var(--green-deep); }
.phase[open] summary::after { content: "－"; }
.phase ul { padding: 0 16px 14px; display: grid; gap: 8px; }
.phase li { font-size: .95rem; }
.role {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0 8px;
  margin-right: 6px;
  line-height: 1.8;
  vertical-align: 1px;
}
.role-me { background: var(--green-deep); color: #fff; }
.role-boss { background: var(--paper); color: var(--ink); border: 1px solid var(--line); }
.role-both { background: var(--green-soft); color: var(--green-deep); }
.legend { font-size: .85rem; color: var(--muted); margin-bottom: 12px; }
.next-cta { background: var(--green-soft); border-radius: 16px; padding: 24px; text-align: center; }
.next-cta h2 { margin-bottom: 12px; }
