/* ====== 基本：このLPだけ適用 ====== */
body.page-template-template-press { background:#fff; }
body.page-template-template-press .snl-page-hero,
body.page-template-template-press .mg-breadcrumb-section { display:none !important; } /* ヘッダーの大きい画像を隠す */

/* タイポ（日本語はNoto Sans JPを想定。なければシステム系） */
.press-landing, .press-landing * {
  font-family: "Noto Sans JP","Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic UI","YuGothic","Meiryo",system-ui,-apple-system,"Segoe UI",sans-serif;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  font-feature-settings: "palt" 1;  /* 文字詰め */
  color:#0c1a2b;
}

/* 余白と最大幅 */
.press-landing .lp-container { width:min(980px, 92vw); margin:0 auto; }
.press-landing .center { text-align:center; }
.press-landing .section { padding: clamp(28px,6vw,56px) 0; background:#fff; }

/* ====== ヒーロー動画：中央カード ====== */
.press-landing .hero-wrap { margin: clamp(24px, 5vw, 72px) auto 0; }
.press-landing .hero-frame {
  width:min(1200px, 94vw);
  aspect-ratio:16/9;
  border-radius:20px;
  overflow:hidden; background:#000;
  box-shadow: 0 16px 44px rgba(0,0,0,.18);
  margin:0 auto;
}
.press-landing .hero-video {
  width:100%; height:100%; object-fit:cover; display:block;
  filter: saturate(.95) brightness(.9); /* ほんの少し落ち着かせる */
}

/* ====== 見出し・本文 ====== */
.press-landing .hero-title { font-size: clamp(22px, 3.2vw, 34px); letter-spacing:.02em; margin: 0 0 .4em; }
.press-landing .lead { color:#4b5563; line-height:1.9; margin:.2em 0 1.2em; }
.press-landing .sec-title { font-size: clamp(20px,2.5vw,28px); margin:0 0 .8em; }
.press-landing .body { color:#374151; line-height:1.9; margin:.6em 0; }

/* ====== ボタン（緑・丸） ====== */
.press-landing .btn {
  display:inline-block; border-radius:9999px; padding:.9em 1.6em;
  text-decoration:none; font-weight:700; letter-spacing:.02em;
  transition: background .2s ease, box-shadow .2s ease, transform .06s ease;
  border:1px solid transparent; box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.press-landing .btn--primary { background:#22c55e; border-color:#22c55e; color:#fff; }
.press-landing .btn--primary:hover { background:#16a34a; border-color:#16a34a; transform: translateY(-1px); }
.press-landing .btn--ghost { background:#f0fdf4; color:#0a7a35; border-color:#86efac; }
.press-landing .btn--ghost:hover { background:#dcfce7; border-color:#16a34a; }
.press-landing .btn--lg { font-size:1.05rem; }
.press-landing .cta-row { display:flex; gap:12px; flex-wrap:wrap; justify-content:center; }

/* ====== グリッド / カード ====== */
.press-landing .grid3, .press-landing .grid2 { display:grid; gap: clamp(12px,2.4vw,20px); }
.press-landing .grid3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.press-landing .grid2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.press-landing .card {
  background:#fff; border:1px solid #e9eef2; border-radius:16px;
  padding: clamp(12px,2.4vw,18px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.press-landing .card h3 { margin:.2em 0 .4em; font-size: clamp(16px,2vw,20px); }

/* ====== プラン ====== */
.press-landing .plans { display:grid; gap: clamp(12px,2.4vw,20px); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.press-landing .plan-head { display:flex; align-items:baseline; justify-content:space-between; gap:8px; margin-bottom:.4em; }
.press-landing .price { font-weight:800; font-size: clamp(22px,3vw,28px); color:#0c1a2b; margin:0; }
.press-landing .yen-note { font-size:.85em; color:#6b7280; }
.press-landing .list { margin:.5em 0 0 1.1em; }
.press-landing .plan-cta { margin-top: .8em; }

/* ====== ステップ / チェック ====== */
.press-landing .steps { counter-reset:num; padding-left:0; margin:.4em 0 0; }
.press-landing .steps li { list-style:none; margin:.5em 0; padding-left:36px; position:relative; }
.press-landing .steps li::before {
  counter-increment:num; content: counter(num);
  position:absolute; left:0; top:2px; width:26px; height:26px; border-radius:50%;
  background:#f0fdf4; color:#0a7a35; border:1px solid #86efac;
  display:flex; align-items:center; justify-content:center; font-weight:700;
}
.press-landing .check { margin:0; padding-left:1.1em; }
.press-landing .check li { margin:.45em 0; }

/* ====== 最終CTA ====== */
.press-landing .final-cta p { color:#374151; }

/* ====== 小さめ画面の微調整 ====== */
@media (max-width: 480px){
  .press-landing .btn--lg { font-size:1rem; padding:.85em 1.4em; }
}


/* ===== 強制パッチ：このLPだけヒーロー動画を中央カードにする ===== */

/* ヘッダーの大きい画像を非表示（LP限定） */
body.page-template-template-press .mg-breadcrumb-section,
body.page-template-template-press .snl-page-hero { display: none !important; }

/* 枠ごと中央寄せ */
body.page-template-template-press .hero-wrap{
  display:flex; justify-content:center;
  padding: clamp(24px, 5vw, 72px) 0 0;
}
body.page-template-template-press .hero-frame{
  width: min(1200px, 94vw);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 16px 44px rgba(0,0,0,.18);
}

/* ここが肝：どんな“全画面ルール”よりも強く上書き */
body.page-template-template-press .hero-frame .hero-video{
  position: static !important;
  inset: auto !important;            /* top/right/bottom/left を全無効化 */
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  filter: saturate(.95) brightness(.9);
}

/* 念のため、古い全画面指定を全部無効化 */
body.page-template-template-press .press-landing .hero-video.fixed,
body.page-template-template-press .press-landing video[style*="position:fixed"]{
  position: static !important;
}


/* このテンプレートだけヘッダー画像を消す／全体白背景 */
.page-template-template-press .mg-breadcrumb-section,
.page-template-template-press .snl-page-hero { display:none !important; }
.page-template-template-press .press-landing { background:#fff; }


.stn-about { color:#0c1a2b; background:#fff; border:1px solid #e9eef2; border-radius:16px; padding:24px; width:min(840px, 92vw); margin:clamp(16px,4vw,28px) auto; }
.stn-about h2 { font-size:clamp(22px,2.4vw,28px); margin:0 0 .6em; letter-spacing:.02em; }
.stn-about h3 { font-size:clamp(16px,2vw,20px); margin:1.2em 0 .4em; }
.stn-about p, .stn-about li { line-height:1.9; }
.stn-about ul, .stn-about ol { margin:.6em 0 .8em 1.2em; }
.stn-about .note { color:#64748b; font-size:.95rem; }
.stn-about .sig { color:#334155; margin-top:.6em; }
.stn-about details { background:#fafcff; border:1px solid #eef3f7; border-radius:12px; padding:.8em 1em; }
.stn-about details summary { cursor:pointer; font-weight:700; }

/* 多言語フォント（JA/ZH/HI対応） */
.press-landing {
  font-family:
    "Noto Sans JP","Noto Sans SC","Noto Sans Devanagari",
    "Noto Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}

/* 言語スイッチャ */
.lang-switch{width:min(1120px,94vw);margin:16px auto 0;display:flex;align-items:center;justify-content:space-between;gap:8px}
.lang-switch ul{list-style:none;display:flex;gap:10px;margin:0;padding:0}
.lang-switch a{display:inline-block;padding:6px 10px;border-radius:9999px;text-decoration:none;border:1px solid #e5eaf0;color:#0c1a2b;background:#fff}
.lang-switch a[aria-current="true"]{border-color:#0b63ce;color:#0b63ce;font-weight:700}
.lang-switch .lang-note{margin:0;font-size:12.5px;color:#6b7a90}

/* セクション見出しとコンテナ */
.section{padding:56px 0}
.sec-title{font-size:clamp(20px,2.2vw,28px);line-height:1.35;margin:0 0 .6em;color:#0c1a2b}

/* グリッド */
.grid3{display:grid;gap:16px;grid-template-columns:repeat(auto-fit,minmax(240px,1fr))}
.grid2{display:grid;gap:16px;grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}

/* カード */
.card{background:#ffffff;border:1px solid #eef3f7;border-radius:14px;padding:clamp(14px,2.4vw,18px);box-shadow:0 8px 24px rgba(0,0,0,.06)}
.card h3{margin:.2em 0 .3em;font-size:1.05rem;color:#17324d}

/* ヒーロー周り（中央動画） */
.hero-wrap{margin:clamp(24px,5.5vw,80px) auto;width:min(1200px,94vw)}
.hero-frame{aspect-ratio:16/9;width:100%;border-radius:18px;overflow:hidden;background:#000;box-shadow:0 16px 48px rgba(0,0,0,.18);margin:0}
.hero-video{position:static!important;inset:auto!important;width:100%;height:100%;object-fit:cover;display:block;background:#000}

/* CTA / ボタン */
.cta-row{display:flex;gap:12px;flex-wrap:wrap;justify-content:center;align-items:center;margin-top:10px}
.btn{display:inline-block;padding:.9em 1.4em;border-radius:9999px;text-decoration:none;font-weight:700;transition:.2s ease;border:1px solid transparent}
.btn--primary{background:#22c55e;border-color:#22c55e;color:#fff}
.btn--primary:hover{background:#16a34a;border-color:#16a34a}
.btn--ghost{background:#f0fdf4;border-color:#86efac;color:#0a7a35}
.btn--ghost:hover{background:#dcfce7;border-color:#16a34a}
.btn--lg{font-size:1.05rem;padding:1.05em 1.6em}

/* 価格・プラン */
.plans{display:grid;gap:16px;grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.price{font-size:clamp(22px,3vw,28px);font-weight:800;margin:.2em 0 .4em}
.yen-note{font-size:.8em;font-weight:600}

/* オプション */
.addons{list-style:none;margin:.4em 0 0;padding:0;display:grid;gap:10px;grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.addon{display:flex;align-items:center;gap:8px;padding:10px 12px;border:1px dashed #e5eef5;border-radius:12px;background:#fcfeff}
.badge{display:inline-block;font-size:.75rem;line-height:1;padding:.4em .6em;border-radius:9999px;background:#eff6ff;color:#0b63ce;border:1px solid #cfe2ff}

/* ステップ/チェック */
.steps{counter-reset:num;margin-left:0;padding-left:0}
.steps li{list-style:none;margin:10px 0;padding-left:36px;position:relative}
.steps li:before{counter-increment:num;content:counter(num);width:26px;height:26px;border-radius:50%;background:#f1f5f9;border:1px solid #e2e8f0;display:inline-flex;align-items:center;justify-content:center;position:absolute;left:0;top:2px;color:#17324d}
.check{margin:0 0 0 1em}
.check li{margin:6px 0}
/* Base */
body.page-template-template-press {
  background:#fff;
  font-family:"Noto Sans JP","Noto Sans","Noto Sans SC","Noto Sans Devanagari",
              -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:#0f172a;
}
/* テーマのヘッダーカバーを非表示（このLPのみ） */
body.page-template-template-press .snl-page-hero { display:none !important; }

/* Language switcher */
.press-landing .lang-switch{
  width:min(1080px,92vw); margin:12px auto 0; display:flex; gap:.5rem; justify-content:flex-end;
}
.press-landing .lang-switch .lang{
  font-size:.92rem; padding:.35rem .6rem; border-radius:9999px; text-decoration:none;
  border:1px solid #e2e8f0; color:#0f172a; background:#fff; transition:.18s ease;
}
.press-landing .lang-switch .lang:hover{ background:#f8fafc; }
.press-landing .lang-switch .lang.is-active{ background:#0b63ce; border-color:#0b63ce; color:#fff; }

/* Containers / sections */
.press-landing .container{width:min(1080px,92vw);margin:0 auto;}
.press-landing .section{padding:clamp(28px,5.6vw,72px) 0;}
.press-landing .lp-container{width:min(900px,92vw);margin:0 auto;}
.press-landing .center{text-align:center;}
.press-landing .sec-title{font-size:clamp(20px,2.4vw,28px);line-height:1.3;margin:0 0 .8em;}

/* Hero video (framed, centered) */
.press-landing .hero-wrap{margin:clamp(16px,5vw,40px) auto 0; width:min(1180px,94vw);}
.press-landing .hero-frame{
  aspect-ratio:16/9; width:100%; border-radius:18px; overflow:hidden; background:#000;
  box-shadow:0 18px 56px rgba(2,6,23,.18);
}
.press-landing .hero-video{position:static !important;width:100%;height:100%;object-fit:cover;display:block;filter:saturate(.95) brightness(.9);}

/* Hero copy panel */
.press-landing .section--panel .lp-container{
  background:#fff; border:1px solid #eef2f7; border-radius:18px;
  padding:clamp(16px,3.6vw,28px); box-shadow:0 12px 36px rgba(2,6,23,.08);
}
.press-landing .hero-title{font-size:clamp(22px,3vw,32px);margin:0 0 .4em;}
.press-landing .lead{color:#334155;line-height:1.85;margin:.2em 0 1em;}

/* Buttons */
.press-landing .btn{
  display:inline-block; padding:.9em 1.4em; border-radius:9999px; text-decoration:none;
  font-weight:700; border:1px solid transparent; transition:.18s ease;
}
.press-landing .btn--primary{background:#22c55e;border-color:#22c55e;color:#fff;}
.press-landing .btn--primary:hover{background:#16a34a;border-color:#16a34a;}
.press-landing .btn--ghost{background:#f0fdf4;color:#0a7a35;border-color:#86efac;}
.press-landing .btn--ghost:hover{background:#dcfce7;border-color:#16a34a;}
.press-landing .btn--lg{font-size:1.05rem;padding:1.05em 1.6em;}
.press-landing .cta-row{display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap;}

/* Grids & cards */
.press-landing .grid3, .press-landing .grid2{display:grid;gap:clamp(12px,2.4vw,18px);}
.press-landing .grid3{grid-template-columns:repeat(auto-fit,minmax(240px,1fr));}
.press-landing .grid2{grid-template-columns:repeat(auto-fit,minmax(280px,1fr));}
.press-landing .card{
  background:#fff;border:1px solid #e9eef2;border-radius:14px;
  padding:clamp(14px,2.6vw,18px);box-shadow:0 10px 30px rgba(2,6,23,.06);
}
.press-landing .card h3{margin:.2em 0 .4em;font-size:1.05rem;}
.press-landing .card p{color:#475569;line-height:1.8;}

/* Plans */
.press-landing .plans{display:grid;gap:clamp(12px,2.4vw,18px);grid-template-columns:repeat(auto-fit,minmax(280px,1fr));}
.press-landing .plan-head{display:flex;align-items:baseline;justify-content:space-between;gap:.6rem;}
.press-landing .price{font-size:clamp(22px,3vw,28px);font-weight:800;margin:.2em 0;}
.press-landing .yen-note{font-size:.85em;font-weight:600;opacity:.9;}
.press-landing .list{margin:.4em 0 0 1.1em;}
.press-landing .list li{margin:.35em 0;}

/* Options */
.press-landing .opt-list{margin:.4em 0 0 1.1em;}
.press-landing .opt-list li{margin:.3em 0;}
.press-landing .small-note{font-size:.92rem;color:#64748b;}

/* Steps */
.press-landing .steps{counter-reset:num;margin:0;padding:0;}
.press-landing .steps li{
  list-style:none;position:relative;margin:.5em 0;padding-left:36px;line-height:1.8;
}
.press-landing .steps li::before{
  counter-increment:num;content:counter(num);
  position:absolute;left:0;top:.15em;width:26px;height:26px;border-radius:50%;
  background:#f1f5f9;color:#0f172a;display:inline-flex;align-items:center;justify-content:center;border:1px solid #e2e8f0;
}

/* Multilingual promo */
.press-landing .lang-promo{
  display:grid;gap:clamp(12px,2.4vw,18px);grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}
.press-landing .lang-card{
  background:#fff;border:1px solid #eef3f7;border-radius:14px;padding:14px 16px;
  box-shadow:0 8px 24px rgba(2,6,23,.06);display:flex;flex-direction:column;gap:.6rem;
}
.press-landing .lang-card header{display:flex;align-items:center;gap:.6rem;}
.press-landing .flag{
  width:28px;height:28px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;
  background:#eff6ff;color:#0b63ce;font-weight:700;border:1px solid #cfe2ff;
}
.press-landing .lang-card h3{margin:0;font-size:1.02rem;color:#17324d;}
.press-landing .lang-card p{margin:0;color:#4b5b70;line-height:1.7;}
.press-landing .lang-help-foot{margin:.8rem 0 0;font-size:.92rem;color:#6b7a90;text-align:center;}

/* Final CTA */
.press-landing .final-cta p{color:#334155;max-width:760px;margin:.4rem auto 0;}

/* Focus */
.press-landing a:focus-visible{outline:0;box-shadow:0 0 0 3px rgba(34,197,94,.35);border-radius:9999px;}

/* Base */
body.page-template-template-press {
  background:#fff;
  font-family:"Noto Sans JP","Noto Sans","Noto Sans SC","Noto Sans Devanagari",
              -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:#0f172a;
}
/* テーマのヘッダーカバーを非表示（このLPのみ） */
body.page-template-template-press .snl-page-hero { display:none !important; }

/* Language switcher */
.press-landing .lang-switch{
  width:min(1080px,92vw); margin:12px auto 0; display:flex; gap:.5rem; justify-content:flex-end;
}
.press-landing .lang-switch .lang{
  font-size:.92rem; padding:.35rem .6rem; border-radius:9999px; text-decoration:none;
  border:1px solid #e2e8f0; color:#0f172a; background:#fff; transition:.18s ease;
}
.press-landing .lang-switch .lang:hover{ background:#f8fafc; }
.press-landing .lang-switch .lang.is-active{ background:#0b63ce; border-color:#0b63ce; color:#fff; }

/* Containers / sections */
.press-landing .container{width:min(1080px,92vw);margin:0 auto;}
.press-landing .section{padding:clamp(28px,5.6vw,72px) 0;}
.press-landing .lp-container{width:min(900px,92vw);margin:0 auto;}
.press-landing .center{text-align:center;}
.press-landing .sec-title{font-size:clamp(20px,2.4vw,28px);line-height:1.3;margin:0 0 .8em;}

/* Hero video (framed, centered) */
.press-landing .hero-wrap{margin:clamp(16px,5vw,40px) auto 0; width:min(1180px,94vw);}
.press-landing .hero-frame{
  aspect-ratio:16/9; width:100%; border-radius:18px; overflow:hidden; background:#000;
  box-shadow:0 18px 56px rgba(2,6,23,.18);
}
.press-landing .hero-video{position:static !important;width:100%;height:100%;object-fit:cover;display:block;filter:saturate(.95) brightness(.9);}

/* Hero copy panel */
.press-landing .section--panel .lp-container{
  background:#fff; border:1px solid #eef2f7; border-radius:18px;
  padding:clamp(16px,3.6vw,28px); box-shadow:0 12px 36px rgba(2,6,23,.08);
}
.press-landing .hero-title{font-size:clamp(22px,3vw,32px);margin:0 0 .4em;}
.press-landing .lead{color:#334155;line-height:1.85;margin:.2em 0 1em;}

/* Buttons */
.press-landing .btn{
  display:inline-block; padding:.9em 1.4em; border-radius:9999px; text-decoration:none;
  font-weight:700; border:1px solid transparent; transition:.18s ease;
}
.press-landing .btn--primary{background:#22c55e;border-color:#22c55e;color:#fff;}
.press-landing .btn--primary:hover{background:#16a34a;border-color:#16a34a;}
.press-landing .btn--ghost{background:#f0fdf4;color:#0a7a35;border-color:#86efac;}
.press-landing .btn--ghost:hover{background:#dcfce7;border-color:#16a34a;}
.press-landing .btn--lg{font-size:1.05rem;padding:1.05em 1.6em;}
.press-landing .cta-row{display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap;}

/* Grids & cards */
.press-landing .grid3, .press-landing .grid2{display:grid;gap:clamp(12px,2.4vw,18px);}
.press-landing .grid3{grid-template-columns:repeat(auto-fit,minmax(240px,1fr));}
.press-landing .grid2{grid-template-columns:repeat(auto-fit,minmax(280px,1fr));}
.press-landing .card{
  background:#fff;border:1px solid #e9eef2;border-radius:14px;
  padding:clamp(14px,2.6vw,18px);box-shadow:0 10px 30px rgba(2,6,23,.06);
}
.press-landing .card h3{margin:.2em 0 .4em;font-size:1.05rem;}
.press-landing .card p{color:#475569;line-height:1.8;}

/* Plans */
.press-landing .plans{display:grid;gap:clamp(12px,2.4vw,18px);grid-template-columns:repeat(auto-fit,minmax(280px,1fr));}
.press-landing .plan-head{display:flex;align-items:baseline;justify-content:space-between;gap:.6rem;}
.press-landing .price{font-size:clamp(22px,3vw,28px);font-weight:800;margin:.2em 0;}
.press-landing .yen-note{font-size:.85em;font-weight:600;opacity:.9;}
.press-landing .list{margin:.4em 0 0 1.1em;}
.press-landing .list li{margin:.35em 0;}

/* Options */
.press-landing .opt-list{margin:.4em 0 0 1.1em;}
.press-landing .opt-list li{margin:.3em 0;}
.press-landing .small-note{font-size:.92rem;color:#64748b;}

/* Steps */
.press-landing .steps{counter-reset:num;margin:0;padding:0;}
.press-landing .steps li{
  list-style:none;position:relative;margin:.5em 0;padding-left:36px;line-height:1.8;
}
.press-landing .steps li::before{
  counter-increment:num;content:counter(num);
  position:absolute;left:0;top:.15em;width:26px;height:26px;border-radius:50%;
  background:#f1f5f9;color:#0f172a;display:inline-flex;align-items:center;justify-content:center;border:1px solid #e2e8f0;
}

/* Multilingual promo */
.press-landing .lang-promo{
  display:grid;gap:clamp(12px,2.4vw,18px);grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}
.press-landing .lang-card{
  background:#fff;border:1px solid #eef3f7;border-radius:14px;padding:14px 16px;
  box-shadow:0 8px 24px rgba(2,6,23,.06);display:flex;flex-direction:column;gap:.6rem;
}
.press-landing .lang-card header{display:flex;align-items:center;gap:.6rem;}
.press-landing .flag{
  width:28px;height:28px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;
  background:#eff6ff;color:#0b63ce;font-weight:700;border:1px solid #cfe2ff;
}
.press-landing .lang-card h3{margin:0;font-size:1.02rem;color:#17324d;}
.press-landing .lang-card p{margin:0;color:#4b5b70;line-height:1.7;}
.press-landing .lang-help-foot{margin:.8rem 0 0;font-size:.92rem;color:#6b7a90;text-align:center;}

/* Final CTA */
.press-landing .final-cta p{color:#334155;max-width:760px;margin:.4rem auto 0;}

/* Focus */
.press-landing a:focus-visible{outline:0;box-shadow:0 0 0 3px rgba(34,197,94,.35);border-radius:9999px;}


/* ── 4言語併記のための最小追加 ───────────────────────── */

.press-landing .i18n-stack { display:flex; flex-direction:column; gap:.3rem; }
.press-landing .i18n-line { display:block; }
.press-landing .i18n-line .tag{
  display:inline-flex; align-items:center; justify-content:center;
  font-size:.78em; font-weight:700; letter-spacing:.02em;
  padding:.15em .55em; margin-right:.5em; border-radius:9999px;
  background:#f1f5f9; color:#0f172a; border:1px solid #e2e8f0;
}

/* 多言語カード */
.press-landing .i18n-grid{
  display:grid; gap:clamp(12px,2.4vw,18px);
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
}
.press-landing .i18n-card{
  background:#fff; border:1px solid #eef3f7; border-radius:14px;
  padding:14px 16px; box-shadow:0 8px 24px rgba(2,6,23,.06);
  display:flex; flex-direction:column; gap:.6rem;
}
.press-landing .i18n-card header{ display:flex; align-items:center; gap:.55rem; }
.press-landing .i18n-card .flag{
  width:28px; height:28px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  background:#eff6ff; color:#0b63ce; font-weight:700; border:1px solid #cfe2ff;
}
.press-landing .i18n-card h3{ margin:0; font-size:1.02rem; color:#17324d; }
.press-landing .i18n-card p{ margin:0; color:#4b5b70; line-height:1.7; }

/* i18nの箇条書き・段落 */
.press-landing .i18n-multi { display:flex; flex-direction:column; gap:.35rem; }
.press-landing .i18n-list .tag{
  display:inline-block; min-width:2.3em; text-align:center; margin-right:.5em;
  font-weight:700; font-size:.78em; padding:.1em .45em; border-radius:9999px;
  background:#f8fafc; color:#0f172a; border:1px solid #e2e8f0;
}

/* 流れ（英中印の短文をサブ行で） */
.press-landing .i18n-steps .sub-lines{
  margin:.15rem 0 0 .2rem; display:flex; flex-wrap:wrap; gap:.5rem 1rem;
  font-size:.95rem; color:#4b5563;
}
.press-landing .i18n-steps .sub-lines span::before{
  content:""; display:inline-block; width:6px; height:6px; border-radius:50%;
  background:#cbd5e1; margin-right:.4rem; transform:translateY(-1px);
}

/* 既存の白背景・タイポを活かしつつ、全体は白に */
body.page-template-template-press { background:#fff; }
body.page-template-template-press .snl-page-hero { display:none !important; } /* ヘッダーカバー非表示 */


/* === LP全体：白背景／テーマ変数 === */
body.page-template-template-press { background:#fff; }
.page-template-template-press .snl-page-hero { display:none !important; } /* テーマのヘッダー画像OFF */

.press-landing{
  --maxw: 1100px;
  --measure: 68ch;              /* 段落は本文幅よりさらに狭く */
  --radius: 18px;
  --line: #e9eef2;
  --ink: #0b1220;
  --muted: #4b5b70;
  --primary: #0b63ce;
  --primary-dark: #084f9f;
  color: var(--ink);
  font-family: "Noto Sans JP","Noto Sans SC","Noto Sans Devanagari","Inter",system-ui,sans-serif;
}

/* === HERO：中央額縁動画 === */
.hero-wrap{ margin: clamp(28px,6vw,72px) auto; }
.hero-frame{
  width: min(1200px, 94vw);
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
}
.hero-video{ width:100%; height:100%; object-fit:cover; display:block; }

/* === コンテナ＆セクション === */
.container{ width: min(var(--maxw), 94vw); margin: 0 auto; }
.section{ padding: clamp(22px,5vw,52px) 0; }
.section--panel{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(2,6,23,.06); padding: clamp(16px,3.4vw,26px);
}
.center{ text-align:center; }
.measure{ max-width: var(--measure); margin-inline:auto; }

/* === H1：4言語は必ず行分け === */
.i18n-head .hero-title{ display:grid; gap:.35rem; line-height:1.32; margin:0; }
.i18n-head .hero-title span{ display:block; }
.i18n-head .hero-title span b{ font-weight:800; margin-right:.6ch; color:#0c1a2b; }
.lang-nav{ display:flex; justify-content:center; gap:.6rem; flex-wrap:wrap; margin-top:.9rem; }
.pill{
  display:inline-block; padding:.55rem .9rem; border-radius:9999px;
  background:#eef5ff; color:#0b63ce; border:1px solid #d9e8ff; font-weight:700; text-decoration:none;
}
.pill:hover{ background:#e6f0ff; }

/* === 言語ブロック：カード化＋上ボーダーで区切り === */
.lang-section{
  background:#fff; border:1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(2,6,23,.05);
  padding: clamp(16px,3.4vw,26px);
  margin-bottom: 22px;
  position: relative;
}
.lang-section::before{
  content:""; position:absolute; inset:0 0 auto 0; height:4px;
  background: linear-gradient(90deg, #0b63ce, #11a36a 60%, #7c3aed 100%);
  border-top-left-radius: var(--radius); border-top-right-radius: var(--radius);
}
.lang-section:target{ outline:3px solid rgba(11,99,206,.18); scroll-margin-top:80px; }

.lang-section__head{ display:flex; align-items:center; gap:.6rem; margin-bottom:.4rem; }
.lang-badge{
  display:inline-flex; align-items:center; justify-content:center;
  width:2.1rem; height:2.1rem; border-radius:9999px; background:#0b63ce; color:#fff; font-weight:800;
}
.sec-title{ font-size: clamp(20px,2.2vw,28px); margin:0; letter-spacing:.01em; }
.subh{ margin:1.2rem 0 .5rem; font-size:1.05rem; color:#14263d; }

/* === グリッドとカード（簡素・端正） === */
.grid3{ display:grid; gap:clamp(12px,2.4vw,18px); grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); }
.card{
  background:#fff; border:1px solid var(--line); border-radius:14px;
  padding:14px 16px; box-shadow:0 6px 20px rgba(2,6,23,.04);
}
.card h3{ margin:.2rem 0 .35rem; }

/* === プラン === */
.plans{ display:grid; gap:clamp(12px,2.4vw,18px); grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); }
.plan-head{ display:flex; align-items:baseline; justify-content:space-between; gap:1rem; margin-bottom:.3rem; }
.price{ font-weight:800; }
.yen-note{ font-weight:600; opacity:.75; }

/* === リスト／手順 === */
.list, .opt-list, .steps{ margin:.3rem 0 .2rem 1.1rem; }
.steps li{ margin:.22rem 0; }

/* === ボタン（統一・簡素） === */
.btn{ display:inline-block; padding:.8rem 1.15rem; border-radius:12px; text-decoration:none; font-weight:750;
      box-shadow:0 6px 18px rgba(2,6,23,.06); }
.btn--primary{ background:var(--primary); color:#fff; }
.btn--primary:hover{ background:var(--primary-dark); }
.btn--ghost{ background:#f7fafc; color:#0b1a2b; border:1px solid var(--line); }
.btn--ghost:hover{ background:#eef3f7; }
.btn--lg{ padding:1rem 1.35rem; }
.cta-row{ display:flex; gap:.8rem; flex-wrap:wrap; justify-content:center; margin-top:12px; }

/* === タイポ微調整（読みやすさ） === */
.press-landing p, .press-landing li{
  font-variant-numeric: lining-nums;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.78;
  color: var(--ink);
}
.lead{ color: var(--muted); }

/* ==== Page wrapper (余白と背景) ==== */
.snl-formwrap{
  --wrap: 980px;
  padding: clamp(16px, 3.2vw, 28px) 0 64px;
  background: linear-gradient(#f5f7fb, #f7f9ff);
}
.snl-formwrap .snl-card{
  --maxw: 720px;
  width: min(var(--maxw), 92vw);
  margin: 0 auto;
  background:#fff;
  border:1px solid #e7ecf2;
  border-radius:16px;
  padding: clamp(18px, 3.6vw, 28px);
  box-shadow: 0 16px 48px rgba(8,23,46,.07);
}

/* ラジオ/チェックボックスの横並びを安定化 */
.snl-radio span.wpcf7-list-item,
.snl-inline span.wpcf7-list-item{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  margin:.2rem .9rem .2rem 0;
}
.snl-radio input[type="radio"],
.snl-inline input[type="checkbox"]{
  transform: translateY(1px);
}

/* ファイルアップロードを100%に */
.wpcf7-form-control.wpcf7-file{
  width:100%;
  padding:.55rem .75rem;
  border:1px solid #dbe4ea;
  border-radius:12px;
  background:#fff;
}

/* レスポンシブでのはみ出し保険 */
.snl-form input, .snl-form select, .snl-form textarea, .wpcf7-form-control-wrap{ max-width:100%; }