/* ===================================
   #KURE_NOW!! - Main Stylesheet
   =================================== */

:root {
  --primary: #00AADD;
  --primary-dark: #0088BB;
  --primary-light: #E8F7FC;
  --accent: #FF6B35;
  --accent2: #FFD700;
  --dark: #1A2A3A;
  --mid: #4A6680;
  --light: #F0F8FF;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --sidebar-width: 240px;
  --font-jp: 'Noto Sans JP', sans-serif;
  --font-en: 'Montserrat', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-jp);
  background: var(--white);
  color: var(--dark);
  display: flex;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ===================================
   header : SIDEBAR
   =================================== */
/* サイドバーの「観光ガイド」リンクを非表示 */
.sidebar-nav a[href*="#guide"] {
    display: none !important;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--white);
  border-right: 1px solid rgba(0,170,221,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 0 20px;
  z-index: 1000;
  overflow-y: auto;
  box-shadow: 4px 0 24px rgba(0,0,0,0.06);
}

.sidebar-logo {
  margin-bottom: 24px;
  padding: 0 20px;
  width: 100%;
}

/* .logo-img-vertical {
  width: 100%;
  max-width: 160px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
} */

/* .logo-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(0,170,221,0.08);
  border: 2px solid rgba(0,170,221,0.25);
  border-radius: 12px;
} */

/* .logo-hash {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
} */

/* .logo-text {
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.logo-text em {
  font-style: normal;
  color: var(--primary);
} */

.sidebar-nav {
  width: 100%;
  padding: 0 12px;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--mid);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  margin-bottom: 4px;
  white-space: nowrap;
}

.nav-item i {
  width: 18px;
  text-align: center;
  font-size: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.nav-item:hover,
.nav-item.active {
  background: rgba(0,170,221,0.1);
  color: var(--primary);
  transform: translateX(4px);
}

.sidebar-sns {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 12px;
}

.sns-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
  color: var(--white);
}

.sns-btn.tt { background: #010101; }
.sns-btn.tw { background: #000; }
.sns-btn.ig { background: linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%); }
.sns-btn.yt { background: #FF0000; }
.sns-btn:hover { transform: scale(1.15) translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }

/* ===================================
   トップページ : 
   =================================== */
/* ===== MAIN WRAPPER ===== */
.main-wrapper {
  margin-left: var(--sidebar-width);
  flex: 1;
  min-width: 0;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,25,50,0.75) 0%,
    rgba(0,100,170,0.45) 50%,
    rgba(0,170,221,0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
  max-width: 720px;
}

.hero-sub {
  font-family: var(--font-en);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-sub::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.hero-title {
  margin-bottom: 24px;
  line-height: 1;
}

.hero-logo-wrap {
  display: inline-block;
  margin-bottom: 28px;
}

.hero-logo-img {
  width: clamp(240px, 40vw, 560px);
  height: auto;
  display: block;
  /* 白背景を消し、ロゴ文字を白く抜く */
  filter: brightness(0) invert(1);
}

/* .hero-hash { color: var(--primary); }
.hero-now { color: var(--white); }
.hero-ex { color: var(--accent); } */

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.9;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Animations */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 0.8s forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-jp);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(0,170,221,0.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,170,221,0.55);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.8);
  color: var(--white);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}

.btn-more {
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.btn-more:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,170,221,0.35);
}

.ig-follow {
  background: linear-gradient(45deg, #F09433, #E6683C, #DC2743, #CC2366, #BC1888);
  color: var(--white);
  border: none;
}

.ig-follow:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(220,39,67,0.4);
}

.btn-search {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,170,221,0.4);
}

/* HERO SCROLL */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 60px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.scroll-line {
  width: 50px;
  height: 1px;
  background: rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  animation: scrollAnim 2s ease infinite;
}

@keyframes scrollAnim {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* HERO DOTS */
.hero-dots {
  position: absolute;
  bottom: 36px;
  right: 36px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: var(--transition);
  cursor: pointer;
}

.dot.active {
  background: var(--primary);
  width: 28px;
  border-radius: 5px;
}

/* ===== CATEGORY BAR ===== */
.category-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.cat-tabs {
  display: flex;
  gap: 4px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }

.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid);
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font-jp);
}

.cat-tab:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.cat-tab.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0,170,221,0.35);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.section-header.center {
  flex-direction: column;
  text-align: center;
}

.section-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,170,221,0.35);
}

.ig-icon {
  background: linear-gradient(45deg, #F09433, #E6683C, #DC2743, #CC2366, #BC1888);
}

.map-icon {
  background: linear-gradient(135deg, #00C896 0%, #009971 100%);
  box-shadow: 0 4px 16px rgba(0,200,150,0.35);
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.section-sub {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--primary);
  font-weight: 600;
  margin-top: 4px;
}

/* ===== sec : ニュース・イベント情報 ===== */
.news-section { background: var(--white); }

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  /* box-shadow: var(--shadow-sm); */
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.news-card.featured {
  grid-row: span 2;
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
}

.news-card.featured .card-img-wrap { height: 280px; }
.news-card:not(.featured) .card-img-wrap { height: 160px; }

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .card-img-wrap img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.card-badge.event { background: var(--accent); }
.card-badge.sight { background: var(--primary); }
.card-badge.food { background: #E67E22; }
.card-badge.nature { background: #27AE60; }

.card-body {
  padding: 20px;
}

.news-card.featured .card-body { padding: 24px; }

.card-body time {
  font-family: var(--font-en);
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 8px 0;
  line-height: 1.5;
  color: var(--dark);
}

.news-card.featured .card-body h3 {
  font-size: 1.25rem;
}

.card-body p {
  font-size: 0.83rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 14px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}

.card-link:hover { gap: 10px; }
.card-link i { font-size: 0.75rem; }

.more-btn-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ===== STATS BANNER ===== */
.stats-banner {
  background: linear-gradient(135deg, #f0f8ff 0%, #e0f3fc 50%, #eaf6fb 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.stats-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,170,221,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  display: inline;
}

.stat-unit {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--mid);
  margin-top: 8px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(0,170,221,0.2);
  flex-shrink: 0;
}

/* ===== sec : ソーシャルウォール ===== */
.social-section {
  background: var(--light);
}

.social-tag-note {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 28px;
}

.social-tag-note strong {
  color: var(--primary);
  font-size: 1rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.social-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  /* box-shadow: var(--shadow-sm); */
  transition: var(--transition);
  animation: fadeInUp 0.6s ease both;
  animation-delay: var(--delay);
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.sc-img { height: 160px; overflow: hidden; }
.sc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.social-card:hover .sc-img img { transform: scale(1.08); }

.sc-body {
  padding: 14px;
}

.sc-user {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sc-ig { color: #E1306C; }
.sc-tw { color: #1DA1F2; }

.sc-body p {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ===== sec : インスタグラム ===== */
.instagram-section { background: var(--white); }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(225,48,108,0.7), rgba(188,24,136,0.7));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  opacity: 0;
  transition: var(--transition);
}

.insta-item:hover .insta-overlay { opacity: 1; }
.insta-item:hover img { transform: scale(1.08); }

/* ===== sec : 場所を探す ===== */
.map-section { background: var(--light); }

.search-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  /* box-shadow: var(--shadow-sm); */
  border: 1px solid rgba(0,0,0,0.06);
}

.search-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: flex-end;
}

.search-field {
  min-width: 0;
  width: 100%;
}

.search-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--mid);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-field label i { color: var(--primary); }

.search-field select,
.search-field input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-jp);
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  height: 50px;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234A6680' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.search-field input {
  background-image: none;
  padding-right: 16px;
}

.search-field select:focus,
.search-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,170,221,0.15);
}

/* ===== MAP SECTION ===== */

/* 人気スポットバー（マップ上） */
.popular-spots-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid rgba(0,170,221,0.18);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  margin-bottom: 12px;
  /* box-shadow: var(--shadow-sm); */
}

.popular-spots-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.popular-spots-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pop-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.pop-tag .tag-num {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 800;
  border: 1px solid rgba(0,0,0,0.08);
}

.pop-tag.cat-sight  { background: rgba(0,170,221,0.1);  color: #0088BB; border-color: rgba(0,170,221,0.3); }
.pop-tag.cat-food   { background: rgba(230,126,34,0.1);  color: #CA6F1E; border-color: rgba(230,126,34,0.3); }
.pop-tag.cat-nature { background: rgba(39,174,96,0.1);   color: #1E8449; border-color: rgba(39,174,96,0.3); }
.pop-tag.cat-stay   { background: rgba(155,89,182,0.1);  color: #7D3C98; border-color: rgba(155,89,182,0.3); }

.pop-tag:hover { filter: brightness(0.88); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

/* Google Map フレーム */
.map-frame-full {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  /* box-shadow: var(--shadow-md); */
  margin-bottom: 32px;
  border: 1px solid rgba(0,170,221,0.12);
}

/* 検索結果ヘッダー */
.spot-results { margin-top: 8px; }

.spot-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 14px 20px;
  background: linear-gradient(to right, rgba(0,170,221,0.06), rgba(255,255,255,0));
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--primary);
}

.spot-results-header h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.spot-results-header h3 i { color: var(--primary); }

.count-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  font-family: var(--font-en);
}

/* 検索結果リスト（1カラム） */
.spot-result-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 結果カード（横並び） */
.spot-result-card {
  background: var(--white);
  border: 1px solid rgba(0,170,221,0.15);
  border-radius: var(--radius);
  overflow: hidden;
  /* box-shadow: var(--shadow-sm); */
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.spot-result-card:hover {
  box-shadow: 0 8px 32px rgba(0,170,221,0.18);
  border-color: rgba(0,170,221,0.45);
  transform: translateY(-3px);
}

.src-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 10px;
  border-bottom: 1px solid rgba(0,170,221,0.1);
  background: rgba(232,247,252,0.5);
}

.src-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700; font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-en);
}

.src-num.cat-sight  { background: linear-gradient(135deg,#00AADD,#0088BB); }
.src-num.cat-food   { background: linear-gradient(135deg,#E67E22,#CA6F1E); }
.src-num.cat-nature { background: linear-gradient(135deg,#27AE60,#1E8449); }
.src-num.cat-stay   { background: linear-gradient(135deg,#9B59B6,#7D3C98); }

.src-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}

.src-cat-badge {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.src-cat-badge.cat-sight  { background: rgba(0,170,221,0.12);  color: #0088BB; }
.src-cat-badge.cat-food   { background: rgba(230,126,34,0.12);  color: #CA6F1E; }
.src-cat-badge.cat-nature { background: rgba(39,174,96,0.12);   color: #1E8449; }
.src-cat-badge.cat-stay   { background: rgba(155,89,182,0.12);  color: #7D3C98; }

/* 詳細テーブル（カード内） */
.src-table-wrap {
  overflow-x: auto;
  flex: 1;
}

.spot-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.865rem;
}

.spot-detail-table tr {
  border-bottom: 1px solid rgba(0,170,221,0.1);
}

.spot-detail-table tr.row-odd {
  background: rgba(0,170,221,0.045);
}

.spot-detail-table th {
  width: 120px;
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--mid);
  white-space: nowrap;
  vertical-align: middle;
  font-size: 0.82rem;
  border-right: 2px solid rgba(0,170,221,0.2);
}

.spot-detail-table td {
  padding: 11px 16px;
  color: var(--dark);
  line-height: 1.6;
}

/* 予約先（カード下部） */
.src-booking {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-top: 2px solid rgba(0,170,221,0.12);
  flex-wrap: wrap;
  background: linear-gradient(to right, rgba(0,170,221,0.04), rgba(255,255,255,0));
}

.src-booking-label {
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: rgba(0,170,221,0.1);
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
  border: 1px solid rgba(0,170,221,0.2);
  flex-shrink: 0;
}

.src-booking-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

/* 予約先ロゴボタン */
.booking-logo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 90px;
  max-width: 120px;
  padding: 4px 10px;
  border-radius: 8px;
  border: 1.5px solid rgba(0,0,0,0.12);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  background: var(--white);
  white-space: nowrap;
  overflow: hidden;
}

.booking-logo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.14);
  border-color: rgba(0,0,0,0.25);
}

.booking-logo-img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 28px;
  object-fit: contain;
  object-position: center;
}

/* ブランドカラーのボーダー（ホバー時） */
.booking-logo-btn.jalan:hover   { border-color: #e8380d; box-shadow: 0 6px 18px rgba(232,56,13,0.18); }
.booking-logo-btn.gnavi:hover   { border-color: #e60012; box-shadow: 0 6px 18px rgba(230,0,18,0.18); }
.booking-logo-btn.rakuten:hover { border-color: #bf0000; box-shadow: 0 6px 18px rgba(191,0,0,0.18); }
.booking-logo-btn.booking:hover { border-color: #003580; box-shadow: 0 6px 18px rgba(0,53,128,0.18); }
.booking-logo-btn.ikyu:hover    { border-color: #b8860b; box-shadow: 0 6px 18px rgba(184,134,11,0.18); }

/* グルメ系ロゴボタン固有カラー */
.booking-logo-btn.hotpepper { border-color: rgba(230,0,0,0.25); }
.booking-logo-btn.hotpepper:hover { border-color: #e60000; box-shadow: 0 6px 18px rgba(230,0,0,0.18); }
.booking-logo-btn.tabelog   { border-color: rgba(200,35,46,0.25); }
.booking-logo-btn.tabelog:hover   { border-color: #c8232e; box-shadow: 0 6px 18px rgba(200,35,46,0.18); }
.booking-logo-btn.hitosara  { border-color: rgba(245,99,33,0.25); }
.booking-logo-btn.hitosara:hover  { border-color: #f56321; box-shadow: 0 6px 18px rgba(245,99,33,0.18); }

/* ロゴなしの場合のテキストバッジ */
.booking-logo-text {
  display: inline-block;
  white-space: nowrap;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: -0.02em;
}

/* カードフッター（詳細・地図ボタン） */
.src-footer {
  display: flex;
  gap: 10px;
  padding: 12px 20px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: rgba(248,250,252,0.8);
}

.src-detail-btn,
.src-map-btn {
  flex: 1;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
}

.src-detail-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 3px 10px rgba(0,170,221,0.3);
}

.src-detail-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,170,221,0.4);
}

.src-map-btn {
  background: var(--white);
  color: var(--primary-dark);
  border: 1.5px solid rgba(0,170,221,0.3);
}

.src-map-btn:hover {
  background: rgba(0,170,221,0.06);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* src-name-wrap */
.src-name-wrap {
  flex: 1;
  min-width: 0;
}

.src-area {
  font-size: 0.73rem;
  color: var(--mid);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.src-area i {
  color: var(--primary);
  font-size: 0.68rem;
}

/* テーブル内アイコン */
.spot-detail-table th i {
  width: 14px;
  text-align: center;
  color: var(--primary);
  margin-right: 4px;
  font-size: 0.78rem;
}

/* SNS icons */
.modal-sns-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  margin-right: 4px;
  text-decoration: none;
  transition: var(--transition);
}

.modal-sns-icon:hover { transform: scale(1.1); }
.modal-sns-icon.line  { background: #06C755; color: #fff; }
.modal-sns-icon.insta { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: #fff; }

/* モーダル */
.spot-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,25,50,0.55);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.spot-modal-overlay.open { opacity: 1; pointer-events: all; }

.spot-modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}

.spot-modal-overlay.open .spot-modal { transform: translateY(0) scale(1); }

.spot-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  color: var(--dark);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border: none; z-index: 10;
}

.spot-modal-close:hover { background: rgba(0,0,0,0.14); }

.spot-modal-inner { padding: 28px 28px 24px; }

.spot-modal-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary-light);
}

.spot-modal-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-en);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.spot-modal-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.spot-modal-booking {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: 4px;
}

.booking-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: rgba(0,170,221,0.1);
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.booking-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}


.modal-sns-icon.insta { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: #fff; }


/* ===== sec : 観光ガイド/呉の魅力を探索 ===== */
/* 「呉の魅力を探索」セクションを非表示 */
#guide {
    display: none !important;
}

.guide-section {
    background: var(--white);
    padding: 80px 0;
}

.guide-section .section-title { color: var(--dark); }

.guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.guide-card {
    position: relative;
    height: 320px;
    border-radius: var(--radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: var(--transition);
}

.guide-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.guide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
    transition: var(--transition);
}

.guide-card:hover .guide-overlay {
    background: linear-gradient(180deg, rgba(0,150,210,0.2) 0%, rgba(0,0,0,0.85) 100%);
}

.guide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
}

.guide-icon {
    width: 48px;
    height: 48px;
    background: rgba(0,170,221,0.9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
    transition: var(--transition);
}

.guide-card:hover .guide-icon {
    transform: scale(1.1);
    background: var(--primary);
}

.guide-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.guide-content p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 14px;
}

.guide-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.guide-link:hover { gap: 12px; }

/* ===== sec : CHATBOT CTA ===== */
.chatbot-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 50px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    gap: 32px;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
    50% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

.cta-inner .btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    flex-shrink: 0;
}

.cta-inner .btn-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
}

/* ===== sec : 呉観光協会とは？ ===== */
.about-section {
  background: #f1f8ff;
  padding: 80px 0;
}

.about-icon { background: linear-gradient(135deg, #00AADD, #0088BB) !important; }

.about-banner {
  display: block;
  padding: 50px;
  background: #f1f8ff;
  border: 1px solid rgba(0,170,221,0.18);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  position: relative;
}

.about-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark), #00c896);
}

.about-banner:hover {
  border-color: rgba(0,170,221,0.45);
  transform: translateY(-4px);
}

/* コンテンツエリア */
/* .about-banner-left {
  padding: 48px 52px;
  background: linear-gradient(160deg, #f7fbff 0%, #eef6fc 100%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 720px;
} */

/* .about-banner-header {
  display: flex;
  align-items: center;
  gap: 18px;
} */

/* .about-banner-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  flex-shrink: 0;
} */

/* .about-banner-en {
  font-family: var(--font-en);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--primary);
  margin: 0 0 4px;
  text-transform: uppercase;
} */

/* .about-banner-title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--dark);
  margin: 0;
  line-height: 1.2;
} */

.about-banner-lead {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 30px 0;
  line-height: 1.6;
  padding-left: 2px;
  border-left: 3px solid var(--primary);
  padding-left: 12px;
}

.about-banner-body {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.85;
  margin: 0 0 30px 0;
}

/* MVV 3ピル */
.about-banner-mvv {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.about-mvv-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0.08em;
}

.about-mvv-pill.mission {
  background: rgba(0,170,221,0.1);
  color: var(--primary-dark);
  border: 1.5px solid rgba(0,170,221,0.25);
}

.about-mvv-pill.vision {
  background: rgba(0,200,150,0.1);
  color: #00875a;
  border: 1.5px solid rgba(0,200,150,0.25);
}

.about-mvv-pill.values {
  background: rgba(255,107,53,0.1);
  color: #c8501a;
  border: 1.5px solid rgba(255,107,53,0.25);
}

/* CTAボタン */
.about-banner-cta {
  margin-top: auto;
  padding-top: 8px;
}

.about-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
}

.about-banner:hover .about-banner-btn {
  gap: 12px;
}

/* 右カラム：2×2カードグリッド */
/* .about-banner-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
} */

/* .about-banner-card {
  padding: 32px 26px;
  border-right: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.25s;
} */

/* .about-banner-card:nth-child(2n) { border-right: none; }
.about-banner-card:nth-child(3),
.about-banner-card:nth-child(4) { border-bottom: none; }

.about-banner:hover .about-banner-card:hover {
  background: rgba(0,170,221,0.04);
} */

/* .about-banner-card-icon {
  width: 46px;
  height: 46px;
  background: rgba(0,170,221,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 14px;
  transition: var(--transition);
} */

.about-banner:hover .about-banner-card:hover .about-banner-card-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
}

/* .about-banner-card p {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.75;
  margin: 0;
} */

/* レスポンシブ */
@media (max-width: 1100px) {
  .about-banner-left {
    padding: 36px 32px;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .about-banner-left { padding: 28px 22px; gap: 16px; }
  .about-banner-title { font-size: 1.3rem; }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

.about-lead {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-body {
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,170,221,0.15);
  /* box-shadow: var(--shadow-sm); */
}

.about-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--dark);
  line-height: 1.6;
}

.about-info-item i {
  color: var(--primary);
  width: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.85rem;
}

.about-info-item a {
  color: var(--primary);
  text-decoration: underline;
  transition: var(--transition);
}

.about-info-item a:hover { color: var(--primary-dark); }

.about-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

/* アバウトカードグリッド */
.about-cards-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid rgba(0,170,221,0.12);
  /* box-shadow: var(--shadow-sm); */
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,170,221,0.3);
}

.about-card-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(0,170,221,0.12), rgba(0,136,187,0.18));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 14px;
  transition: var(--transition);
}

.about-card:hover .about-card-icon {
  background: linear-gradient(135deg, #00AADD, #0088BB);
  color: #fff;
}

.about-card h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.about-card p {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.7;
}

/* レスポンシブ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .about-cards-col { grid-template-columns: 1fr; }
  .about-lead { font-size: 1.25rem; }
}

/* ===================================
   footer
   =================================== */
.footer { background: #f7fbff; border-top: 1px solid rgba(0,170,221,0.15); }

.footer-top {
  padding: 64px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  margin-bottom: 16px;
}

.logo-img-footer {
  width: auto;
  max-width: 240px;
  height: auto;
  display: block;
  border-radius: 8px;
}

.footer-logo { color: var(--primary); }
.footer-logo em { font-style: normal; color: var(--primary); }

.footer-brand p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-sns {
  display: flex;
  gap: 10px;
}

.footer-sns a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-sns a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,170,221,0.15);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  font-size: 0.85rem;
  color: var(--mid);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links ul li a::before {
  content: '→';
  color: var(--primary);
  font-size: 0.75rem;
}

.footer-links ul li a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact p {
  font-size: 0.85rem;
  color: var(--mid);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact p i { color: var(--primary); width: 14px; }

.footer-apps {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-direction: column;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--mid);
  transition: var(--transition);
}

.app-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(0,170,221,0.1);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--mid);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--mid);
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--primary); }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(0,170,221,0.5);
  z-index: 999;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,170,221,0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .news-card.featured {
    grid-column: span 2;
    grid-row: span 1;
  }
  .news-card.featured .card-img-wrap { height: 220px; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --sidebar-width: 0px; }
  .sidebar { transform: translateX(-240px); transition: transform 0.35s ease; }
  .sidebar.open { transform: translateX(0); width: 240px; }
  .main-wrapper { margin-left: 0; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { flex-wrap: wrap; gap: 24px; }
  .stat-item { padding: 0 30px; }
  .stat-divider { display: none; }
  .hero-content { padding: 0 36px; }
  /* 検索フォーム：タブレット 2カラム */
  .search-row { grid-template-columns: 1fr 1fr; }
  .btn-search { grid-column: span 2; }
  /* スポットカード */
  .spot-cards-grid { grid-template-columns: repeat(2, 1fr); }
  /* マップ */
  .spot-map-canvas { height: 380px; }
}

@media (max-width: 640px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured { grid-column: 1; }
  .guide-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .hero-title { font-size: 3.5rem; }
  .section { padding: 50px 0; }
  .footer-bottom .container { flex-direction: column; gap: 12px; }
  /* ロゴ：スマホ */
  .hero-logo-wrap { padding: 0; border-radius: 0; }
  .hero-logo-img { width: clamp(200px, 78vw, 340px); }
  .logo-img-vertical { max-width: 130px; }
  .logo-img-footer { max-width: 180px; }
  /* 検索フォーム：スマホ 1カラム */
  .search-box { padding: 16px; }
  .search-row { grid-template-columns: 1fr; gap: 12px; }
  .btn-search { grid-column: 1; width: 100%; }
  .search-field select, .search-field input { font-size: 1rem; }
  /* スポットカード */
  .spot-cards-grid { grid-template-columns: 1fr; }
  .spot-map-canvas { height: 300px; }
  /* モーダル */
  .spot-modal-inner { padding: 20px 16px; }
  .spot-detail-table th { width: 80px; font-size: 0.8rem; }
  .spot-detail-table td { font-size: 0.8rem; }
  /* 検索結果カード */
  .src-footer { gap: 8px; padding: 10px 14px; }
  .src-detail-btn, .src-map-btn { font-size: 0.78rem; padding: 8px 10px; }
  .booking-logo-btn { min-width: 70px; height: 34px; }
  .booking-logo-img { max-height: 22px; }
}

/* ===== INTERSECTION OBSERVER ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}


/* ===============================================
   ニュース記事一覧ページ/ index.php  archive.php
   =============================================== */
/* :root 変数の活用（一括管理用） */
:root {
  --primary-gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --header-gradient: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #00c8a0 100%);
}

/* ===== NEWS PAGE ===== */

/* --- Page Header --- */
.news-page-header {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #00c8a0 100%);
  padding: 56px 0 40px;
  overflow: hidden;
}

.news-page-header-bg {
  display: none;
}

.news-page-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.news-page-header-icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  backdrop-filter: blur(6px);
  flex-shrink: 0;
}

.news-page-title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 4px;
}

.news-page-sub {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* Breadcrumb */
.news-breadcrumb {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
}

.news-breadcrumb a {
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.news-breadcrumb a:hover { color: #fff; }
.news-breadcrumb i.fa-chevron-right { font-size: 0.65rem; opacity: 0.6; }

/* --- Layout --- */
.news-page-body {
  padding-top: 40px;
  padding-bottom: 60px;
}

.news-page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

/* --- Filter Bar --- */
.news-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.news-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid rgba(0,170,221,0.25);
  background: var(--white);
  color: var(--mid);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
}

.news-filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(0,170,221,0.06);
}

.news-filter-btn.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,170,221,0.35);
}

/* --- Card List --- */
.news-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* --- Pagination --- */
.news-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pg-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 2px solid rgba(0,170,221,0.25);
  background: var(--white);
  color: var(--mid);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pg-btn:hover:not(.disabled) {
  border-color: var(--primary);
  color: var(--primary);
}

.pg-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 3px 10px rgba(0,170,221,0.35);
}

.pg-btn.disabled {
  opacity: 0.35;
  cursor: default;
}

/* --- Sidebar Widgets --- */
.news-side {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-widget {
  
  overflow: hidden;
}

.news-widget {
  margin-bottom: 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}

.news-widget-title {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    margin: 0;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Sidebar Widgets General --- */


.news-widget-content {
    padding: 15px;
}

/* --- Category List (WordPress specific) --- */
.news-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-cat-list li {
    border-bottom: 1px solid #f0f0f0;
}

.news-cat-list li:last-child {
    border-bottom: none;
}

/* 親のli自体をフレックスボックスにして、中身を横並びにする */
.news-cat-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

/* リンク自体のパディングは解除して、位置を整える */
.news-cat-list li a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    flex-grow: 1; /* テキスト部分を広げる */
}

.news-cat-list li a:hover {
    color: #00aadd;
}

/* 記事数のカウント部分 (WordPressが自動生成する.children) */
.news-cat-list li .count {
    background: #f0f0f0;
    color: #666;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-family: var(--font-en);
}

/* --- Pickup List (Related & Sticky) --- */
.news-pickup-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-pickup-list li {
    margin-bottom: 15px;
    padding: 16px;
}

.news-pickup-list li:last-child {
    margin-bottom: 0;
}

.news-pickup-list li a {
    display: flex;
    gap: 12px;
    text-decoration: none;
}

.pickup-img {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
}

.pickup-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pickup-body time {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 4px;
}

.pickup-body h4 {
    margin: 0;
    font-size: 0.85rem;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 以前からの設定 */
    line-clamp: 2;         /* これを追記して標準プロパティに対応 */
    overflow: hidden;
}

/* リスト全体に少し動きの準備 */
.news-pickup-list li {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px; 
}

/* ホバーした時のリスト項目の動き */
.news-pickup-list li:hover {
    background-color: #f9fbfd; /* ほんのり青みがかった背景色 */
    transform: translateY(-3px); /* 3pxだけ上に浮かす */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* 影を少し強くして浮遊感を出す */
}

/* ホバー時の画像の演出 */
.news-pickup-list li:hover .pickup-img img {
    opacity: 0.8; /* 少し明るく（透過）させる */
    transform: scale(1.05); /* 画像を少しだけ大きくする */
}

/* 画像の動きを滑らかにするための設定 */
.pickup-img {
    overflow: hidden; /* 拡大した時にはみ出さないように */
}

.pickup-img img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ホバー時にタイトル色を変える */
.news-pickup-list li:hover h4 {
    color: #00aadd; /* タイトルバーのグラデーションに合わせた色 */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .news-page-layout {
    grid-template-columns: 1fr 260px;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .news-page-header { margin-left: 0; }

  .news-page-layout {
    grid-template-columns: 1fr;
  }

  .news-side {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .news-list {
    grid-template-columns: 1fr;
  }

  .nl-card-featured {
    grid-column: span 1;
    display: flex !important;
    flex-direction: column;
  }

  .nl-card-featured .nl-card-img {
    height: 220px !important;
  }
}

@media (max-width: 640px) {
  .news-page-title { font-size: 1.4rem; }

  .news-side {
    grid-template-columns: 1fr;
  }

  .news-filter-bar {
    gap: 6px;
  }

  .news-filter-btn {
    padding: 6px 14px;
    font-size: 0.78rem;
  }
}

/* ===============================================
   ニュース記事個別ページ/ single.php  
   =============================================== */
   /* ===== NEWS DETAIL PAGE ===== */

/* パンくずリスト全体の文字色を白にする */
.news-breadcrumb,
.news-breadcrumb a,
.news-breadcrumb span {
    color: #ffffff !important; /* 強制的に白にする */
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

/* 矢印アイコンの間隔を調整 */
.news-breadcrumb span i {
    margin: 0 8px;
    font-size: 0.8rem;
    opacity: 0.7; /* 矢印だけ少し薄くする */
}

/* ホバー時に少し明るくする */
.news-breadcrumb a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* --- Article Hero --- */
.detail-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.detail-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.detail-hero:hover .detail-hero-img {
  transform: scale(1.0);
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 20, 40, 0.2) 0%,
    rgba(5, 20, 40, 0.75) 100%
  );
}

.detail-hero-inner {
  position: relative;
  padding-bottom: 40px;
  width: 100%;
}

.detail-hero-inner .news-breadcrumb {
  margin-bottom: 16px;
}

.detail-hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.detail-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.detail-pickup {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #f7971e, #ffd200);
}

.detail-title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.35;
  margin: 0 0 16px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.detail-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-date {
  font-family: var(--font-en);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

/* タグひとつひとつのスタイル */
.detail-tags a {
    display: inline-block;
    margin-right: 15px; /* タグ同士の間隔 */
    color: #333; /* 文字色 */
    text-decoration: none;
    font-size: 0.9rem;
}

/* 各タグの前に「#」を自動でつける */
.detail-tags a::before {
    content: "#";
    margin-right: 2px;
}

/* ホバー時に色を変える */
.detail-tags a:hover {
    color: #007bff; /* 青色など */
    text-decoration: underline;
}

/* Share buttons (header) */
.detail-share {
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
}

.share-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0.85;
}
.share-btn:hover { transform: scale(1.15); opacity: 1; }
.share-btn.share-x    { background: #000; }
.share-btn.share-line { background: #06C755; }
.share-btn.share-fb   { background: #1877F2; }

/* --- Body Layout --- */
.detail-body-wrap {
  padding-top: 40px;
  padding-bottom: 60px;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

/* --- Info Box --- */
.detail-info-box {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f4fb 100%);
  border: 1px solid rgba(0,170,221,0.2);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 36px;
}

.detail-info-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.detail-info-table tr {
  border-bottom: 1px solid rgba(0,170,221,0.12);
}
.detail-info-table tr:last-child { border-bottom: none; }

.detail-info-table th {
  width: 130px;
  padding: 10px 12px 10px 0;
  color: var(--primary-dark);
  font-weight: 700;
  vertical-align: top;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-info-table td {
  padding: 10px 0;
  color: var(--dark);
  line-height: 1.6;
  vertical-align: top;
}

/* --- Article Content --- */
.detail-content {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--dark);
  margin-bottom: 36px;
}

.detail-content p {
  margin-bottom: 1.2em;
}

.detail-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  border-left: 4px solid var(--primary);
  padding: 4px 0 4px 14px;
  margin: 32px 0 14px;
}

.detail-content ul {
  padding-left: 1.4em;
  margin-bottom: 1.2em;
}

.detail-content ul li {
  margin-bottom: 0.6em;
  line-height: 1.7;
}

.detail-content strong {
  color: var(--primary-dark);
}

/* --- Tags --- */
.detail-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  margin-bottom: 36px;
}

.detail-tags-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--mid);
  margin-right: 4px;
}

/* --- Share Bottom --- */
.detail-share-bottom {
  text-align: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  margin-bottom: 32px;
}

.detail-share-lead {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--mid);
  margin-bottom: 14px;
}

.detail-share-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.detail-share-big {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.detail-share-big:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  color: #fff;
}

.detail-share-big.share-x    { background: #000; }
.detail-share-big.share-line { background: #06C755; }
.detail-share-big.share-fb   { background: #1877F2; }

/* --- Article Nav --- */
.detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.detail-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--primary);
  border: 2px solid rgba(0,170,221,0.3);
  background: var(--white);
  transition: all 0.22s;
}

.detail-nav-btn:hover:not(.disabled) {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,170,221,0.3);
}

.detail-nav-btn.list {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-color: transparent;
}

.detail-nav-btn.list:hover {
  background: var(--primary-dark);
  color: #fff;
}

.detail-nav-btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* --- Sidebar Widgets General --- */
.news-widget {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.news-widget-title {
    background: linear-gradient(135deg, #00aadd 0%, #0077bb 100%);
    color: #fff;
    margin: 0;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-widget-content {
    padding: 15px;
}

/* --- Category List (WordPress specific) --- */
.news-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-cat-list li {
    border-bottom: 1px solid #f0f0f0;
}

.news-cat-list li:last-child {
    border-bottom: none;
}

/* 親のli自体をフレックスボックスにして、中身を横並びにする */
.news-cat-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

/* リンク自体のパディングは解除して、位置を整える */
.news-cat-list li a {
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    flex-grow: 1; /* テキスト部分を広げる */
}

.news-cat-list li a:hover {
    color: #00aadd;
}

/* 記事数のカウント部分 (WordPressが自動生成する.children) */
.news-cat-list li .count {
    background: #f0f0f0;
    color: #666;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-family: var(--font-en);
}

/* --- Pickup List (Related & Sticky) --- */
.news-pickup-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-pickup-list li {
    margin-bottom: 15px;
    padding: 16px;
}

.news-pickup-list li:last-child {
    margin-bottom: 0;
}

.news-pickup-list li a {
    display: flex;
    gap: 12px;
    text-decoration: none;
}

.pickup-img {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
}

.pickup-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pickup-body time {
    display: block;
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 4px;
}

.pickup-body h4 {
    margin: 0;
    font-size: 0.85rem;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 以前からの設定 */
    line-clamp: 2;         /* これを追記して標準プロパティに対応 */
    overflow: hidden;
}

/* リスト全体に少し動きの準備 */
.news-pickup-list li {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px; 
}

/* ホバーした時のリスト項目の動き */
.news-pickup-list li:hover {
    background-color: #f9fbfd; /* ほんのり青みがかった背景色 */
    transform: translateY(-3px); /* 3pxだけ上に浮かす */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* 影を少し強くして浮遊感を出す */
}

/* ホバー時の画像の演出 */
.news-pickup-list li:hover .pickup-img img {
    opacity: 0.8; /* 少し明るく（透過）させる */
    transform: scale(1.05); /* 画像を少しだけ大きくする */
}

/* 画像の動きを滑らかにするための設定 */
.pickup-img {
    overflow: hidden; /* 拡大した時にはみ出さないように */
}

.pickup-img img {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ホバー時にタイトル色を変える */
.news-pickup-list li:hover h4 {
    color: #00aadd; /* タイトルバーのグラデーションに合わせた色 */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .detail-layout {
    grid-template-columns: 1fr 260px;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .detail-hero { height: 320px; }
  .detail-title { font-size: 1.5rem; }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .news-side {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .detail-hero { height: 260px; }
  .detail-title { font-size: 1.2rem; }

  .detail-info-table th {
    display: block;
    width: auto;
    padding-bottom: 4px;
  }
  .detail-info-table td {
    display: block;
    padding-top: 0;
    padding-bottom: 10px;
  }

  .detail-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .news-side {
    grid-template-columns: 1fr;
  }
}

