/* =========================================================
   CITY OF ITALY（一覧ページ専用）見出しデザイン
   ※ このページの secTitle / secSub は common とは独立して運用
========================================================= */

/* コンテナ */
.cityList .container {
  width: 1100px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  padding-bottom: 80px;
}

/* セクションタイトル（Cities List 専用） */
.cityList .secTitle.en {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 68px 0 8px;
  text-transform: uppercase;
}

/* サブタイトル（Cities List 専用） */
.cityList .secSub {
  text-align: center;
  color: #7F5539;
  font-size: 15px;
  margin-bottom: 60px;
}

/* ===============================
   都市ブロック
================================= */
.cityBlock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 96px;
}

/* 交互配置（reverseクラスで左右反転） */
.cityBlock.reverse {
  direction: rtl;
}
.cityBlock.reverse .cityInfo {
  direction: ltr;
}

/* 画像 */
.cityImg img {
  width: 100%;
  height: clamp(300px, 32vw, 420px);
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* 情報エリア */
.cityInfo {
  padding: 0 10px;
}
.cityName.en {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: 0.04em;
}
.cityText {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin: 0 0 20px;
}

/* スポットリスト */
.spotList {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  font-size: 14px;
  color: #555;
}
.spotList li::before {
  content: "• ";
  color: #7F5539;
}

/* ボタン */
.btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.25s ease;
}
.btnPrimary {
  background: #7F5539;
  color: #fff;
}
.btnPrimary:hover {
  background: #684531;
}

.btnGhost.is-disabled {
  pointer-events: none;
  opacity: 0.6;
  border-color: #ccc;
  color: #999;
  background: #f7f7f7;
}

/* ===============================
   レスポンシブ（〜768px）
================================= */
@media (max-width: 768px) {
  .cityBlock {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 72px;
  }
  .cityBlock.reverse {
    direction: ltr;
  }
  .cityImg img {
    height: clamp(240px, 45vw, 320px);
  }

  /* 見出し・サブタイトルのフォントサイズをPC版の80%に調整 */
  .cityList .secTitle.en {
    font-size: 22.4px;  /* PC版 28px の 80% */
  }

  .cityList .secSub {
    font-size: 12px;    /* PC版 15px の 80% */
  }

  .cityName.en {
    font-size: 20.8px;  /* PC版 26px の 80% */
  }

  .cityText {
    font-size: 12px;    /* PC版 15px の 80% */
  }
}
