/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FAFCFF;
  --cream-dark: #EEF6FB;
  --brown: #1A4A6E;
  --brown-light: #2E7BAD;
  --copper: #3498C8;
  --copper-light: #85CAEA;
  --sage: #5BBDD4;
  --sage-light: #B8E4F2;
  --sand: #C8E4F0;
  --white: #FFFFFF;
  --gray-100: #F0F8FD;
  --gray-200: #D6ECF6;
  --gray-400: #90BDD8;
  --gray-600: #5A8FAA;
  --text: #1A3A52;
  --text-light: #4A7A96;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 28px rgba(11,61,114,0.05);
  --shadow-hover: 0 12px 48px rgba(11,61,114,0.12);
  --transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.9;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== ANNOUNCEMENT BAR ===== */
.announce-bar {
  background: linear-gradient(90deg, #EBF5FB 0%, #D6EDF8 50%, #EBF5FB 100%);
  color: var(--brown-light);
  text-align: center;
  padding: 11px 24px;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-main {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.06em;
  line-height: 1.2;
  white-space: nowrap;
}

.logo-sub {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.18em;
}

.site-nav {
  display: flex;
  gap: 0;
  align-items: center;
  list-style: none;
}

.site-nav a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  color: var(--brown-light);
  padding: 8px 18px;
  letter-spacing: 0.08em;
  transition: var(--transition);
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width 0.3s ease;
}

.site-nav a:hover { color: var(--brown); }
.site-nav a:hover::after { width: 60%; }

/* ===== SUB NAV DROPDOWN ===== */
.has-sub {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.sub-toggle {
  background: none;
  border: none;
  color: var(--brown-light);
  font-size: 0.75rem;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  transition: transform 0.2s;
}
.has-sub.open .sub-toggle {
  transform: rotate(180deg);
}
.sub-nav {
  display: none;
  list-style: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(15, 25, 40, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  min-width: 180px;
  z-index: 200;
  padding: 8px 0;
  border-radius: 6px;
}
.sub-nav li a {
  display: block;
  padding: 10px 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}
.sub-nav li a:hover { background: rgba(255,255,255,0.12); color: #fff; }
.has-sub.open .sub-nav { display: block; }

/* デスクトップ: ホバーでサブメニュー表示 */
@media (min-width: 769px) {
  .has-sub:hover .sub-nav { display: block; }
}

/* モバイル: サブナビをインラインで展開 */
@media (max-width: 768px) {
  .has-sub { flex-wrap: wrap; width: 100%; }
  .has-sub > a { flex: 1; }
  .sub-nav {
    display: none;
    width: 100%;
    position: static;
    box-shadow: none;
    border: none;
    border-left: 2px solid var(--gray-200);
    border-radius: 0;
    padding: 4px 0 4px 12px;
    background: transparent;
    margin-top: 4px;
  }
  .has-sub.open .sub-nav { display: block; }
  .sub-nav li a { padding: 3px 12px !important; font-size: 0.85rem !important; min-height: unset !important; line-height: 1.8 !important; color: var(--brown-light) !important; }
  .sub-nav li a:hover { background: transparent !important; color: var(--brown) !important; }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brown);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 10px 12px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1528360983277-13d401cdc186?w=1920&q=85') center/cover;
  transform: scale(1.08);
  transition: transform 12s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,40,70,0.2) 0%,
    rgba(10,40,70,0.4) 60%,
    rgba(10,40,70,0.6) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 720px;
}

.hero-eyebrow {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s ease 0.5s forwards;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}

.hero-title em {
  font-style: italic;
  color: var(--copper-light);
}

.hero-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 48px;
  line-height: 2;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.7);
  color: var(--white);
  padding: 16px 48px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
  opacity: 0;
  animation: fadeUp 1s ease 0.9s forwards;
}

.hero-cta:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  gap: 20px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  animation: bounce 2s ease infinite;
}

/* ===== CATEGORIES BAR ===== */
.categories-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  overflow-x: auto;
  scrollbar-width: none;
}
.categories-bar::-webkit-scrollbar { display: none; }

.categories-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
}

.cat-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  color: var(--gray-600);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.05em;
}

.cat-tab:hover, .cat-tab.active {
  color: var(--brown);
  border-bottom-color: var(--copper);
}

/* ===== MAIN LAYOUT ===== */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}
.section-header > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 英語：大きなセリフ見出し（旅レンズ風） */
.section-label {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--brown);
  line-height: 1.12;
  margin-bottom: 12px;
  display: block;
}
.section-label::before { content: none; }

/* 日本語：細いラインで挟んだ小さなサブ見出し */
.section-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  color: var(--text-light);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.section-title::before,
.section-title::after {
  content: '';
  display: inline-block;
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

/* View More：中央下に上品に配置 */
.section-link {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  padding: 11px 26px;
  border: 1px solid var(--gray-400);
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 30px;
  margin-top: 26px;
}
.section-link:hover {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
  gap: 16px;
}

/* ===== POST GRID ===== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 32px;
}

.posts-grid.wide {
  grid-template-columns: repeat(2, 1fr);
}

/* 特大カードを廃止：全カードを均一のスタイリッシュなグリッドに統一 */
.posts-grid.featured > .post-card:first-child {
  grid-column: auto;
  display: flex;
  flex-direction: column;
  height: auto;
  box-shadow: 0 2px 10px rgba(11,61,114,0.05);
}
.posts-grid.featured > .post-card:first-child .card-thumb {
  aspect-ratio: 4/3;
  height: auto;
}
.posts-grid.featured > .post-card:first-child .card-body {
  padding: 30px 30px 26px;
  justify-content: flex-start;
}
.posts-grid.featured > .post-card:first-child .card-title {
  font-size: 1.02rem;
  -webkit-line-clamp: 2;
  margin-bottom: 14px;
  font-weight: 400;
  line-height: 1.7;
}
.posts-grid.featured > .post-card:first-child .card-excerpt {
  -webkit-line-clamp: 3;
  font-size: 0.8rem;
  line-height: 1.95;
}

/* ===== POST CARD ===== */
.post-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 10px rgba(11,61,114,0.05);
  position: relative;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(11,61,114,0.12);
}

/* カード全体をタップ可能にする（JSで処理） */
.post-card { cursor: pointer; }

.card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(1) saturate(0.92);
}

.post-card:hover .card-thumb img {
  transform: scale(1.05);
  filter: brightness(1.02) saturate(1.05);
}

.card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--sand) 100%);
}

.card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--copper);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  padding: 6px 13px;
  letter-spacing: 0.14em;
  border-radius: 0;
}

.card-body { padding: 30px 30px 26px; flex: 1; display: flex; flex-direction: column; }

.card-title {
  font-family: 'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
  font-size: 1.02rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--brown);
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-excerpt {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.95;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 22px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.card-date {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  color: var(--gray-400);
  letter-spacing: 0.08em;
}

.card-read-more {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  color: var(--copper);
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.card-read-more:hover { gap: 12px; }

/* ===== COMPACT LATEST LIST ===== */
.latest-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.latest-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.latest-item:first-child { border-top: 1px solid var(--gray-100); }
.latest-item:hover { background: var(--cream); margin: 0 -16px; padding-left: 16px; padding-right: 16px; }
.latest-thumb {
  width: 110px;
  height: 74px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.latest-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.latest-item:hover .latest-thumb img { transform: scale(1.06); }
.latest-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.latest-cat {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.65rem;
  color: var(--copper);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.latest-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 0.88rem;
  color: var(--brown);
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 400;
}
.latest-date {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.68rem;
  color: var(--gray-400);
  letter-spacing: 0.08em;
}
@media (max-width: 480px) {
  .latest-item { grid-template-columns: 86px 1fr; gap: 12px; }
  .latest-thumb { width: 86px; height: 58px; }
  .latest-title { font-size: 0.82rem; }
}

/* ===== AFFILIATE SECTION ===== */
.affiliate-section {
  margin: 80px 0;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--cream-dark) 100%);
  border: none;
  border-radius: var(--radius-lg);
  padding: 64px 56px;
}

.affiliate-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.affiliate-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--brown);
}

.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.affiliate-card {
  background: var(--white);
  padding: 28px 24px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.affiliate-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.affiliate-icon { font-size: 2rem; }

.affiliate-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.05em;
}

.affiliate-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

.affiliate-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--brown);
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: var(--transition);
  margin-top: auto;
}

.affiliate-link-btn:hover { background: var(--copper); }

/* ===== BOOKING CARDS (inline affiliate buttons) ===== */
.booking-card {
  margin: 12px 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(180, 220, 240, 0.55);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(11, 61, 114, 0.06);
  transition: var(--transition);
}
.booking-card:hover {
  box-shadow: 0 8px 32px rgba(11, 61, 114, 0.12);
  transform: translateY(-2px);
}

.booking-card-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  min-height: 68px;
}

.booking-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  min-width: 88px;
  flex-shrink: 0;
  text-align: center;
  line-height: 1.25;
  border-right: 1px solid rgba(180, 220, 240, 0.4);
}
.booking-brand-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  display: block;
  line-height: 1.3;
}
.booking-brand-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 4px;
}

.booking-brand-rakuten  { background: rgba(191,0,0,0.08); }
.booking-brand-rakuten .booking-brand-text { color: #8b0000; }
.booking-brand-jalan    { background: rgba(224,90,0,0.08); }
.booking-brand-jalan .booking-brand-text { color: #7a3000; }
.booking-brand-jtb      { background: rgba(0,48,135,0.09); }
.booking-brand-jtb .booking-brand-text { color: #002060; }
.booking-brand-furusato { background: rgba(191,0,0,0.08); }
.booking-brand-furusato .booking-brand-text { color: #8b0000; }
.booking-brand-amazon   { background: rgba(255,153,0,0.10); }
.booking-brand-amazon .booking-brand-text { color: #7a4500; }
.booking-brand-default  { background: rgba(26,74,110,0.08); }
.booking-brand-default .booking-brand-text { color: var(--brown); }

.booking-card-label {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  padding: 12px 16px;
  background: transparent;
  line-height: 1.5;
}

.booking-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 16px;
  padding: 8px 20px;
  background: rgba(26, 74, 110, 0.10);
  color: var(--brown);
  border: 1px solid rgba(26, 74, 110, 0.35);
  border-radius: 100px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.booking-card:hover .booking-card-cta {
  background: rgba(26, 74, 110, 0.18);
  color: #0f2d45;
  box-shadow: 0 4px 14px rgba(26, 74, 110, 0.16);
}

.booking-card-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 32px 0;
}

/* ===== SHOP BOX ===== */
.shop-box {
  border: 1px solid rgba(180, 220, 240, 0.6);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 24px 0;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(11, 61, 114, 0.06);
}
.shop-box-inner {
  display: flex;
  gap: 16px;
  align-items: center;
}
.shop-box-img-wrap {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}
.shop-box-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.shop-box-right { flex: 1; min-width: 0; }
.shop-box-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}
.shop-box-title::before {
  content: '🛍️';
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.shop-box-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.06em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.shop-btn-amazon {
  background: rgba(255, 153, 0, 0.10);
  color: #8a5500;
  border: 1px solid rgba(224, 136, 0, 0.42);
}
.shop-btn-amazon:hover {
  background: rgba(255, 153, 0, 0.22);
  color: #6e4300;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 153, 0, 0.18);
}
.shop-btn-rakuten {
  background: rgba(191, 0, 0, 0.08);
  color: #8b0000;
  border: 1px solid rgba(191, 0, 0, 0.38);
}
.shop-btn-rakuten:hover {
  background: rgba(191, 0, 0, 0.18);
  color: #6e0000;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(191, 0, 0, 0.15);
}
.shop-btn-yahoo {
  background: rgba(114, 0, 150, 0.08);
  color: #560078;
  border: 1px solid rgba(114, 0, 150, 0.36);
}
.shop-btn-yahoo:hover {
  background: rgba(114, 0, 150, 0.18);
  color: #3e005a;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(114, 0, 150, 0.15);
}

@media (max-width: 640px) {
  .shop-box-inner { flex-direction: column; align-items: flex-start; }
  .shop-box-img-wrap { width: 80px; height: 80px; }
  .booking-card-link { flex-wrap: wrap; }
  .booking-brand { min-width: 72px; padding: 10px 12px; }
  .booking-card-cta { width: 100%; justify-content: center; padding: 10px; }
  .booking-card-label { width: calc(100% - 72px); }
}

/* ===== POST PAGE ===== */
.post-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 56px;
  overflow: hidden;
  background: var(--cream-dark);
}

.post-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream-dark), var(--sand));
}

.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,40,70,0.6) 0%, rgba(10,40,70,0.05) 60%);
}

.post-hero-content {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  color: var(--white);
}

.post-hero-category {
  display: inline-block;
  background: var(--copper);
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 16px;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.post-hero-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 16px;
  max-width: 800px;
}

.post-hero-meta {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
}

.post-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  overflow-x: hidden;
}

.post-body {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 56px;
  overflow-x: hidden;
}

.post-content h2 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--brown);
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--copper-light);
}

.post-content h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.1rem;
  color: var(--brown-light);
  margin: 32px 0 14px;
}

.post-content p { margin-bottom: 20px; line-height: 1.95; color: var(--text); }
.post-content ul, .post-content ol { margin: 16px 0 20px 28px; }
.post-content li { margin-bottom: 8px; line-height: 1.9; }
.post-content img { margin: 28px 0; border: 1px solid var(--gray-200); max-width: 100%; height: auto; display: block; }
.post-content iframe { max-width: 100%; width: 100%; display: block; }
.post-content pre { max-width: 100%; overflow-x: auto; }
/* Videos match image styling */
.post-content .wp-block-video,
.post-content figure.wp-block-video { margin: 28px 0; }
.post-content .wp-block-video video,
.post-content figure.wp-block-video video { width: 100%; max-width: 100%; height: auto; border: 1px solid var(--gray-200); border-radius: 4px; display: block; }
.post-content figure.wp-block-video figcaption { font-family: 'Noto Sans JP', sans-serif; font-size: .8rem; color: var(--text-light); text-align: center; margin-top: 8px; }
.post-content figure.wp-block-video.alignleft { float: none; width: 100%; }
.post-content table { width: 100%; max-width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 0.88rem; font-family: 'Noto Sans JP', sans-serif; overflow-x: auto; display: block; }
.post-content table td img { max-width: 100%; height: auto; }
/* WordPress Cocoon blank-box */
.blank-box { border: 1.5px solid var(--gray-200); border-radius: 10px; padding: 20px 24px; margin: 24px 0; background: var(--cream-dark); }
.blank-box p { margin-bottom: 10px; font-family: 'Noto Sans JP', sans-serif; font-size: .9rem; color: var(--brown); line-height: 1.9; }
.blank-box p:first-child { font-weight: 700; letter-spacing: .08em; color: var(--copper); margin-bottom: 12px; }
.blank-box p:last-child { margin-bottom: 0; font-size: .8rem; color: var(--text-light); }
.post-content th { background: var(--brown); color: var(--white); padding: 12px 20px; text-align: left; }
.post-content td { padding: 12px 20px; border-bottom: 1px solid var(--gray-200); }
.post-content tr:hover td { background: var(--gray-100); }

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 28px;
}

.widget-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.sidebar-cats { list-style: none; }
.sidebar-cats li { padding: 10px 0; border-bottom: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: space-between; }
.sidebar-cats a { font-family: 'Noto Sans JP', sans-serif; font-size: 0.85rem; color: var(--brown-light); transition: var(--transition); }
.sidebar-cats a:hover { color: var(--copper); }
.sidebar-cats .count { font-family: 'Noto Sans JP', sans-serif; font-size: 0.75rem; color: var(--gray-400); }

.aff-widget-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.82rem;
  color: var(--brown-light);
  transition: var(--transition);
}
.aff-widget-item:last-child { border-bottom: none; }
.aff-widget-item:hover { color: var(--copper); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--cream-dark);
  padding: 14px 40px;
  border-bottom: 1px solid var(--gray-200);
}
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 10px; font-family: 'Noto Sans JP', sans-serif; font-size: 0.78rem; color: var(--gray-600); }
.breadcrumb a { color: var(--brown-light); transition: var(--transition); }
.breadcrumb a:hover { color: var(--copper); }

/* ===== FOOTER ===== */
.site-footer {
  background: #D4EBF8;
  color: var(--text-light);
  padding: 80px 40px 40px;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(11,61,114,0.12);
}

.footer-logo-main { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.3rem; color: var(--brown); letter-spacing: 0.05em; margin-bottom: 4px; }
.footer-logo-sub { font-family: 'Noto Serif JP', serif; font-size: 0.65rem; color: var(--text-light); letter-spacing: 0.2em; margin-bottom: 20px; }
.footer-brand p { font-family: 'Noto Sans JP', sans-serif; font-size: 0.82rem; line-height: 2; }

.footer-col h4 { font-family: 'Noto Sans JP', sans-serif; font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--copper); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-family: 'Noto Sans JP', sans-serif; font-size: 0.82rem; color: var(--text-light); transition: var(--transition); }
.footer-links a:hover { color: var(--copper); }

/* ===== FOOTER CONNECT BAR ===== */
.footer-connect {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(11,61,114,0.12);
}
.footer-connect-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 48px;
  text-decoration: none;
  color: var(--brown);
  transition: all 0.3s;
  border-right: 1px solid rgba(11,61,114,0.12);
  cursor: pointer;
  background: none;
  border-top: none;
  border-bottom: none;
  border-left: none;
}
.footer-connect-btn:last-child { border-right: none; }
.footer-connect-btn:hover { color: var(--copper); transform: translateY(-3px); }
.footer-connect-icon {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.footer-connect-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-family: 'Noto Sans JP', sans-serif; font-size: 0.75rem; color: var(--gray-600); }
.footer-social { display: flex; gap: 10px; align-items: center; }
.footer-social-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: #000; border-radius: 8px; color: #fff; text-decoration: none; transition: opacity 0.3s, transform 0.2s; }
.footer-social-link:hover { opacity: 0.75; transform: translateY(-2px); }

@media (max-width: 600px) {
  .footer-connect-btn { padding: 16px 24px; }
  .footer-connect-label { font-size: 0.6rem; }
}

/* ===== SECTION DIVIDER ===== */
.section-divider { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.divider-line { border: none; border-top: 1px solid var(--gray-200); margin: 64px 0; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== CATEGORY PAGE LAYOUT ===== */
.category-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 40px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header-inner, .categories-inner, .main-content, .breadcrumb, .post-layout, .site-footer { padding-left: 24px; padding-right: 24px; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .affiliate-grid { grid-template-columns: repeat(2, 1fr); }
  .post-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .category-layout { padding: 40px 24px; gap: 40px; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .site-nav.open { display: flex; flex-direction: column; align-items: stretch; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); padding: 16px 24px 100px; border-bottom: 1px solid var(--gray-200); z-index: 9999; max-height: calc(100dvh - 72px); overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior-y: contain; }
  /* ハンバーガーメニュー内のトップレベル項目 */
  .site-nav.open > li > a,
  .site-nav.open > li.has-sub > a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--brown);
    padding: 4px 0;
    letter-spacing: 0.05em;
    display: block;
  }
  .site-nav.open > li {
    border-bottom: 1px solid var(--gray-100);
    padding: 0;
  }
  .hero { height: 80vh; }
  .hero-title { font-size: 2.4rem; }
  .posts-grid { grid-template-columns: 1fr; gap: 40px; }
  .posts-grid.featured > .post-card:first-child { grid-column: 1; display: flex; flex-direction: column; height: auto; }
  .posts-grid.featured > .post-card:first-child .card-thumb { aspect-ratio: 4/3; height: auto; }
  .posts-grid.featured > .post-card:first-child .card-body { padding: 24px 28px; }
  .posts-grid.featured > .post-card:first-child .card-title { font-size: 1rem; }
  .main-content { padding: 60px 20px; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 0.74rem; letter-spacing: 0.18em; gap: 12px; }
  .section-title::before, .section-title::after { width: 24px; }
  .affiliate-grid { grid-template-columns: 1fr; }
  .affiliate-section { padding: 40px 16px; }
  .post-layout { padding-left: 0; padding-right: 0; }
  .post-body { padding: 32px 20px; }
  .post-hero-content { padding: 0 20px; }
  .breadcrumb { padding-left: 20px; padding-right: 20px; }
  .site-footer { padding-left: 20px; padding-right: 20px; }
  .header-inner { padding-left: 20px; padding-right: 20px; overflow: hidden; }
  .site-logo { min-width: 0; flex-shrink: 1; overflow: hidden; }
  .logo-main { font-size: 1.15rem; overflow: hidden; text-overflow: ellipsis; }
  .post-content figure { max-width: 100%; overflow: hidden; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links li { margin-bottom: 6px; }
  .footer-col h4 { margin-bottom: 10px; }
  /* カテゴリーページ: モバイルでサイドバーを下に */
  .category-layout {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 24px;
  }
}

/* ===== SPEECH BALLOON (吹き出し) ===== */
.speech-wrap { display: flex; align-items: flex-start; gap: 14px; margin: 28px 0; }
.speech-person { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; }
.speech-icon { display: block; box-sizing: content-box; margin: 0; padding: 0; width: 60px; height: 60px; border-radius: 50%; overflow: hidden; border: 2px solid #B8D0E8; box-shadow: 0 2px 10px rgba(0,0,0,.12); flex-shrink: 0; }
.speech-icon img.speech-icon-image { display: block; width: 44px; height: 44px; object-fit: cover; margin: 8px !important; border: none !important; }
.speech-name { font-family: 'Noto Sans JP', sans-serif; font-size: .65rem; color: var(--brown-light); letter-spacing: .05em; white-space: nowrap; }
.speech-balloon { position: relative; background: var(--cream-dark); border: 1px solid var(--gray-200); border-radius: 12px; padding: 14px 18px; font-family: 'Noto Sans JP', sans-serif; font-size: .9rem; color: var(--brown); line-height: 1.8; max-width: 520px; }
.speech-balloon::before { content: ''; position: absolute; left: -10px; top: 18px; border: 6px solid transparent; border-right-color: var(--gray-200); }
.speech-balloon::after { content: ''; position: absolute; left: -8px; top: 19px; border: 5px solid transparent; border-right-color: var(--cream-dark); }
.speech-balloon p { margin: 0; }

/* ===== NEXT ARTICLE CARD (次の記事) ===== */
.next-article-card { display: flex; align-items: center; border: 1px solid var(--gray-200); border-radius: 10px; overflow: hidden; margin: 12px 0 32px; text-decoration: none; transition: box-shadow 0.3s, transform 0.3s; background: var(--white); }
.next-article-card:hover { box-shadow: 0 6px 28px rgba(11,61,114,.16); transform: translateY(-2px); }
.next-card-thumb { width: 120px; height: 90px; flex-shrink: 0; overflow: hidden; }
.next-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.next-article-card:hover .next-card-thumb img { transform: scale(1.05); }
.next-card-placeholder { width: 120px; height: 90px; display: flex; align-items: center; justify-content: center; background: var(--cream-dark); font-size: 2rem; }
.next-card-body { padding: 14px 18px; flex: 1; min-width: 0; }
.next-card-label { display: block; font-family: 'Noto Sans JP', sans-serif; font-size: 0.68rem; letter-spacing: 0.14em; color: var(--copper); margin-bottom: 6px; }
.next-card-title { font-family: 'Noto Serif JP', serif; font-size: 0.88rem; color: var(--brown); line-height: 1.6; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.auto-next-article { margin: 32px 0 8px; }
.next-article-label-text { font-family: 'Noto Sans JP', sans-serif; font-size: 0.82rem; color: var(--text-light); margin-bottom: 10px; }

/* ===== AdSense 空白スペース対策 ===== */
/* 広告が未表示の場合はコンテナごと非表示にする */
ins.adsbygoogle[data-ad-status="unfilled"] {
  display: none !important;
}
div:has(> ins.adsbygoogle[data-ad-status="unfilled"]) {
  display: none !important;
}
/* AdSenseがモバイルで幅オーバーしないよう制約 */
ins.adsbygoogle {
  max-width: 100% !important;
}

/* ===== スマホ（タッチデバイス）専用修正 ===== */
@media (hover: none) and (pointer: coarse) {
  /* タッチデバイスではhoverエフェクトを無効化 */
  .post-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--gray-200);
  }
  /* タップ時のフィードバック */
  .post-card:active {
    opacity: 0.85;
    transition: opacity 0.1s;
  }
  /* タップ領域を最低44pxに */
  .card-read-more {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  /* 記事本文のフォントサイズ調整 */
  .post-content p {
    font-size: 1rem;
    line-height: 2;
  }
  /* サイドバーを記事下に移動（スクロール時の邪魔を防ぐ） */
  .post-layout {
    gap: 40px;
  }
  /* ナビメニューのタップ領域を広く */
  .site-nav li a {
    padding: 14px 0;
    display: block;
    min-height: 44px;
  }
}
