/* =============================================
   SPOT (周辺観光) — 一覧・詳細
   ============================================= */

:root {
  --spot-green:  #2f5d34;
  --spot-dark:   #33332c;
  --spot-bg:     #f8f7f2;
  --spot-border: #eae8de;
  --spot-label:  #9aa890;
}

.spot-main { background: var(--spot-bg); }

/* ------------------------------------------
   HERO（一覧）
   ------------------------------------------ */
.spot-hero {
  position: relative;
  padding: 110px 24px 90px;
  background: linear-gradient(150deg, #2f5d34 0%, #3f7a44 55%, #557d4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.spot-hero__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.08); }
.spot-hero__body { position: relative; z-index: 2; text-align: center; color: #fff; }
.spot-hero__label {
  font-size: 11px;
  letter-spacing: 7px;
  font-weight: 700;
  opacity: .72;
  margin: 0 0 14px;
}
.spot-hero__h1 {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: 6px;
}
.spot-hero__sub {
  margin: 16px 0 0;
  font-size: clamp(12px, 1.4vw, 15px);
  opacity: .88;
  letter-spacing: 1px;
}

/* ------------------------------------------
   カテゴリフィルタ
   ------------------------------------------ */
.spot-filter { padding: 28px 24px 0; }
.spot-filter__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.spot-filter__btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--spot-green);
  background: #fff;
  border: 1.5px solid #c8ddc8;
  padding: 8px 22px;
  border-radius: 22px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.spot-filter__btn:hover { background: #eef4ee; }
.spot-filter__btn.is-active { background: var(--spot-green); border-color: var(--spot-green); color: #fff; }

/* ------------------------------------------
   スポット一覧
   ------------------------------------------ */
.spot-list { padding: 48px 0 64px; }
.spot-list__inner { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.spot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.spot-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0,0,0,.08);
  transition: box-shadow .25s, transform .25s;
}
.spot-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.14); transform: translateY(-3px); }
.spot-card__link { display: block; text-decoration: none; color: inherit; }
.spot-card__photo-wrap { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.spot-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.spot-card:hover .spot-card__photo { transform: scale(1.05); }
.spot-card__photo--empty {
  background: linear-gradient(140deg, #dfe8dc 0%, #cddcc8 100%);
}
.spot-card__time {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(47,93,52,.92);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 5px 12px;
  border-radius: 5px;
}
.spot-card__body { padding: 20px 22px 22px; }
.spot-card__cat {
  margin: 0 0 6px;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--spot-label);
}
.spot-card__h2 {
  margin: 0 0 10px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: var(--spot-dark);
  line-height: 1.4;
}
.spot-card__desc {
  margin: 0 0 14px;
  font-size: 12.5px;
  color: #666;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.spot-card__more {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--spot-green);
}
.spot-empty {
  text-align: center;
  padding: 60px 20px;
  font-size: 14px;
  color: #777;
}

/* ページネーション */
.spot-pagination { margin-top: 48px; text-align: center; }
.spot-pagination .nav-links {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.spot-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 8px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--spot-border);
  color: var(--spot-dark);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.spot-pagination .page-numbers.current {
  background: var(--spot-green);
  border-color: var(--spot-green);
  color: #fff;
}

/* ------------------------------------------
   詳細ページ
   ------------------------------------------ */
.spot-single-hero {
  position: relative;
  height: 52vh;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spot-single-hero--noimg {
  background: linear-gradient(150deg, #2f5d34 0%, #3f7a44 55%, #557d4a 100%);
  height: 38vh;
  min-height: 240px;
}
.spot-single-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,10,.6) 0%, rgba(10,20,10,.25) 60%);
}
.spot-single-hero--noimg .spot-single-hero__overlay { background: rgba(0,0,0,.08); }
.spot-single-hero__body { position: relative; z-index: 2; text-align: center; color: #fff; padding: 0 20px; }
.spot-single-hero__cat {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 700;
  opacity: .8;
}
.spot-single-hero__h1 {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 44px);
  letter-spacing: 3px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.spot-single-hero__time {
  margin: 14px 0 0;
  display: inline-block;
  background: rgba(47,93,52,.92);
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 20px;
}

.spot-single__inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

/* 本文 */
.spot-single__content {
  background: #fff;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  font-size: 15px;
  line-height: 2;
  color: #3a3a33;
}
.spot-single__content h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 21px;
  color: var(--spot-dark);
  border-left: 4px solid var(--spot-green);
  padding-left: 14px;
  margin: 36px 0 16px;
}
.spot-single__content h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--spot-green);
  margin: 28px 0 12px;
}
.spot-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.spot-single__content .spot-single__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  margin: 0 0 8px;
}
.spot-single__content p { margin: 0 0 1.2em; }

/* スポット情報テーブル */
.spot-info { margin-top: 36px; }
.spot-info__h2 {
  margin: 0 0 16px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 21px;
  color: var(--spot-dark);
  border-left: 4px solid var(--spot-green);
  padding-left: 14px;
}
.spot-info__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
}
.spot-info__table th,
.spot-info__table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--spot-border);
  text-align: left;
  vertical-align: top;
}
.spot-info__table tr:last-child th,
.spot-info__table tr:last-child td { border-bottom: none; }
.spot-info__table th {
  width: 180px;
  background: #f2f5ef;
  color: var(--spot-green);
  font-weight: 700;
  white-space: nowrap;
}
.spot-info__table a { color: var(--spot-green); word-break: break-all; }
.spot-info__map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  background: var(--spot-green);
  color: #fff;
  text-decoration: none;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 8px;
  transition: background .2s;
}
.spot-info__map-btn:hover { background: #245228; }

/* 関連スポット */
.spot-related { margin-top: 48px; }
.spot-related__h2 {
  margin: 0 0 20px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 21px;
  color: var(--spot-dark);
  border-left: 4px solid var(--spot-green);
  padding-left: 14px;
}
.spot-grid--related { grid-template-columns: repeat(3, 1fr); gap: 20px; }

.spot-single__back { margin-top: 40px; text-align: center; }
.spot-single__back-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--spot-green);
  text-decoration: none;
}
.spot-single__back-link:hover { text-decoration: underline; }

/* ------------------------------------------
   宿泊CTA
   ------------------------------------------ */
.spot-cta { background: #f2ede4; padding: 64px 24px; }
.spot-cta__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.spot-cta__label {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 5px;
  font-weight: 700;
  color: var(--spot-label);
}
.spot-cta__h2 {
  margin: 0 0 14px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 3vw, 26px);
  color: var(--spot-dark);
}
.spot-cta__text {
  margin: 0 0 26px;
  font-size: 14px;
  line-height: 1.9;
  color: #666;
}
.spot-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--spot-green);
  color: #fff;
  text-decoration: none;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 15px;
  padding: 15px 34px;
  border-radius: 9px;
  box-shadow: 0 6px 20px rgba(47,93,52,.28);
  transition: transform .2s, box-shadow .2s;
}
.spot-cta__btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(47,93,52,.38); }

/* ------------------------------------------
   Responsive
   ------------------------------------------ */
@media (max-width: 900px) {
  .spot-list__inner { padding: 0 24px; }
  .spot-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .spot-grid--related { grid-template-columns: repeat(2, 1fr); }
  .spot-single__content { padding: 28px 24px; }
}
@media (max-width: 560px) {
  .spot-hero { padding: 80px 20px 64px; }
  .spot-grid { grid-template-columns: 1fr; }
  .spot-grid--related { grid-template-columns: 1fr; }
  .spot-list { padding: 36px 0 48px; }
  .spot-info__table th { width: auto; display: block; padding-bottom: 4px; border-bottom: none; }
  .spot-info__table td { display: block; padding-top: 0; }
  .spot-single__content { padding: 24px 18px; font-size: 14px; }
}
