/* マイホーム研究所 — 共通スタイル
   方針：緑basic・シンプル・編集メディアの品・AIっぽさ排除（グラデ/絵文字/角丸カード量産をしない）
   見出し＝明朝（信頼・読み物感）／本文＝ゴシック（可読性） */

:root {
  --green-900: #294e3a;    /* 少しやわらかい深緑 */
  --green-700: #3a7a5a;    /* primary（やや明るく親しみ） */
  --green-600: #4a8b69;
  --green-050: #eef3e8;    /* あたたかい緑の淡色 */
  --ink:       #33342f;    /* 真っ黒を避けた温かい墨色 */
  --muted:     #7b8178;
  --bg:        #faf6ee;    /* あたたかいクリーム */
  --surface:   #fffdf9;    /* ほんのり温かい白 */
  --line:      #ece4d5;    /* やわらかい境界線 */
  --amber:     #d98a4a;    /* CTA accent（あたたかいオレンジ寄り） */
  --amber-dk:  #c2763a;
  --radius:    16px;
  --radius-sm: 11px;
  --pill:      999px;
  --shadow:    0 1px 3px rgba(50,65,50,.04), 0 8px 24px rgba(50,65,50,.06);
  --shadow-sm: 0 1px 2px rgba(50,65,50,.04), 0 3px 10px rgba(50,65,50,.05);
  --maxw:      1080px;
  --readw:     720px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans JP", -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16.5px;
  line-height: 1.95;
  letter-spacing: .015em;
}

h1, h2, h3, .serif {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .015em;
}

a { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- ヘッダー ---------- */
.topline { height: 4px; background: var(--green-700); }

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand .logo-mark { width: 26px; height: 26px; flex: none; }
.brand .logo, .brand .tagline { align-self: baseline; }
.brand .logo {
  font-family: "Noto Serif JP", serif; font-weight: 700;
  font-size: 22px; color: var(--green-900); letter-spacing: .03em;
}
.brand .tagline { font-size: 12px; color: var(--muted); }
.nav { display: flex; gap: 22px; font-size: 14px; }
.nav a { color: var(--ink); }
.nav a:hover { color: var(--green-700); text-decoration: none; }

@media (max-width: 720px){
  .brand .tagline { display: none; }
  .brand .logo { font-size: 16px; white-space: nowrap; }
  .nav { gap: 14px; font-size: 12px; }
  .nav a { white-space: nowrap; }
  .nav .nav-hide-sp { display: none; }   /* 狭い画面では一部のナビを隠す */
  .site-header .wrap { height: 54px; }
  .wrap { padding: 0 16px; }
}

/* ---------- ヒーロー ---------- */
.hero {
  background: var(--green-050);
  border-bottom: 1px solid var(--line);
  padding: 92px 0;
}
.hero .wrap { display: flex; align-items: center; gap: 60px; }
.hero-text { flex: 1 1 0; min-width: 0; }
.hero-art { flex: 0 0 470px; }
.hero-art svg { width: 100%; height: auto; display: block; }
/* 写真スロット（後で写真に差し替え） */
.hero-photo {
  aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--surface);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo.is-placeholder {
  border: 1.5px dashed #c7d4c7; background: var(--green-050);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: #8aa394; text-align: center; padding: 16px;
}
.hero-photo .ph-icon svg { width: 44px; height: 44px; opacity: .65; }
.hero-photo .ph-label { font-size: 13px; font-weight: 700; color: #7c9183; }
.hero-photo .ph-sub { font-size: 12px; color: #9aa99c; }
.hero h1 {
  font-size: 41px; color: var(--green-900); margin: 0 0 24px; line-height: 1.5; letter-spacing: .02em;
}
.hero p { max-width: 540px; color: #3c463e; margin: 0 0 8px; font-size: 16px; }
.hero .by { font-size: 13px; color: var(--muted); margin-top: 16px; }
@media (max-width: 900px){ .hero-art { flex-basis: 320px; } .hero h1 { font-size: 30px; } }
@media (max-width: 720px){
  .hero { padding: 44px 0; }
  .hero .wrap { flex-direction: column; gap: 28px; align-items: stretch; }
  .hero-art { flex: none; max-width: 260px; margin: 4px auto 0; }
  .hero h1 { font-size: 25px; }
}

/* ---------- セクション見出し ---------- */
.section { padding: 78px 0; }
.section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 11.5px; letter-spacing: .22em; color: var(--green-700);
  font-weight: 700; margin: 0 0 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--green-600); display: inline-block; }
.section-title { font-size: 27px; margin: 0 0 32px; color: var(--green-900); letter-spacing: .02em; }
@media (max-width: 720px){ .section { padding: 52px 0; } .section-title { font-size: 22px; margin-bottom: 24px; } }

/* ---------- 家づくりの流れ（ステップ） ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step {
  background: var(--green-050); border: 1px solid #dde6da; border-radius: var(--radius-sm);
  padding: 22px 22px;
}
.step .step-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%; background: var(--surface);
  border: 1px solid #cdddd0; color: var(--green-700);
  font-family: "Noto Serif JP", serif; font-weight: 700; font-size: 15px; margin-bottom: 12px;
}
.step h3 { font-size: 16px; margin: 0 0 6px; }
.step p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.75; }
.steps-note { margin: 18px 0 0; font-size: 14px; color: #5b6159; }
@media (max-width: 720px){ .steps { grid-template-columns: 1fr; gap: 12px; } }

/* ---------- カテゴリ ---------- */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cat {
  background: var(--surface); padding: 24px 22px; border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform .14s, box-shadow .14s;
}
.cat:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cat .num { font-family: "Noto Serif JP", serif; color: var(--green-600); font-size: 13px; }
.cat h3 { font-size: 17px; margin: 4px 0 6px; }
.cat p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.7; }
@media (max-width: 720px){ .cats { grid-template-columns: 1fr; } }

/* ---------- 記事リスト ---------- */
.posts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.post { border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.post .label {
  display: inline-block; font-size: 11px; letter-spacing: .08em;
  color: var(--green-700); border: 1px solid var(--green-700);
  border-radius: var(--pill); padding: 1px 8px; margin-bottom: 10px;
}
.post h3 { font-size: 18px; margin: 0 0 8px; }
.post h3 a { color: var(--ink); }
.post h3 a:hover { color: var(--green-700); text-decoration: none; }
.post p { font-size: 13px; color: var(--muted); margin: 0; }
.post .soon { color: #9aa39c; }
@media (max-width: 720px){ .posts { grid-template-columns: 1fr; gap: 22px; } }

/* ---------- 運営者 ---------- */
.author-strip {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px; display: flex; gap: 22px; align-items: flex-start;
}
.author-strip .avatar {
  width: 64px; height: 64px; border-radius: 50%; flex: none;
  background: var(--green-050); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: "Noto Serif JP", serif; color: var(--green-700); font-size: 22px;
}
.author-strip h3 { margin: 0 0 4px; font-size: 17px; }
.author-strip .quals { font-size: 12px; color: var(--green-700); margin: 0 0 8px; }
.author-strip p { margin: 0; font-size: 13px; color: #444c46; }
@media (max-width: 720px){ .author-strip { flex-direction: column; gap: 14px; } }

/* ---------- CTA ---------- */
.cta-band {
  background: var(--green-700); color: #eef5ef; padding: 44px 0; margin: 8px 0 0;
}
.cta-band .wrap { background: var(--green-700); }
.cta-band h3 { color: #fff; font-size: 21px; margin: 0 0 8px; }
.cta-band p { margin: 0 0 20px; font-size: 14px; color: #d7e6da; }
.btn {
  display: inline-block; background: var(--amber); color: #fff;
  padding: 14px 30px; border-radius: var(--pill); font-weight: 700; font-size: 15px;
  box-shadow: 0 6px 16px rgba(217,138,74,.28); transition: transform .12s, box-shadow .12s;
}
.btn:hover { background: var(--amber-dk); text-decoration: none; transform: translateY(-1px);
             box-shadow: 0 8px 20px rgba(217,138,74,.34); }
.btn .small { display: block; font-size: 11px; font-weight: 400; opacity: .9; }

/* ---------- フッター ---------- */
.site-footer {
  border-top: 1px solid var(--line); background: var(--green-050);
  padding: 40px 0 34px; margin-top: 0; font-size: 13px; color: var(--muted);
}
.site-footer .cols { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.site-footer a { color: var(--muted); }
.site-footer .disc { font-size: 12px; margin-top: 18px; color: #9aa39c; }

/* ---------- ヒーロー追加（CTA・数字バッジ） ---------- */
.hero-actions { margin-top: 22px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; }
.hero-stats .stat {
  border-left: 2px solid var(--green-600); padding-left: 12px;
}
.hero-stats .stat b { display: block; font-family: "Noto Serif JP", serif; font-size: 19px; color: var(--green-900); }
.hero-stats .stat span { font-size: 12px; color: var(--muted); }

/* ---------- 共感ブロック ---------- */
.pains {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 32px; box-shadow: var(--shadow-sm);
}
.pains h2 { font-size: 19px; margin: 0 0 16px; }
.pains ul { list-style: none; margin: 0; padding: 0; }
.pains li {
  position: relative; padding: 9px 0 9px 30px; border-bottom: 1px dashed var(--line);
  font-size: 15px;
}
.pains li:last-child { border-bottom: 0; }
.pains li::before {
  content: "✓"; position: absolute; left: 0; top: 8px;
  color: var(--green-600); font-weight: 700;
}
.pains .closer { margin: 16px 0 0; font-size: 14px; color: #38423b; }

/* ---------- 比較表 ---------- */
.table-scroll { border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.compare { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--surface);
           font-size: 14px; overflow: hidden; border-radius: var(--radius); }
.compare th, .compare td { border-bottom: 1px solid var(--line); padding: 16px 16px; text-align: left; vertical-align: middle; }
.compare tbody tr:last-child td { border-bottom: 0; }
.compare thead th { background: var(--green-700); color: #fff; font-weight: 600; font-size: 13px; }
.compare tbody tr.top { background: #fbfdfb; }
.compare .svc { font-weight: 700; color: var(--green-900); }
.compare .badge {
  display: inline-block; background: var(--amber); color: #fff; font-size: 10px;
  padding: 1px 7px; border-radius: var(--pill); margin-left: 6px; vertical-align: middle;
}
.compare .btn-sm {
  display: inline-block; background: var(--amber); color: #fff; padding: 9px 18px;
  border-radius: var(--pill); font-size: 13px; font-weight: 700; white-space: nowrap;
  box-shadow: 0 3px 10px rgba(217,138,74,.25);
}
.compare .btn-sm:hover { background: var(--amber-dk); text-decoration: none; }
.compare .stars { color: var(--amber); letter-spacing: 1px; }
.table-scroll { overflow-x: auto; }
@media (max-width: 720px){ .compare { min-width: 560px; } }

/* ---------- 人気ランキング ---------- */
.ranking { border-top: 1px solid var(--line); }
.rank-item { display: flex; gap: 18px; align-items: flex-start;
             padding: 20px 0; border-bottom: 1px solid var(--line); }
.rank-item .rank-no {
  font-family: "Noto Serif JP", serif; font-size: 30px; line-height: 1;
  color: var(--green-600); flex: none; width: 46px; text-align: center;
}
.rank-item.is-1 .rank-no, .rank-item.is-2 .rank-no, .rank-item.is-3 .rank-no { color: var(--amber-dk); }
.rank-item .label {
  display: inline-block; font-size: 11px; letter-spacing: .06em; color: var(--green-700);
  border: 1px solid var(--green-700); border-radius: var(--pill); padding: 1px 7px; margin-bottom: 7px;
}
.rank-item h3 { font-size: 17px; margin: 0 0 5px; }
.rank-item h3 a { color: var(--ink); }
.rank-item p { margin: 0; font-size: 13px; color: var(--muted); }

/* カテゴリに記事数 */
.cat .count { font-size: 11px; color: var(--muted); margin-top: 8px; display: block; }

/* ---------- 3つの約束（カラム） ---------- */
.promises { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.promise { background: var(--surface); border: 1px solid var(--line); border-top: 3px solid var(--green-700);
           padding: 24px 22px; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.promise .n { font-family: "Noto Serif JP", serif; color: var(--green-600); font-size: 13px; }
.promise h3 { font-size: 17px; margin: 4px 0 8px; }
.promise p { margin: 0; font-size: 13px; color: #444c46; }
@media (max-width: 720px){ .promises { grid-template-columns: 1fr; gap: 12px; } }

/* ---------- Instagram ---------- */
.ig-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 8px; }
.ig-cell {
  position: relative; aspect-ratio: 1 / 1; background: var(--green-050);
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  overflow: hidden; border-radius: var(--radius-sm); transition: transform .14s, box-shadow .14s;
}
.ig-cell:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.ig-cell img { width: 100%; height: 100%; object-fit: cover; }
.ig-cell .ph {
  font-size: 12px; color: #8aa394; text-align: center; padding: 0 10px; line-height: 1.6;
}
.ig-cell .cap {
  position: absolute; left: 0; right: 0; bottom: 0; background: rgba(29,58,43,.78);
  color: #fff; font-size: 11px; padding: 6px 8px; line-height: 1.5;
}
.btn-outline {
  display: inline-block; border: 1.5px solid var(--green-700); color: var(--green-700);
  padding: 10px 22px; border-radius: var(--pill); font-size: 14px; font-weight: 700;
}
.btn-outline:hover { background: var(--green-700); color: #fff; text-decoration: none; }
@media (max-width: 720px){ .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* ---------- 準備中ノート ---------- */
.soon-note { font-size: 13.5px; color: var(--muted); background: var(--green-050);
  border-radius: var(--radius-sm); padding: 14px 18px; }

/* ---------- 読者の状態別ナビ（ヒーロー下） ---------- */
.state-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 26px; }
.state-chip {
  display: block; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 14px 16px; box-shadow: var(--shadow-sm);
  transition: transform .14s, box-shadow .14s;
}
.state-chip:hover { transform: translateY(-2px); box-shadow: var(--shadow); text-decoration: none; }
.state-chip .q { display: block; font-size: 13.5px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.state-chip .a { display: block; font-size: 12px; color: var(--green-700); }
@media (max-width: 720px){ .state-nav { grid-template-columns: 1fr; gap: 8px; } }

/* ---------- CTA下のテキストリンク ---------- */
.cta-textlink { margin: 10px 0 0; font-size: 13px; }
.cta-textlink a { color: var(--green-700); text-decoration: underline; }

/* ---------- スマホ追尾CTA（記事ページのみ） ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: none; align-items: center; gap: 10px;
  background: #fffdf9f2; backdrop-filter: blur(6px);
  border-top: 1px solid var(--line); padding: 10px 14px;
  box-shadow: 0 -4px 16px rgba(50,65,50,.08);
}
.sticky-cta .btn { flex: 1; text-align: center; padding: 11px 10px; font-size: 13.5px; box-shadow: none; }
.sticky-cta .close {
  flex: none; width: 30px; height: 30px; border: 1px solid var(--line); border-radius: 50%;
  background: var(--surface); color: var(--muted); font-size: 14px; line-height: 1; cursor: pointer;
}
@media (max-width: 720px){ .sticky-cta.is-on { display: flex; } body.has-sticky { padding-bottom: 64px; } }

/* ---------- 引用風 ---------- */
.pullquote {
  font-family: "Noto Serif JP", serif; font-size: 20px; line-height: 1.8; color: var(--green-900);
  border-left: 4px solid var(--green-700); padding: 6px 0 6px 20px; margin: 24px 0;
}

/* ---------- 下層ページ共通ヘッダー ---------- */
.page-head { background: var(--green-050); border-bottom: 1px solid var(--line); padding: 44px 0; }
.page-head .breadcrumb { margin-bottom: 14px; }
.page-head h1 { font-size: 27px; color: var(--green-900); margin: 0; }
.page-head p { color: #38423b; margin: 12px 0 0; max-width: 660px; }
@media (max-width: 720px){ .page-head { padding: 32px 0; } .page-head h1 { font-size: 22px; } }

/* カテゴリ別 記事リスト */
.list-section { padding: 44px 0; }
.list-section + .list-section { padding-top: 0; }
.list-section .cat-bar {
  display: flex; align-items: baseline; gap: 12px; margin: 0 0 18px;
  padding-bottom: 10px; border-bottom: 2px solid var(--green-700);
}
.list-section .cat-bar h2 { font-size: 20px; margin: 0; color: var(--green-900); }
.list-section .cat-bar a { font-size: 13px; margin-left: auto; }
.post-row { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.post-row:last-child { border-bottom: 0; }
.post-row .lbl {
  font-size: 11px; color: var(--green-700); border: 1px solid var(--green-700);
  border-radius: var(--pill); padding: 1px 9px; white-space: nowrap; flex: none;
}
.post-row h3 { font-size: 16px; margin: 0; font-weight: 500; }
.post-row h3 a { color: var(--ink); }
.post-row .soon { font-size: 12px; color: #9aa39c; margin-left: auto; flex: none; white-space: nowrap; }

/* 法的・テキストページ */
.legal .article-inner { padding-top: 36px; }
.legal h2 { font-size: 19px; margin: 32px 0 12px; padding-left: 12px; border-left: 4px solid var(--green-700); color: var(--green-900); }
.legal p, .legal li { font-size: 15px; }
.legal table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 14px; }
.legal th, .legal td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.legal th { background: var(--green-050); white-space: nowrap; }

/* ---------- 記事ページ ---------- */
.article { background: var(--surface); }
.article-inner { max-width: var(--readw); margin: 0 auto; padding: 44px 20px 24px; }
.breadcrumb { font-size: 12px; color: var(--muted); margin-bottom: 18px; }
.article h1 { font-size: 27px; color: var(--green-900); line-height: 1.45; margin: 0 0 16px; }
.article .meta { font-size: 13px; color: var(--muted); border-bottom: 1px solid var(--line);
                 padding-bottom: 18px; margin-bottom: 28px; }
.article p { margin: 0 0 18px; }
.article h2 {
  font-size: 21px; color: var(--green-900); margin: 40px 0 16px;
  padding-left: 14px; border-left: 4px solid var(--green-700);
}
.lead { color: #38423b; }
.summary-box {
  background: var(--green-050); border: 1px solid #dce7d6; border-radius: var(--radius);
  padding: 24px 26px; margin: 28px 0;
}
.summary-box h2 { border: 0; padding: 0; margin: 0 0 12px; font-size: 17px; }
.summary-box ol { margin: 0; padding-left: 1.3em; }
.summary-box li { margin-bottom: 7px; font-size: 14.5px; }
.cta-inline {
  background: #fffaf3; border: 1px solid #f0d9bf; border-radius: var(--radius);
  padding: 26px; text-align: center; margin: 32px 0; box-shadow: var(--shadow-sm);
}
.cta-inline .free { font-size: 13px; color: var(--amber-dk); font-weight: 700; margin: 0 0 10px; }
/* 目次 */
.toc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin: 28px 0; box-shadow: var(--shadow-sm); }
.toc .toc-h { font-family: "Noto Serif JP", serif; font-weight: 600; font-size: 15px; color: var(--green-900); margin: 0 0 12px; }
.toc ol { margin: 0; padding-left: 1.4em; }
.toc li { margin-bottom: 7px; font-size: 14px; }
.toc a { color: #38423b; }
.toc a:hover { color: var(--green-700); }
.readtime { font-size: 12px; color: var(--muted); }

/* プロの視点 コラムボックス */
.pro-box {
  background: var(--green-050); border: 1px solid #dce7d6; border-radius: var(--radius);
  padding: 20px 24px; margin: 24px 0;
}
.pro-box .ph { font-family: "Noto Serif JP", serif; font-weight: 600; font-size: 14px;
               color: var(--green-700); margin: 0 0 8px; }
.pro-box p { margin: 0; font-size: 14px; color: #38423b; }

/* 関連記事 */
.related { border-top: 1px solid var(--line); margin-top: 40px; padding-top: 24px; }
.related h2 { border: 0; padding: 0; font-size: 18px; margin: 0 0 16px; }
.related ul { list-style: none; margin: 0; padding: 0; }
.related li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.related li:last-child { border-bottom: 0; }
.related .lbl { font-size: 11px; color: var(--green-700); border: 1px solid var(--green-700);
                border-radius: var(--pill); padding: 0 6px; margin-right: 8px; }

.author-card {
  border-top: 1px solid var(--line); margin-top: 40px; padding-top: 24px;
  display: flex; gap: 18px; align-items: flex-start;
}
.author-card .avatar {
  width: 56px; height: 56px; border-radius: 50%; flex: none; background: var(--green-050);
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  font-family: "Noto Serif JP", serif; color: var(--green-700); font-size: 20px;
}
.author-card .quals { font-size: 12px; color: var(--green-700); margin: 2px 0 6px; }
.author-card p { font-size: 13px; color: #444c46; margin: 0; }
@media (max-width: 720px){ .article h1 { font-size: 22px; } .article-inner { padding: 28px 18px; } }
