.page-sec--stroke-1 {
  --sec-pt: 70px;
  /* 実測: 五反田リハの既存 {page}-sec-1 と一致 */
  --sec-mb: 200px;
  /* 同上 */
  --blk-mb: 90px;
  --blk-first-mb: 90px;
  /* 導入ブロック。approach の .blks-1 と同値 */
  --heading-mb: 13px;
  --heading-lead-mb: 70px;
  /* 導入ブロックの h2 下。approach と同値 */
  --copy-mb: 30px;
  --txt-mb: 50px;
  --module-mt: 30px;
  /* 見出し直後のモジュール。approach の inline と同値 */
}

/* --------------------------------------------------------------------------
   1. 余白レイヤー（page-common.css 1〜3節の1ページ版）
   -------------------------------------------------------------------------- */
.page-sec--stroke-1 {
  padding-top: var(--sec-pt);
  margin-bottom: var(--sec-mb);
}

.page-sec--stroke-1 .page-sec__inner {
  margin-bottom: 0;
}

.page-sec--stroke-1 .blks {
  margin-bottom: var(--blk-mb);
}

.page-sec--stroke-1 .blks:first-child {
  margin-bottom: var(--blk-first-mb);
}

.page-sec--stroke-1>.page-sec__inner>section:last-child .blks {
  margin-bottom: 0;
}

.page-sec--stroke-1 .blks .heading {
  margin-bottom: var(--heading-mb);
}

.page-sec--stroke-1 .blks .txt {
  margin-bottom: var(--txt-mb);
}

.page-sec--stroke-1 .blks .txt:last-child {
  margin-bottom: 0;
}

/* 導入ブロックだけ見出し下を大きく取る（既存ページの作りに合わせる） */
.page-sec--stroke-1 .blks:first-child .heading {
  margin-bottom: var(--heading-lead-mb);
}

.page-sec--stroke-1 .blks .copy {
  margin-bottom: var(--copy-mb);
}

/* 見出しの直後にモジュールが来る場合の間隔 */
.page-sec--stroke-1 .blks .heading+.media,
.page-sec--stroke-1 .blks .heading+.stroke-qa,
.page-sec--stroke-1 .blks .heading+.stroke-tableArea {
  margin-top: var(--module-mt);
}

/* --------------------------------------------------------------------------
   2. コンポーネント
   -------------------------------------------------------------------------- */

/* ファーストビュー画像 */
.stroke-fv {
  text-align: center;
}

.stroke-fv img {
  width: 100%;
  max-width: 700px;
  height: auto;
}

/* 機器紹介（m-media-3 の間隔のみ） */
.stroke-media {
  margin-bottom: 50px;
}

.stroke-media:last-of-type {
  margin-bottom: var(--txt-mb);
}

/* PDFリンク */
.stroke-pdf {
  margin-top: 18px;
  margin-bottom: 0;
}

.stroke-pdf a {
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  color: #C18700;
  border: 1px solid #C18700;
  padding: 12px 24px;
  text-decoration: none;
  transition: .2s;
}

.stroke-pdf a::after {
  content: " ▶";
  font-size: 11px;
}

.stroke-pdf a:hover {
  background: #C18700;
  color: #fff;
}

/* 注釈文 */
.stroke-note {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  border-top: 1px solid #d6d6d6;
  padding-top: 20px;
  margin-bottom: 0;
}

/* Q&A（ul+見出し。m-heading-10 をQ、m-txt-1 をAとして使用） */
.stroke-qa {
  list-style: none;
  margin: 0 0 var(--txt-mb);
  padding: 0;
}

.stroke-qa__item {
  margin-bottom: 30px;
}

.stroke-qa__item:last-child {
  margin-bottom: 0;
}

.stroke-qa__q {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin-bottom: var(--heading-mb);
}

.stroke-qa__a {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding-left: 15px;
}

.page-sec--stroke-1 .blks .stroke-qa__a {
  margin-bottom: 0;
}

.stroke-qa__mark {
  flex: none;
  width: 1em;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

.stroke-qa__q .stroke-qa__mark {
  color: #C18700;
}

.stroke-qa__a .stroke-qa__mark {
  color: #9b9b9b;
}

/* 画像キャプション */
.stroke-figure {
  margin-bottom: 0;
}

.stroke-figure__caption {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

/* 実績テーブル */
.stroke-tableArea {
  margin-bottom: 30px;
}

.stroke-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.stroke-table th {
  background: #757575;
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 10px;
  font-weight: 400;
  text-align: center;
}

.stroke-table th.is-hl {
  background: #C18700;
}

.stroke-table tbody th {
  background: #fff;
  color: #000;
  border: 1px solid rgba(117, 117, 117, .5);
  text-align: left;
  font-weight: 400;
  padding: 14px 12px;
}

.stroke-table td {
  background: #fff;
  border: 1px solid rgba(117, 117, 117, .5);
  padding: 14px 12px;
  text-align: center;
}

.stroke-table td.is-hl {
  background: #fdf7e8;
  font-weight: 700;
  color: #8a6000;
  font-size: 18px;
}

/* --------------------------------------------------------------------------
   3. SP（page-common.css と同じ 767px に統一）
   -------------------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .page-sec--stroke-1 {
    --sec-pt: 56px;
    --sec-mb: 110px;
    --blk-mb: 72px;
    --blk-first-mb: 72px;
    --heading-mb: 10px;
    --heading-lead-mb: 56px;
    --copy-mb: 24px;
    --txt-mb: 50px;
    --module-mt: 24px;
  }

  /* m-media-3 が既存CSSでSP縦積み対応済みの場合は下記3行は削除可 */
  .stroke-media {
    display: block;
    margin-bottom: 40px;
  }

  .stroke-media .m-media-3__image {
    width: 100%;
    margin-bottom: 14px;
  }

  .stroke-media .m-media-3__image img {
    width: 100%;
    height: auto;
  }

  .stroke-qa__mark {
    font-size: 17px;
  }

  .stroke-tableArea {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .stroke-table {
    min-width: 620px;
    font-size: 14px;
  }

  .stroke-table th,
  .stroke-table td {
    padding: 10px 8px;
  }

  .stroke-table td.is-hl {
    font-size: 16px;
  }
}