/* =======================
   福岡デートスポット紹介 page
   ======================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", sans-serif;
  color: #145087;
}

.page-content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
}

/* メインレイアウト */

.spots-main {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px 56px;
}

.section {
  margin-top: 40px;
}

.section__inner {
  max-width: 480px;
  margin: 0 auto;
}

/* 見出しカード */

.spots-heading {
  background: #ffffffee;
  border-radius: 18px;
  padding: 18px 16px 16px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(13, 71, 125, 0.08);
  border: 1px solid #e2f1ff;
  margin-bottom: 24px;
}

.spots-heading__title {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #145087;
}

.spots-heading__sub {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.8;
  color: #44566b;
}

/* 各ブロック */

.spot-block {
  background: #ffffffee;
  border-radius: 18px;
  padding: 14px 14px 16px 14px;
  border: 1px solid #e2f1ff;
  box-shadow: 0 3px 8px rgba(13, 71, 125, 0.06);
  margin-bottom: 20px;
}

/* トピック用サムネイル */

.spot-block__thumb {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  background: #dcdcdc;
  margin-bottom: 10px;
  overflow: hidden;
}

.spot-block__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 見出し */

.spot-block__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.spot-block__icon {
  font-size: 18px;
}

.spot-block__title {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #145087;
}

.spot-block__desc {
  margin: 2px 0 8px;
  font-size: 12px;
  color: #6b7b8c;
}

/* リスト */

.spot-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.spot-item {
  position: relative;
  padding-left: 12px;
  margin-bottom: 6px;
  font-size: 13px;
  line-height: 1.7;
  color: #44566b;
}

.spot-item::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

/* スポット名 & 補足 */

.spot-item__name {
  font-weight: 600;
  color: #145087;
}

.spot-item__note {
  margin-left: 4px;
  font-size: 12px;
  color: #6a7c93;
}

/* エリアタグ */

.spot-item__tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-left: 4px;
}

.spot-item__tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: #e6f3ff;
  font-size: 11px;
  color: #145087;
}

/* ページ下の注意 */

.spots-note {
  margin-top: 10px;
  font-size: 11px;
  color: #6b7b8c;
}

.spot-block__icon img {
  width: 22px;
  height: 32px;
  object-fit: contain;
  vertical-align: middle;
}


/* PC表示 */

@media (min-width: 768px) {
  .spots-main,
  .section__inner {
    max-width: 960px;
  }

  .section {
    margin-top: 56px;
  }

  .spot-block,
  .spots-heading {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .spot-block__thumb {
    height: 300px;
  }
}
