:root {
  --bg: #FCF2DC;
  --card: #FFFDF8;
  --ink: #4E290C;
  --sub: #6B5B41;
  --accent: #E2551F;
  --border: #F1DCA8;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
  line-height: 1.85;
}
a { color: var(--accent); }
header.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
header.site .brand { font-weight: 900; color: var(--accent); text-decoration: none; font-size: 18px; }
header.site nav a { color: var(--sub); text-decoration: none; margin-left: 14px; font-size: 13px; font-weight: 700; }
.wrap { max-width: 760px; margin: 0 auto; padding: 28px 20px 72px; }
h1 { font-size: 26px; margin: 0 0 6px; }
h2 { font-size: 19px; margin: 34px 0 10px; border-left: 5px solid var(--accent); padding-left: 10px; }
h3 { font-size: 15px; margin: 22px 0 6px; color: var(--sub); }
p, li { font-size: 15px; }
ul, ol { padding-left: 22px; }
.meta { color: var(--sub); font-size: 13px; margin: 0; }
table { border-collapse: collapse; width: 100%; margin: 14px 0; font-size: 14px; }
th, td { border: 1px solid var(--border); padding: 8px 10px; text-align: left; vertical-align: top; }
th { background: #FBF0D4; }
.card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 18px 20px; margin: 16px 0; }
footer.site { border-top: 1px solid var(--border); padding: 26px 20px; text-align: center; color: var(--sub); font-size: 13px; background: var(--card); }
footer.site a { margin: 0 8px; }
/* ===== 画像1枚LP ===== */
/* 背景は画像の縁になじむ暖色。PCでは画像を最大幅で中央寄せ、モバイルは幅100%に縮小 */
body.lp-page { background: #FCE9C0; }
.lp { padding: 0; }
.lp-inner {
  position: relative;      /* ホットスポットの基準 */
  max-width: 864px;        /* 画像の実寸幅。PCは添付のままの見た目 */
  margin: 0 auto;
  line-height: 0;          /* 画像下の余白防止 */
}
.lp-img { display: block; width: 100%; height: auto; }

/* App Storeボタンだけをクリック可能にする透明ホットスポット。
   数値は画像(864x1821)に対する割合。left/width=横幅基準, top/height=縦幅基準。 */
.hotspot {
  position: absolute;
  display: block;
  border-radius: 12px;
  -webkit-tap-highlight-color: transparent;
}
.hotspot:hover { background: rgba(255,255,255,0.14); }
.hotspot:focus-visible { outline: 3px solid #E2551F; outline-offset: 2px; }
.store-top    { left: 33.0%; top: 37.7%; width: 34.2%; height: 4.6%; }
.store-bottom { left: 37.3%; top: 94.6%; width: 31.4%; height: 3.9%; }

/* フッター(法的リンク) */
.lp-footer { margin-top: 0; }
.lp-footer nav a { color: var(--sub); text-decoration: none; margin: 0 8px; font-weight: 700; }
.lp-footer .copy { margin: 12px 0 0; color: var(--sub); font-size: 12px; }

/* ===== 法的ページ(privacy / terms / contact)— LPとトンマナを統一 ===== */
body.doc-page { background: linear-gradient(180deg, #FCE4B3 0%, #FCE9C0 160px, var(--bg) 380px); }
.doc-brand { display: block; text-align: center; padding: 30px 20px 6px; line-height: 0; }
.doc-brand img { width: 220px; max-width: 62%; height: auto; filter: drop-shadow(0 6px 14px rgba(150,80,20,0.18)); }
body.doc-page .wrap { padding-top: 12px; }
body.doc-page .card { box-shadow: 0 8px 26px rgba(150,90,30,0.08); }
