@charset "utf-8";
/* =========================================================
   CONDOR IoT SOLUTION — サイト固有スタイル
   reset.css → style.css → site.css の順で読み込む。
   style.css は既存サイトと共通のため編集しない。
   本ファイルは承認済みワイヤーフレーム（wireframe-top-clean.html）の
   <style> ブロックを、プレースホルダ用の指定を除いて外部化したもの。
   ========================================================= */

/* ---------------------------------------------------------
   ヘッダー
   公開中LP（lp-basuragi-v3）とロゴの見え方を揃える
   --------------------------------------------------------- */
header > div .site-logo{display:flex;align-items:center;margin:0;width:250px}
header > div .site-logo img{display:block}

/* ハンバーガーは481px以上で隠す。
   480px以下は style.css 側の display:block に任せる。
   同じ詳細度のため min-width で当てないと後勝ちで潰れる */
@media screen and (min-width:481px){
  .global-menu-toggle{display:none}
}

/* 固定ヘッダー分の逃げ。
   em だと body の font-size 変化に引っ張られてブレークポイントごとに
   過不足が出るため、px で実高に合わせる */
main{padding-top:64px}
@media screen and (max-width:959px){ main{padding-top:72px} }
@media screen and (max-width:480px){ main{padding-top:61px} }

/* アンカーリンクで見出しがヘッダーに隠れないようにする */
main section[id]{scroll-margin-top:72px}

/* ---------------------------------------------------------
   画像の場所取り
   実画像が届くまでのあいだ、グレーの枠で用途を示しておく。
   content.php の 'image' にパスを入れると <img> に置き換わる。
   --------------------------------------------------------- */
.ph{
  background:
    linear-gradient(45deg,transparent 49.5%,#c9c9c9 49.5%,#c9c9c9 50.5%,transparent 50.5%),
    linear-gradient(-45deg,transparent 49.5%,#c9c9c9 49.5%,#c9c9c9 50.5%,transparent 50.5%),
    #eee;
  border:1px solid #ddd;
  display:flex;align-items:center;justify-content:center;
  color:#999;font-size:.8rem;text-align:center;padding:8px;
  line-height:1.5;box-sizing:border-box;
}
/* 実画像と同じ大きさで場所を取る。<img> 側の指定と対で保つこと */
.card .ph{height:150px;border:0;border-bottom:1px solid #e8e8e8}
.case .ph{height:110px;border:0;border-bottom:1px solid #e8e8e8}
.reason .ph{height:120px;margin-bottom:1.2em;border-radius:4px}
.trouble .ph.trouble-icon{width:64px;height:64px;border-radius:50%;margin:0 auto 1em}
.movie-list .ph{font-size:.75rem}

/* ---------------------------------------------------------
   セクション背景
   --------------------------------------------------------- */
.bg-alt{background:#f7fbfc}
.bg-grad{background:linear-gradient(135deg,#3485d7 0%,#34cdd7 70%,#34cdd7 100%);color:#fff}
.bg-grad h3{color:#fff;border-color:rgba(255,255,255,.5)}
.bg-grad .kpi{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.35);color:#fff}
.bg-grad .kpi small{color:rgba(255,255,255,.85)}

/* ---------------------------------------------------------
   メインビジュアル
   --------------------------------------------------------- */
.mv{
  position:relative;
  background:linear-gradient(135deg,#eaf7f9 0%,#f7fbfc 60%,#fff 100%);
  padding:3.5em 0 4em;
}
.mv .c-inner{display:flex;align-items:center;gap:3em}
.mv-text{flex:1.05}
.mv-img{flex:1.3}
.mv-img img{display:block;width:100%;height:auto;border-radius:5px}
.mv-lead{font-size:.95rem;color:#2a9aa6;letter-spacing:.08em;margin-bottom:.6em;font-weight:700}
.mv-title{font-size:2.4rem;line-height:1.45;font-weight:700;color:#111;margin-bottom:.7em}
.mv-desc{font-size:1rem;line-height:1.9;color:#555;margin-bottom:1.6em}
.mv-tags{display:flex;flex-wrap:wrap;gap:.5em;margin-top:1.4em}
.mv-tags span{border:1px solid #9ddbe2;color:#2a9aa6;border-radius:999px;padding:.3em 1em;font-size:.8rem}
.mv-cta{display:flex;gap:.8em;flex-wrap:wrap}

/* ---------------------------------------------------------
   ボタン
   --------------------------------------------------------- */
.btn-main,.btn-ghost{
  box-sizing:border-box;
  display:inline-flex;align-items:center;justify-content:center;gap:.5em;
  padding:.9em 2em;border-radius:5px;font-weight:700;font-size:.95rem;
  transition:all .3s;
}
.btn-main{color:#fff;background:linear-gradient(135deg,#3485d7 0%,#34cdd7 70%,#34cdd7 100%);border:1px solid #34cdd7}
.btn-main:hover{color:#34cdd7;background:#fff}
.btn-ghost{color:#34cdd7;background:#fff;border:1px solid #34cdd7}
.btn-ghost:hover{color:#fff;background:#34cdd7}
.btn-yellow{display:inline-flex;align-items:center;gap:.5em;padding:.7em 1.6em;background:#ffbb00;color:#000;border-radius:5px;font-weight:700;font-size:.9rem}

/* キーボード操作時のフォーカスを明示する（アクセシビリティ） */
.btn-main:focus-visible,.btn-ghost:focus-visible,.btn-yellow:focus-visible{
  outline:3px solid #1f6fb2;outline-offset:2px;
}

/* ---------------------------------------------------------
   グリッド
   --------------------------------------------------------- */
.cols{display:grid;gap:1.5em}
.c2{grid-template-columns:repeat(2,1fr)}
.c3{grid-template-columns:repeat(3,1fr)}
.c4{grid-template-columns:repeat(4,1fr)}
.c5{grid-template-columns:repeat(5,1fr)}

/* ---------------------------------------------------------
   パーツ
   --------------------------------------------------------- */
.card{background:#fff;border:1px solid #e2e2e2;border-radius:5px;overflow:hidden;display:flex;flex-direction:column}
.card img{display:block;width:100%;height:150px;object-fit:cover;object-position:left top;border-bottom:1px solid #e8e8e8;background:#fff}
.card-body{padding:1.2em;flex:1;display:flex;flex-direction:column}
.card-body h4{font-size:1.15rem;margin-bottom:.5em;line-height:1.4;color:#111}
.card-body p{font-size:.88rem;line-height:1.8;color:#666;margin-bottom:1em;flex:1}
.card-body .btn-ghost{padding:.6em 1em;font-size:.85rem;width:100%}

.trouble{background:#fff;border:1px solid #e2e2e2;border-radius:5px;padding:1.6em 1.2em;text-align:center}
.trouble img{width:64px;height:64px;border-radius:50%;margin:0 auto 1em;display:block;object-fit:cover}
.trouble p{font-size:.92rem;line-height:1.8;color:#444;margin:0}

.flow{display:flex;align-items:stretch;gap:.6em;flex-wrap:wrap}
.flow-step{flex:1;min-width:150px;background:#fff;border:1px solid #d5eef1;border-top:3px solid #34cdd7;border-radius:4px;padding:1.2em .9em;text-align:center}
.flow-step .no{display:block;font-size:.75rem;color:#34cdd7;font-weight:700;letter-spacing:.1em;margin-bottom:.5em}
.flow-step b{display:block;font-size:1rem;margin-bottom:.4em;color:#111}
.flow-step small{font-size:.8rem;color:#777;line-height:1.6}
.flow-arrow{display:flex;align-items:center;color:#9ddbe2;font-size:1.1rem}
.flow--5 .flow-step{min-width:100px;padding:1.2em .5em}
.flow--5 .flow-step b{font-size:.92rem}
.flow--5 .flow-step small{font-size:.74rem}

.kpi{background:#fff;border:1px solid #e2e2e2;border-radius:5px;padding:1.8em 1em;text-align:center}
.kpi b{display:block;font-size:2.6rem;line-height:1.1;font-weight:700;margin-bottom:.2em}
.kpi-unit{font-size:1.4rem}
.kpi-source{display:block;font-size:.75rem;margin-top:.6em;opacity:.85}
.kpi-note{max-width:760px;margin-left:auto;margin-right:auto;line-height:1.8;text-align:left}
.kpi small{display:block;font-size:.88rem;color:#777}

/* メイン動画の高さにサブ動画4つを収める。
   flex で組むと「親の高さがサブ動画の合計で決まり、その高さを4等分する」
   という堂々巡りになるため、grid で行の高さをメイン動画側に決めさせる */
.movie-wrap{display:grid;grid-template-columns:1.7fr 1fr;gap:1.2em;align-items:stretch}
.movie-main{min-width:0}
.movie-main iframe{width:100%;aspect-ratio:16/9;height:auto;border:0;display:block}
/* .ph は中身を中央に置くため display:flex のまま保つ */
.movie-main .ph{width:100%;aspect-ratio:16/9;height:auto}
.movie-list{display:grid;grid-template-rows:repeat(4,1fr);gap:.7em;min-height:0;min-width:0}
.movie-list > *{min-height:0}

.tabs-filter{display:flex;gap:.5em;justify-content:center;margin-bottom:1.8em;flex-wrap:wrap}
.tabs-filter button{
  border:1px solid #cfd8da;border-radius:999px;padding:.4em 1.3em;
  font-size:.85rem;color:#777;background:#fff;cursor:pointer;font-family:inherit;
  transition:background .2s,color .2s,border-color .2s;
}
.tabs-filter button:hover{border-color:#34cdd7;color:#2a9aa6}
.tabs-filter button.on{background:#34cdd7;border-color:#34cdd7;color:#fff;font-weight:700}
.tabs-filter button:focus-visible{outline:3px solid #1f6fb2;outline-offset:2px}
.case{background:#fff;border:1px solid #e2e2e2;border-radius:5px;overflow:hidden}
.case img{display:block;width:100%;height:110px;object-fit:cover;border-bottom:1px solid #e8e8e8}
.case-body{padding:.9em}
.case-body b{display:block;font-size:.9rem;margin-bottom:.3em;color:#111}
.case-body small{font-size:.8rem;color:#666;line-height:1.7;display:block}
.case-tag{
  display:inline-block;font-size:.7rem;font-weight:700;color:#2a9aa6;
  border:1px solid #9ddbe2;border-radius:999px;padding:.1em .8em;margin-bottom:.5em;
}
.case-scale{display:block;font-size:.75rem;color:#999;margin-bottom:.4em}

.reason{background:#fff;border:1px solid #e2e2e2;border-radius:5px;padding:1.6em}
.reason img{display:block;width:100%;height:120px;object-fit:cover;margin-bottom:1.2em;border-radius:4px}
.reason h4{font-size:1.15rem;margin-bottom:.5em;color:#111}
.reason p{font-size:.88rem;line-height:1.8;color:#666;margin:0}

/* FAQ — details/summary で開閉する。JS 不要 */
.faq{max-width:820px;margin:0 auto}
.faq details{background:#fff;border:1px solid #e2e2e2;border-radius:4px;margin-bottom:.6em}
.faq summary{
  padding:1em 1.2em;font-size:.98rem;color:#222;
  display:flex;gap:.8em;align-items:center;cursor:pointer;list-style:none;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary::before{content:"Q";color:#34cdd7;font-weight:700;font-size:1.1rem}
.faq summary::after{content:"\f078";font-family:"Font Awesome 5 Free";font-weight:900;margin-left:auto;color:#bbb;font-size:.8rem;transition:transform .2s}
.faq details[open] summary::after{transform:rotate(180deg)}
.faq summary:focus-visible{outline:3px solid #1f6fb2;outline-offset:-3px}
.faq .faq-body{padding:0 1.2em 1.2em 3em;font-size:.92rem;line-height:1.9;color:#555}

.news{max-width:900px;margin:0 auto}
.news li{display:flex;gap:1.6em;padding:1em .3em;border-bottom:1px dotted #d5d5d5;font-size:.92rem}
.news li time{color:#888;white-space:nowrap}
.news li span{color:#333}

.cta{text-align:center;padding:4em 0}
.cta h3{border:0;margin-bottom:.4em}
.cta p{color:#555;margin-bottom:1.8em}
.cta .mv-cta{justify-content:center}

.sec-lead{text-align:center;color:#666;font-size:.95rem;line-height:1.9;margin:-.5em auto 2.5em;max-width:760px}
.note-small{text-align:center;font-size:.78rem;color:#999;margin-top:1.4em}
.note-small--light{color:rgba(255,255,255,.8)}

/* 細かな位置調整 */
.ta-c{text-align:center}
.mt-2{margin-top:2em}

/* スクリーンリーダー専用テキスト */
.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* ---------------------------------------------------------
   レスポンシブ
   --------------------------------------------------------- */
@media screen and (max-width:959px){
  main section .c-inner{width:90%}
  .mv .c-inner{flex-direction:column;gap:2em}
  .mv-img{width:100%}
  .c4,.c5{grid-template-columns:repeat(2,1fr)}
  .movie-wrap{grid-template-columns:1fr}
  .movie-list{grid-template-rows:none;grid-template-columns:repeat(4,1fr)}
  .movie-list .ph{aspect-ratio:16/9}
}
@media screen and (max-width:600px){
  .mv-title{font-size:1.7rem}
  .c2,.c3,.c4,.c5{grid-template-columns:1fr}
  .flow{flex-direction:column}
  .flow-arrow{justify-content:center;transform:rotate(90deg)}
  .movie-list{grid-template-columns:repeat(2,1fr)}
  .mv-cta{flex-direction:column}
  .btn-main,.btn-ghost{width:100%}
  .kpi b{font-size:2rem}
}

/* 動きを減らす設定の利用者には遷移を無効化する */
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms !important;transition-duration:.01ms !important;scroll-behavior:auto !important}
}

/* =========================================================
   お問い合わせフォーム
   ========================================================= */
.page-head{padding:2.5em 0 .5em;text-align:center}
.form-wrap{max-width:820px}

/* 入力の流れ */
.form-steps{
  display:flex;justify-content:center;gap:0;margin:0 auto 2.5em;
  counter-reset:step;list-style:none;padding:0;
}
.form-steps li{
  counter-increment:step;
  flex:0 1 160px;text-align:center;font-size:.85rem;color:#999;
  padding:.6em 0;border-top:3px solid #e2e2e2;
}
.form-steps li::before{content:counter(step) ". ";font-weight:700}
.form-steps li.on{color:#2a9aa6;border-top-color:#34cdd7;font-weight:700}

/* 項目 */
.form-list{margin-bottom:2em}
.form-list dt{font-weight:700;font-size:.95rem;color:#222;margin-bottom:.6em;line-height:1.6}
.form-list dd{margin:0 0 1.8em}
.form-list input[type="text"],
.form-list input[type="email"],
.form-list input[type="tel"],
.form-list textarea{
  box-sizing:border-box;width:100%;
  border:1px solid #ccd6d8;border-radius:4px;background:#fff;
  padding:.8em 1em;font-size:1rem;line-height:1.6;color:#222;
  font-family:inherit;
}
.form-list textarea{resize:vertical;min-height:9em}
.form-list input:focus,.form-list textarea:focus{
  outline:3px solid #9ddbe2;outline-offset:0;border-color:#34cdd7;
}
.req{
  display:inline-block;margin-left:.6em;vertical-align:middle;
  background:#e5546a;color:#fff;font-size:.7rem;font-weight:700;
  border-radius:3px;padding:.2em .6em;letter-spacing:.05em;
  white-space:nowrap;
}

/* セレクト */
.form-list select{
  box-sizing:border-box;
  border:1px solid #ccd6d8;border-radius:4px;background:#fff;
  padding:.8em 1em;font-size:1rem;line-height:1.6;color:#222;font-family:inherit;
}
.form-list select:focus{outline:3px solid #9ddbe2;border-color:#34cdd7}
.w-pref{width:auto;min-width:10em}

/* 姓名・郵便番号・電話番号のように、複数の欄で1項目を成すもの */
.field-row{display:flex;gap:.8em;align-items:flex-end;flex-wrap:wrap}
.field-row--inline{align-items:center;gap:.4em}
.field-part{flex:1;min-width:0}
.field-label{display:block;font-size:.8rem;color:#888;margin-bottom:.3em;font-weight:400}
.field-sep{color:#999}
/* 幅の指定は .form-list input[type="tel"] の width:100% と競合する。
   同じ詳細度では後勝ちにならない場面があるため、確実に上書きできる形で書く */
.form-list .field-row input.w-narrow{width:6em;flex:0 0 auto}
.form-list input.mt-8{margin-top:.6em}
.field-row--inline{flex-wrap:nowrap}

/* ラジオ・チェックボックス */
.choices{display:flex;flex-wrap:wrap;gap:.6em 1.4em}
.choices label{display:flex;align-items:center;gap:.5em;font-size:.95rem;color:#333;cursor:pointer;line-height:1.6}
.choices input{width:1.15em;height:1.15em;accent-color:#34cdd7;flex-shrink:0}

/* 同意 */
.form-agree{
  background:#f7fbfc;border:1px solid #d5eef1;border-radius:5px;
  padding:1.2em 1.4em;margin-bottom:2em;text-align:center;
}
.form-agree label{display:inline-flex;align-items:center;gap:.6em;font-size:.95rem;cursor:pointer}
.form-agree input{width:1.15em;height:1.15em;accent-color:#34cdd7;flex-shrink:0}
.form-agree a{color:#2a9aa6;text-decoration:underline}

/* 送信ボタン */
.form-submit{display:flex;gap:.8em;justify-content:center;flex-wrap:wrap}
.form-submit .btn-main,.form-submit .btn-ghost{min-width:220px;cursor:pointer;font-family:inherit}

/* エラー表示 */
.form-alert{
  background:#fdecee;border:1px solid #f0b8c0;color:#b3283c;
  border-radius:4px;padding:1em 1.2em;margin-bottom:2em;font-size:.92rem;font-weight:700;
}
.form-error{color:#b3283c;font-size:.85rem;margin-top:.5em;font-weight:700}

/* 確認画面 */
.form-confirm dt{margin-bottom:.3em}
.form-confirm dd{
  padding:.9em 1.1em;background:#f7fbfc;border:1px solid #e2eef0;border-radius:4px;
  font-size:.95rem;line-height:1.9;color:#222;word-break:break-word;
}
.form-confirm .empty{color:#aaa}

/* 完了画面 */
.form-done{text-align:center;padding:1em 0 2em}
.form-done-lead{font-size:1.3rem;font-weight:700;color:#2a9aa6;margin-bottom:1em}
.form-done p{line-height:1.9;color:#555;margin-bottom:1em}
.form-done .form-submit{margin-top:2em}

/* フォームのページでは、同じ場所へ誘導するだけの
   フッター上部バナーを隠す。ページ先頭へ戻るボタンは残す */
.page-contact .inquiry > div{display:none}

/* ハニーポット。利用者には見せない */
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}

@media screen and (max-width:600px){
  .form-steps li{font-size:.78rem}
  .form-submit .btn-main,.form-submit .btn-ghost{min-width:0;width:100%}
}

/* =========================================================
   現行サイトの素材を差し込んだあとの調整（2026-09-10）
   ========================================================= */

/* メインビジュアル：4:3 に切り出した写真を枠いっぱいに */
.mv-img img{aspect-ratio:4/3;object-fit:cover;object-position:right center}
.mv-img .ph{aspect-ratio:4/3}

/* お困りごと：アイコン */
.trouble-icon{
  width:64px;height:64px;border-radius:50%;margin:0 auto 1em;
  display:flex;align-items:center;justify-content:center;
  background:#eaf7f9;color:#2a9aa6;font-size:1.6rem;
}

/* できること：構成図 */
.system-overview{max-width:560px;margin:2.5em auto 0}
.system-overview img{display:block;width:100%;height:auto;border-radius:5px}

/* 紹介動画：サムネイルを押すとメイン動画が切り替わる */
.movie-item{
  display:grid;grid-template-columns:auto 1fr;gap:.8em;align-items:center;
  box-sizing:border-box;height:100%;min-height:0;padding:.4em;
  border:1px solid #e2e2e2;border-radius:4px;background:#fff;
  text-align:left;font-family:inherit;cursor:pointer;transition:border-color .2s;
}
.movie-item:hover{border-color:#34cdd7}
.movie-item.is-active{border-color:#34cdd7;box-shadow:inset 0 0 0 1px #34cdd7}
.movie-item:focus-visible{outline:3px solid #1f6fb2;outline-offset:2px}
.movie-item.is-soon{cursor:default;background:#f7f7f7}
.movie-thumb{display:block;width:112px;aspect-ratio:16/9;height:auto;object-fit:cover;border-radius:3px}
.movie-thumb--soon{display:flex;align-items:center;justify-content:center;background:#e9e9e9;color:#bbb;font-size:1.2rem}
.movie-title{font-size:.82rem;line-height:1.5;color:#333;font-weight:700}
.movie-title small{display:block;font-weight:400;color:#999;font-size:.72rem}

/* 導入事例：タグ・目的・お客様の声 */
.case[id]{scroll-margin-top:90px}
.case-tags{display:flex;gap:.3em;flex-wrap:wrap;margin-bottom:.1em}
.case-body .case-purpose{
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
}
/* 矢印ボタンをカード右下に揃える。カード全体も押せる */
.case{display:flex;flex-direction:column;cursor:pointer;transition:box-shadow .2s,transform .2s}
.case:hover{box-shadow:0 6px 18px rgba(0,0,0,.08);transform:translateY(-2px)}
.case[hidden]{display:none}
.case-body{flex:1;display:flex;flex-direction:column}
.case-purpose{margin-bottom:.8em}
.case-more{
  margin-top:auto;align-self:flex-end;
  width:34px;height:34px;border-radius:50%;border:0;cursor:pointer;
  background:#34cdd7;color:#fff;font-size:.85rem;
  display:flex;align-items:center;justify-content:center;transition:background .2s;
}
.case:hover .case-more{background:#2a9aa6}
.case-more:focus-visible{outline:3px solid #1f6fb2;outline-offset:2px}

/* 導入事例：詳細ダイアログ */
html.is-modal-open{overflow:hidden}
.case-modal{
  /* reset.css が margin:0 にしているので、UA の中央寄せ（margin:auto）を戻す */
  margin:auto;padding:0;border:0;background:transparent;overflow:visible;
  width:100%;max-width:min(760px,calc(100vw - 32px));max-height:none;
}
/* 既存リセットの dialog{display:block} で閉じていても出てしまうため打ち消す */
.case-modal:not([open]){display:none}
.case-modal::backdrop{background:rgba(0,0,0,.65)}
.case-modal-inner{
  position:relative;background:#fff;border-radius:8px;
  max-height:calc(100vh - 48px);max-height:calc(100dvh - 48px);overflow-y:auto;
}
.case-modal-media img,.case-modal-media .ph{
  display:block;width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;border:0;
  max-height:50vh;
}
.case-modal-body{padding:1.6em 2em 1.8em}
.case-modal-name{font-size:1.35rem;line-height:1.5;color:#111;margin-bottom:.4em}
.case-modal-purpose{font-size:.95rem;color:#555;line-height:1.8}
.case-modal-heading{
  font-size:1rem;color:#2a9aa6;margin:1.4em 0 .6em;padding-top:1.2em;border-top:1px solid #e8e8e8;
}
.case-modal-voice{font-size:.95rem;line-height:2;color:#333}
.case-modal-speaker{font-size:.85rem;color:#999;text-align:right;margin-top:.8em}
.case-modal-count{font-size:.8rem;color:#999;text-align:center;margin-top:1.4em;letter-spacing:.1em}
.case-modal-close{
  position:absolute;top:12px;right:12px;z-index:1;
  width:40px;height:40px;border-radius:50%;border:0;cursor:pointer;
  background:rgba(0,0,0,.55);color:#fff;font-size:1.1rem;
}
.case-modal-nav{
  position:absolute;top:50%;transform:translateY(-50%);
  width:52px;height:52px;border-radius:50%;border:0;cursor:pointer;
  background:#fff;color:#2a9aa6;font-size:1.2rem;box-shadow:0 4px 14px rgba(0,0,0,.2);
  transition:background .2s,color .2s;
}
.case-modal-nav:hover{background:#34cdd7;color:#fff}
.case-modal-prev{left:-72px}
.case-modal-next{right:-72px}
.case-modal-close:focus-visible,.case-modal-nav:focus-visible{outline:3px solid #1f6fb2;outline-offset:2px}
/* 左右に矢印を置く余白がない幅では、写真の中央に重ねる */
@media (max-width:920px){
  .case-modal-nav{width:40px;height:40px;font-size:1rem;top:calc(min(760px,100vw - 32px) * 9 / 32)}
  .case-modal-prev{left:8px}
  .case-modal-next{right:8px}
  .case-modal-body{padding:1.2em 1.2em 1.4em}
  .case-modal-name{font-size:1.15rem}
}

/* 導入までのプロセス：日数 */
.process-note{text-align:center;margin-top:1.6em;font-size:.9rem;color:#2a9aa6;font-weight:700}
.process-note i{margin-right:.4em}

@media screen and (max-width:959px){
  .movie-item{grid-template-columns:1fr;gap:.4em}
  .movie-thumb{width:100%}
}
