/* ここ企画 お知らせ用スタイル（トップページと同じデザイントークンを使用） */
:root {
  --paper: #fff8ee;
  --cream: #fdefd8;
  --ink: #1d1b1a;
  --ink-soft: #3a3633;
  --tomato: #ff5a3c;
  --sunshine: #ffc93c;
  --mint: #4dd7a8;
  --ocean: #3a86ff;
  --muted: #8a8178;
  --font-jp: 'Zen Kaku Gothic New', 'Zen Maru Gothic', system-ui, sans-serif;
  --font-jp-round: 'Zen Maru Gothic', 'Zen Kaku Gothic New', sans-serif;
  --font-serif: 'Fraunces', 'Times New Roman', serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-jp);
  font-weight: 500;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ヘッダー */
.site-head {
  border-bottom: 2.5px solid var(--ink);
  background: var(--paper);
  position: sticky; top: 0; z-index: 10;
}
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-top: 14px; padding-bottom: 14px;
}
.site-logo { display: inline-flex; align-items: center; }
.site-logo img { width: 96px; height: auto; display: block; }
.head-link {
  font-size: 14px; font-weight: 800; color: var(--ink);
  text-decoration: none; border-bottom: 2px solid var(--sunshine);
}
.head-link:hover { color: var(--tomato); }

/* パンくず */
.crumb { font-size: 13px; color: var(--muted); margin: 26px 0 0; }
.crumb a { color: var(--ink-soft); }
.crumb span { margin: 0 6px; }

/* 記事 */
.article { padding: 10px 0 70px; }
.article-date {
  font-family: var(--font-serif); font-style: italic; font-weight: 900;
  color: var(--tomato); font-size: 17px; margin-top: 22px; display: block;
}
.article-kind {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 88px; min-height: 30px; padding: 0 14px; margin-left: 10px;
  border-radius: 999px; background: var(--ink); color: var(--paper);
  font-size: 11.5px; font-weight: 900; vertical-align: 3px;
}
.article h1 {
  font-family: var(--font-jp-round); font-weight: 900;
  font-size: clamp(26px, 5.2vw, 38px); line-height: 1.3;
  margin: 12px 0 8px; letter-spacing: -0.01em; text-wrap: balance;
}
.article .lead { color: var(--ink-soft); font-size: 16px; margin-bottom: 30px; }
.article h2 {
  font-family: var(--font-jp-round); font-weight: 900; font-size: 21px;
  margin: 40px 0 14px; padding-left: 14px; border-left: 5px solid var(--sunshine);
}
.article p { margin-bottom: 18px; font-size: 15.5px; }
.article ul { margin: 0 0 22px; padding-left: 0; list-style: none; }
.article li {
  position: relative; padding-left: 26px; margin-bottom: 9px; font-size: 15.5px;
}
.article li::before {
  content: ''; position: absolute; left: 6px; top: 12px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--mint);
}
.article a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.article a:hover { color: var(--tomato); }
.article strong { font-weight: 800; background: linear-gradient(transparent 62%, var(--sunshine) 62%); }

.note-box {
  border: 2px solid var(--ink); border-radius: 16px; background: var(--cream);
  padding: 18px 22px; margin: 26px 0; font-size: 14.5px;
}
.note-box p:last-child { margin-bottom: 0; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border: 2.5px solid var(--ink); border-radius: 999px;
  font-weight: 800; font-size: 14.5px; text-decoration: none;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 var(--ink); }
.btn:focus-visible { outline: 3px solid var(--tomato); outline-offset: 3px; }

/* .article a（詳細度0,1,1）に負けないよう、ボタンの文字色と下線をここで確定させる */
.article a.btn { text-decoration: none; }
.article a.btn-primary,
.article a.btn-primary:hover { color: var(--paper); }
.article a.btn-ghost,
.article a.btn-ghost:hover { color: var(--ink); }

/* 一覧 */
.list-head { padding: 30px 0 6px; }
.list-head h1 {
  font-family: var(--font-jp-round); font-weight: 900;
  font-size: clamp(28px, 6vw, 40px); line-height: 1.25; margin-bottom: 10px;
}
.list-head p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 34em;
  /* 行長を均して1〜2行に収める。auto-phrase は日本語の文節で折る（非対応ブラウザは無視） */
  text-wrap: balance;
  word-break: auto-phrase;
}
.news-list { display: grid; gap: 14px; margin: 30px 0 70px; }
.news-item {
  display: block; padding: 22px 24px; border: 2px solid var(--ink);
  border-radius: 18px; background: var(--paper); text-decoration: none; color: var(--ink);
  box-shadow: 5px 5px 0 rgba(29,27,26,0.12);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
}
.news-item:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--ink); }
.news-item time {
  font-family: var(--font-serif); font-style: italic; font-weight: 900; color: var(--tomato); font-size: 15px;
}
.news-item h2 { font-family: var(--font-jp-round); font-size: 19px; font-weight: 900; margin: 4px 0 6px; line-height: 1.4; }
.news-item p { color: var(--ink-soft); font-size: 14px; line-height: 1.75; }

/* フッター */
.site-foot {
  border-top: 2.5px solid var(--ink); background: var(--cream);
  padding: 30px 0; font-size: 13.5px; color: var(--ink-soft);
}
.site-foot .wrap { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; }
.site-foot a { color: var(--ink-soft); }

@media (prefers-reduced-motion: reduce) {
  .btn, .news-item { transition: none; }
  .btn:hover, .news-item:hover { transform: none; }
}

/* ============ サービス詳細ページ ============ */
.hero-svc { padding: 34px 0 6px; }
.hero-svc .eyebrow {
  font-family: var(--font-serif); font-style: italic; font-weight: 900;
  color: var(--ocean); font-size: 17px;
}
.hero-svc h1 {
  font-family: var(--font-jp-round); font-weight: 900;
  font-size: clamp(27px, 5.6vw, 40px); line-height: 1.28;
  margin: 6px 0 12px; letter-spacing: -0.01em; text-wrap: balance;
}
.hero-svc .lead {
  color: var(--ink-soft); font-size: 16px; max-width: 36em;
  text-wrap: balance; word-break: auto-phrase;
}
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; }
.svc-tag {
  padding: 6px 14px; border: 1.5px solid var(--ink); border-radius: 999px;
  font-size: 12.5px; font-weight: 700; background: var(--paper);
}
/* 困りごと */
.pain-list { display: grid; gap: 10px; margin: 0 0 8px; padding: 0; list-style: none; }
.pain-list li {
  position: relative; padding: 14px 18px 14px 46px;
  border: 2px solid var(--ink); border-radius: 14px; background: var(--cream);
  font-size: 15px; font-weight: 700;
}
.pain-list li::before {
  content: ''; position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; border-radius: 50%; background: var(--tomato);
}
/* 手順 */
.steps { counter-reset: s; display: grid; gap: 14px; margin: 0 0 8px; padding: 0; list-style: none; }
.steps li {
  counter-increment: s; position: relative; padding-left: 56px; min-height: 40px;
}
.steps li::before {
  counter-increment: none; content: counter(s);
  position: absolute; left: 0; top: 0;
  width: 40px; height: 40px; border-radius: 50%;
  border: 2.5px solid var(--ink); background: var(--sunshine);
  display: grid; place-items: center;
  font-family: var(--font-serif); font-style: italic; font-weight: 900; font-size: 17px;
}
.steps b { display: block; font-family: var(--font-jp-round); font-size: 16.5px; font-weight: 900; }
.steps span { display: block; color: var(--ink-soft); font-size: 14.5px; line-height: 1.75; }
/* 料金 */
.price-box {
  border: 2.5px solid var(--ink); border-radius: 18px; background: var(--paper);
  box-shadow: 5px 5px 0 rgba(29,27,26,0.12); padding: 22px 24px; margin: 22px 0;
}
.price-box .amount {
  font-family: var(--font-jp-round); font-weight: 900; font-size: 26px; display: block;
}
.price-box .amount small { font-size: 14px; font-weight: 700; color: var(--muted); margin-left: 6px; }
.price-box p { margin: 8px 0 0; font-size: 14.5px; color: var(--ink-soft); }
/* 正直に書くための注記 */
.honest {
  border-left: 5px solid var(--ocean); background: rgba(58,134,255,0.07);
  padding: 16px 20px; border-radius: 0 12px 12px 0; margin: 24px 0; font-size: 14.5px;
}
.honest p { margin-bottom: 8px; }
.honest p:last-child { margin-bottom: 0; }
.faq-q {
  font-family: var(--font-jp-round); font-weight: 900; font-size: 17px;
  margin: 22px 0 6px; line-height: 1.5;
}
.cta-note { margin-top: 14px; font-size: 14px; color: var(--muted); }
