@charset "UTF-8";
/* ============================================================
  製造業向けOTセキュリティ 特集ページ
  /medigital/feature/ot-security/

  ・BP : PC 768px以上 / SP 767.98px以下
  ・全セレクタを .ots-page 配下にスコープし、
    サイト共通CSS（normalize の a:-webkit-any-link 等）に
    詳細度で確実に勝つようにしています。
  ・グローバルヘッダー（position:fixed / 981px以上85px・980px以下65px）
    の下に潜らないよう、FVに上余白を確保しています。
============================================================ */

.ots-page {
  --ots-red: #e60012;
  --ots-red-pure: #f00;
  --ots-navy: #1c3659;
  --ots-txt: #333;
  --ots-txt-sub: #4d4d4d;
  --ots-gray-bg: #f4f4f5;
  --ots-gray-card: #f4f4f6;
  --ots-border: #d9d9d9;
  --ots-pink: #fdeef0;
  --ots-header-h: 85px;
  color: var(--ots-txt);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: clip;
}
@media (max-width: 980px) {
  .ots-page { --ots-header-h: 65px; }
}

.ots-page *,
.ots-page *::before,
.ots-page *::after { box-sizing: border-box; }
.ots-page img { max-width: 100%; height: auto; vertical-align: bottom; }
.ots-page ul { list-style: none; margin: 0; padding: 0; }
.ots-page h1,
.ots-page h2,
.ots-page h3,
.ots-page h4,
.ots-page p { margin: 0; }
.ots-page a { text-decoration: none; }

.ots-page .u-visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); border: 0;
}
@media (max-width: 767.98px) { .ots-page .u-pc { display: none; } }

/* ------------------------------------------------------------
  セクション共通
------------------------------------------------------------ */
.ots-page .ots-section { padding: 65px 0; }
.ots-page .ots-section--gray { background: var(--ots-gray-bg); }
/* Section5は前後が白背景のため、上下パディングを持たせない（余白の二重化を防ぐ） */
.ots-page .ots-section--flush { padding: 0; }

/* Figma基準：コンテンツ実寸1200px＋左右余白24px */
.ots-page .ots-section__inner {
  max-width: 1248px; margin: 0 auto; padding: 0 24px;
  display: flex; flex-direction: column; gap: 48px;
}
.ots-page .ots-section__inner--gap40 { gap: 40px; }
.ots-page .ots-section__inner--gap44 { gap: 44px; }

/* 見出し */
.ots-page .ots-heading {
  font-size: 28px; font-weight: 700; line-height: 1.5; letter-spacing: .01em;
}
.ots-page .ots-heading__bar {
  display: block; position: relative; height: 8px; margin-top: 14px;
  background: #f2f2f2;
}
.ots-page .ots-heading__bar i { position: absolute; top: 0; height: 100%; display: block; }
.ots-page .ots-heading__bar i:nth-child(1) { left: 0; width: 40px; background: var(--ots-red-pure); }
.ots-page .ots-heading__bar i:nth-child(2) { left: 40px; width: 40px; background: #666; }
.ots-page .ots-heading__bar i:nth-child(3) { left: 80px; width: 40px; background: #bcbcbc; }

.ots-page .ots-lead,
.ots-page .ots-text,
.ots-page .ots-note { font-size: 16px; line-height: 1.8; color: var(--ots-txt-sub); }

.ots-page .ots-subheading { font-size: 20px; font-weight: 700; line-height: 1.6; }

/* ボタン */
.ots-page .ots-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 36px; border-radius: 4px;
  font-size: 16px; font-weight: 700; line-height: 1.4;
  text-decoration: none; transition: opacity .25s;
}
.ots-page .ots-btn:hover { opacity: .8; }
.ots-page .ots-btn--red { background: var(--ots-red); color: #fff; }
.ots-page .ots-btn--red .ots-btn__icon { color: #fff; }
.ots-page .ots-btn--outline {
  background: #fff; color: var(--ots-navy);
  border: 1.5px solid var(--ots-navy); padding: 16.5px 36px;
}
.ots-page .ots-btn--outline .ots-btn__icon { color: var(--ots-red); }
.ots-page .ots-btnwrap { display: flex; justify-content: center; }

/* ------------------------------------------------------------
  FV
------------------------------------------------------------ */
.ots-page .ots-hero {
  /* 波模様の背景（読み込み前・非対応時は近似のグラデーションでフォールバック） */
  background-color: #eef0f2;
  background-image: url("/medigital/feature/ot-security/img/hero_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: var(--ots-header-h); /* 固定ヘッダー分の余白 */
  overflow: hidden;
}
.ots-page .ots-hero__inner {
  max-width: 1440px; margin: 0 auto;
  /* 1440pxでFigma同値（左120/右100）、狭い幅では比例して詰める */
  padding: 40px clamp(24px, 6.94vw, 100px) 40px clamp(24px, 8.33vw, 120px);
  min-height: 650px;
  display: flex; align-items: center;
  gap: clamp(16px, 2vw, 28px);
}
.ots-page .ots-hero__copy {
  flex: 1 1 43%; min-width: 0;
  display: flex; flex-direction: column; gap: clamp(18px, 1.95vw, 28px);
}
.ots-page .ots-hero__label {
  display: flex; align-items: center; gap: 10px;
  color: var(--ots-red); font-size: 15px; font-weight: 700; line-height: 1.2;
}
.ots-page .ots-hero__label::before { content: ""; flex: none; width: 28px; height: 4px; background: var(--ots-red); }
/* ①各行が折り返さないよう幅に応じて可変させる */
.ots-page .ots-hero__title {
  font-size: clamp(26px, 3.2vw, 46px); font-weight: 900; line-height: 1.5;
  letter-spacing: .01em; white-space: nowrap;
}
.ots-page .ots-hero__lead { font-size: clamp(13px, 1.15vw, 16px); line-height: 1.8; color: var(--ots-txt-sub); }
/* ②「――」で終わる行が折り返さないように */
.ots-page .ots-nobr { white-space: nowrap; }
.ots-page .ots-hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }
.ots-page .ots-hero__visual { flex: 1 1 57%; min-width: 0; }

/* アンカーナビ */
.ots-page .ots-anchor { background: #fff; border-bottom: 1px solid var(--ots-border); }
.ots-page .ots-anchor__list {
  max-width: 1440px; margin: 0 auto;
  display: flex; justify-content: center; flex-wrap: wrap;
}
.ots-page .ots-anchor__item {
  display: flex; align-items: center; gap: 8px;
  padding: 20px 26px; font-size: 14px; font-weight: 500; line-height: 1.6;
  color: var(--ots-txt); text-decoration: none; transition: color .25s;
}
.ots-page .ots-anchor__item:hover { color: var(--ots-red); }
.ots-page .ots-anchor__item::before {
  content: ""; flex: none; width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 7px solid var(--ots-red);
}

/* ------------------------------------------------------------
  Section2 背景とリスク
------------------------------------------------------------ */
.ots-page .ots-flow { display: flex; align-items: stretch; gap: 12px; }
.ots-page .ots-flow__col {
  flex: 1; min-width: 0;
  background: var(--ots-gray-card); border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column;
}
.ots-page .ots-flow__head {
  background: var(--ots-navy); color: #fff; text-align: center;
  font-size: 16px; font-weight: 700; line-height: 1.2; padding: 14px 12px;
}
.ots-page .ots-flow__body {
  flex: 1; padding: 32px; display: flex; flex-direction: column; gap: 28px;
}
.ots-page .ots-flow__itemhead {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.ots-page .ots-flow__itemhead img { flex: none; width: 58px; height: 58px; }
.ots-page .ots-flow__itemhead h4 {
  font-size: 16px; font-weight: 700; line-height: 1.5; color: var(--ots-navy);
}
.ots-page .ots-flow__item p { font-size: 13px; line-height: 1.7; color: var(--ots-txt-sub); }
.ots-page .ots-flow__arrow {
  align-self: center; flex: none; width: 0; height: 0;
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
  border-left: 13px solid var(--ots-red);
}

.ots-page .ots-conclusion {
  background: var(--ots-pink); border-radius: 6px;
  color: var(--ots-red); font-size: 20px; font-weight: 700; line-height: 1.7;
  text-align: center; padding: 24px 16px;
}

/* ------------------------------------------------------------
  Section3 IT/OT
------------------------------------------------------------ */
.ots-page .ots-itot { display: flex; align-items: center; }
.ots-page .ots-itot__panel {
  flex: 1; min-width: 0; background: #fff; border: 2px solid;
  border-radius: 8px; overflow: hidden;
}
.ots-page .ots-itot__panel--it { border-color: var(--ots-navy); }
.ots-page .ots-itot__panel--ot { border-color: var(--ots-red); }
.ots-page .ots-itot__panelhead {
  color: #fff; text-align: center; font-size: 17px; font-weight: 700;
  line-height: 1.3; padding: 13px 12px;
}
.ots-page .ots-itot__panel--it .ots-itot__panelhead { background: var(--ots-navy); }
.ots-page .ots-itot__panel--ot .ots-itot__panelhead { background: var(--ots-red); }
.ots-page .ots-itot__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: 24px 28px 0;
}
.ots-page .ots-itot__grid li {
  display: flex; align-items: center; gap: 12px; min-height: 60px;
  padding: 8px 14px; border-radius: 6px; background: #f4f4f6;
  font-size: 13px; font-weight: 500; line-height: 1.5;
}
.ots-page .ots-itot__grid img { flex: none; width: 40px; height: 40px; }
.ots-page .ots-itot__panelfoot {
  text-align: center; font-size: 16px; font-weight: 700; line-height: 1.5;
  padding: 20px 12px 22px;
}
.ots-page .ots-itot__panel--it .ots-itot__panelfoot { color: var(--ots-navy); }
.ots-page .ots-itot__panel--ot .ots-itot__panelfoot { color: var(--ots-red); }
.ots-page .ots-itot__bridge {
  flex: 0 0 200px; display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 0 16px;
}
/* IT/OT連携の双方向矢印（上：IT→OT ネイビー ／ 下：OT→IT レッド） */
.ots-page .ots-itot__bridgearrows {
  display: flex; flex-direction: column; gap: 24px;
  width: 100%; max-width: 88px;
}
.ots-page .ots-itot__arrow { position: relative; display: block; height: 12px; }
.ots-page .ots-itot__arrow::before {
  content: ""; position: absolute; top: 50%; height: 2px; transform: translateY(-50%);
  background-image: repeating-linear-gradient(to right, currentColor 0 3px, transparent 3px 5px);
}
.ots-page .ots-itot__arrow::after {
  content: ""; position: absolute; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}
.ots-page .ots-itot__arrow--toot { color: var(--ots-navy); }
.ots-page .ots-itot__arrow--toot::before { left: 0; right: 11px; }
.ots-page .ots-itot__arrow--toot::after { right: 0; border-left: 11px solid var(--ots-navy); }
.ots-page .ots-itot__arrow--toit { color: var(--ots-red); }
.ots-page .ots-itot__arrow--toit::before { left: 11px; right: 0; }
.ots-page .ots-itot__arrow--toit::after { left: 0; border-right: 11px solid var(--ots-red); }
.ots-page .ots-itot__bridgelabel {
  font-size: 13px; font-weight: 700; line-height: 1.6; text-align: center;
}

/* ③PDFダウンロードリンク */
.ots-page .ots-pdflink {
  display: inline-flex; align-items: center; gap: 12px;
  max-width: 100%; padding: 16px 20px;
  border: 1px solid #c7c7c7; border-radius: 4px; background: #fff;
  color: var(--ots-txt); text-decoration: none; line-height: 1.6;
  transition: background-color .25s, border-color .25s;
}
.ots-page .ots-pdflink:hover { background: #fdf3f3; border-color: var(--ots-red); }
.ots-page .ots-pdflink__icon { flex: none; width: 26px; height: 26px; }
.ots-page .ots-pdflink__text { font-size: 16px; font-weight: 500; }
.ots-page .ots-pdflink__size { font-size: 14px; color: #666; white-space: nowrap; }

/* ------------------------------------------------------------
  Section4 課題
------------------------------------------------------------ */
.ots-page .ots-issues { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 24px; }
.ots-page .ots-issue {
  background: var(--ots-gray-card); border-radius: 8px; padding: 26px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.ots-page .ots-issue__tag {
  align-self: flex-start; background: var(--ots-navy); color: #fff;
  font-size: 11px; font-weight: 700; line-height: 1;
  padding: 5px 10px; border-radius: 2px;
}
.ots-page .ots-issue__title { font-size: 20px; font-weight: 700; line-height: 1.5; }
.ots-page .ots-issue__quote {
  color: var(--ots-red); font-size: 13px; font-weight: 700; line-height: 1.7;
  padding-bottom: 14px; border-bottom: 1px solid var(--ots-border);
}
/* タグ〜見出し間はデザインどおり詰める */
.ots-page .ots-issue__tag + .ots-issue__title { margin-top: -4px; }
.ots-page .ots-issue__bottom { display: flex; gap: 20px; align-items: flex-start; }
.ots-page .ots-issue__illust { flex: 0 0 120px; }
.ots-page .ots-issue__list { flex: 1; min-width: 0; }
.ots-page .ots-issue__listhead {
  font-size: 12px; font-weight: 700; line-height: 1.6; color: #666; margin-bottom: 8px;
}
.ots-page .ots-issue__list ul { display: flex; flex-direction: column; gap: 6px; }
.ots-page .ots-issue__list li {
  position: relative; padding-left: 14px;
  font-size: 13px; line-height: 1.65; color: var(--ots-txt-sub);
}
.ots-page .ots-issue__list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--ots-red);
}

/* ------------------------------------------------------------
  Section5 対策の進め方
------------------------------------------------------------ */
.ots-page .ots-bandhead {
  background: var(--ots-navy); color: #fff; text-align: center;
  font-size: 20px; font-weight: 700; line-height: 1.5; padding: 14px 16px;
}
.ots-page .ots-onestop { display: flex; align-items: center; gap: 16px; }
.ots-page .ots-onestop__label {
  flex: none; background: var(--ots-pink); color: var(--ots-red);
  font-size: 17px; font-weight: 700; line-height: 1.5;
  padding: 8px 24px; border-radius: 4px; text-align: center;
}
.ots-page .ots-onestop__arrow { flex: 1; position: relative; height: 12px; }
.ots-page .ots-onestop__arrow::before {
  content: ""; position: absolute; top: 50%; left: 12px; right: 12px;
  border-top: 3px dotted var(--ots-red); transform: translateY(-50%);
}
.ots-page .ots-onestop__arrow::after {
  content: ""; position: absolute; top: 50%; transform: translateY(-50%);
  width: 0; height: 0; border-top: 6px solid transparent; border-bottom: 6px solid transparent;
}
.ots-page .ots-onestop__arrow--l::after { left: 0; border-right: 9px solid var(--ots-red); }
.ots-page .ots-onestop__arrow--r::after { right: 0; border-left: 9px solid var(--ots-red); }

/* PC：矢羽は各カラム上部に横並び。先端が24pxのカラム間ギャップへ張り出し、
   STEP2以降の左切り欠きと噛み合って一定幅の矢印状の白抜きになる */
.ots-page .ots-steps { display: flex; align-items: stretch; gap: 24px; }
.ots-page .ots-step { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 16px; }
.ots-page .ots-step__chevron {
  flex: none; width: calc(100% + 24px); height: 64px; padding-right: 24px;
  background: var(--ots-navy);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 50%, calc(100% - 24px) 100%, 0 100%);
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.ots-page .ots-step__chevron--notch {
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 50%, calc(100% - 24px) 100%, 0 100%, 24px 50%);
}
/* 最終ステップは右端を平らにしてコンテンツ幅に揃える */
.ots-page .ots-step:last-child .ots-step__chevron {
  width: 100%; padding-right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 24px 50%);
}
.ots-page .ots-step__no {
  flex: none;
  background: var(--ots-red); color: #fff;
  font-size: 13px; font-weight: 700; line-height: 1; letter-spacing: .05em;
  padding: 5px 10px; border-radius: 2px;
}
.ots-page .ots-step__name {
  color: #fff; font-size: 17px; font-weight: 700; line-height: 1.4;
}
.ots-page .ots-step__body {
  flex: 1; width: 100%;
  background: var(--ots-gray-card); border-radius: 6px; padding: 20px 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.ots-page .ots-step__items { display: flex; flex-direction: column; gap: 8px; }
.ots-page .ots-step__items li {
  position: relative; padding-left: 16px;
  font-size: 14px; font-weight: 500; line-height: 1.5;
}
.ots-page .ots-step__items li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--ots-red);
}
.ots-page .ots-step__solhead {
  font-size: 13px; font-weight: 700; line-height: 1.6;
  padding-top: 12px; border-top: 1px solid #ccc; margin-top: 2px;
}
.ots-page .ots-sol { position: relative; }
.ots-page .ots-sol__btn {
  display: flex; align-items: center; gap: 10px; width: 100%;
  background: #fff; border: 1px solid #c7c7c7; border-radius: 4px;
  padding: 8px 12px;
  font-family: inherit; font-size: 13px; font-weight: 700; line-height: 1.45;
  color: var(--ots-navy); text-align: left; cursor: pointer;
  transition: background-color .25s, border-color .25s;
}
.ots-page .ots-sol__btn img { flex: none; width: 18px; height: 18px; }
.ots-page .ots-sol__btn:hover,
.ots-page .ots-sol__btn[aria-expanded="true"] { background: #fdf3f3; border-color: var(--ots-red); }

.ots-page .ots-balloon {
  position: absolute; left: 50%; bottom: calc(100% + 10px); transform: translateX(-50%);
  width: min(340px, 86vw); background: #fff; border-radius: 8px;
  padding: 20px 22px 18px;
  box-shadow: 0 4px 18px rgba(20, 41, 77, .25);
  z-index: 3; /* 共通ヘッダー(z-index:2)より前面 */
}
.ots-page .ots-balloon::after {
  content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 10px solid transparent; border-right: 10px solid transparent;
  border-top: 10px solid #fff;
}
.ots-page .ots-balloon__tag {
  display: inline-block; background: var(--ots-navy); color: #fff;
  font-size: 11px; font-weight: 700; line-height: 1;
  padding: 4px 10px; border-radius: 2px; margin-bottom: 10px;
}
.ots-page .ots-balloon__title {
  font-size: 15px; font-weight: 700; line-height: 1.5; color: var(--ots-navy); margin-bottom: 10px;
}
.ots-page .ots-balloon__desc { font-size: 13px; line-height: 1.75; color: var(--ots-txt-sub); }

/* 効果・強み共通カード */
.ots-page .ots-effects { display: flex; flex-direction: column; gap: 20px; }
.ots-page .ots-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ots-page .ots-card {
  border-radius: 8px; padding: 28px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.ots-page .ots-card--gray { background: var(--ots-gray-card); }
.ots-page .ots-card--line { background: #fff; border: 1px solid var(--ots-border); }
.ots-page .ots-card__icon { width: 124px; height: 124px; }
.ots-page .ots-card__title { font-size: 17px; font-weight: 700; line-height: 1.5; color: var(--ots-navy); }
.ots-page .ots-card__desc {
  font-size: 13px; line-height: 1.8; color: var(--ots-txt-sub);
  text-align: left; width: 100%;
}

.ots-page .ots-summary {
  background: var(--ots-gray-card); border-radius: 6px;
  font-size: 16px; font-weight: 700; line-height: 1.9;
  text-align: center; padding: 28px 24px;
}

/* ------------------------------------------------------------
  Section7 CTA
------------------------------------------------------------ */
.ots-page .ots-cta { background: var(--ots-navy); padding: 65px 0; }
.ots-page .ots-cta .ots-section__inner { gap: 40px; align-items: center; }
.ots-page .ots-cta__head { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.ots-page .ots-cta__title { color: #fff; font-size: 32px; font-weight: 700; line-height: 1.5; text-align: center; }
.ots-page .ots-cta__lead { color: #d1dae5; font-size: 15px; line-height: 1.8; text-align: center; }
.ots-page .ots-cta__cards { display: flex; justify-content: center; gap: 24px; width: 100%; }
.ots-page .ots-ctacard {
  flex: 0 1 384px; background: #fff; border-radius: 8px; padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.ots-page .ots-ctacard__tag {
  align-self: flex-start; background: var(--ots-red); color: #fff;
  font-size: 11px; font-weight: 700; line-height: 1;
  padding: 5px 10px; border-radius: 2px;
}
.ots-page .ots-ctacard__title { font-size: 17px; font-weight: 700; line-height: 1.55; }
.ots-page .ots-ctacard__desc { flex: 1; font-size: 13px; line-height: 1.75; color: var(--ots-txt-sub); }
.ots-page .ots-ctacard .ots-btn { width: 100%; padding: 13px 22px; font-size: 14px; gap: 8px; }


/* ============================================================
  タブレット〜小型PC（1179.98px以下）
  FVは2カラムだと文字量に対して窮屈になるため縦積みにし、
  イラストを大きく見せる
============================================================ */
@media (max-width: 1179.98px) {
  .ots-page .ots-hero__inner {
    display: flex; flex-direction: column; align-items: stretch;
    min-height: 0; padding: 48px 32px 44px; gap: 24px;
  }
  .ots-page .ots-hero__copy { display: contents; }
  .ots-page .ots-hero__label { order: 1; }
  .ots-page .ots-hero__title { order: 2; font-size: 38px; }
  .ots-page .ots-hero__visual {
    order: 3; flex: none; width: 100%; max-width: 640px; margin: 0 auto;
  }
  .ots-page .ots-hero__lead { order: 4; }
  .ots-page .ots-hero__btns { order: 5; }

  /* 3カラム系は2段組へ */
  .ots-page .ots-flow { flex-wrap: wrap; }
  .ots-page .ots-flow__col { flex: 1 1 100%; }
  .ots-page .ots-flow__arrow {
    align-self: center;
    border-left: 9px solid transparent; border-right: 9px solid transparent;
    border-top: 13px solid var(--ots-red); border-bottom: none;
    margin: 0 auto;
  }
  .ots-page .ots-cards { grid-template-columns: 1fr 1fr; }
  .ots-page .ots-itot__bridge { flex: 0 0 150px; }

  /* アンカーナビが折り返さないよう左右を詰める */
  .ots-page .ots-anchor__item { padding: 18px 16px; font-size: 13px; }
}

/* ============================================================
  SP（767.98px以下）
============================================================ */
@media (max-width: 767.98px) {
  .ots-page { font-size: 16px; }

  .ots-page .ots-section { padding: 55px 0; }
  .ots-page .ots-section--flush { padding: 55px 0; }
  .ots-page .ots-section__inner,
  .ots-page .ots-section__inner--gap40,
  .ots-page .ots-section__inner--gap44 { padding: 0 16px; gap: 24px; }

  .ots-page .ots-heading { font-size: 24px; line-height: 1.5; }
  .ots-page .ots-heading__bar { height: 6px; margin-top: 10px; }
  .ots-page .ots-heading__bar i:nth-child(1) { width: 36px; }
  .ots-page .ots-heading__bar i:nth-child(2) { left: 36px; width: 36px; }
  .ots-page .ots-heading__bar i:nth-child(3) { left: 72px; width: 36px; }

  .ots-page .ots-lead,
  .ots-page .ots-note { font-size: 16px; }
  .ots-page .ots-text { font-size: 16px; }
  .ots-page .ots-subheading { font-size: 20px; }

  .ots-page .ots-btn,
  .ots-page .ots-btn--outline { width: 100%; padding: 16px 20px; font-size: 16px; }
  .ots-page .ots-pdflink { display: flex; align-items: flex-start; padding: 14px 16px; gap: 10px; }
  .ots-page .ots-pdflink__icon { width: 22px; height: 22px; margin-top: 2px; }
  .ots-page .ots-pdflink__text { font-size: 14px; }
  .ots-page .ots-pdflink__size { font-size: 12px; }
  .ots-page .ots-btnwrap { display: block; }

  /* FV：Figmaの順序（ラベル→見出し→ビジュアル→リード→ボタン）に合わせる */
  .ots-page .ots-hero__inner {
    display: flex; flex-direction: column; align-items: stretch;
    min-height: 0; padding: 36px 16px 32px; gap: 20px;
  }
  .ots-page .ots-hero__copy { display: contents; }
  .ots-page .ots-hero__label { order: 1; font-size: 12px; }
  .ots-page .ots-hero__label::before { width: 22px; height: 3px; }
  .ots-page .ots-hero__title { order: 2; font-size: 28px; }
  .ots-page .ots-hero__visual { order: 3; flex: none; }
  .ots-page .ots-hero__lead { order: 4; font-size: 15px; }
  .ots-page .ots-hero__btns { order: 5; flex-direction: column; gap: 12px; }

  /* アンカーナビ：2列 */
  .ots-page .ots-anchor { border-bottom: none; }
  .ots-page .ots-anchor__list { display: grid; grid-template-columns: 1fr 1fr; }
  .ots-page .ots-anchor__item {
    padding: 14px 8px 14px 14px; font-size: 13px;
    border-bottom: 1px solid var(--ots-border);
  }
  .ots-page .ots-anchor__list li:nth-child(even) .ots-anchor__item {
    border-left: 1px solid var(--ots-border);
  }

  /* フロー図 */
  .ots-page .ots-flow { flex-direction: column; gap: 8px; }
  .ots-page .ots-flow__head { font-size: 16px; padding: 12px; }
  .ots-page .ots-flow__body { padding: 20px; gap: 18px; }
  .ots-page .ots-flow__itemhead { gap: 10px; margin-bottom: 8px; }
  .ots-page .ots-flow__itemhead img { width: 46px; height: 46px; }
  .ots-page .ots-flow__itemhead h4 { font-size: 16px; }
  .ots-page .ots-flow__item p { font-size: 13px; }
  .ots-page .ots-flow__arrow {
    border-left: 8px solid transparent; border-right: 8px solid transparent;
    border-top: 12px solid var(--ots-red); border-bottom: none;
  }
  .ots-page .ots-conclusion { font-size: 16px; padding: 18px 12px; }

  /* IT/OT */
  .ots-page .ots-itot { flex-direction: column; gap: 10px; }
  .ots-page .ots-itot__panel { width: 100%; }
  .ots-page .ots-itot__panelhead { font-size: 16px; padding: 10px; }
  .ots-page .ots-itot__grid { padding: 16px 16px 0; gap: 9px; }
  .ots-page .ots-itot__grid li { min-height: 48px; padding: 6px 8px; gap: 6px; font-size: 12px; }
  .ots-page .ots-itot__grid img { width: 30px; height: 30px; }
  .ots-page .ots-itot__panelfoot { font-size: 15px; padding: 12px 10px 14px; }
  /* SP：矢印は縦向き（左：OT→IT 上向き ／ 右：IT→OT 下向き） */
  .ots-page .ots-itot__bridge { flex: none; flex-direction: row; align-items: center; gap: 14px; padding: 0; }
  .ots-page .ots-itot__bridgearrows {
    flex: none; flex-direction: row-reverse; gap: 20px;
    width: auto; max-width: none; height: 38px;
  }
  .ots-page .ots-itot__arrow { width: 12px; height: 100%; }
  .ots-page .ots-itot__arrow::before {
    top: 0; bottom: 0; left: 50%; right: auto; height: auto; width: 2px;
    transform: translateX(-50%);
    background-image: repeating-linear-gradient(to bottom, currentColor 0 3px, transparent 3px 5px);
  }
  .ots-page .ots-itot__arrow::after {
    left: 50%; right: auto; top: auto; transform: translateX(-50%);
    border-top: none; border-bottom: none;
    border-left: 6px solid transparent; border-right: 6px solid transparent;
  }
  .ots-page .ots-itot__arrow--toot::before { top: 0; bottom: 11px; }
  .ots-page .ots-itot__arrow--toot::after { bottom: 0; border-top: 11px solid var(--ots-navy); border-left-color: transparent; }
  .ots-page .ots-itot__arrow--toit::before { top: 11px; bottom: 0; }
  .ots-page .ots-itot__arrow--toit::after { top: 0; border-bottom: 11px solid var(--ots-red); border-right-color: transparent; }
  .ots-page .ots-itot__bridgelabel { font-size: 13px; }
  .ots-page .ots-itot__bridgelabel br { display: none; }

  /* 課題 */
  .ots-page .ots-issues { grid-template-columns: 1fr; gap: 16px; }
  .ots-page .ots-issue { padding: 20px 18px; gap: 12px; }
  .ots-page .ots-issue__tag { font-size: 11px; padding: 5px 10px; }
  .ots-page .ots-issue__title { font-size: 20px; }
  .ots-page .ots-issue__quote { font-size: 13px; }
  .ots-page .ots-issue__bottom { flex-direction: column; align-items: center; gap: 14px; }
  .ots-page .ots-issue__illust { flex: none; width: 240px; max-width: 80%; }
  .ots-page .ots-issue__list { width: 100%; }
  .ots-page .ots-issue__listhead { font-size: 13px; }
  .ots-page .ots-issue__list li { font-size: 13px; }

  /* 進め方 */
  .ots-page .ots-bandhead { font-size: 16px; padding: 12px 16px; }
  .ots-page .ots-onestop { gap: 0; }
  .ots-page .ots-onestop__label { flex: 1; font-size: 14px; padding: 8px 14px; }
  .ots-page .ots-onestop__arrow { display: none; }
  /* SP：矢羽はボックス左側の縦向き（Figma SP準拠） */
  .ots-page .ots-steps { flex-direction: column; gap: 14px; }
  .ots-page .ots-step { flex-direction: row; gap: 12px; }
  .ots-page .ots-step__chevron,
  .ots-page .ots-step:last-child .ots-step__chevron {
    flex: 0 0 50px; width: auto; height: auto;
    flex-direction: column; justify-content: flex-start;
    padding: 16px 0 38px; gap: 10px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), 50% 100%, 0 calc(100% - 22px));
  }
  .ots-page .ots-step__chevron--notch {
    clip-path: polygon(0 0, 50% 22px, 100% 0, 100% calc(100% - 22px), 50% 100%, 0 calc(100% - 22px));
    padding-top: 38px;
  }
  .ots-page .ots-step__no {
    font-size: 12px; padding: 8px 4px; letter-spacing: .05em;
    writing-mode: vertical-rl; text-orientation: upright;
  }
  .ots-page .ots-step__name {
    font-size: 16px; line-height: 1; letter-spacing: .1em;
    writing-mode: vertical-rl; text-orientation: upright;
  }
  .ots-page .ots-step__body { padding: 16px; }
  .ots-page .ots-step__items li { font-size: 14px; }
  .ots-page .ots-step__solhead { font-size: 14px; }
  .ots-page .ots-sol__btn { font-size: 13px; gap: 8px; }

  /* カード */
  .ots-page .ots-effects { gap: 14px; }
  .ots-page .ots-cards { grid-template-columns: 1fr; gap: 14px; }
  .ots-page .ots-card { padding: 20px; gap: 10px; }
  .ots-page .ots-card__icon { width: 88px; height: 88px; }
  .ots-page .ots-card__title { font-size: 16px; }
  .ots-page .ots-card__desc { font-size: 13px; }
  .ots-page .ots-summary { font-size: 14px; padding: 18px 16px; }

  /* CTA */
  .ots-page .ots-cta { padding: 55px 0; }
  .ots-page .ots-cta .ots-section__inner { gap: 20px; }
  .ots-page .ots-cta__head { gap: 12px; }
  .ots-page .ots-cta__title { font-size: 24px; }
  .ots-page .ots-cta__lead { font-size: 14px; }
  .ots-page .ots-cta__cards { flex-direction: column; gap: 16px; }
  .ots-page .ots-ctacard { flex: none; width: 100%; padding: 20px; gap: 10px; }
  .ots-page .ots-ctacard__title { font-size: 18px; }
  .ots-page .ots-ctacard__desc { font-size: 13px; }
  .ots-page .ots-ctacard .ots-btn { padding: 14px 16px; font-size: 15px; }
}
