@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Jost:wght@400;500&display=swap');

:root{
  --ink:#3d3835;
  --sub:#8a807a;
  --line:#eee4e0;
  --bg:#ffffff;
  --bg-tint:#fdf4f1;      /* ごく薄いピンクベージュ */
  --rose:#c4405a;         /* CTA・強調のローズレッド */
  --rose-soft:#f4d9dd;    /* ハイライト帯 */
  --sage:#9fb8ab;         /* 差し色 */
  --sky:#a8c4d4;
}
*{box-sizing:border-box}
body{margin:0;background:var(--bg);color:var(--ink);
  font-family:"Zen Kaku Gothic New","Hiragino Sans","Noto Sans JP",sans-serif;
  font-weight:400;line-height:2.05;font-size:16.5px;letter-spacing:.05em;-webkit-text-size-adjust:100%}
a{color:var(--rose);text-underline-offset:4px;text-decoration-thickness:1px}
.wrap{max-width:730px;margin:0 auto;padding:0 22px}

/* ヘッダー */
header{background:#fff;border-bottom:1px solid var(--line)}
header .wrap{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:20px 22px;flex-wrap:wrap}
.logo{font-weight:500;font-size:19px;color:var(--ink);text-decoration:none;letter-spacing:.12em}
nav a{margin-left:20px;font-size:12px;color:var(--sub);text-decoration:none;
  font-family:"Jost",sans-serif;letter-spacing:.14em;text-transform:uppercase}
nav a:hover{color:var(--rose)}

main{padding:52px 0 80px}

/* 見出し */
h1{font-size:26px;line-height:1.85;margin:0 0 12px;font-weight:700;letter-spacing:.04em}
h2{font-size:19px;margin:64px 0 28px;font-weight:700;line-height:1.75;letter-spacing:.08em;
  text-align:center;color:#fff;background:var(--rose);border-radius:4px;padding:14px 22px}
h3{font-size:17.5px;margin:38px 0 12px;font-weight:500;letter-spacing:.04em}
h3::before{content:"";display:inline-block;width:8px;height:8px;border-radius:50%;
  background:var(--rose);opacity:.55;margin-right:9px;vertical-align:middle}
p{margin:0 0 24px}

/* ★ 文字の後ろに敷くハイライト帯 */
.hl{background:linear-gradient(transparent 58%,var(--rose-soft) 58%);padding:0 2px;font-weight:500}
strong{font-weight:700;background:linear-gradient(transparent 62%,var(--rose-soft) 62%);padding:0 1px}

.meta{color:var(--sub);font-size:12.5px;margin-bottom:32px;font-family:"Jost",sans-serif;letter-spacing:.1em}

/* 吹き出し型ボックス */
.lead{position:relative;background:#fff;border:1px solid var(--line);border-radius:6px;
  padding:28px 30px;margin:0 0 44px}
.lead::after{content:"";position:absolute;left:50%;bottom:-9px;transform:translateX(-50%) rotate(45deg);
  width:16px;height:16px;background:#fff;border-right:1px solid var(--line);border-bottom:1px solid var(--line)}
.lead p:last-child{margin-bottom:0}

ul,ol{padding-left:1.5em;margin:0 0 24px}
li{margin-bottom:13px}

.note{background:var(--bg-tint);border-radius:6px;padding:24px 28px;margin:36px 0;font-size:15.5px;line-height:2}
.note p:last-child{margin-bottom:0}

.toc{background:var(--bg-tint);border-radius:6px;padding:24px 30px;margin:0 0 44px}
.toc-title{font-weight:700;font-size:13px;margin-bottom:14px;text-align:center;
  font-family:"Jost",sans-serif;letter-spacing:.18em;text-transform:uppercase;color:var(--rose)}
.toc ol{margin:0;font-size:14.5px}
.toc li{margin-bottom:9px}

/* カード */
.cards{display:grid;gap:20px}
.card{display:block;background:#fff;border:1px solid var(--line);border-radius:6px;padding:26px 28px;
  text-decoration:none;color:var(--ink);transition:.25s}
.card:hover{border-color:var(--rose);box-shadow:0 4px 20px rgba(196,64,90,.09)}
.card h3{margin:0 0 10px;font-size:17px;line-height:1.8;font-weight:700}
.card h3::before{display:none}
.card p{margin:0;color:var(--sub);font-size:14.5px;line-height:1.9}

.related{margin-top:64px;padding-top:8px;border-top:1px solid var(--line)}
.related h2{font-size:16px;margin-top:36px}

.ad-notice{background:var(--bg-tint);border-radius:4px;padding:11px 18px;
  font-size:11.5px;color:var(--sub);margin-bottom:34px;line-height:1.8;letter-spacing:.03em}
.crumb{font-size:12px;color:var(--sub);margin-bottom:24px;letter-spacing:.06em}
.crumb a{color:var(--sub);text-decoration:none}

footer{border-top:1px solid var(--line);background:var(--bg-tint);padding:36px 0;font-size:13px;color:var(--sub)}
footer a{color:var(--sub);margin-right:20px;text-decoration:none;letter-spacing:.06em}
footer a:hover{color:var(--rose)}

@media(max-width:600px){
  body{font-size:15.5px;line-height:2}
  h1{font-size:21px}h2{font-size:18px}
  nav a{margin-left:0;margin-right:16px;font-size:11px}
  .lead,.toc,.card,.note{padding:20px 22px}
  main{padding:36px 0 60px}
}

/* ── 参考デザインから追加（2026-08-26） ── */

/* 小見出しの上に置くラベル（POINT-1 のような） */
.label{font-family:"Jost",sans-serif;font-size:12px;letter-spacing:.18em;color:var(--rose);
  font-weight:500;text-transform:uppercase;display:block;margin:40px 0 6px}

/* 2行見出し：1行目をローズ、2行目を濃い色 */
.h-two{font-size:20px;line-height:1.8;font-weight:700;letter-spacing:.04em;margin:0 0 16px}
.h-two .r{color:var(--rose);display:block}

/* 本文中の強調（帯ではなく文字色） */
.em{color:var(--rose);font-weight:500}

/* 薄ピンクの面に白カードを乗せるセクション */
.tint-block{background:var(--bg-tint);border-radius:10px;padding:28px 20px;margin:36px 0}
.tint-block > .card,.tint-block > .panel{margin-bottom:16px}
.tint-block > :last-child{margin-bottom:0}
.panel{background:#fff;border-radius:8px;padding:26px 28px}
.panel p:last-child{margin-bottom:0}

/* 記事末尾のまとめ */
.summary{border:2px solid var(--rose-soft);border-radius:8px;padding:26px 28px;margin:44px 0 0}
.summary .label{margin-top:0}
.summary ul{margin-bottom:0}

@media(max-width:600px){
  h2{font-size:17px;padding:12px 16px}
  .h-two{font-size:18px}
  .tint-block{padding:20px 14px}
  .panel{padding:20px 22px}
}

/* アイキャッチ画像 */
.hero{margin:0 0 34px;border-radius:8px;overflow:hidden;line-height:0}
.hero img{width:100%;height:auto;display:block}
.card-img{border-radius:6px 6px 0 0;overflow:hidden;line-height:0;margin:-26px -28px 18px}
.card-img img{width:100%;height:170px;object-fit:cover;display:block}
@media(max-width:600px){.card-img{margin:-20px -22px 16px}.card-img img{height:140px}}

/* キャラクターアイコン */
.logo{display:inline-block;line-height:0}
.logo img{height:46px;width:auto;display:block}
nav a.ig{color:var(--rose);font-weight:500}
.ic{width:56px;height:56px;object-fit:contain;vertical-align:middle;flex:0 0 auto}
.ic-row{display:flex;align-items:flex-start;gap:16px;margin:32px 0}
.ic-row .ic{margin-top:2px}
.ic-row .bubble{position:relative;background:var(--bg-tint);border-radius:14px;padding:18px 22px;flex:1;font-size:15.5px;line-height:1.95}
.ic-row .bubble::before{content:"";position:absolute;left:-7px;top:20px;width:14px;height:14px;
  background:var(--bg-tint);transform:rotate(45deg)}
.ic-row .bubble p:last-child{margin-bottom:0}
h2 .ic{width:30px;height:30px;margin-right:6px}
@media(max-width:600px){.ic{width:46px;height:46px}.logo-ic{width:30px;height:30px}}

/* お問い合わせフォーム */
.cform{background:#fff;border:1px solid var(--line);border-radius:8px;padding:28px 30px;margin:0 0 32px}
.cform label{display:block;margin-bottom:22px;font-size:14.5px;font-weight:500;letter-spacing:.04em}
.cform .req{display:inline-block;margin-left:8px;padding:1px 8px;border-radius:3px;
  background:var(--rose);color:#fff;font-size:10.5px;font-weight:400;letter-spacing:.08em;vertical-align:2px}
.cform input[type=text],.cform input[type=email],.cform textarea{
  display:block;width:100%;margin-top:9px;padding:12px 14px;border:1px solid var(--line);
  border-radius:5px;background:var(--bg-tint);font-family:inherit;font-size:15.5px;
  line-height:1.8;color:var(--ink);letter-spacing:.03em}
.cform input:focus,.cform textarea:focus{outline:none;border-color:var(--rose);background:#fff}
.cform textarea{resize:vertical}
.cform .hint{display:block;margin-top:7px;font-size:12.5px;color:var(--sub);font-weight:400}
.cform button{display:block;width:100%;padding:15px;border:0;border-radius:6px;
  background:var(--rose);color:#fff;font-family:inherit;font-size:16px;font-weight:700;
  letter-spacing:.1em;cursor:pointer;transition:.2s}
.cform button:hover{background:var(--accent-deep,#a83a52);opacity:.92}
@media(max-width:600px){.cform{padding:22px}}

@media(max-width:600px){.logo img{height:36px}}
