/* =========================================
   Museo Aeronautica Feature Page 専用スタイル
   ※PCベース／SPレスポンシブは末尾
   見出し（.secTitle.en / .secSub）は
   features/common.css 側のマスターを使用
========================================= */

/* =========================================
   HERO 見出し（空軍博物館）
   ※ ミラノ大聖堂のHEROと同じノリで中央揃え
========================================= */

/* HERO 全体（画像＋テキスト） */
.featureHero.is-aeronautica {
  position: relative;
  text-align: center;       /* ★これがないと中央に来ない */
  padding: 48px 0 64px;     /* museo-duomo と同じ */
}

/* HERO画像（このページ用のスコープに限定） */
.featureHero.is-aeronautica .featureHero__image img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 40px;
}

.featureHero.is-aeronautica .featureHero__kicker {
  display: block;          /* ★これがないと上下マージンが効かない */
  font-size: 20px;
  line-height: 1.7;
  margin: 28px 0;          /* 上下28px：ミラノ大聖堂と揃える */
  text-align: center;
}

/* タイトル：空を夢見た人間たちの記憶を歩く */
.featureHero.is-aeronautica .featureHero__title {
  font-size: 28px;          /* secTitle と合わせた数値 */
  font-weight: 700;
  letter-spacing: .05em;
  margin: 0 0 12px;
  line-height: 1.3;
}

/* サブタイトル：ブラッチャーノ、〜 */
.featureHero.is-aeronautica .featureHero__subtitle {
  font-size: 14px;          /* secSub と統一 */
  letter-spacing: .05em;
  color: #7F5539;
  margin-top: 6px;
  text-align: center;
}

/* ページ全体 */
.featurePage.is-aeronautica {
  background: #FBFAF7;       /* Ostia と同系のやわらかいベージュ */
  color: #2A2A2A;
  font-size: 16px;
  line-height: 1.7;
  padding-bottom: 80px;
}

/* ---------- Section 共通 ---------- */
.featureSection {
  width: 100%;
  max-width: 980px;
  margin: 0 auto 72px;
  padding: 0 20px;
  box-sizing: border-box;
}

/* ★★★ 本文だけ修正（PC・SP共通／幅いじらない） ★★★ */
.featureSection p {
  text-align: justify;
  text-justify: inter-ideograph;
}

/* ---------- 写真（横） ---------- */
.featureImage--wide img {
  width: 100%;
  display: block;
  margin: 0 0 28px;
}

/* ---------- 写真（縦） ---------- */
.featureImage--vertical img {
  width: 80%;
  max-width: 600px;
  display: block;
  margin: 0 auto 28px;
}

/* ---------- Ending（あとがき下などに使う横長画像） ---------- */
.featureEnding img {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 64px auto 0;
}

/* ===============================
   SP（〜767px）
================================= */
@media (max-width: 767px) {
  .featureHero.is-aeronautica .featureHero__title {
    font-size: 22px;
    line-height: 1.35;
  }

  .featureHero.is-aeronautica .featureHero__subtitle {
    font-size: 11.2px;
    margin-top: 4px;
  }

  .featureSection {
    margin-bottom: 56px;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .featureSection p {
    max-width: 295px;
    width: 100%;
    margin: 0 auto;
    text-align: justify;
    text-justify: inter-ideograph;
    line-height: 1.65;
    font-size: 80%;
  }

  .featurePage.is-aeronautica {
    overflow-x: hidden;
  }

  .featureHero.is-aeronautica {
    padding: 32px 16px 48px;
  }

  .featureHero.is-aeronautica .featureHero__kicker {
    font-size: 17px;
  }
  .featureHero.is-aeronautica .featureHero__subtitle {
    font-size: 11.2px;
  }
 /* 写真（横・縦共通：中央揃え＋余白統一） */
 .featureImage--wide img,
.featureImage--vertical img {
  width: 80vw;
  margin-left: 50%;
  transform: translateX(-50%);
  max-width: none;
}
}


