/* ROCK ON MJ 紹介ページ
   色は「ギターの赤」1色＋温かみのある紙色で構成する。
   純白と純黒を使わないのが、落ち着いた見え方のいちばんの近道。 */

:root {
  --red: #d2402e;          /* アイコンのボディ色 */
  --red-dark: #a9301f;
  --ink: #241c1a;          /* 見出し（黒ではない） */
  --body: #59504c;         /* 本文 */
  --muted: #8a807b;
  --paper: #fbf8f6;        /* 背景（白ではない） */
  --cream: #f3ece7;
  --line: #e7ded8;
  --stage: #1c1917;        /* 暗いセクション（アンプの黒） */
  --stage-line: #37302c;
  --white: #fff;
  --radius: 20px;
  --wrap: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: Inter, "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--red); }

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

h1, h2, h3 { color: var(--ink); line-height: 1.35; letter-spacing: -.01em; margin: 0; }
h2 { font-size: clamp(28px, 3.1vw, 40px); font-weight: 700; }
h3 { font-size: 18px; font-weight: 650; }
p { margin: 0; }

/* セクションの小見出し（01 — FEATURES）。前に24pxの罫線を1本引く */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  color: var(--red);
  font-size: 11px; font-weight: 700; letter-spacing: .17em;
  margin: 0 0 20px;
}
.eyebrow:before { content: ""; width: 24px; height: 1px; background: currentColor; }

/* ---- ヘッダー ---- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: #fbf8f6d9;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.header-inner { height: 72px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ink); text-decoration: none; letter-spacing: .02em; }
.brand img { width: 28px; height: 28px; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--body); text-decoration: none; font-size: 14px; font-weight: 500; }
.nav a:hover { color: var(--red); }
.nav .btn-main, .nav .btn-main:hover { color: var(--white); }  /* .nav a より優先させる */

/* ---- ボタン ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px;
  font-weight: 650; font-size: 15px; text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-main { background: var(--red); color: var(--white); box-shadow: 0 8px 22px #d2402e33; }
.btn-main:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 12px 28px #d2402e3d; }
.btn-sub { background: var(--white); color: var(--ink); border: 1px solid var(--line); }
.btn-sub:hover { border-color: #cbbdb4; transform: translateY(-1px); }

/* ---- ヒーロー ---- */
.hero { position: relative; padding: 88px 0 76px; overflow: hidden; }
.hero:before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at 50% 58%, #f6e2dc 0, transparent 62%), var(--paper);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 14px;
  font-size: 12px; font-weight: 650; color: var(--ink);
  box-shadow: 0 2px 6px #241c1a0d;
}
.pill b { color: var(--red); }
h1 { font-size: clamp(36px, 4.6vw, 60px); font-weight: 750; margin: 22px 0 20px; }
.lead { font-size: 17px; max-width: 30em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 32px 0 18px; }
.hero-note { font-size: 13px; color: var(--muted); }

/* アプリ画面のモック（スクリーンショットの代わり） */
.mock {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 25px 70px -24px #5a3b3344, 0 0 0 1px #ece2dc66;
  overflow: hidden;
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--line); background: var(--cream); }
.dot { width: 10px; height: 10px; border-radius: 50%; background: #d8cbc4; }
.mock-title { margin-left: 8px; font-size: 12px; font-weight: 650; color: var(--muted); letter-spacing: .04em; }
.mock-body { padding: 20px; }
.wave { display: flex; align-items: flex-end; gap: 3px; height: 56px; margin-bottom: 18px; }
.wave i { flex: 1; background: linear-gradient(180deg, #e9a79c, var(--red)); border-radius: 2px; opacity: .85; }
.bar { height: 6px; border-radius: 999px; background: var(--cream); overflow: hidden; margin-bottom: 6px; }
.bar i { display: block; height: 100%; width: 62%; background: var(--red); border-radius: 999px; }
.bar-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-bottom: 16px; }
.lines { border-top: 1px solid var(--line); padding-top: 14px; font-size: 13px; line-height: 2; color: var(--body); }
.lines span { color: var(--muted); font-variant-numeric: tabular-nums; margin-right: 10px; }
.lines .flag { color: var(--red); font-size: 11px; font-weight: 650; }

/* ---- 仕様の帯 ---- */
.specs { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.specs-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.spec { padding: 26px 24px; border-left: 1px solid var(--line); }
.spec:first-child { border-left: 0; }
.spec b { display: block; color: var(--ink); font-size: 15px; font-weight: 650; }
.spec span { font-size: 13px; color: var(--muted); }

/* ---- セクション共通 ---- */
section { padding: 84px 0; }
.sec-head { max-width: 44em; margin-bottom: 44px; }
.sec-head p { margin-top: 14px; }

/* ---- 機能カード ---- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 28px 26px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 18px 44px -20px #5a3b3333; transform: translateY(-2px); }
.card .num { font-size: 12px; font-weight: 700; color: var(--red); letter-spacing: .1em; }
.card h3 { margin: 8px 0 10px; }
.card ul { margin: 14px 0 0; padding-left: 1.1em; font-size: 14.5px; }
.card li { margin-bottom: 4px; }

/* ---- 暗いセクション（仕組み） ---- */
.stage { background: var(--stage); color: #c9c0bb; }
.stage h2, .stage h3 { color: #f6f1ee; }
.stage .eyebrow { color: #e8836f; }
.stage-grid { display: grid; grid-template-columns: 1fr 1.08fr; gap: 52px; align-items: center; }
.stage-list { display: grid; gap: 18px; }
.stage-item { border-left: 2px solid var(--stage-line); padding-left: 18px; }
.stage-item b { display: block; color: #f6f1ee; font-weight: 650; }
.stage-item span { font-size: 14.5px; }
.flow { background: #231f1d; border: 1px solid var(--stage-line); border-radius: var(--radius); padding: 26px; }
.flow-step { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px dashed var(--stage-line); }
.flow-step:last-child { border-bottom: 0; }
.flow-step em { font-style: normal; color: #e8836f; font-weight: 700; font-size: 13px; min-width: 2.2em; }
.flow-step span { font-size: 14px; }

/* ---- ビルド手順 ---- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 28px; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.step .n {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--cream); color: var(--red);
  display: grid; place-items: center; font-size: 13px; font-weight: 700; margin-bottom: 14px;
}
.step p { font-size: 14.5px; margin-top: 8px; }
pre {
  background: var(--stage); color: #e7ded8; border-radius: var(--radius);
  padding: 22px 24px; overflow-x: auto; font-size: 13.5px; line-height: 1.9; margin: 0;
  font-family: "Cascadia Code", Consolas, "Courier New", monospace;
}
pre .c { color: #9a8f89; }
.note { font-size: 13.5px; color: var(--muted); margin-top: 16px; }

/* ---- FAQ ---- */
.faq { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 20px 0; }
summary { cursor: pointer; font-weight: 650; color: var(--ink); list-style: none; display: flex; align-items: center; gap: 12px; }
summary::-webkit-details-marker { display: none; }
summary:before { content: "+"; color: var(--red); font-weight: 700; }
details[open] summary:before { content: "−"; }
details p { margin-top: 12px; font-size: 15px; padding-left: 24px; }

/* ---- 注意書き ---- */
.caution {
  background: var(--cream); border-radius: var(--radius);
  padding: 26px 28px; font-size: 14.5px; margin-top: 40px;
}
.caution b { color: var(--ink); }

/* ---- 末尾 ---- */
.cta { text-align: center; background: var(--white); border-top: 1px solid var(--line); }
.cta .hero-actions { justify-content: center; }
.footer { padding: 36px 0 48px; font-size: 13.5px; color: var(--muted); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: center; }
.footer a { color: var(--body); text-decoration: none; }
.footer a:hover { color: var(--red); }
.footer .sep { margin-left: auto; }
.footer .counter b { font-weight: 600; color: var(--body); font-variant-numeric: tabular-nums; }

/* ---- 画面が狭いとき ---- */
@media (max-width: 900px) {
  .hero-grid, .stage-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards, .steps { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr 1fr; }
  .spec:nth-child(3) { border-left: 0; }
  .spec { border-top: 1px solid var(--line); }
  .spec:first-child, .spec:nth-child(2) { border-top: 0; }
  .nav a:not(.btn) { display: none; }
  section { padding: 64px 0; }
}
@media (max-width: 560px) {
  .specs-grid { grid-template-columns: 1fr; }
  .spec { border-left: 0; }
  .hero { padding: 56px 0 48px; }
}

/* 動きを減らす設定を尊重する */
/* ---- Amazon アソシエイト（道具・本） ---- */
.goods { border-bottom: 1px solid var(--line); }
.goods-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.good { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
.good:hover { box-shadow: 0 18px 44px -20px #0000002e; transform: translateY(-2px); }
.good .gcat { font-size: 11px; font-weight: 700; color: var(--red-dark); letter-spacing: .1em; }
.good h3 { font-size: 16px; margin: 6px 0 8px; }
.good p:not(.gcat) { font-size: 13.5px; flex: 1; }
.glink { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 14px; font-weight: 650; color: var(--red-dark); text-decoration: none; }
.glink:hover { color: var(--red); text-decoration: underline; }
.good .gimg { height: 140px; width: auto; max-width: 100%; object-fit: contain; margin: 0 auto 14px; display: block; background: var(--white); }
.good .gprice { font-size: 15px; font-weight: 700; color: var(--ink); margin-top: 10px; }
.good .gprice small { font-size: 11px; font-weight: 500; color: var(--muted); margin-left: 4px; }
.goods-note { font-size: 13px; color: var(--muted); margin-top: 18px; }
.footer .disclosure { width: 100%; font-size: 12.5px; color: var(--muted); margin-top: 6px; }
@media (max-width: 900px) { .goods-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .goods-grid { grid-template-columns: 1fr; } }

/* ---- シリーズの相互リンク（4サイト共通の作り） ---- */
.family { background: var(--cream); border-top: 1px solid var(--line); padding: 64px 0; }
.family .sec-head { margin-bottom: 28px; }
.family-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.fam { display: flex; flex-direction: column; gap: 4px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 18px; text-decoration: none; color: var(--body); transition: box-shadow .2s, transform .2s; }
.fam:hover { box-shadow: 0 18px 44px -20px #0000002e; transform: translateY(-2px); }
.fam img { width: 44px; height: 44px; border-radius: 11px; margin-bottom: 8px; }
.fam b { color: var(--ink); font-size: 16px; }
.fam span { font-size: 13.5px; line-height: 1.6; }
.fam em { font-style: normal; font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: .08em; margin-top: 8px; }
.fam.current { background: var(--paper); border-style: dashed; }
@media (max-width: 900px) { .family-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .family-grid { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
  .btn:hover, .card:hover { transform: none; }
}
