/* ===================================
   #KURE_NOW!! - Spots Page Styles
   spots.html 専用スタイルシート
   =================================== */

/* ===== ページ基本 ===== */
.spots-page {
  background: #f4f8fb;
  min-height: 100vh;
}

/* ===== ヘッダー ===== */
.spots-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(0, 170, 221, 0.15);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.spots-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.spots-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary, #00AADD);
  text-decoration: none;
  padding: 8px 16px;
  border: 1.5px solid rgba(0, 170, 221, 0.3);
  border-radius: 50px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.spots-back-btn:hover {
  background: var(--primary, #00AADD);
  color: #fff;
  border-color: var(--primary, #00AADD);
}

.spots-header-logo {
  flex-shrink: 0;
}

.spots-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

/* ===== メインエリア ===== */
.spots-main {
  padding: 40px 0 80px;
}

.spots-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== ページタイトル ===== */
.spots-page-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.spots-page-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.spots-page-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #00AADD, #0088BB);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 170, 221, 0.35);
}

.spots-page-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #1a2a3a;
  line-height: 1.2;
  margin: 0;
}

.spots-page-sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: #00AADD;
  letter-spacing: 0.08em;
  margin: 4px 0 0;
}

/* ===== アクティブフィルタータグ ===== */
.spots-active-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 170, 221, 0.1);
  color: #0088BB;
  border: 1.5px solid rgba(0, 170, 221, 0.3);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-weight: 700;
}

.filter-tag i {
  font-size: 0.7rem;
}

.filter-clear-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 80, 80, 0.08);
  color: #c0392b;
  border: 1.5px solid rgba(192, 57, 43, 0.25);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-clear-btn:hover {
  background: #c0392b;
  color: #fff;
  border-color: #c0392b;
}

/* ===== 検索フォーム（spots.htmlカスタム） ===== */
.spots-search-box {
  margin-bottom: 28px;
}

/* ===== 結果バー ===== */
.spots-result-bar {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  /* box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06); */
}

/* ===== ソートセレクト ===== */
.spots-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--mid, #666);
}

.spots-sort label {
  font-size: 0.85rem;
  color: var(--primary, #00AADD);
}

.spots-sort select {
  padding: 6px 30px 6px 10px;
  border: 1.5px solid rgba(0, 170, 221, 0.25);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a2a3a;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2300AADD'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}

.spots-sort select:focus {
  border-color: var(--primary, #00AADD);
}

/* ===== 空の状態 ===== */
.spots-empty {
  padding: 64px 40px;
  text-align: center;
  color: #999;
}

.spots-empty i {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  color: #ccd;
}

.spots-empty p {
  font-size: 1rem;
  font-weight: 600;
  color: #888;
}

/* ===== index.html 側の「もっと見る」ボタン ===== */
.spot-more-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  background: linear-gradient(135deg, rgba(0,170,221,0.04), rgba(0,136,187,0.06));
  border: 1.5px dashed rgba(0,170,221,0.3);
  border-radius: 14px;
  text-align: center;
}

.spot-more-info {
  font-size: 0.9rem;
  color: var(--mid, #666);
  display: flex;
  align-items: center;
  gap: 7px;
}

.spot-more-info i {
  color: var(--primary, #00AADD);
}

.spot-more-info strong {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--primary, #00AADD);
}

.btn-see-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #00AADD, #0088BB);
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 6px 22px rgba(0,170,221,0.35);
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.btn-see-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,170,221,0.45);
}

.btn-see-all .fa-arrow-right {
  transition: transform 0.2s ease;
}

.btn-see-all:hover .fa-arrow-right {
  transform: translateX(4px);
}

/* ===== spots.html のカードリスト上書き ===== */
.spots-page .spot-result-list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: transparent;
}

.spots-page .spot-result-list .spot-result-card {
  background: #fff;
}

/* ===== spots.html のヘッダー内 search-box ===== */
.spots-page .spot-results-header {
  padding: 16px 20px;
  border-radius: 0;
  background: linear-gradient(to right, rgba(0,170,221,0.06), rgba(255,255,255,0));
  border-left: 4px solid #00AADD;
  border-bottom: 1px solid rgba(0,170,221,0.1);
}

/* ===== レスポンシブ ===== */
@media (max-width: 640px) {
  .spots-page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .spots-header-inner {
    padding: 10px 16px;
  }

  .spots-logo-img {
    height: 28px;
  }

  .spots-back-btn {
    font-size: 0.82rem;
    padding: 7px 12px;
  }

  .spots-page-title {
    font-size: 1.3rem;
  }

  .spots-page .spot-result-list {
    padding: 12px;
  }

  .spot-more-wrap {
    padding: 20px 16px;
  }

  .btn-see-all {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.88rem;
  }
}

/* =============================================
   spots.css に追記するスタイル
   ============================================= */

/* カードグリッド */
.spot-result-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

/* タブレット：2列 */
@media (max-width: 900px) {
    .spot-result-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* スマホ：1列 */
@media (max-width: 480px) {
    .spot-result-list {
        grid-template-columns: 1fr;
    }
}


/* 1枚のカード */
.spot-card {
    position: relative;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.spot-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-color: #1a6fc4;
}
.spot-card.active {
    border-color: #1a6fc4;
    box-shadow: 0 0 0 3px rgba(26,111,196,0.25);
}

/* 番号バッジ */
.spot-card-num {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 26px;
    height: 26px;
    background: #1a6fc4;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* サムネイル */
.spot-card-img img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

/* テキスト */
.spot-card-body {
    padding: 10px 12px 12px;
}
.spot-card-cat {
    font-size: 11px;
    color: #1a6fc4;
    font-weight: 600;
    margin-bottom: 4px;
}
.spot-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
    line-height: 1.4;
}
.spot-card-addr {
    font-size: 11px;
    color: #888;
    line-height: 1.4;
}
.spot-card-addr i {
    color: #1a6fc4;
    margin-right: 3px;
}
