@charset "utf-8";
/* ==========================================================================
   silentdisco.jp — サイト共通スタイル
   デザイントークンは design_handoff_silentdisco/README.md に準拠。
   色・フォント・余白・角丸はプロトタイプの値をそのまま採用しています。
   変更するときは、まず :root の変数を見てください。
   ========================================================================== */

:root{
  /* 文字色 */
  --ink:#222222;
  --ink-strong:#111111;
  --muted:#666666;
  --muted-2:#888888;
  --muted-3:#999999;
  --eyebrow:#b0b0aa;

  /* 背景 */
  --bg:#ffffff;
  --bg-alt:#f6f6f4;
  --bg-soft:#fcfcfb;
  --bg-dark:#1a1a1a;
  --bg-darker:#111111;

  /* 罫線 */
  --line:#e7e7e3;
  --line-2:#d9d9d4;
  --line-3:#ececea;
  --line-4:#e9e9e5;

  /* 状態色 */
  --warn-bg:#fff7e6;
  --warn-line:#e0a800;
  --warn-ink:#5c4400;
  --ok:#0a7a44;

  /* レイアウト */
  --maxw:1180px;
  --maxw-narrow:920px;
  --maxw-text:860px;
  --pad-x:24px;

  --font:"Noto Sans JP",system-ui,-apple-system,"Hiragino Kaku Gothic ProN","Yu Gothic",Meiryo,sans-serif;
}

/* ---------- リセット ---------- */
*,*::before,*::after{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;}
body{
  margin:0;padding:0;
  background:var(--bg);color:var(--ink);
  font-family:var(--font);
  -webkit-font-smoothing:antialiased;
  line-height:1.7;
}
img{max-width:100%;height:auto;display:block;}
input,select,textarea,button{font-family:inherit;font-size:inherit;}
a{color:var(--ink);}
h1,h2,h3,h4,p,ul,ol,figure{margin:0;}
ul,ol{padding-left:1.2em;}
table{border-collapse:collapse;}

/* キーボード操作のフォーカスは必ず見せる */
:focus-visible{outline:2px solid var(--ink);outline-offset:2px;}

.visually-hidden{
  position:absolute;width:1px;height:1px;margin:-1px;padding:0;
  overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0;
}
.skip-link{
  position:absolute;left:-9999px;top:0;z-index:200;
  background:var(--ink);color:#fff;padding:10px 18px;border-radius:0 0 8px 0;
  font-size:13px;font-weight:700;text-decoration:none;
}
.skip-link:focus{left:0;}

/* ---------- レイアウト部品 ---------- */
.container{max-width:var(--maxw);margin:0 auto;padding-left:var(--pad-x);padding-right:var(--pad-x);width:100%;}
.container--narrow{max-width:var(--maxw-narrow);}
.container--text{max-width:var(--maxw-text);}
.container--page{max-width:1080px;}

.section{padding:72px 0;}
.section--tight{padding:56px 0;}
.section--alt{background:var(--bg-alt);}
.section--bottom{padding-bottom:80px;}

.eyebrow{
  font-size:12px;letter-spacing:.35em;color:var(--eyebrow);
  margin:0 0 6px;
}
.section-title{
  font-size:26px;font-weight:700;letter-spacing:.15em;margin:0 0 32px;line-height:1.7;
}
.center{text-align:center;}
.lead{font-size:14.5px;line-height:2.3;color:#555555;}

/* ページ見出し（下層共通） */
.page-title{font-size:32px;font-weight:900;letter-spacing:.12em;margin:0 0 10px;line-height:1.4;}
.page-desc{font-size:13.5px;color:var(--muted);margin:0 0 36px;line-height:2;}
.h-sec{font-size:19px;font-weight:700;letter-spacing:.1em;margin:0 0 14px;}
.h-box{font-size:17px;font-weight:700;letter-spacing:.1em;margin:0 0 12px;}

/* ---------- ボタン ---------- */
.btn{
  display:inline-block;text-decoration:none;white-space:nowrap;
  border-radius:999px;cursor:pointer;font-weight:700;
  letter-spacing:.05em;text-align:center;line-height:1.5;
  border:1.5px solid transparent;
  transition:opacity .15s ease,background-color .15s ease,color .15s ease;
}
.btn:hover{opacity:.85;}
.btn--dark{background:var(--ink);color:#ffffff;border-color:var(--ink);}
.btn--outline{background:#ffffff;color:var(--ink);border-color:var(--ink);}
.btn--light{background:#ffffff;color:var(--ink);border-color:#ffffff;}
.btn--ghost-light{background:transparent;color:#ffffff;border-color:#ffffff;}
.btn--lg{font-size:14px;padding:14px 32px;}
.btn--md{font-size:13.5px;padding:12px 26px;}
.btn--sm{font-size:12.5px;padding:10px 16px;letter-spacing:.02em;}

.btn-row{display:flex;gap:14px;flex-wrap:wrap;}
.btn-row--center{justify-content:center;}

/* ---------- ヘッダー ---------- */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(6px);
  border-bottom:1px solid var(--line-3);
}
.site-header__inner{
  max-width:var(--maxw);margin:0 auto;
  display:flex;align-items:center;gap:18px;
  padding:14px var(--pad-x);
}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none;color:var(--ink);flex:none;}
.brand img{width:40px;height:40px;border-radius:50%;object-fit:cover;}
.brand__name{font-weight:900;font-size:17px;letter-spacing:.06em;}
.brand__tld{color:var(--muted-3);}

.site-nav{display:flex;gap:4px;flex:1;}
.site-nav a{
  white-space:nowrap;text-decoration:none;
  font-size:13px;padding:10px 9px;letter-spacing:.02em;
  border-bottom:2px solid transparent;
  font-weight:500;color:#555555;
}
.site-nav a:hover{color:var(--ink);}
.site-nav a[aria-current="page"]{border-bottom-color:var(--ink);font-weight:700;color:var(--ink);}

.header-cta{display:flex;gap:8px;flex:none;}

.nav-toggle{
  display:none;flex:none;
  width:44px;height:44px;padding:0;
  background:transparent;border:1px solid var(--line-2);border-radius:10px;
  cursor:pointer;align-items:center;justify-content:center;
}
.nav-toggle span{
  display:block;position:relative;width:18px;height:2px;background:var(--ink);
}
.nav-toggle span::before,.nav-toggle span::after{
  content:"";position:absolute;left:0;width:18px;height:2px;background:var(--ink);
  transition:transform .2s ease,top .2s ease;
}
.nav-toggle span::before{top:-6px;}
.nav-toggle span::after{top:6px;}
.nav-toggle[aria-expanded="true"] span{background:transparent;}
.nav-toggle[aria-expanded="true"] span::before{top:0;transform:rotate(45deg);}
.nav-toggle[aria-expanded="true"] span::after{top:0;transform:rotate(-45deg);}

/* ---------- ヒーロー ---------- */
.hero{position:relative;overflow:hidden;background:var(--bg-darker);}
.hero__img{width:100%;height:520px;object-fit:cover;display:block;opacity:.82;}
.hero__veil{position:absolute;inset:0;background:linear-gradient(90deg,rgba(0,0,0,.55) 0%,rgba(0,0,0,.15) 60%);}
.hero__body{position:absolute;inset:0;display:flex;align-items:center;}
.hero__inner{max-width:var(--maxw);margin:0 auto;width:100%;padding:0 var(--pad-x);color:#ffffff;}
.hero__eyebrow{margin:0 0 14px;font-size:12px;letter-spacing:.4em;color:rgba(255,255,255,.75);}
.hero h1{margin:0;font-size:44px;font-weight:900;letter-spacing:.12em;line-height:1.5;}
.hero__lead{margin:18px 0 0;font-size:15px;line-height:2;color:rgba(255,255,255,.92);max-width:560px;}
.hero .btn-row{margin-top:26px;}

/* ---------- グリッド ---------- */
.grid{display:grid;gap:24px;}
.grid--2{grid-template-columns:repeat(2,1fr);gap:18px;}
.grid--3{grid-template-columns:repeat(3,1fr);gap:24px;}
.grid--4{grid-template-columns:repeat(4,1fr);gap:16px;}
.grid--6{grid-template-columns:repeat(6,1fr);gap:12px;}
.grid--scene{grid-template-columns:repeat(3,1fr);gap:22px;}
.grid--split{grid-template-columns:1.1fr .9fr;gap:48px;align-items:center;}
.grid--cards{grid-template-columns:repeat(3,1fr);gap:18px;}

/* ---------- カード ---------- */
.feature{text-align:center;padding:32px 24px;border:1px solid var(--line-3);border-radius:16px;}
.feature img{width:96px;height:96px;object-fit:cover;border-radius:50%;margin:0 auto;}
.feature h3{margin:18px 0 8px;font-size:17px;font-weight:700;letter-spacing:.1em;}
.feature p{margin:0;font-size:13px;color:var(--muted);line-height:2;}

.scene{background:#ffffff;border-radius:14px;overflow:hidden;border:1px solid var(--line-4);}
.scene img{width:100%;height:180px;object-fit:cover;}
.scene__body{padding:18px 20px 22px;}
.scene h3{margin:0 0 8px;font-size:16px;font-weight:700;letter-spacing:.08em;}
.scene p{margin:0;font-size:12.5px;color:var(--muted);line-height:1.9;}

.hub-card{
  display:flex;flex-direction:column;gap:8px;text-align:left;text-decoration:none;
  background:#ffffff;border:1px solid var(--line);border-radius:14px;padding:22px 20px;
  color:var(--ink);transition:border-color .15s ease;
}
.hub-card:hover{border-color:var(--ink);}
.hub-card__icon{font-size:22px;}
.hub-card__title{font-weight:700;font-size:16px;letter-spacing:.05em;}
.hub-card__desc{font-size:12.5px;color:#777777;line-height:1.8;}
.hub-card__more{font-size:12px;font-weight:700;color:var(--ink);}

.box{border:1px solid var(--line);border-radius:14px;padding:24px 26px;}
.box--alt{background:var(--bg-alt);}
.box--soft{background:var(--bg-soft);}
.box ul{margin:0;padding-left:1.2em;font-size:13px;line-height:2.2;color:#555555;}
.box ol{margin:0;padding-left:1.3em;font-size:13px;line-height:2.3;color:#555555;}

/* 導入実績カード */
.work-card{border:1px solid var(--line);border-radius:14px;overflow:hidden;}
.work-card img{width:100%;height:130px;object-fit:cover;}
.work-card__body{padding:14px 16px 18px;}
.work-card h3{margin:0 0 6px;font-size:14.5px;font-weight:700;}
.work-card p{margin:0;font-size:12px;color:var(--muted);line-height:1.9;}

/* 機材グレードカード */
.grade-card{border:1px solid var(--line);border-radius:14px;overflow:hidden;}
.grade-card img{width:100%;height:170px;object-fit:cover;background:var(--bg-alt);}
.grade-card__body{padding:18px 20px 22px;}
.grade-card__tag{font-size:11px;letter-spacing:.2em;color:var(--muted-3);}
.grade-card h3{margin:4px 0 10px;font-size:16px;font-weight:700;line-height:1.6;}
.grade-card p{margin:0 0 12px;font-size:12.5px;color:var(--muted);line-height:1.9;}
.grade-card ul{margin:0;padding-left:1.1em;font-size:12px;color:#555555;line-height:2;}

/* 数字（実績） */
.stats{display:flex;justify-content:center;gap:56px;margin-bottom:28px;flex-wrap:wrap;}
.stat__num{font-size:38px;font-weight:900;line-height:1.2;}
.stat__num span{font-size:16px;}
.stat__label{font-size:12px;color:var(--muted-2);letter-spacing:.1em;}

/* ステップ（ご利用方法ダイジェスト） */
.step-mini{background:#ffffff;border:1px solid var(--line-4);border-radius:12px;padding:18px 14px;text-align:center;}
.step-mini__n{
  width:30px;height:30px;border-radius:50%;background:var(--ink);color:#ffffff;
  font-weight:700;font-size:13px;display:flex;align-items:center;justify-content:center;
  margin:0 auto 10px;flex:none;
}
.step-mini__t{font-weight:700;font-size:13.5px;letter-spacing:.04em;}
.step-mini__d{font-size:11.5px;color:#777777;margin-top:6px;line-height:1.8;}

/* タイムライン（ご利用の流れ） */
.timeline{display:flex;flex-direction:column;margin-bottom:48px;}
.step{display:grid;grid-template-columns:120px 44px 1fr;}
.step__when{
  text-align:right;padding:4px 16px 0 0;font-size:12px;font-weight:700;
  color:var(--muted-2);letter-spacing:.06em;line-height:1.7;
}
.step__rail{display:flex;flex-direction:column;align-items:center;}
.step__n{
  width:34px;height:34px;border-radius:50%;background:var(--ink);color:#ffffff;
  font-weight:700;font-size:13px;display:flex;align-items:center;justify-content:center;flex:none;
}
.step__line{width:2px;flex:1;background:#e0e0dc;}
.step:last-child .step__line{background:transparent;}
.step__body{padding:2px 0 34px 18px;}
.step__body h3{margin:0 0 6px;font-size:16.5px;font-weight:700;letter-spacing:.06em;}
.step__body p{margin:0;font-size:13.5px;line-height:2.1;color:#555555;}

/* ---------- テーブル ---------- */
.table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin-bottom:36px;}
.table{width:100%;font-size:13.5px;min-width:640px;}
.table th,.table td{padding:12px 16px;border:1px solid var(--line);text-align:left;vertical-align:top;}
.table thead th{background:var(--bg-alt);font-weight:700;}
.table .num{text-align:right;font-weight:700;white-space:nowrap;}
.table .note-col{color:var(--muted);}
.table--dark thead th{background:var(--ink);color:#ffffff;border-color:#333333;}
.table--compare{font-size:12.8px;min-width:780px;}
.table--compare td{line-height:1.8;}
.table--compare .rowhead{background:var(--bg-alt);font-weight:700;width:150px;}
.scroll-hint{font-size:11.5px;color:var(--muted-3);margin:-26px 0 26px;display:none;}

/* ---------- 概算例 ---------- */
.estimate{border:1px solid var(--line);border-radius:14px;padding:22px 20px;background:var(--bg-soft);}
.estimate__tag{font-size:12px;letter-spacing:.15em;color:var(--muted-3);margin-bottom:6px;}
.estimate h3{margin:0 0 12px;font-size:15.5px;font-weight:700;line-height:1.7;}
.estimate ul{margin:0 0 14px;padding-left:1.1em;font-size:12.5px;color:var(--muted);line-height:2;}
.estimate__total{border-top:1px solid var(--line);padding-top:12px;font-size:13px;}
.estimate__total strong{font-size:20px;}

/* キャンセル料 */
.cancel-grid{display:flex;gap:12px;font-size:13px;flex-wrap:wrap;}
.cancel-grid > div{flex:1 1 140px;background:#ffffff;border-radius:10px;padding:14px;text-align:center;}
.cancel-grid strong{font-weight:700;display:block;}
.cancel-free{color:var(--ok);font-weight:700;margin-top:4px;}

/* ---------- 注意書き・補足 ---------- */
.note{font-size:12px;color:var(--muted-2);margin:0;line-height:1.9;}
.note--sm{font-size:11.5px;color:var(--muted-3);}
.callout{
  background:var(--warn-bg);border:1px solid var(--warn-line);color:var(--warn-ink);
  border-radius:10px;padding:14px 16px;font-size:12.5px;line-height:1.9;
}
.info-band{
  border:1px solid var(--line);border-radius:12px;background:var(--bg-alt);
  padding:16px 18px;font-size:13px;line-height:2;color:#444444;
}

/* ---------- CTA帯 ---------- */
.cta-band{background:var(--bg-dark);color:#ffffff;padding:64px 0;}
.cta-band h2{margin:0 0 14px;font-size:24px;font-weight:700;letter-spacing:.15em;line-height:1.6;}
.cta-band p{margin:0 0 28px;font-size:13.5px;color:#bbbbbb;line-height:2;}

.cta-strip{
  background:var(--bg-dark);color:#ffffff;border-radius:14px;padding:30px 32px;
  display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;
}
.cta-strip h3{margin:0 0 6px;font-size:16px;font-weight:700;letter-spacing:.08em;}
.cta-strip p{margin:0;font-size:12.5px;color:#bbbbbb;line-height:1.9;}

.note-strip{
  border:1.5px solid var(--ink);border-radius:14px;padding:22px 26px;
  display:flex;gap:24px;align-items:center;justify-content:space-between;flex-wrap:wrap;
}
.note-strip p{margin:0;font-size:13px;line-height:2;color:#444444;}
.note-strip--soft{border:1px solid var(--line);background:var(--bg-alt);padding:24px 28px;}

/* ---------- FAQ（JSなしで開閉する details 実装） ---------- */
.faq-list{display:flex;flex-direction:column;gap:10px;}
.faq{border:1px solid var(--line);border-radius:12px;overflow:hidden;background:#ffffff;}
.faq > summary{
  display:flex;align-items:center;gap:14px;
  padding:16px 18px;cursor:pointer;list-style:none;
  font-size:14px;font-weight:700;line-height:1.7;
}
.faq > summary::-webkit-details-marker{display:none;}
.faq > summary:hover{background:#fafaf8;}
.faq__q{
  flex:none;width:26px;height:26px;border-radius:50%;background:var(--ink);color:#ffffff;
  font-weight:700;font-size:11px;display:flex;align-items:center;justify-content:center;
}
.faq__text{flex:1;}
.faq__mark{color:var(--muted-3);font-size:16px;flex:none;}
.faq__mark::after{content:"+";}
.faq[open] .faq__mark::after{content:"−";}
.faq__a{display:flex;gap:14px;padding:2px 18px 18px;background:var(--bg-soft);}
.faq__a-badge{
  flex:none;width:26px;height:26px;border-radius:50%;background:var(--line-4);color:#555555;
  font-weight:700;font-size:11px;display:flex;align-items:center;justify-content:center;
}
.faq__a p{margin:3px 0 0;font-size:13.5px;line-height:2.1;color:#444444;}

/* ---------- フッター ---------- */
.site-footer{background:var(--bg-darker);color:#aaaaaa;padding:48px 0 36px;}
.site-footer__inner{
  max-width:var(--maxw);margin:0 auto;padding:0 var(--pad-x);
  display:flex;justify-content:space-between;gap:40px;flex-wrap:wrap;
}
.site-footer__brand{display:flex;align-items:center;gap:10px;margin-bottom:14px;}
.site-footer__brand img{width:34px;height:34px;border-radius:50%;}
.site-footer__brand span{color:#ffffff;font-weight:900;font-size:15px;}
.site-footer p{margin:0;font-size:12px;line-height:2;}
.site-footer a{color:#cccccc;text-decoration:none;}
.site-footer a:hover{color:#ffffff;text-decoration:underline;}
.footer-navs{display:flex;gap:56px;font-size:12.5px;}
.footer-navs div{display:flex;flex-direction:column;gap:9px;}
.site-footer__copy{
  max-width:var(--maxw);margin:32px auto 0;padding:0 var(--pad-x);
  font-size:11px;color:#666666;
}

/* ==========================================================================
   レスポンシブ
   プロトタイプは min-width:1100px の固定幅だったため、
   ここから下はすべて新規に設計しています。
   ========================================================================== */

@media (max-width:1000px){
  .grid--4{grid-template-columns:repeat(2,1fr);}
  .grid--6{grid-template-columns:repeat(3,1fr);}
  .grid--split{grid-template-columns:1fr;gap:28px;}
  .stats{gap:32px;}
  .scroll-hint{display:block;}
}

@media (max-width:900px){
  /* ヘッダーをハンバーガーに切り替え */
  .nav-toggle{display:flex;order:3;margin-left:auto;}
  .site-header__inner{flex-wrap:wrap;gap:12px;}
  .site-nav{
    display:none;order:4;width:100%;flex-direction:column;gap:0;
    border-top:1px solid var(--line-3);margin-top:2px;padding-top:6px;
  }
  .site-header.is-open .site-nav{display:flex;}
  .site-nav a{padding:13px 4px;font-size:14.5px;border-bottom:1px solid var(--line-3);}
  .site-nav a[aria-current="page"]{border-bottom-color:var(--line-3);}
  .header-cta{order:5;width:100%;display:none;padding-bottom:6px;}
  .site-header.is-open .header-cta{display:flex;}
  .header-cta .btn{flex:1;}

  .grid--3,.grid--scene,.grid--cards{grid-template-columns:repeat(2,1fr);}
  .hero__img{height:440px;}
  .hero h1{font-size:34px;}
  .section{padding:56px 0;}
}

@media (max-width:680px){
  :root{--pad-x:18px;}

  .hero__img{height:460px;}
  .hero h1{font-size:26px;letter-spacing:.08em;}
  .hero__lead{font-size:13.5px;line-height:1.95;}
  .hero .btn-row .btn{flex:1 1 100%;}

  .section-title{font-size:21px;letter-spacing:.1em;}
  .page-title{font-size:25px;}
  .h-sec{font-size:17px;}
  .lead{font-size:13.5px;line-height:2.1;}

  .grid--2,.grid--3,.grid--4,.grid--scene,.grid--cards{grid-template-columns:1fr;}
  .grid--6{grid-template-columns:repeat(2,1fr);}

  .stats{gap:22px;justify-content:space-between;}
  .stat__num{font-size:28px;}

  /* タイムラインは日付を上に逃がす */
  .step{grid-template-columns:34px 1fr;}
  .step__when{grid-column:1 / -1;text-align:left;padding:0 0 6px 0;}
  .step__body{padding:2px 0 28px 14px;}

  .cta-band{padding:48px 0;}
  .cta-band h2{font-size:19px;letter-spacing:.08em;}
  .cta-band .btn-row .btn{flex:1 1 100%;}
  .cta-strip,.note-strip{padding:22px 20px;}
  .cta-strip .btn,.note-strip .btn{width:100%;}

  .box{padding:20px 18px;}
  .feature{padding:26px 18px;}

  .footer-navs{gap:28px;width:100%;}
  .site-footer__inner{gap:28px;}

  .faq > summary{font-size:13.5px;padding:14px 14px;gap:10px;}
  .faq__a{padding:2px 14px 16px;gap:10px;}
}

@media print{
  .site-header,.site-footer,.cta-band,.cta-strip,.nav-toggle{display:none;}
  body{color:#000;}
}
