@charset "UTF-8";
/* ソーラーリスト 公開サイト  SOLARLIST_LP_2026_08_11
   トークンは Smartmart DNA を踏襲（--sm-blue #0668E1 / #1c2b33 / 白基調 + 細ボーダー）。
   カードに上辺の色帯・左帯は使わない（デザインガイド §1-8）。 */

:root {
  /* 配色は apodori.ai を参照して抽出（2026-08-11）。
     太陽光サービスなのでオレンジは意味的にも噛み合う。 */
  --sm-blue:   #f55f00;   /* アクセント（旧: 青） */
  --sm-blue-d: #ca4700;   /* ホバー時の濃い方 */
  --or-light:  #ff8f33;
  --or-pale:   #fef1e7;   /* セクション背景の薄いピーチ */
  --or-pale2:  #ffe2b3;
  --sm-black:  #101010;   /* 見出しは真っ黒に近い方が締まる */
  --sm-line:   #e8e8e8;
  --sm-mute:   #616161;
  --sm-bg:     #ffffff;
  --sm-bg-sub: #fef1e7;
  --sm-green:  #17A34A;
  --sm-red:    #E5484D;
  --container: 1140px;
  --pill: 999px;
}

/* ロゴ専用フォント。LINE Seed JP から「ソーラーリスト」の文字だけ切り出したもの（1.8KB）。
   本文まで読み込むと1ウェイト3.5MBあるので、ロゴに限定している。
   🔴 LINE Seed JP に斜体（italic）は存在しない（Thin/Regular/Bold/ExtraBoldの4ウェイトのみ）。
      そのため font-style: italic は使わず、skewX で傾けている。合成斜体は日本語で字形が崩れるため。 */
@font-face {
  font-family: "SolarListLogo";
  src: url("../assets/fonts/solarlist-logo.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.sl-body {
  margin: 0;
  font-family: "LINE Seed JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans",
               "Noto Sans JP", "Yu Gothic", sans-serif;
  color: var(--sm-black);
  background: var(--sm-bg);
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; }

.sl-ico { width: 22px; height: 22px; flex: 0 0 auto; }
.sl-ico--lg { width: 32px; height: 32px; }
.sl-ico--sm { width: 16px; height: 16px; }

/* ---------- ヘッダー ---------- */
.sl-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--sm-line);
  backdrop-filter: saturate(180%) blur(8px);
}
.sl-header__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 20px;
  height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sl-logo { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--sm-black); }
.sl-logo__mark { color: var(--sm-blue); }
/* ---------- ブランド（アイコン＋ロゴ文字） ---------- */
.sl-brand { display: inline-flex; align-items: center; gap: 9px; }
.sl-brand__mark { display: block; width: auto; }
.sl-brand__text { display: block; width: auto; }

/* ヘッダー・フッターはロゴの上に小さくキャッチを載せる（縦積み） */
.sl-brand--head, .sl-brand--foot {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas: "catch catch" "mark text";
  align-items: center; gap: 0 9px; justify-content: start;
}
.sl-brand--head .sl-brand__mark, .sl-brand--foot .sl-brand__mark { grid-area: mark; }
.sl-brand--head .sl-brand__text, .sl-brand--foot .sl-brand__text { grid-area: text; }
.sl-brand--head .sl-brand__catch, .sl-brand--foot .sl-brand__catch {
  grid-area: catch;
  margin: 0 0 3px; font-size: 11px; font-weight: 700;
  color: var(--sm-blue); letter-spacing: .06em; line-height: 1.2;
}
.sl-brand--head .sl-brand__mark { height: 30px; }
.sl-brand--head .sl-brand__text { height: 19px; }
.sl-brand--foot .sl-brand__mark { height: 26px; }
.sl-brand--foot .sl-brand__text { height: 17px; }
.sl-brand--foot .sl-brand__catch { color: var(--sm-mute); }

/* ヒーローのキャッチコピー */
.sl-catch {
  display: inline-block; margin: 0 0 14px;
  padding-left: 40px; position: relative;
  font-size: 15px; font-weight: 800; color: var(--sm-blue); letter-spacing: .02em;
}
.sl-catch::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 30px; height: 2px; background: var(--sm-blue);
}

/* 表紙のロゴ上に置くキャッチ */
.sl-brand__catch {
  display: block; margin-bottom: 4px;
  font-size: 17px; font-weight: 700; color: #ffb566; letter-spacing: .12em;
}

/* 提案資料の表紙は縦積み・白抜き */
.sl-brand--cover { flex-direction: column; gap: 22px; }
.sl-brand--cover .sl-brand__mark { height: 96px; }
.sl-brand--cover .sl-brand__text { height: 52px; }

@media (max-width: 720px) {
  .sl-brand--head .sl-brand__mark { height: 24px; }
  .sl-brand--head .sl-brand__text { height: 16px; }
  .sl-brand--head .sl-brand__catch { font-size: 10px; letter-spacing: .02em; }
}
.sl-nav { display: flex; align-items: center; gap: 20px; }
.sl-nav__link { color: var(--sm-black); text-decoration: none; font-size: 14px; font-weight: 600; }
.sl-nav__link:hover { color: var(--sm-blue); }

/* ---------- スマホのメニュー ---------- */
.sl-burger {
  display: none; width: 48px; padding: 0;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; align-items: center; gap: 4px;
  position: relative; z-index: 210;
}
.sl-burger__bars { display: flex; flex-direction: column; gap: 5px; }
.sl-burger__bars span {
  display: block; width: 24px; height: 2px; background: var(--sm-black); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.sl-burger__label {
  font-size: 10px; font-weight: 800; letter-spacing: .1em;
  color: var(--sm-black); line-height: 1;
}
.sl-burger[aria-expanded="true"] .sl-burger__bars span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sl-burger[aria-expanded="true"] .sl-burger__bars span:nth-child(2) { opacity: 0; }
.sl-burger[aria-expanded="true"] .sl-burger__bars span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 720px) {
  .sl-burger { display: flex; }
  /* 🔴 backdrop-filter を持つ要素は position:fixed の基準（containing block）になる。
     ヘッダーに付けたままだと、中の全画面メニューが「ヘッダーの高さ」に閉じ込められて
     背景も出ず高さも潰れる。スマホでは外して、fixed をビューポート基準に戻す。 */
  .sl-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }

  /* 開いたメニューはヘッダー下から画面下まで覆う（ハンバーガーは常に押せる位置に残す） */
  .sl-nav {
    position: fixed; top: 74px; left: 0; right: 0; bottom: 0; z-index: 90;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff;
    padding: 12px 24px 40px;
    overflow-y: auto;
    display: none;
  }
  .sl-nav--open { display: flex; }
  .sl-nav__link {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 4px; font-size: 19px; font-weight: 700;
    border-bottom: 1px solid var(--sm-line);
  }
  .sl-nav__link::after {
    content: ""; width: 9px; height: 9px;
    border-right: 2px solid var(--sm-blue); border-bottom: 2px solid var(--sm-blue);
    transform: rotate(-45deg);
  }
  .sl-nav .sl-btn { margin-top: 28px; width: 100%; }
  .sl-header__inner { position: relative; }
  /* メニューを開いている間は背面をスクロールさせない */
  body.sl-locked { overflow: hidden; }
}

/* ---------- ボタン ---------- */
.sl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 56px; padding: 0 34px; border-radius: var(--pill);
  border: 1px solid var(--sm-line); background: #fff; color: var(--sm-black);
  font-size: 16px; font-weight: 700; font-family: inherit; text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background .15s ease;
}
.sl-btn:hover { transform: translateY(-1px); }
/* 主ボタンは黒のピル、次点をオレンジにする（参照サイトと同じ役割分担） */
.sl-btn--primary { background: var(--sm-black); border-color: var(--sm-black); color: #fff; }
.sl-btn--primary:hover { background: #000; border-color: #000; }
.sl-btn--accent { background: var(--sm-blue); border-color: var(--sm-blue); color: #fff; }
.sl-btn--accent:hover { background: var(--sm-blue-d); border-color: var(--sm-blue-d); }
.sl-btn--ghost { background: #fff; }
.sl-btn--sm { min-height: 42px; padding: 0 20px; font-size: 14px; }
.sl-btn--lg { min-height: 60px; padding: 0 36px; font-size: 17px; }
.sl-btn--full { width: 100%; }

/* ---------- セクションの切り返し（曲線） ---------- */
.sl-curve { line-height: 0; margin: 0; }
.sl-curve svg { display: block; width: 100%; height: 90px; }
.sl-curve--flip svg { transform: scaleY(-1); }

@media (max-width: 720px) {
  .sl-curve svg { height: 48px; }
}

/* ---------- 共通レイアウト ---------- */
.sl-section { padding: 80px 20px; }
.sl-section--sub { background: var(--sm-bg-sub); }
.sl-section--tight { padding-top: 24px; }
.sl-inner { max-width: var(--container); margin: 0 auto; }
.sl-inner--narrow { max-width: 820px; }

.sl-eyebrow {
  display: inline-block; margin: 0 0 14px; padding: 6px 18px; border-radius: var(--pill);
  background: var(--or-pale); color: var(--sm-blue); font-size: 13px; font-weight: 800;
}
.sl-h2 { margin: 0 0 12px; font-size: 34px; font-weight: 800; line-height: 1.38; letter-spacing: .01em; }
.sl-h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.sl-lead { margin: 0 0 40px; color: var(--sm-mute); font-size: 16px; }
.sl-center { text-align: center; }

@media (max-width: 720px) {
  .sl-section { padding: 56px 20px; }
  .sl-h2 { font-size: 24px; }
}

/* ---------- ヒーロー ---------- */
.sl-hero {
  position: relative; overflow: hidden;
  padding: 72px 20px 72px; background: #fff;
}
/* 右上から回り込むオレンジの弧。参照サイトの装飾に合わせた */
.sl-hero::before {
  content: ""; position: absolute; top: -180px; right: -160px;
  width: 620px; height: 620px; border-radius: 50%;
  background: var(--sm-blue); opacity: .10; pointer-events: none;
}
.sl-hero::after {
  content: ""; position: absolute; bottom: -240px; left: -140px;
  width: 480px; height: 480px; border-radius: 50%;
  background: var(--or-pale2); opacity: .5; pointer-events: none;
}
.sl-hero__inner { position: relative; z-index: 1; }
.sl-hero__inner { max-width: var(--container); margin: 0 auto; display: grid; gap: 48px; grid-template-columns: 1fr 1fr; align-items: center; }
.sl-hero__title { margin: 0 0 20px; font-size: 44px; font-weight: 800; line-height: 1.3; letter-spacing: 0; }
.sl-hero__title em { font-style: normal; color: var(--sm-blue); }
.sl-hero__text strong { color: var(--sm-black); }
.sl-hero__text { margin: 0 0 32px; font-size: 17px; color: var(--sm-mute); }
.sl-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.sl-hero__note { margin: 16px 0 0; font-size: 13px; color: var(--sm-mute); }
/* ---------- スマホ実機のモック（agentclick.ai の見せ方に合わせた） ---------- */
.sl-phone {
  position: relative; width: 320px; margin: 0 auto;
  padding: 12px; background: #1c1c1e;
  border-radius: 52px;
  box-shadow: 0 24px 70px rgba(0,0,0,.28), inset 0 0 0 2px #3a3a3c;
}
.sl-phone__screen {
  display: block; width: 100%; border-radius: 42px;
  background: var(--sm-bg-sub);
}
/* Dynamic Island */
.sl-phone::before {
  content: ""; position: absolute; top: 26px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 28px; background: #1c1c1e; border-radius: 16px; z-index: 2;
}
/* 側面のボタン */
.sl-phone::after {
  content: ""; position: absolute; right: -3px; top: 168px;
  width: 3px; height: 78px; background: #3a3a3c; border-radius: 0 3px 3px 0;
}
.sl-phone__cap { margin: 18px 0 0; text-align: center; font-size: 13px; color: var(--sm-mute); }

.sl-hero__visual { border: 1px solid var(--sm-line); border-radius: 20px; overflow: hidden; background: #fff; }
.sl-hero__visual img {
  display: block; width: 100%;
  /* スマホ画面の縦長スクショをそのまま置くと本文が押し下げられるので上端だけ見せる */
  max-height: 560px; object-fit: cover; object-position: top;
}
.sl-hero__inner > div:first-child { align-self: center; }
.sl-hero__cap { margin: 0; padding: 10px 14px; font-size: 12px; color: var(--sm-mute); border-top: 1px solid var(--sm-line); background: var(--sm-bg-sub); }

@media (max-width: 900px) {
  .sl-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .sl-hero__title { font-size: 30px; }
}

@media (max-width: 720px) {
  /* 円弧が本文の下に潜り込んで読みづらくなるので、画面外へ逃がして薄くする */
  .sl-hero::before { top: -240px; right: -260px; width: 420px; height: 420px; opacity: .07; }
  .sl-hero::after  { bottom: -300px; left: -240px; width: 380px; height: 380px; opacity: .35; }
  .sl-hero { padding: 40px 20px 48px; }
  .sl-phone { width: 260px; padding: 10px; border-radius: 42px; }
  .sl-phone::before { top: 22px; width: 80px; height: 24px; }
  .sl-phone__screen { border-radius: 34px; }
}

/* ---------- 課題（before/after） ---------- */
.sl-ba { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; }
.sl-ba__col { border: 1px solid var(--sm-line); border-radius: 16px; padding: 28px; background: #fff; }
.sl-ba__col--after { border-color: #b9d5f7; background: #f7fbff; }
.sl-ba__label { margin: 0 0 16px; font-size: 13px; font-weight: 700; color: var(--sm-mute); }
.sl-ba__col--after .sl-ba__label { color: var(--sm-blue); }
.sl-ba__list { margin: 0; padding: 0; list-style: none; }
.sl-ba__list li { display: flex; gap: 10px; align-items: flex-start; margin: 0 0 14px; font-size: 15px; }
.sl-ba__list li:last-child { margin-bottom: 0; }
.sl-ba__x { color: var(--sm-red); }
.sl-ba__c { color: var(--sm-blue); }
.sl-ba__arrow { display: flex; align-items: center; color: var(--sm-mute); }

@media (max-width: 860px) {
  .sl-ba { grid-template-columns: 1fr; }
  .sl-ba__arrow { justify-content: center; transform: rotate(90deg); }
}

/* ---------- 手順 ---------- */
.sl-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.sl-step { border: 1px solid var(--sm-line); border-radius: 16px; padding: 24px; background: #fff; }
.sl-step__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.sl-step__no {
  flex: 0 0 auto;
  width: 34px; height: 34px; border-radius: 50%; background: var(--sm-blue); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800;
}
.sl-step__title { margin: 0; font-size: 17px; font-weight: 800; }
.sl-step__text { margin: 0; font-size: 14px; color: var(--sm-mute); }

@media (max-width: 900px) { .sl-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sl-steps { grid-template-columns: 1fr; } }

/* ---------- 機能カード ---------- */
.sl-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sl-card { border: 1px solid var(--sm-line); border-radius: 16px; padding: 28px; background: #fff; }
.sl-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.sl-card__icon {
  flex: 0 0 auto;
  width: 46px; height: 46px; border-radius: 50%; background: var(--or-pale); color: var(--sm-blue);
  display: inline-flex; align-items: center; justify-content: center;
}
.sl-card__title { margin: 0; font-size: 17px; font-weight: 800; line-height: 1.4; }
.sl-card__text { margin: 0; font-size: 14px; color: var(--sm-mute); }

@media (max-width: 900px) { .sl-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sl-cards { grid-template-columns: 1fr; } }

/* ---------- 目玉機能（卒FIT） ---------- */
.sl-hl { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.sl-hl__body { min-width: 0; }
.sl-hl__badge {
  display: inline-flex; align-items: center; gap: 6px; margin: 0 0 14px;
  padding: 6px 16px; border-radius: var(--pill);
  background: #e6f6ec; color: var(--sm-green); font-size: 13px; font-weight: 700;
}
.sl-hl__figure { border: 1px solid var(--sm-line); border-radius: 16px; background: #fff; padding: 20px; }
.sl-timeline { margin: 0; padding: 0; list-style: none; }
.sl-timeline li {
  display: grid; grid-template-columns: 96px 1fr; gap: 14px; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--sm-line); font-size: 14px;
}
.sl-timeline li:last-child { border-bottom: 0; }
.sl-timeline__year { font-weight: 700; font-variant-numeric: tabular-nums; }
.sl-timeline__now { color: var(--sm-green); font-weight: 700; }

@media (max-width: 860px) { .sl-hl { grid-template-columns: 1fr; } }

/* ---------- 実績・数字 ---------- */
.sl-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sl-stat { border: 1px solid var(--sm-line); border-radius: 16px; padding: 24px; background: #fff; text-align: center; }
.sl-stat__num { display: block; font-size: 30px; font-weight: 700; color: var(--sm-blue); font-variant-numeric: tabular-nums; }
.sl-stat__label { display: block; margin-top: 4px; font-size: 13px; color: var(--sm-mute); }

@media (max-width: 860px) { .sl-stats { grid-template-columns: 1fr 1fr; } }

/* ---------- 料金 ---------- */
.sl-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.sl-plan { border: 1px solid var(--sm-line); border-radius: 16px; padding: 28px; background: #fff; }
.sl-plan--popular { border-color: var(--sm-blue); box-shadow: 0 4px 20px rgba(6,104,225,.10); }
.sl-plan__tag {
  display: inline-block; margin: 0 0 12px; padding: 4px 14px; border-radius: var(--pill);
  background: var(--sm-blue); color: #fff; font-size: 12px; font-weight: 700;
}
.sl-plan__name { margin: 0 0 4px; font-size: 18px; font-weight: 700; }
.sl-plan__lead { margin: 0 0 18px; font-size: 13px; color: var(--sm-mute); }
.sl-plan__price { margin: 0 0 4px; font-size: 34px; font-weight: 700; font-variant-numeric: tabular-nums; }
.sl-plan__price small { font-size: 15px; font-weight: 600; color: var(--sm-mute); }
.sl-plan__seats { margin: 0 0 20px; font-size: 13px; color: var(--sm-mute); }
.sl-plan__items { margin: 0 0 24px; padding: 0; list-style: none; }
.sl-plan__items li { display: flex; gap: 8px; align-items: flex-start; margin: 0 0 10px; font-size: 14px; }
.sl-plan__items .sl-ico { color: var(--sm-blue); margin-top: 3px; }

@media (max-width: 900px) { .sl-plans { grid-template-columns: 1fr; } }

/* ---------- 表 ---------- */
.sl-table__wrap { overflow-x: auto; }
.sl-table { width: 100%; border-collapse: collapse; font-size: 15px; background: #fff; }
.sl-table th, .sl-table td { padding: 14px 16px; border: 1px solid var(--sm-line); text-align: left; vertical-align: top; }
.sl-table th { background: var(--sm-bg-sub); font-weight: 700; white-space: nowrap; }
.sl-table td.sl-num, .sl-table th.sl-num { text-align: right; font-variant-numeric: tabular-nums; }
.sl-table--fixed th:first-child { width: 30%; }

/* ---------- FAQ ---------- */
.sl-faq { border-top: 1px solid var(--sm-line); }
.sl-faq__item { border-bottom: 1px solid var(--sm-line); }
.sl-faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 22px 40px 22px 0; font-size: 16px; font-weight: 800; font-family: inherit; color: var(--sm-black);
  position: relative;
  display: flex; gap: 12px; align-items: flex-start;
  list-style: none;
}
.sl-faq__q::-webkit-details-marker { display: none; }
.sl-faq__mk {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sm-blue); color: #fff; font-size: 13px; font-weight: 800;
}
.sl-faq__mk--a { background: var(--sm-black); }
.sl-faq__q::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--sm-mute); border-bottom: 2px solid var(--sm-mute);
  transform: translateY(-70%) rotate(45deg);
}
.sl-faq__item[open] .sl-faq__q::after { transform: translateY(-30%) rotate(-135deg); }
.sl-faq__a {
  margin: 0; padding: 0 0 24px; font-size: 15px; color: var(--sm-mute); line-height: 1.9;
  display: flex; gap: 12px; align-items: flex-start;
}

/* ---------- CTA ---------- */
/* 黒背景に黒ボタンを置くと消えるので、白いカードを敷いてその上に置く */
.sl-cta { background: var(--or-pale); padding: 72px 20px; }
.sl-cta__card {
  max-width: 880px; margin: 0 auto; text-align: center;
  background: #fff; border-radius: 32px; padding: 56px 40px;
  border: 1px solid var(--sm-line);
  box-shadow: 0 10px 40px rgba(245,95,0,.08);
}
.sl-cta__title { margin: 0 0 14px; font-size: 32px; font-weight: 800; line-height: 1.4; color: var(--sm-black); }
.sl-cta__text { margin: 0 0 30px; color: var(--sm-mute); font-size: 16px; line-height: 1.9; }
.sl-cta__row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 720px) {
  .sl-cta__card { padding: 40px 22px; border-radius: 24px; }
  .sl-cta__title { font-size: 24px; }
}

/* 数式の見せ方（そのままコピーできる雰囲気を出す） */
.sl-code, .dk-code {
  display: block; margin: 0 0 18px; padding: 14px 16px;
  background: #101010; color: #ffd499; border-radius: 10px;
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 13px; line-height: 1.6; overflow-x: auto; white-space: nowrap;
}

/* ---------- 注意書き ---------- */
.sl-note {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 16px 18px; border: 1px solid #f2dfb4; background: #fff8e8; border-radius: 8px;
  font-size: 14px; color: #7a5a12; line-height: 1.7;
}
.sl-note--info { border-color: #b9d5f7; background: #f2f8ff; color: #234d80; }

/* ---------- 文書ページ（規約・特商法） ---------- */
.sl-doc { max-width: 820px; margin: 0 auto; padding: 56px 20px 88px; }
.sl-doc__title { margin: 0 0 8px; font-size: 28px; font-weight: 700; }
.sl-doc__meta { margin: 0 0 40px; color: var(--sm-mute); font-size: 14px; }
.sl-doc h2 { margin: 40px 0 12px; font-size: 19px; font-weight: 700; }
.sl-doc h3 { margin: 24px 0 8px; font-size: 16px; font-weight: 700; }
.sl-doc p { margin: 0 0 14px; font-size: 15px; }
.sl-doc ol, .sl-doc ul { margin: 0 0 16px; padding-left: 1.4em; font-size: 15px; }
.sl-doc li { margin: 0 0 8px; }
.sl-doc__tbd { background: #fff3cd; padding: 1px 8px; border-radius: 4px; font-weight: 700; color: #7a5a12; }

/* ---------- フッター ---------- */
.sl-footer { border-top: 1px solid var(--sm-line); background: var(--sm-bg-sub); padding: 40px 20px; }
.sl-footer__inner { max-width: var(--container); margin: 0 auto; display: grid; gap: 20px; }
.sl-footer__brand { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--sm-black); }

.sl-footer__nav { display: flex; flex-wrap: wrap; gap: 18px; }
.sl-footer__nav a { color: var(--sm-mute); text-decoration: none; font-size: 14px; }
.sl-footer__nav a:hover { color: var(--sm-blue); }
.sl-footer__copy { margin: 0; font-size: 13px; color: var(--sm-mute); }

/* ==========================================================================
   提案資料（deck.php）  A4横・1スライド1ページで印刷される
   ========================================================================== */
.dk { max-width: 1140px; margin: 0 auto; padding: 24px 20px 64px; }

.dk-howto {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 0 0 28px; padding: 14px 18px;
  background: #f2f8ff; border: 1px solid #b9d5f7; border-radius: 8px;
  font-size: 14px; color: #234d80; line-height: 1.7;
}

.dk-slide {
  position: relative;
  border: 1px solid var(--sm-line); border-radius: 16px;
  padding: 40px 44px; margin: 0 0 24px; background: #fff;
}
.dk-slide--cover { background: var(--sm-black); color: #fff; border-color: var(--sm-black); }

.dk-num { margin: 0 0 6px; font-size: 13px; font-weight: 700; color: var(--sm-blue); letter-spacing: .08em; }
.dk-h2 { margin: 0 0 28px; font-size: 28px; font-weight: 700; line-height: 1.4; }
.dk-h3 { margin: 0 0 14px; font-size: 16px; font-weight: 700; }
.dk-lead { margin: 0 0 16px; font-size: 15px; line-height: 1.9; }
.dk-note { margin: 24px 0 0; font-size: 13px; color: var(--sm-mute); line-height: 1.8; }
.dk-src  { margin: 24px 0 0; font-size: 11px; color: var(--sm-mute); text-align: right; }

.dk-cover { display: flex; flex-direction: column; justify-content: center; min-height: 460px; text-align: center; }
.dk-cover__mark { width: 56px; height: 56px; color: #4da3ff; margin: 0 auto 20px; }
.dk-cover__title { margin: 0 0 22px; }
.dk-cover__sub { margin: 0 0 28px; font-size: 20px; color: #cfd8de; }
.dk-cover__who { margin: 0 0 48px; font-size: 14px; color: #9aa7b4; }
.dk-cover__co { margin: 0; font-size: 15px; color: #cfd8de; }

.dk-two { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }

.dk-panel { border: 1px solid var(--sm-line); border-radius: 14px; padding: 24px; background: #fff; }
.dk-panel--bad  { background: #fdf6f6; border-color: #f0c8ca; }
.dk-panel--good { background: #f4fbf6; border-color: #b7e2c6; }

.dk-steps { margin: 0; padding-left: 1.3em; font-size: 14px; line-height: 2; }
.dk-list  { margin: 0; padding-left: 1.3em; font-size: 14px; line-height: 2; }

.dk-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 12px; align-items: center; }
.dk-flow__item {
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  border: 1px solid var(--sm-line); border-radius: 14px; padding: 22px 12px; background: #fff;
  font-size: 13px; color: var(--sm-mute);
}
.dk-flow__item strong { font-size: 15px; color: var(--sm-black); }
.dk-flow__no {
  width: 34px; height: 34px; border-radius: 17px; background: var(--sm-blue); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700;
}
.dk-flow__arrow { color: var(--sm-line); display: flex; align-items: center; }

.dk-shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dk-shot { margin: 0; }
.dk-shot img {
  display: block; width: 100%; height: 360px; object-fit: cover; object-position: top;
  border: 1px solid var(--sm-line); border-radius: 14px; background: var(--sm-bg-sub);
}
.dk-shot figcaption { margin-top: 8px; font-size: 12px; color: var(--sm-mute); line-height: 1.6; }
.dk-shot--single { margin-top: 16px; }
.dk-shot--single img { height: 200px; }

.dk-hilite {
  margin: 20px 0 0; padding: 16px 18px; border-radius: 8px;
  background: #e6f6ec; border: 1px solid #9bd9b2; color: #0f7a37;
  font-size: 15px; line-height: 1.9;
}

.dk-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.dk-table th, .dk-table td { padding: 12px 14px; border: 1px solid var(--sm-line); text-align: left; }
.dk-table th { background: var(--sm-bg-sub); font-weight: 700; white-space: nowrap; }
.dk-table__hit th, .dk-table__hit td { background: #e6f6ec; color: #0f7a37; font-weight: 700; }
.dk-table--cmp td { text-align: center; }
.dk-table--cmp th:first-child { text-align: left; }
.dk-table__me { background: #f2f8ff !important; color: var(--sm-blue); font-weight: 700; }

.dk-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.dk-plan { border: 1px solid var(--sm-line); border-radius: 14px; padding: 22px; background: #fff; }
.dk-plan--rec { border-color: var(--sm-blue); }
.dk-plan__tag {
  display: inline-block; margin-bottom: 10px; padding: 3px 12px; border-radius: 16px;
  background: var(--sm-blue); color: #fff; font-size: 11px; font-weight: 700;
}
.dk-plan__name { margin: 0 0 8px; font-size: 17px; font-weight: 700; }
.dk-plan__price { margin: 0 0 4px; font-size: 28px; font-weight: 700; font-variant-numeric: tabular-nums; }
.dk-plan__price small { font-size: 13px; font-weight: 600; color: var(--sm-mute); }
.dk-plan__seats { margin: 0 0 14px; font-size: 12px; color: var(--sm-mute); }
.dk-plan__items { margin: 0; padding-left: 1.2em; font-size: 13px; line-height: 1.9; color: var(--sm-mute); }

.dk-contact { margin-top: 28px; padding: 22px 24px; border-radius: 14px; background: var(--sm-black); color: #fff; }
.dk-contact__title { margin: 0 0 8px; font-size: 13px; font-weight: 700; color: #9aa7b4; }
.dk-contact__body { margin: 0; font-size: 15px; line-height: 1.9; }

@media (max-width: 900px) {
  .dk-two, .dk-shots, .dk-plans { grid-template-columns: 1fr; }
  .dk-flow { grid-template-columns: 1fr; }
  .dk-flow__arrow { transform: rotate(90deg); justify-content: center; }
}

/* ---------- 印刷（A4横・1スライド1ページ） ---------- */
@media print {
  @page { size: A4 landscape; margin: 8mm; }
  .sl-header, .sl-footer, .dk-howto { display: none !important; }
  .dk { max-width: none; padding: 0; }
  .dk-slide {
    border: 0; border-radius: 0; margin: 0; padding: 12mm 14mm;
    height: 185mm; overflow: hidden;
    break-after: page; page-break-after: always;
  }
  .dk-slide:last-child { break-after: auto; page-break-after: auto; }
  .dk-slide--cover { background: #1c2b33 !important; }
  .dk-cover { min-height: 150mm; }
  .dk-h2 { font-size: 22px; margin-bottom: 16px; }
  .dk-shot img { height: 95mm; }
  .dk-shot--single img { height: 42mm; }
  body { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* 規約・ポリシー等の本文リンク。指定しないとブラウザ既定の青のままで浮く */
.sl-doc a:not(.sl-btn) { color: var(--sm-blue); text-decoration: underline; text-underline-offset: 2px; }
.sl-doc a:not(.sl-btn):hover { color: var(--sm-blue-d); }

/* ページが見つからないとき（404.php） */
.sl-nf { text-align: center; }
/* .sl-doc p より詳細度を上げないと font-size:15px に負ける */
.sl-doc .sl-nf__code {
  font-size: clamp(72px, 18vw, 140px);
  line-height: 1;
  font-weight: 700;
  color: var(--or-pale2);
  margin: 8px 0 -8px;
  letter-spacing: -0.02em;
}
.sl-nf__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 28px 0 36px;
}
