/* ===== エリア情報用 H3 ブロックスタイル ===== */

/* --- 共通: アイコン付きH3の基本レイアウト --- */
h3.is-style-star,
h3.is-style-question,
h3.is-style-spot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: none;
}

h3.is-style-star::before,
h3.is-style-question::before,
h3.is-style-spot::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
}

/* --- 星マーク（コンカフェ事情・特徴セクション用） --- */
h3.is-style-star {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #221a15;
}

h3.is-style-star::before {
  width: 2.25rem;
  height: 2.25rem;
  background: url("../images/area-info/icon-star-small.svg") no-repeat center / contain;
}

/* --- Qマーク（よくある質問セクション用） --- */
h3.is-style-question::before {
  width: 2.25rem;
  height: 2.25rem;
  background: url("../images/area-info/icon-question.svg") no-repeat center / contain;
}

/* --- スポットマーク（人気スポットセクション用） --- */
h3.is-style-spot {
  color: #F090A9;
  text-decoration: underline;
}

h3.is-style-spot::before {
  width: 2.25rem;
  height: 2.25rem;
  background: url("../images/area-info/icon-map.svg") no-repeat center / contain;
}

/* ===== エリアリンク集ブロック ===== */
.area-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
}

.area-link-list__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffcfdd;
  border: 1px solid #221a15;
  border-radius: 1.5rem;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.area-link-list__item:hover {
  background: #ffb8cc;
  border-color: #221a15;
}

.area-link-list__text {
  font-size: 0.75rem;
  font-weight: 400;
  color: #221a15;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
}

/* --- SP対応 --- */
@media screen and (max-width: 767px) {
  h3.is-style-star::before,
  h3.is-style-question::before,
  h3.is-style-spot::before {
    width: 1.75rem;
    height: 1.75rem;
  }
  
  .area-link-list {
    margin-bottom: 1.5rem;
  }

  .area-link-list__item {
    padding: 0.5rem 0.625rem;
  }

  .area-link-list__text {
    font-size: 0.6875rem;
  }
}
