/* =========================================
   見出し統一（Italy Trip 全体共通）
   ※このスタイルは /styles/features/common.css の確定版に準拠
   ※個別CSSでの上書きは禁止（必要な場合はSP下部で微調整）
========================================= */
.secTitle.en {
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}

.secSub {
  margin-top: 6px;
  margin-bottom: 28px;
  color: #7F5539;
  font-size: 14px;
  text-align: center;
}

/* ===============================
   ITALY INFORMATION
================================ */

/* 1) ページ基本（背景は白・本文色） */
.infoIndex { background: #fff; color: #222; }
.infoIndex .container {
  width: 1100px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  padding: 48px 0 80px;
}

/* 見出し（ページのH1） */
.infoHead { text-align: center; margin: 0 0 32px; }

/* 2) QUICK FACTS 風パネル（セクション） */
.infoQuick { padding: 8px 0 0; }
.iqTitle {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  font-size: 24px;
  margin: 32px 0 18px;
  color: #222;
}

/* パネル本体（枠＋角丸） */
.iqList {
  border: 1px solid #e5ded7;
  border-radius: 12px;
  background: #fff;
  padding: 18px 20px;
}

/* 各行：ラベル列＋本文列 */
.iqItem {
  display: grid;
  grid-template-columns: 180px 1fr; /* 左固定/右可変（スクショ調） */
  column-gap: 18px;
  row-gap: 6px;
  padding: 12px 0;
  border-top: 1px solid #eee;
}
.iqItem:first-child { border-top: none; }

/* ラベル（英語小見出し） */
.iqHead {
  font-size: 12px;
  letter-spacing: .08em;
  font-weight: 700;
  text-transform: uppercase;
  color: #7F5539; /* Quick Facts と同系のブラウン */
  margin: 0;
  align-self: start;
}

/* 値（本文） */
.iqText {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #222;
}

/* SP */
@media (max-width: 768px) {
  .infoIndex .container { max-width: calc(100% - 24px); padding: 32px 0 56px; }
  .iqItem { grid-template-columns: 1fr; row-gap: 4px; }
  .iqHead { margin-bottom: 2px; }
  .iqTitle { font-size: 20px; }

  /* 見出し・サブタイトル・本文のフォントサイズを80%に調整 */
  .secTitle.en {
    font-size: 22.4px; /* PC版 28px の 80% */
  }
  .secSub {
    font-size: 11.2px; /* PC版 14px の 80% */
  }
  .iqText {
    font-size: 11.2px; /* PC版 14px の 80% */
  }
}

/* ===============================
   [INFO LINKS] Category Links (Travel Essentials / Cities / Airports)
   PCベース → 最後にSPレスポンシブ
   目的：上段BOXとの質感整合（控えめなカード＋明快CTA）
================================= */

/* セクション余白（背景は必要に応じて外側で調整可） */
.infoLinks {
  padding: 24px 0 64px;
}

/* グリッド */
.ilGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* カード本体（上段の質感に寄せた控えめインセット枠） */
.ilCard {
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 0 0 1px #e5ded5 inset;
  display: flex;
  flex-direction: column;
  justify-content: space-between;  /* CTAを左基準で揃える */
  min-height: 168px;       /* 文量差での崩れを防ぐ下限 */
  transition: transform .18s ease, box-shadow .18s ease;
}
.ilCard:hover,
.ilCard:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(0,0,0,.06), 0 0 0 1px #e5ded5 inset;
}

/* 見出し（セクション見出しより一段小さい・統一値に準拠しつつ階層差を出す） */
.ilTitle.en {
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 20px;  /* ← .secTitle.en(28px) より一段小さい階層 */
  font-weight: 700;
  margin: 0 0 8px;
}

/* テキスト（ブランドの補色トーンに合わせる） */
.ilText {
  margin: 0 0 14px;
  color: #7F5539;
  font-size: 14px;
  line-height: 1.8;
}

/* CTAボタン（ゴースト丸ボタン＋矢印アニメーション） */
.ilBtn {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid #cfc7bc;
  background: #fff;
  color: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.ilBtn::after {
  content: "→";
  transform: translateX(0);
  transition: transform .18s ease;
}
.ilBtn:hover,
.ilBtn:focus-visible {
  border-color: #b8afa3;
  box-shadow: 0 0 0 3px rgba(0,0,0,.03);
}
.ilBtn:hover::after,
.ilBtn:focus-visible::after {
  transform: translateX(3px);
}

/* ===============================
   SP（~768px）
================================= */
@media (max-width: 768px) {
  .ilGrid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ilCard {
    padding: 20px 16px;
    min-height: unset;
  }
  .ilTitle.en {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .ilText {
    margin-bottom: 12px;
  }
}


