/* ============================================================
   Web of Science カテゴリLP 専用スタイル (wos.css)
   - rs.usaco.co.jp / Movable Type モジュール 312_cat_wos 用
   - 全セレクタを .wos-page 配下にスコープ
   - rem は使わず px 固定（サイト共通CSSのルート縮小の影響を受けない）

   ■ 文字サイズのスケールについて
     Adobe XD のアートボード（1920px）の実測値は 20 / 24 / 32 / 48px だが、
     等倍で採用すると Multi-Sigma（本文16px）や Consensus（本文16px）より
     大きくなりサイト内で浮くため、階層を保ったまま縮小したうえで、
     文字数が少なめな構成に合わせて全体を +2px している。
       ラベル 17px ／ 本文 18px ／ 見出し 30px ／ 数値 40px
       ヒーロー見出し 62px（Inter 600）／ キャッチ 28px
     旧スケール（デザイン等倍）は backup/wos_20260826_original-scale.css に保存。

   ■ フォントは common_stylesheet の <link> で読み込まれる前提。
     Web of Science 分岐に以下を指定すること（Inter と weight 600 が必須）
       https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700
         &family=Noto+Sans+JP:wght@400;500;600;700;800&display=swap

   ■ レイアウト実測値のメモ（1920px 幅アートボード）
     コンテナ幅 1446px（左右余白 242px）／見出し・本文ブロックは +70px インデント
   ============================================================ */

.wos-page *,
.wos-page *::before,
.wos-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.wos-page {
  /* 指定色 */
  --main: #5E33C0;   /* メインカラー */
  --deep: #46229A;   /* サポート体制セクション背景 */
  --sub1: #B075E1;   /* サブカラー：ヒーロー見出し・アイキャッチ */
  --sub2: #BE99DC;
  --sub3: #CFB2E8;
  --ink: #3B3B3B;    /* 本文 */
  --blue: #46A6E3;
  --blue2: #4193DF;
  --indigo: #7D83E0;

  /* 派生色 */
  --grad-l: #CBE2F6; /* セクション背景グラデーション：左 */
  --grad-r: #EBE5FC; /* セクション背景グラデーション：右 */
  --rule: #CECECE;   /* 数値カードの区切り線 */
  --border: #707070; /* Research Assistant ボックスの枠線 */
  --form-bg: #F6F3FC; /* お問い合わせフォームセクションの背景 */

  /* 左右パディング込みの外枠幅。1486 - 20*2 = 1446px がデザインのコンテナ幅 */
  --container: 1486px;
  --indent: 70px;
  --pad-side: 20px;
  /* 本文の最大行長。16px で 1446px 幅だと1行80文字を超えて読みにくいため制限する */
  --measure: 900px;
}

.wos-page {
  font-size: 18px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.85;
}

/* ── 横はみ出し防止（レスポンシブ堅牢化） ─────────────────
   grid / flex の子要素は既定が min-width:auto のため、中身が縮まず
   横スクロールを発生させることがある。長い英数字への保険も兼ねる。 */
.wos-page img {
  max-width: 100%;
  height: auto;
}

.wos-page .wos-stats > *,
.wos-page .wos-feature-grid > *,
.wos-page .wos-trust-list > *,
.wos-page .wos-cols > * {
  min-width: 0;
}

.wos-page .wos-cols-text,
.wos-page .wos-hero-msg,
.wos-page .wos-ra-item,
.wos-page .wos-feature-body {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* ── レイアウト土台 ─────────────────────────────────────
   .wos-container … セクションの外枠（セクションラベルはこの左端に揃う）
   .wos-inner     … 見出し・本文ブロック（外枠から 70px インデント） */
.wos-page .wos-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-side);
}

.wos-page .wos-inner {
  padding-left: var(--indent);
}

.wos-page section {
  padding: 80px 0 104px;
}

/* ── セクションラベル（例：Web of Science｜概要）─────────── */
.wos-page .wos-label {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 56px;
}

.wos-page .wos-label-sep {
  display: inline-block;
  margin: 0 3px;
  font-weight: 400;
  color: #B5B5B5;
}

.wos-page .wos-label--light {
  color: #fff;
}

/* ── 共通見出し ─────────────────────────────────────────── */
.wos-page .wos-heading {
  font-size: 30px;
  font-weight: 700;
  color: var(--main);
  line-height: 1.5;
  margin-bottom: 24px;
}

/* 中央寄せ見出し（導入実績セクション） */
.wos-page .wos-heading-c {
  font-size: 30px;
  font-weight: 700;
  color: var(--main);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 44px;
}

/* 欧文見出し（Research Assistant） */
.wos-page .wos-heading--latin {
  letter-spacing: .01em;
  margin-bottom: 32px;
}

.wos-page .wos-heading--light {
  color: #fff;
}

.wos-page .wos-eyebrow {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.6;
  color: var(--sub1);
  margin-bottom: 10px;
}

.wos-page .wos-text {
  font-size: 18px;
  line-height: 1.85;
  color: var(--ink);
}

.wos-page .wos-text--wide {
  max-width: var(--measure);
  margin-bottom: 40px;
}

.wos-page .wos-text--light {
  color: #fff;
}

/* ═══ HERO ══════════════════════════════════════════════ */
.wos-page .wos-hero {
  background-color: #000;
  /* デザインでは背景写真に黒 50% を重ねて文字を読ませているため、
     同じ効果を黒の単色グラデーションで再現する */
  background-image:
    linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)),
    url("/product/.assets/wos_kv_1920.jpg");
  background-size: cover;
  /* デザインのトリミング位置に合わせる（1920×1080px の画像を高さ 840px で切り出し、
     上から 180px の位置＝縦 75% を基準にする） */
  background-position: center 75%;
  background-repeat: no-repeat;
  padding: 0;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.wos-page .wos-hero .wos-container {
  width: 100%;
}

/* ボタンは「キャッチ＋リード」ブロックに対して上下中央に置く（デザイン案準拠）。
   見出しを1行目、メッセージとボタンを2行目に置いた2列グリッドで実現する。
   見出しを含めた文章全体に対して中央にすると、ボタンが上にずれて見える。 */
/* 3列構成：[本文 600px][ボタン][余りを吸収するスペーサー]
   固定の右パディングでボタンを寄せると画面幅によって本文との間隔が
   大きく変動するため、右端に伸縮する列を置いて余りをそこに集める。
   これで本文とボタンの間隔（190px）が幅によらず一定になる。
   1列目の 600px はキャッチコピー1行目の実測幅（585px）に合わせた値。
   これより狭めるとキャッチが3行に割れる。 */
.wos-page .wos-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 600px) auto minmax(0, 1fr);
  column-gap: 0;
  align-items: center;
  padding: 64px 0 64px var(--indent);
}

.wos-page .wos-hero-title {
  grid-column: 1;
  grid-row: 1;
}

.wos-page .wos-hero-msg {
  grid-column: 1;
  grid-row: 2;
}

.wos-page .wos-hero-cta {
  grid-column: 2;
  grid-row: 2;
  padding-left: 190px;
}

/* 製品名は Inter を使用（common_stylesheet で Inter と Noto Sans JP を
   まとめて読み込むこと。weight 600 を含めないと 500 か 700 に丸められる）。
   Inter は Noto Sans JP より字幅が広いため letter-spacing は 0 にしている。 */
.wos-page .wos-hero-title {
  font-family: "Inter", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(36px, 3.3vw, 62px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--sub1);
  margin-bottom: 32px;
}

.wos-page .wos-hero-catch {
  font-size: clamp(21px, 1.5vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 14px;
}

/* リード文の折り返し幅。「…厳選された高品質な / データが、…」の位置で
   2行に割れるよう 575px にしている（1行目の実測幅 573px ＋ わずかな余裕。
   590px 以上にすると次の「デ」が1行目に入ってしまう）。
   文字サイズを変えたらこの値も再計測すること。 */
.wos-page .wos-hero-lead {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.8;
  color: #fff;
  max-width: 575px;
}

.wos-page .wos-btn-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  min-height: 84px;
  padding: 18px 24px;
  background: #fff;
  border: 2px solid var(--main);
  color: var(--main);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
}

.wos-page .wos-btn-hero:hover {
  background: var(--main);
  color: #fff;
  transform: translateY(-2px);
}

/* 幅が狭い範囲では間隔とボタン幅を詰めて、本文欄 575px を確保する
   （575px を下回るとリード文が3行になり折り返し位置が崩れる） */
@media (max-width: 1300px) and (min-width: 1201px) {
  .wos-page .wos-hero-cta {
    padding-left: 100px;
  }
  .wos-page .wos-btn-hero {
    width: 320px;
  }
}

@media (max-width: 1200px) {
  .wos-page .wos-hero {
    min-height: 0;
  }
  /* 1カラムに切り替え。見出し → メッセージ → ボタンの縦並びにする */
  .wos-page .wos-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 32px;
    align-items: start;
    padding: 56px 0;
  }
  .wos-page .wos-hero-title,
  .wos-page .wos-hero-msg,
  .wos-page .wos-hero-cta {
    grid-column: 1;
    grid-row: auto;
  }
  .wos-page .wos-hero-cta {
    padding-left: 0;
  }
  .wos-page .wos-hero-title {
    margin-bottom: 0;
  }
  /* 1カラムではリード文の折り返し制限を解除して幅いっぱいに流す */
  .wos-page .wos-hero-lead {
    max-width: none;
  }
  .wos-page .wos-btn-hero {
    width: 100%;
    max-width: 360px;
    min-height: 72px;
    font-size: 19px;
  }
}

/* ═══ 導入実績・信頼性 ══════════════════════════════════ */
.wos-page .wos-trust {
  background: #fff;
  padding-top: 88px;
}

/* このセクションの見出し・アイコン列はページ中央に揃える（デザイン準拠） */
.wos-page .wos-trust .wos-inner {
  padding-left: 0;
}

.wos-page .wos-trust-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  margin: 0 auto;
}

.wos-page .wos-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* アイコンは 170px 相当を基本に、幅が足りない場合だけ縮める
   （元画像は 240×240px なので縮小表示。拡大にはならない） */
.wos-page .wos-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 170px;
  aspect-ratio: 1 / 1;
}

.wos-page .wos-trust-icon img {
  width: 100%;
  height: auto;
  display: block;
}

.wos-page .wos-trust-label {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
}

@media (max-width: 520px) {
  .wos-page .wos-trust-list {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 200px;
  }
}

/* ═══ 概要／品質（2カラム）══════════════════════════════ */
.wos-page .wos-overview,
.wos-page .wos-quality {
  background: #fff;
}

.wos-page .wos-cols {
  display: grid;
  grid-template-columns: minmax(0, 696fr) minmax(0, 600fr);
  gap: 54px;
  align-items: center;
}

.wos-page .wos-cols-fig img {
  width: 100%;
  display: block;
}

/* 図版が先（品質セクション：中立／厳選／一貫／包括 の図）
   元画像は 600×400px。表示幅は約 715px なので 1.19 倍の拡大表示。
   さらに鮮明にする場合は 1440×960px 程度での書き出しに差し替えること。 */
.wos-page .wos-cols--figfirst {
  grid-template-columns: minmax(0, 715fr) minmax(0, 593fr);
  gap: 64px;
}

@media (max-width: 1020px) {
  .wos-page .wos-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .wos-page .wos-cols--figfirst {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* スマホでは図版を本文の後ろに回す */
  .wos-page .wos-cols--figfirst .wos-cols-fig {
    order: 2;
  }
  .wos-page .wos-cols--figfirst .wos-cols-text {
    order: 1;
  }
}

/* ═══ 収録範囲（Coverage）／機能（背景グラデーション）══ */
.wos-page .wos-coverage,
.wos-page .wos-features {
  background-image: linear-gradient(90deg, var(--grad-l) 0%, var(--grad-r) 100%);
}

.wos-page .wos-coverage .wos-heading {
  margin-bottom: 32px;
}

.wos-page .wos-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.wos-page .wos-stat {
  background: #fff;
  padding: 40px 16px 26px;
  text-align: center;
}

.wos-page .wos-stat-num {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.01em;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 16px;
}

.wos-page .wos-stat-num--blue { color: var(--blue2); }
.wos-page .wos-stat-num--indigo { color: var(--indigo); }
.wos-page .wos-stat-num--violet { color: var(--sub1); }

.wos-page .wos-stat-label {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
}

@media (max-width: 1020px) {
  .wos-page .wos-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .wos-page .wos-stats {
    grid-template-columns: 1fr;
  }
  .wos-page .wos-stat {
    padding: 28px 16px 22px;
  }
}

/* ═══ 引用ネットワークの強み ════════════════════════════ */
.wos-page .wos-citation {
  background: #fff;
}

.wos-page .wos-figure {
  margin: 0;
  text-align: center;
}

.wos-page .wos-figure img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* 引用ネットワーク図（元画像 1800×1000px）はデザインどおり約 1030px 幅で表示 */
.wos-page .wos-citation .wos-figure img {
  max-width: 1030px;
  width: 100%;
}

.wos-page .wos-figcaption {
  margin-top: 22px;
  text-align: center;
}

.wos-page .wos-figcaption-main {
  display: block;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
}

.wos-page .wos-figcaption-sub {
  display: block;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  margin-top: 4px;
}

/* ═══ 機能とインターフェース ════════════════════════════ */
.wos-page .wos-features .wos-heading {
  margin-bottom: 36px;
}

.wos-page .wos-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.wos-page .wos-feature {
  background: #fff;
  padding: 40px 32px 44px 36px;
  display: flex;
  align-items: flex-start;
  gap: 36px;
}

.wos-page .wos-feature-icon {
  flex: 0 0 auto;
  width: 120px;
}

.wos-page .wos-feature-icon img {
  width: 120px;
  height: 120px;
  display: block;
}

.wos-page .wos-feature-title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 10px;
}

.wos-page .wos-feature-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink);
}

@media (max-width: 1020px) {
  .wos-page .wos-feature-grid {
    grid-template-columns: 1fr;
  }
  .wos-page .wos-feature {
    padding: 32px 28px;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .wos-page .wos-feature {
    padding: 24px 20px;
    gap: 18px;
  }
  .wos-page .wos-feature-icon,
  .wos-page .wos-feature-icon img {
    width: 80px;
    height: auto;
  }
}

/* ═══ 対話型検索ツール（Research Assistant）════════════ */
.wos-page .wos-assistant {
  background: #fff;
}

.wos-page .wos-ra-box {
  border: 1px solid var(--border);
  max-width: 1000px;
  margin: 0 auto 64px;
  padding: 36px 56px 32px;
}

.wos-page .wos-ra-list {
  list-style: none;
}

.wos-page .wos-ra-item + .wos-ra-item {
  margin-top: 28px;
}

/* 見出し左の円マーカー */
.wos-page .wos-ra-title {
  position: relative;
  padding-left: 32px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--main);
  margin-bottom: 6px;
}

.wos-page .wos-ra-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: .38em;
  width: 18px;
  height: 18px;
  border: 2px solid var(--sub1);
  border-radius: 50%;
}

.wos-page .wos-ra-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink);
  padding-left: 32px;
}

/* スクリーンショット図版（デザイン準拠で 1000px 幅） */
.wos-page .wos-figure--shot img {
  max-width: 1000px;
  width: 100%;
}

.wos-page .wos-figure--shot + .wos-figure--shot {
  margin-top: 56px;
}

@media (max-width: 860px) {
  .wos-page .wos-ra-box {
    padding: 28px 22px;
    margin-bottom: 48px;
  }
  .wos-page .wos-ra-title {
    padding-left: 28px;
  }
  .wos-page .wos-ra-title::before {
    width: 16px;
    height: 16px;
  }
  .wos-page .wos-ra-text {
    padding-left: 28px;
  }
  .wos-page .wos-figure--shot + .wos-figure--shot {
    margin-top: 40px;
  }
}

/* ═══ サポート体制 ══════════════════════════════════════ */
.wos-page .wos-support {
  background: var(--deep);
  color: #fff;
  padding: 88px 0 120px;
}

/* 見出し・本文・ボタンをすべて中央揃えにする。
   左上のセクションラベルは .wos-inner の外にあるため左寄せのまま。 */
.wos-page .wos-support .wos-inner {
  padding-left: 0;
  text-align: center;
}

.wos-page .wos-support .wos-heading {
  margin-bottom: 24px;
}

.wos-page .wos-support .wos-text--wide {
  margin-left: auto;
  margin-right: auto;
}

.wos-page .wos-support-cta {
  margin-top: 56px;
  text-align: center;
}

.wos-page .wos-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  max-width: 100%;
  min-height: 104px;
  padding: 22px 28px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
}

.wos-page .wos-btn-outline:hover {
  background: #fff;
  color: var(--deep);
  transform: translateY(-2px);
}

/* ═══ お問い合わせフォーム（Zoho Forms 埋め込み）════════
   Multi-Sigma（.ms-contact）と同じ構成。
   フォーム本体は Zoho のスクリプトが iframe を後から挿入する。 */
.wos-page .wos-contact {
  background: var(--form-bg);
}

.wos-page .wos-form-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 8px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 14px rgba(70, 34, 154, .10);
  overflow: hidden;
}

/* 読み込み中のプレースホルダー（iframe 挿入前の白紙対策） */
.wos-page .wos-form-wrap > div:empty::before {
  content: "フォームを読み込んでいます…";
  display: block;
  padding: 80px 0;
  font-size: 16px;
  text-align: center;
  color: #8a84a0;
}

.wos-page .wos-form-wrap iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  /* 送信完了時に Zoho 側が scrollIntoView() を呼ぶため、固定ヘッダーに
     隠れないよう JS 側で上書きする（初期値を保険で置いておく） */
  scroll-margin-top: 90px;
}

.wos-page .wos-contact-note {
  max-width: 900px;
  margin: 20px auto 0;
  font-size: 15px;
  line-height: 1.8;
  color: #5a5470;
}

.wos-page .wos-contact-note a {
  color: var(--main);
  text-decoration: underline;
}

@media (max-width: 860px) {
  .wos-page .wos-form-wrap {
    padding: 4px;
    border-radius: 8px;
  }
}

/* ═══ 共通レスポンシブ ══════════════════════════════════ */
@media (max-width: 1300px) {
  .wos-page {
    --indent: 40px;
  }
}

@media (max-width: 1020px) {
  .wos-page {
    --indent: 0px;
  }
  .wos-page section {
    padding: 64px 0 80px;
  }
  .wos-page .wos-trust {
    padding-top: 64px;
  }
  .wos-page .wos-support {
    padding: 64px 0 88px;
  }
  .wos-page .wos-label {
    margin-bottom: 40px;
  }
  .wos-page .wos-heading,
  .wos-page .wos-heading-c {
    font-size: 26px;
  }
  .wos-page .wos-heading-c {
    margin-bottom: 36px;
  }
  .wos-page .wos-heading--latin {
    font-size: 26px;
    margin-bottom: 24px;
  }
  .wos-page .wos-stat-num {
    font-size: 34px;
  }
  .wos-page .wos-support-cta {
    margin-top: 44px;
  }
  .wos-page .wos-btn-outline {
    width: 100%;
    max-width: 340px;
    min-height: 88px;
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .wos-page section {
    padding: 52px 0 64px;
  }
  .wos-page .wos-label {
    font-size: 16px;
    margin-bottom: 28px;
  }
  .wos-page .wos-heading,
  .wos-page .wos-heading-c,
  .wos-page .wos-heading--latin {
    font-size: 23px;
  }
  .wos-page .wos-text,
  .wos-page .wos-trust-label {
    font-size: 17px;
  }
  .wos-page .wos-feature-title,
  .wos-page .wos-ra-title {
    font-size: 19px;
  }
  .wos-page .wos-figcaption-main {
    font-size: 18px;
  }
  .wos-page .wos-figcaption-sub {
    font-size: 15px;
  }
  .wos-page .wos-stat-num {
    font-size: 30px;
  }
  .wos-page .wos-btn-outline {
    min-height: 76px;
    font-size: 19px;
  }
}

/* ═══ サイト共通CSSの打ち消し ═══════════════════════════
   usaco.css に以下の指定があり、ホバー時にボタンが半透明になる。
     html body a:hover, html body a:focus { color:#5F76A6; opacity:.5 }
   色はこのCSSの指定が詳細度で勝っているが opacity は打ち消していなかったため、
   ここで明示的に 1 に戻す（!important は使わず詳細度で解決）。 */
.wos-page a.wos-btn-hero,
.wos-page a.wos-btn-hero:hover,
.wos-page a.wos-btn-hero:focus,
.wos-page a.wos-btn-outline,
.wos-page a.wos-btn-outline:hover,
.wos-page a.wos-btn-outline:focus {
  opacity: 1;
}

/* ═══ アニメーション ════════════════════════════════════ */
.wos-page .fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.wos-page .fade-in.visible {
  opacity: 1;
  transform: none;
}
