/*
Theme Name: Revana Café
Author: Revana Café
Version: 1.0.0
Text Domain: revana
*/


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

:root {
  --green-dark: #1a2e1a;
  --gold:       #c8a84b;
  --gold-light: #e8c96a;
  --cream:      #f4f0e8;
  --black:      #0d1a0d;
  --line-green: #00b900;
  --fade-dur:   600ms;
}

/* ── 全要素のデフォルト色をリセット ── */
* { color: inherit; }

body {
  font-family: 'Barlow', Georgia, sans-serif;
  color: var(--cream);
  overflow-x: hidden;
}

a { text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.site-header {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── SLIDER ── */
.slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity var(--fade-dur) ease;
  filter: brightness(0.95) saturate(1.0);
}
.slide.active { opacity: 1; }

.slide:nth-child(1) { background-image: url('https://images.unsplash.com/photo-1536819114556-1e10f967fb61?w=1600&q=80'); }
.slide:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1574169208507-84376144848b?w=1600&q=80'); }
.slide:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1559056199-641a0ac8b55e?w=1600&q=80'); }
.slide:nth-child(4) { background-image: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?w=1600&q=80'); }
.slide:nth-child(5) { background-image: url('https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?w=1600&q=80'); }

/* vignette */
.slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,46,26,0.28) 0%, rgba(13,26,13,0.05) 50%, rgba(26,46,26,0.22) 100%);
  pointer-events: none;
}

/* bottom fade */
.hero-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38%;
  background: linear-gradient(to top, rgba(13,26,13,0.55) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* ── SLIDE DOTS ── */
.slide-dots {
  position: absolute;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: transparent;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.25);
}
.dot:hover { background: rgba(200,168,75,0.5); }

/* ── TOPBAR ── */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s, transform 0.35s ease;
}

/* スクロール後：半透明背景 */
.topbar.scrolled {
  background: rgba(15, 15, 15, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 40px;
}

/* 下スクロール時：上に隠れる */
.topbar.hidden {
  transform: translateY(-100%);
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);        /* ← リンク色を明示的に指定 */
}

.logo-img{
	width: 110px;
	height: auto;
}

.logo-img img{
	width: 100%;
	height: auto;
}
.logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-light);        /* ← 明示 */
  line-height: 1;
  display: block;
}

.logo-sub {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(232,201,106,0.60);   /* ← 明示 */
  margin-top: 4px;
  display: block;
}

/* Burger */
.burger {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 20px; height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.burger:hover span { background: #fff; }

/* スクロール後も白のまま */
.topbar.scrolled .burger {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
}
.topbar.scrolled .burger span { background: #fff; }
.topbar.scrolled .burger:hover span { background: #fff; }

/* 開いた状態：×に変換 */
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO BODY ── */
.hero-body {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.hero-content { animation: fadeUp 0.85s ease both; }

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

.hero-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);              /* ← 明示 */
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 600;
  line-height: 1;
  color: var(--cream);             /* ← 明示 */
  margin-bottom: 18px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);        /* ← 明示 */
}

.hero-desc {
  font-size: clamp(13px, 1.6vw, 15px);
  font-weight: 300;
  line-height: 1.3;
  color: rgba(244,240,232,0.76);   /* ← 明示 */
  max-width: 460px;
}

/* ── BOTTOM ROW ── */
.hero-bottom {
  position: absolute;
  bottom: 125px;
  left: 40px; right: 40px;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
}

/* ══════════════════════════════════
   BTN-MORE (共通アウトラインボタン)
══════════════════════════════════ */
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 26px;
  background: transparent;
  color: var(--cream);             /* ← 明示 */
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1.5px solid rgba(200,168,75,0.55);
  border-radius: 2px;
  transition: background 0.22s, border-color 0.22s, color 0.22s;
}
.btn-more:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
/* 矢印 SVG */
.btn-more .arrow {
  width: 13px; height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform 0.22s;
}
.btn-more:hover .arrow { transform: translateX(3px); }

/* LINE バリアント */
.btn-more.btn-line-outline {
  border-color: rgba(0,185,0,0.50);
  color: #8de88d;                  /* ← 明示：緑系テキスト */
}
.btn-more.btn-line-outline .line-ico {
  fill: currentColor;
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.btn-more.btn-line-outline:hover {
  background: var(--line-green);
  border-color: var(--line-green);
  color: #fff;
}

/* ══════════════════════════════════
   FIXED LINE FAB
══════════════════════════════════ */
.line-fab {
  position: fixed;
  right: 24px; bottom: 85px;
  z-index: 200;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--line-green);
  border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(0,185,0,0.38);
  transition: transform 0.2s, box-shadow 0.2s;
}
.line-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,185,0,0.55);
}
.line-fab svg { width: 30px; height: 30px; fill: #fff; display: block; }

.line-fab::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(0,185,0,0.38);
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(1.28); opacity: 0; }
  100% { opacity: 0; }
}

/* ══════════════════════════════════
   LINE LIGHTBOX
══════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.72);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }

.lb-card {
  background: #1e3320;
  border: 1px solid rgba(200,168,75,0.35);
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  position: relative;
  animation: lbIn 0.26s cubic-bezier(0.34,1.4,0.64,1) both;
  color: var(--cream);
}
@keyframes lbIn {
  from { opacity: 0; transform: scale(0.90) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* カラーバー上部 */
.lb-bar {
  background: var(--line-green);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.lb-bar svg {
  width: 32px; height: 32px;
  fill: #fff;
  flex-shrink: 0;
}
.lb-bar-title {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.06em;
}

/* 本文エリア */
.lb-body {
  padding: 28px 28px 28px;
}

.lb-close {
  position: absolute;
  top: 14px; right: 16px;
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.18);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s;
}
.lb-close:hover { background: rgba(255,255,255,0.32); }

.lb-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(244,240,232,0.82);
  margin-bottom: 24px;
}
.lb-text strong {
  color: var(--gold-light);
  font-weight: 500;
}

.lb-body .btn-more {
  width: 100%;
  justify-content: center;
  border-color: var(--line-green);
  color: #5dd85d;
  padding: 13px 20px;
  font-size: 13px;
}
.lb-body .btn-more:hover {
  background: var(--line-green);
  border-color: var(--line-green);
  color: #fff;
}

/* ══════════════════════════════════
   DRAWER
══════════════════════════════════ */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.52);
  z-index: 90;
}
.drawer-overlay.open { display: block; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 320px;
  background: #152615;
  border-left: 1px solid rgba(255,255,255,0.1);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.30s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--cream);
}
.drawer.open { transform: translateX(0); }

/* ドロワー上部ヘッダー */
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.drawer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff !important;
  letter-spacing: 0.1em;
}
.drawer-logo span {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: rgba(232,201,106,0.55);
  display: block;
  margin-top: 2px;
  font-family: 'Barlow', sans-serif;
  text-transform: uppercase;
}

.drawer-x {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s;
  flex-shrink: 0;
}
.drawer-x:hover { background: rgba(255,255,255,0.15); }

/* ナビ */
.drawer-nav {
  flex: 0 0 auto;
  padding: 8px 0;
}
.drawer-nav a {
  display: flex;
  align-items: center;
  padding: 0 28px;
  height: 52px;
  color: rgba(244,240,232,0.85);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.12em;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  white-space: nowrap;
}
.drawer-nav a:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding-left: 36px;
}

/* フッターエリア */
.drawer-foot {
  padding: 16px 28px 24px;
  flex-shrink: 0;
}
.drawer-foot .btn-more {
  width: 100%;
  justify-content: center;
  border-color: rgba(0,185,0,0.55);
  color: #6ee86e;
  padding: 13px 16px;
  font-size: 12px;
  gap: 10px;
}
.drawer-foot .btn-more:hover {
  background: var(--line-green);
  border-color: var(--line-green);
  color: #fff;
}
.drawer-foot .btn-more .line-ico,
.drawer-foot .btn-more .line-ico path {
  fill: currentColor;
  width: 16px; height: 16px;
  flex-shrink: 0;
}

/* ── MOBILE ── */
@media (max-width: 640px) {
  .topbar { padding: 16px 18px 0; }
  .logo-text { font-size: 18px; }
  .logo-mark { width: 44px; height: 44px; }
  .logo-sub { display: none; }
  .hero-body { padding: 0 20px; }
  .hero-title { font-size: clamp(28px, 9vw, 38px); }
  .hero-bottom {
    left: 18px; right: 18px;
    bottom: 68px;
    justify-content: center;
  }
  .btn-more { width: 100%; justify-content: center; }

  .slide-dots { bottom: 108px; }
}


.strain-section {
  background: #fff;
  padding: 0 0 64px;
  font-family: 'Barlow', sans-serif;
}

/* タブ */
.strain-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 2px solid #c8ddb0;
}

.strain-tab {
  padding: 18px 12px;
  background: #eaf4de;
  border: none;
  border-right: 1px solid #c8ddb0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  color: #4a7a30;
  letter-spacing: 0.04em;
  cursor: pointer;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
.strain-tab:last-child { border-right: none; }
.strain-tab.active {
  background: #c8ddb0;
  font-weight: 700;
  color: #2d5a1a;
}
.strain-tab.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 3px;
  background: #4a7a30;
}
.strain-tab:hover:not(.active) { background: #daefc8; }

/* グリッド */
.strain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 96%;
  margin: 40px auto 36px;
  padding: 0;
}

/* カード */
.strain-card { background: #fff; border-radius: 6px; }

.card-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #ebebeb center/cover no-repeat;
  border-radius: 6px;
  margin-bottom: 16px;
  overflow: hidden;
}

/* タイプ別写真 */
.card-arrival {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #555;
  white-space: nowrap;
}

.card-body { text-align: center; }

.card-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.card-lineage {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card-meta {
  font-size: 13px;
  font-weight: 300;
  color: #555;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* THC + effタグ横並び */
.card-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-bottom: 12px;
}

.card-eff-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

.card-eff-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #4a7a30;
  background: #f0f7ec;
  border: 1px solid #c8ddb0;
  white-space: nowrap;
}

.card-btn {
  display: block;
  width: 100%;
  padding: 13px 0;
  background: #4a7a30;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}
.card-btn:hover { background: #3a6020; }

/* フッター */
.strain-footer {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  width: 96%;
  margin: 0 auto;
  padding: 0;
}

.strain-all-type,
.strain-all {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  border: 1.5px solid #4a7a30;
  border-radius: 4px;
  background: #fff;
  color: #4a7a30;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.strain-all-type:hover,
.strain-all:hover { background: #4a7a30; color: #fff; }

/* ── MOBILE ── */
@media (max-width: 640px) {
  .strain-tab { font-size: 15px; padding: 14px 6px; }

  /* 横スクロール：72vw幅で次のカードが少し見える */
  .strain-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 0 20px 12px;
    margin: 24px 0 28px;
    scrollbar-width: none;
  }
  .strain-grid::-webkit-scrollbar { display: none; }

  .strain-card {
    flex: 0 0 72vw;
    scroll-snap-align: start;
  }

  .card-name  { font-size: 18px; }

  /* フッターボタンは縦並び・全幅 */
  .strain-footer {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
    gap: 10px;
  }
  .strain-all-type,
  .strain-all { justify-content: center; padding: 13px 16px; }
}

/* フェードイン */
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.strain-card.visible { animation: cardFadeIn 0.3s ease both; }


/* ════════════════════════════════════════════
   FEATURE SECTION — 上2正方形 + 下1長方形
   style.css の既存 feature ブロックと
   差し替えてください（833行目付近）
════════════════════════════════════════════ */

/* 不要になった旧クラスをリセット */
.feature-card-tall,
.feature-card-tall .fc-img,
.fc-body-second { all: unset; }

/* ── グリッド本体 ── */
.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  font-family: 'Barlow', sans-serif;
}

/* ── 共通カード ── */
.feature-card {
  position: relative;
  aspect-ratio: 1 / 1;   /* 正方形 */
  overflow: hidden;
}

/* 下段：横幅全体の長方形 */
.feature-card-wide {
  grid-column: 1 / -1;   /* 2カラム分 */
  aspect-ratio: 16 / 7;  /* 横長 */
}

/* 背景写真 */
.fc-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.feature-card:hover .fc-img { transform: scale(1.04); }

/* 白いテキストボックス */
.fc-body {
  position: absolute;
  bottom: 32px;
  left: 32px;
  width: min(55%, 320px);
  background: #fff;
  border-radius: 8px;
  padding: 24px 24px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.fc-title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin-bottom: 10px;
}

.fc-text {
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 300;
  color: #444;
  line-height: 1.75;
  margin-bottom: 16px;
}

.fc-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.fc-more:hover { color: #4a7a30; border-color: #4a7a30; }
.fc-more svg {
  width: 14px; height: 9px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.fc-more:hover svg { transform: translateX(3px); }

/* ── MOBILE (≤640px) ── */
@media (max-width: 640px) {
  .feature-section {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card-wide {
    grid-column: auto;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
  }

  .fc-img {
    position: relative;
    height: 220px;
    flex-shrink: 0;
  }

  .fc-body {
    position: relative;
    bottom: auto; left: auto;
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid #eee;
    padding: 20px 20px 24px;
  }

  .fc-title { font-size: 17px; }
  .fc-text  { font-size: 13px; }
}

/* ════════════════════════════════════════════
   SHARED — セクション共通
════════════════════════════════════════════ */
.section-heading {
  font-family: 'Barlow', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.04em;
  padding: 0 4%;
  margin-bottom: 20px;
}

.section-footer {
  display: flex;
  justify-content: flex-end;
  padding: 16px 4% 0;
}

.section-all-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  border: 1.5px solid #4a7a30;
  border-radius: 4px;
  color: #4a7a30;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.section-all-btn:hover { background: #4a7a30; color: #fff; }

/* 横スクロールトラック共通 */
.hscroll-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 4% 12px;
  scrollbar-width: none;
}
.hscroll-track::-webkit-scrollbar { display: none; }

/* PC：カード固定幅で4枚表示＋5枚目が半分見切れ */
@media (min-width: 641px) {
  .blog-track .blog-card     { flex: 0 0 280px; min-width: 0; }
  .review-track .review-card { flex: 0 0 280px; min-width: 0; }
}

/* ════════════════════════════════════════════
   SHOP SECTION
════════════════════════════════════════════ */
.shop-section {
  background: #fff;
  padding: 50px 0 32px;
  font-family: 'Barlow', sans-serif;
	margin-bottom: 40px;
}

/* PC：グリッド表示 */
.shop-track {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px;
  padding: 0 4%;
  margin-bottom: 20px;
  overflow: visible !important;
  flex-wrap: unset !important;
}

.shop-card { text-align: center; }

.shop-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #e8e8e8 center/cover no-repeat;
  border-radius: 6px;
  margin-bottom: 12px;
}

.shop-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.shop-price {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}

.shop-btn {
  display: block;
  padding: 10px 0;
  background: #4a7a30;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s;
}
.shop-btn:hover { background: #3a6020; }

/* ════════════════════════════════════════════
   BLOG SECTION
════════════════════════════════════════════ */
.blog-section {
  background: #fff;
  padding: 48px 0 40px;
  font-family: 'Barlow', sans-serif;
  border-top: 1px solid #f0f0f0;
  overflow: hidden;
}

.blog-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.blog-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #111 center/cover no-repeat;
  border-radius: 6px;
  margin-bottom: 12px;
}

.blog-title  {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
  margin-bottom: 6px;
  margin-left: 5px;
}

.blog-date  {
  font-size: 12px;
  color: #888;
  margin-left: 5px;
  margin-bottom: 5px;
}

/* ════════════════════════════════════════════
   GOOGLE REVIEW SECTION
════════════════════════════════════════════ */

.review-section {
  padding: 80px 0;
  overflow: hidden;
  background: #f0f0f0
}

/* 横スクロール */
.review-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 20px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.review-track::-webkit-scrollbar {
  display: none;
}

/* レビューカード */
.review-card {
  flex: 0 0 300px;
  scroll-snap-align: start;

  background: #fff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;

  padding: 20px;

  display: flex;
  flex-direction: column;
  gap: 14px;

  overflow: hidden;

  transition: all 0.25s ease;
}

/* ヘッダー */
.rv-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* アバター */
.rv-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  font-weight: 700;
  color: #fff;

  overflow: hidden;

  font-family: 'Barlow', sans-serif;
}

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

/* 名前 */
.rv-meta {
  flex: 1;
}

.rv-name {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.2;
}

.rv-when {
  display: none;
}

/* Google アイコン */
.rv-g-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* 星 */
.rv-stars {
  display: flex;
  gap: 4px;
}

.rv-star {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* 本文 */
.rv-text {
  font-size: 13px;
  color: #333;
  line-height: 1.9;

  max-height: 100px;
  overflow: hidden;

  transition: max-height 0.25s ease;
}

/* 開いた状態 */
.review-card.open .rv-text {
  max-height: 1000px;
}

/* See more */
.rv-seemore {
  background: none;
  border: none;
  padding: 0;

  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;

  cursor: pointer;
  text-align: left;

  font-family: 'Barlow', sans-serif;
}

.rv-seemore:hover {
  color: #4a7a30;
}

/* Google Map ボタン */
.review-map-footer {
  display: flex;
  justify-content: center;
  padding: 32px 0 40px;
}

.google-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 48px;

  border: 1.5px solid #4a7a30;
  border-radius: 4px;

  color: #4a7a30;

  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;

  text-decoration: none;

  transition: background 0.2s, color 0.2s;
}

.google-map-btn:hover {
  background: #4a7a30;
  color: #fff;
}

/* モバイル */
@media (max-width: 768px) {

  .review-section {
    padding: 56px 0;
  }

  .review-track {
    gap: 14px;
    padding: 8px 16px 16px;
  }

  .review-card {
    flex: 0 0 85%;
    padding: 18px;
  }

  .rv-text {
    font-size: 13px;
  }

}

/* ════════════════════════════════════════════
   MOBILE (≤640px)
════════════════════════════════════════════ */
@media (max-width: 640px) {

  .section-heading { font-size: 18px; }

  /* Shop：横スクロールに切り替え */
  .shop-track {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 0 4% 12px;
    scrollbar-width: none;
    margin-bottom: 0;
  }
  .shop-track::-webkit-scrollbar { display: none; }

  .shop-card {
    flex: 0 0 56vw;
    scroll-snap-align: start;
  }

  /* Blog カード幅 */
  .blog-card { flex: 0 0 72vw; }

  /* Review カード幅 */
  .review-card { flex: 0 0 80vw; }

  .google-map-btn { padding: 12px 32px; }
}


/* ════════════════════════════════════════════
   LINE CTA BANNER
════════════════════════════════════════════ */
.line-banner {
  position: relative;
  /* パララックス背景 */
  background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=80');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  font-family: 'Barlow', sans-serif;
}

/* 暗いオーバーレイ */
.line-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 10, 0.62);
}

.line-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.lb-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #00b900;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.lb-eyebrow::before,
.lb-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: #00b900;
  opacity: 0.7;
}

.lb-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  color: #f4f0e8;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.lb-body {
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 300;
  color: rgba(244, 240, 232, 0.78);
  line-height: 1.9;
  margin-bottom: 40px;
}

/* CTAボタン */
.lb-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  background: #00b900;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.22s, transform 0.18s;
}

.lb-cta:hover {
  background: #009900;
  transform: translateY(-2px);
}

.lb-cta svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

/* スマホ：background-attachment:fixedが効かないブラウザ対応 */
@media (max-width: 640px) {
  .line-banner {
    background-attachment: scroll;
    padding: 72px 24px;
  }

  .lb-cta {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
  }
}


/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: #111e11;
  color: rgba(244,240,232,0.75);
  font-family: 'Barlow', sans-serif;
}

.footer-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 4% 56px;
}

/* ── ブランドエリア ── */
.footer-brand {
  flex-shrink: 0;
  width: 160px;
}

.footer-logo{
	width: 100px;
	height: auto;
}

.footer-logo img{
	width: 100%;
	height: auto;
}

.footer-logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: #e8c96a;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(244,240,232,0.45);
  line-height: 1.6;
}

/* ── ナビエリア ── */
.footer-nav {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 20px;
}

.footer-sns-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 300;
  color: rgba(244,240,232,0.65); padding: 4px 0;
  letter-spacing: 0.04em; transition: color 0.18s, padding-left 0.18s;
}
.footer-sns-link:hover { color: #e8c96a; padding-left: 6px; }
.footer-sns-ico { width: 14px; height: 14px; flex-shrink: 0; opacity: 0.7; }

.footer-col-head {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8c96a;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(200,168,75,0.2);
}

.footer-col a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: rgba(244,240,232,0.65);
  text-decoration: none;
  padding: 4px 0;
  letter-spacing: 0.04em;
  transition: color 0.18s, padding-left 0.18s;
}
.footer-col a:hover {
  color: #e8c96a;
  padding-left: 6px;
}

/* ── ボトムバー ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 18px 4%;
  text-align: center;
}

.footer-copy {
  font-size: 11px;
  font-weight: 300;
  color: rgba(244,240,232,0.35);
  letter-spacing: 0.06em;
}

/* ── MOBILE ── */
@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    gap: 36px;
    padding: 48px 6% 40px;
  }

  .footer-brand { width: 100%; }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
    width: 100%;
  }
}


/* topbar fixed 対応：ヒーローの高さ補正不要（absoluteで重ねてるため） */
@media (max-width: 640px) {
  .topbar { padding: 14px 18px; }
  .topbar.scrolled { padding: 10px 18px; }
}



/* ================================================
   WordPress リセット（WPデフォルトCSS上書き）
================================================ */
/* WPのコンテンツ幅制限を解除 */
.shop-section,
.strain-section,
.feature-section,
.blog-section,
.line-banner,
.site-footer {
  max-width: none !important;
  width: 100% !important;
  box-sizing: border-box;
}

/* shop-track を確実に4カラムグリッドに */
.shop-track {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  overflow: visible !important;
}


/* ── MOBILE ── */
@media (max-width: 640px) {
  .topbar { padding: 16px 18px 0; }
  .logo-text { font-size: 18px; }
  .logo-sub { display: none; }
  .hero-body { padding: 0 20px; }
  .hero-title { font-size: clamp(28px, 9vw, 38px); }
  .hero-bottom {
    left: 18px; right: 18px;
    bottom: 68px;
    justify-content: center;
  }
  .btn-more { width: 100%; justify-content: center; }
  .line-fab  {
        right: 20px;
        bottom: 85px;
        width: 50px;
        height: 50px;
    }
  .line-fab svg { width: 26px; height: 26px; }
  .slide-dots { bottom: 108px; }
	
/* shop-track を確実に4カラムグリッドに */
.shop-track {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  overflow: visible !important;
}


}


.googlemap-btn{
	text-align:center;
	padding:0 0 48px;
	margin-top: 20px;
}

/* ══════════════════════
   ABOUT MAIN
══════════════════════ */
.about-main { display:flex; flex-direction:column; gap:0; }

/* ── セクションブロック（写真＋テキストの交互） ── */
.about-block {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  min-height:420px;
  background:#fff;
  border:1px solid #ddd;
  border-radius:10px;
  overflow:hidden;
  margin-bottom:24px;
}

/* 写真が右のとき */
.about-block.img-right { }
/* 写真が左のとき */
.about-block.img-left { }

/* ── フォトスライダー ── */
.about-slider {
  position:relative;
  overflow:hidden;
  min-height:380px;
}
.about-slide {
  position:absolute; inset:0;
  background:center/cover no-repeat;
  opacity:0;
  transition:opacity 0.6s ease;
}
.about-slide.active { opacity:1; }

/* スライダー矢印 */
.slider-btn {
  position:absolute; top:50%; transform:translateY(-50%);
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,0.85); border:none;
  display:flex; align-items:center; justify-content:center;
  z-index:10; transition:background 0.18s;
  box-shadow:0 2px 8px rgba(0,0,0,0.15);
}
.slider-btn:hover { background:#fff; }
.slider-btn.prev { left:12px; }
.slider-btn.next { right:12px; }
.slider-btn svg { width:14px; height:14px; stroke:#333; fill:none; stroke-width:2.5; }

/* スライダードット */
.slider-dots {
  position:absolute; bottom:12px; left:50%; transform:translateX(-50%);
  display:flex; gap:6px; z-index:10;
}
.slider-dot {
  width:6px; height:6px; border-radius:50%;
  background:rgba(255,255,255,0.5); border:none; cursor:pointer;
  transition:background 0.2s;
}
.slider-dot.active { background:#fff; }

/* ── テキストエリア ── */
.about-text {
  padding:40px 44px;
  display:flex; flex-direction:column; justify-content:center; gap:16px;
}

.about-eyebrow {
  font-size:10px; font-weight:500; letter-spacing:0.28em;
  text-transform:uppercase; color:#4a7a30;
  display:flex; align-items:center; gap:8px;
}
.about-eyebrow::before {
  content:''; display:inline-block; width:24px; height:1px; background:#4a7a30;
}

.about-section-title {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(22px,2.5vw,30px); font-weight:600;
  color:#1a1a1a; line-height:1.25; letter-spacing:0.02em;
}

.about-section-body {
  font-size:14px; font-weight:300; color:#555;
  line-height:1.9;
}
.about-section-body p { margin-bottom:12px; }
.about-section-body p:last-child { margin-bottom:0; }

.about-caption {
  margin-top:4px; padding-top:14px;
  border-top:1px solid #ddd;
  font-size:11px; font-weight:400; letter-spacing:0.06em;
  color:#aaa; font-style:italic;
}

/* ── フォト上の役職ラベル ── */
.about-role-label {
  position:absolute; bottom:16px; left:16px; z-index:10;
  background:rgba(13,26,13,0.75); color:var(--gold-light);
  font-size:11px; font-weight:500; letter-spacing:0.14em;
  text-transform:uppercase; padding:5px 14px; border-radius:20px;
  backdrop-filter:blur(4px);
}

/* ══════════════════════
   TOPBAR
══════════════════════ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  transition: background 0.3s, padding 0.3s, transform 0.35s ease;
}
.topbar.scrolled {
  background: rgba(13,26,13,0.90);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 12px 40px;
}
.topbar.hidden { transform: translateY(-100%); }
.logo-mark {
  width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 28px; height: 28px; display: block; }
.burger {
  width: 44px; height: 44px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 4px; background: rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.burger span { display:block; width:20px; height:1.5px; background:#fff; border-radius:2px; transition:transform 0.3s ease,opacity 0.3s ease; transform-origin:center; }
.burger.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg);}
.burger.open span:nth-child(2){opacity:0;transform:scaleX(0);}
.burger.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg);}

/* ══════════════════════
   PAGE HERO
══════════════════════ */
.page-hero {
  background: var(--green-dark);
  padding: 120px 40px 15px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  opacity: 0.35;
}
.page-hero-inner { position: relative; z-index: 1; width: 96%; max-width: 1200px; margin: 0 auto; }
.breadcrumb {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(232,201,106,0.7); margin-bottom: 12px;
}
.breadcrumb a { color: inherit; }
.breadcrumb a:hover { color: var(--gold-light); }
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px,5vw,56px); font-weight: 600; color: var(--cream);
}

/* ══════════════════════
   LAYOUT
══════════════════════ */
.page-wrap {
  display: flex;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 64px;
  align-items: flex-start;
}


/* ══════════════════════════════════
   SIDEBAR
══════════════════════════════════ */
.sidebar {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
}

/* ─ Filter ヘッダー ─ */
.sb-filter-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.sb-filter-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
}

.sb-clear {
  font-size: 11px;
  color: #4a7a30;
  background: none;
  border: none;
  letter-spacing: 0.04em;
  padding: 0;
}
.sb-clear:hover { text-decoration: underline; }

/* ─ タイプボタン群 ─ */
.sb-type-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 20px;
}

.type-btn {
  padding: 8px 6px;
  border: 1.5px solid #e2e2de;
  border-radius: 5px;
  background: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #555;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  text-align: center;
}

.type-btn.active {
  background: #4a7a30;
  border-color: #4a7a30;
  color: #fff;
  font-weight: 500;
}

/* ─ アコーディオンブロック ─ */
.sb-accordion {
  border-top: 1px solid #ddd;
}

.sb-acc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid #ddd;
}

.sb-acc-title {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #333;
}

.sb-acc-arrow {
  width: 14px; height: 14px;
  stroke: #888;
  fill: none;
  stroke-width: 2;
  transition: transform 0.25s;
  flex-shrink: 0;
}

.sb-acc-head.open .sb-acc-arrow {
  transform: rotate(180deg);
}

.sb-acc-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.sb-acc-body.open {
  max-height: 600px;
}

/* Effection チェックリスト */
.eff-list {
  padding: 10px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.eff-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 6px;
  border: 1.5px solid #ddd;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  user-select: none;
}

.eff-item:hover { border-color: #b0c8a0; }

.eff-item.active {
  border-color: #4a7a30;
  background: #f0f7ec;
}

.eff-item input[type="checkbox"] {
  margin-top: 1px;
  accent-color: #4a7a30;
  flex-shrink: 0;
  width: 14px; height: 14px;
}

.eff-item-text { flex: 1; }

.eff-item-name {
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  display: block;
  line-height: 1.3;
}

.eff-item-desc {
  font-size: 11px;
  font-weight: 300;
  color: #888;
  display: block;
  margin-top: 1px;
  line-height: 1.4;
}

/* Blog リンク */
.blog-list {
  padding: 10px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blog-list a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 300;
  color: #444;
  background: #fff;
  border: 1.5px solid #ddd;
  transition: border-color 0.18s, color 0.18s;
  letter-spacing: 0.04em;
}

.blog-list a:hover {
  border-color: #4a7a30;
  color: #4a7a30;
}

/* ══════════════════════════════════
   MAIN CONTENT
══════════════════════════════════ */
.main-content {
  flex: 1;
  padding-left: 32px;
  margin-bottom: 40px;
}
/* 結果件数 */
.result-count {
  font-size: 12px;
  color: #888;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.result-count span { color: #4a7a30; font-weight: 500; }

/* ─ カードリスト ─ */
.strain-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ─ カード ─ */
.sl-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.sl-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

/* 非表示状態 */
.sl-card.hidden-card { display: none; }


.sl-img {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 6px;
  background: #e8e8e8 center/cover no-repeat;
  overflow: hidden;
}

.sl-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sl-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: #111;
}

.sl-lineage {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #999;
  text-transform: uppercase;
}

.sl-meta {
  font-size: 13px;
  color: #555;
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* THC + effタグを横並び */
.sl-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0;
}

/* タイプバッジ */
.sl-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  width: fit-content;
}
.badge-sativa { background: #e8f5e0; color: #3a7020; }
.badge-hybrid { background: #e8f0e0; color: #4a6830; }
.badge-indica { background: #e0e8f5; color: #304878; }
.badge-cbd    { background: #f5f0e0; color: #786830; }

/* arrival は badge の下 */
.sl-arrival {
  font-size: 10px;
  color: #aaa;
  letter-spacing: 0.06em;
}

/* Effection タグ群 */
.sl-eff-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 2px;
}

.eff-tag {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #4a7a30;
  background: #f0f7ec;
  border: 1px solid #c8ddb0;
  white-space: nowrap;
}

/* 右側：MOREボタンを下端に配置 */
.sl-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: stretch;
  flex-shrink: 0;
}

.sl-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: #4a7a30;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  border-radius: 5px;
  transition: background 0.2s;
}
.sl-more:hover { background: #3a6020; }

/* no result */
.no-result {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
  font-size: 14px;
}
.no-result.show { display: block; }

/* ══════════════════════════════════
   MOBILE (≤768px) — サイドバーを上に
══════════════════════════════════ */
@media (max-width: 768px) {
  .page-wrap {
    flex-direction: column;
    padding-top: 72px;
  }

  .sidebar {
    width: 100%;
    position: static;
  }

  /* タイプボタンを横並びに */
  .sb-type-btns {
    grid-template-columns: repeat(4, 1fr);
  }

  .main-content { padding-left: 0; margin-top: 20px; }

  .sl-card { flex-wrap: wrap; }
  .sl-img  { width: 90px; height: 90px; }
  .sl-right { width: 100%; align-items: stretch; margin-top: 8px; }
  .sl-more { width: 100%; justify-content: center; }
}

/* Blog リンク */
.blog-list {
  padding: 10px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blog-list a {
  display: block;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 300;
  color: #444;
  background: #fff;
  border: 1.5px solid #ddd;
  transition: border-color 0.18s, color 0.18s;
  letter-spacing: 0.04em;
}

.blog-list a:hover {
  border-color: #4a7a30;
  color: #4a7a30;
}

/* 上部：件数 + ソート */
.content-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px;
}
.result-count { font-size: 13px; color: #888; }
.result-count span { color: #4a7a30; font-weight: 500; }
.sort-select {
  padding: 7px 12px; border: 1px solid #ddd;
  border-radius: 4px; background: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 12px; color: #555; cursor: pointer;
}

/* ── ブログカードグリッド ── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
  margin-right: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.blog-card-img {
  width: 100%; aspect-ratio: 16/9;
  background: #e8e8e8 center/cover no-repeat;
  position: relative; flex-shrink: 0;
}
.blog-card-cat {
  position: absolute; top: 12px; left: 12px;
  padding: 3px 10px; border-radius: 20px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cat-clinic  { background: #e8f5e0; color: #3a6020; }
.cat-farm    { background: #f5f0e0; color: #786830; }
.cat-cafe    { background: #e0e8f5; color: #304878; }
.cat-info    { background: #f5e8f0; color: #783060; }
.cat-strain  { background: #e8f0e0; color: #4a6830; }

.blog-card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.blog-card-date { font-size: 11px; color: #aaa; letter-spacing: 0.06em; }
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 600; color: #1a1a1a;
  line-height: 1.4; margin-bottom: 8px;
}
.blog-card-title:hover { color: #4a7a30; }
.blog-card-excerpt {
  font-size: 13px; font-weight: 300; color: #666;
  line-height: 1.75; flex: 1;
  display: -webkit-box; -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; overflow: hidden;
}
.blog-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding-top: 12px;
  border-top: 1px solid #f0f0ee;
}
.blog-card-more {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: #4a7a30;
  display: flex; align-items: center; gap: 5px;
}
.blog-card-more svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.2s; }
.blog-card:hover .blog-card-more svg { transform: translateX(3px); }

/* ── ページネーション ── */
.pagination {
  display: flex; justify-content: center; align-items: center; gap: 6px;
}
.page-btn {
  width: 38px; height: 38px; border-radius: 4px;
  border: 1.5px solid #ddd; background: #fff;
  font-family: 'Barlow', sans-serif; font-size: 13px; color: #555;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.page-btn:hover { border-color: #4a7a30; color: #4a7a30; }
.page-btn.active { background: #4a7a30; border-color: #4a7a30; color: #fff; font-weight: 500; }
.page-btn.arrow { font-size: 16px; }
.page-btn:disabled { opacity: 0.35; cursor: default; }

/* タグボタン（Strain / Effect / Item） */
.tag-btn-list { display: flex; flex-wrap: wrap; gap: 6px; padding: 30px 0 14px; }
.tag-btn {
  padding: 5px 12px; border-radius: 20px;
  border: 1.5px solid #ddd; background: #fff;
  font-family: 'Barlow', sans-serif; font-size: 11px; font-weight: 400;
  color: #555; letter-spacing: 0.06em; cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.tag-btn:hover { border-color: #b0c8a0; color: #3a6820; background: #4a7a30; color: #fff;}
.tag-btn.active { background: #4a7a30; border-color: #4a7a30; color: #fff; font-weight: 500; }
.cat-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 5px;
  border: 1.5px solid #ddd; background: #fff;
  cursor: pointer; transition: border-color 0.18s, background 0.18s;
  user-select: none;
}
.cat-item:hover { border-color: #b0c8a0; }
.cat-item.active { border-color: #4a7a30; background: #f0f7ec; }
.cat-item input[type="checkbox"] {
  accent-color: #4a7a30; width: 13px; height: 13px; flex-shrink: 0;
}
.cat-item-name { font-size: 13px; font-weight: 400; color: #333; flex: 1; }
.cat-item-count {
  font-size: 11px; color: #aaa;
  background: #f0f0ee; border-radius: 10px;
  padding: 1px 7px;
}

/* Age Verification Popup */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(13, 26, 13, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.age-gate.show {
  display: flex;
}

.age-gate__box {
  width: 100%;
  max-width: 460px;
  padding: 42px 34px;
  background: #f7f7f5;
  border: 1px solid #e2e2de;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.age-gate__label {
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #4a7a30;
}

.age-gate__title {
  margin-bottom: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.1;
  color: #1a1a1a;
}

.age-gate__text {
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.age-gate__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.age-gate__btn {
  padding: 14px 16px;
  border-radius: 4px;
  border: 1.5px solid #4a7a30;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.age-gate__btn--yes {
  background: #4a7a30;
  color: #fff;
}

.age-gate__btn--no {
  background: transparent;
  color: #4a7a30;
}

@media (max-width: 520px) {
  .age-gate__box {
    padding: 34px 24px;
  }

  .age-gate__actions {
    grid-template-columns: 1fr;
  }
}







/* ══════════ ITEM DETAIL ══════════ */
.item-top{
  background: #fff;
  border: 1px solid #DDD;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 96%;
  margin-left: 4%;
  margin-bottom: 4%;
}

/* 写真スライダー（縦サムネイル付き） */
.item-gallery { display:flex; gap:12px; padding:20px; }

.item-thumbs {
  width:68px; flex-shrink:0;
  display:flex; flex-direction:column; gap:8px;
  overflow-y:auto;
  scrollbar-width:none;
}
.item-thumbs::-webkit-scrollbar { display:none; }

.item-thumb {
  width:60px; height:60px; flex-shrink:0; border-radius:6px;
  background:center/cover no-repeat;
  border:2px solid transparent; cursor:pointer;
  transition:border-color 0.18s;
}
.item-thumb.active { border-color:#3a6020); }

.item-main-img {
  flex:1; position:relative; min-height:380px;
  background:center/cover no-repeat;
  border-radius:8px; overflow:hidden;
  transition:background-image 0.3s;
}

/* ズームオーバーレイ */
.item-main-img:hover .img-zoom-hint { opacity:1; }
.img-zoom-hint {
  position:absolute; bottom:12px; right:12px;
  background:rgba(0,0,0,0.45); color:#fff;
  font-size:10px; letter-spacing:0.1em; text-transform:uppercase;
  padding:4px 10px; border-radius:20px; opacity:0;
  transition:opacity 0.2s;
}

/* ── スペック ── */
.item-specs {
  padding: 32px 36px;
  display:flex; flex-direction:column; gap:0;
  border-left:1px solid #DDD;
}

.item-cat-badge {
  display:inline-block; padding:3px 12px; border-radius:20px;
  font-size:10px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase;
  background:#e8f5e0; color:#3a6020; margin-bottom:14px; align-self:flex-start;
}

.item-name {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(22px,2.5vw,30px); font-weight:600; color:#1a1a1a;
  line-height:1.2; margin-bottom:6px;
}
.item-brand-line {
  font-size:12px; color:#aaa; letter-spacing:0.1em;
  text-transform:uppercase; margin-bottom:24px;
}

/* スペックテーブル */
.spec-table { width:100%; border-collapse:collapse; margin-bottom:24px; }
.spec-table tr { border-bottom:1px solid #f0f0ee; }
.spec-table tr:last-child { border-bottom:none; }
.spec-table td { padding:11px 0; vertical-align:middle; font-size:13px; }
.spec-label { color:#999; font-weight:300; letter-spacing:0.08em; width:90px; }
.spec-value { color:#1a1a1a; font-weight:500; }

/* 価格 */
.item-price-row { display:flex; align-items:baseline; gap:8px; margin-bottom:24px; }
.item-price {
  font-family:'Cormorant Garamond',serif;
  font-size:36px; font-weight:600; color:#3a6020);
}
.item-price-unit { font-size:13px; color:#888; }

/* 在庫バッジ */
.stock-badge {
  display:inline-flex; align-items:center; gap:6px;
  padding:4px 12px; border-radius:20px;
  font-size:11px; font-weight:500; letter-spacing:0.08em;
}
.stock-badge.in { background:#e8f5e0; color:#3a6020; }
.stock-badge.in::before { content:''; width:6px; height:6px; border-radius:50%; background:#3a6020; }
.stock-badge.out { background:#f5e8e0; color:#7a3020; }

/* ── 下段：MEMO（商品説明） ── */
.item-memo {
  background: #fff;
  border: 1px solid #DDD;
  border-radius: 10px;
  overflow: hidden;
  width: 96%;
  margin-left: 4%;
}
.item-memo-head {
  padding:14px 24px; background:#f9f9f7;
  border-bottom:1px solid #DDD;
  font-size:11px; font-weight:500; letter-spacing:0.2em;
  text-transform:uppercase; color:#666;
}
.item-memo-body { padding:28px 32px; }

.item-memo-body p {
  font-size:14px; font-weight:300; color:#444; line-height:1.95;
  margin-bottom:16px;
}
.item-memo-body p:last-child { margin-bottom:0; }

.item-memo-body h3 {
  font-family:'Cormorant Garamond',serif;
  font-size:18px; font-weight:600; color:#1a1a1a;
  margin:24px 0 10px;
}

.item-memo-body ul {
  padding-left:18px; margin-bottom:16px;
}
.item-memo-body li {
  font-size:13px; font-weight:300; color:#555; line-height:1.75; margin-bottom:6px;
}



/* MOBILE */
@media (max-width:900px){
  .page-wrap{display:grid;grid-template-columns:1fr;padding:24px 18px 60px;gap:24px;}
  .sidebar{position:static; order:2;}
  .item-detail { order:1; }
  .item-top{grid-template-columns:1fr;}
  .item-specs{border-left:none;border-top:1px solid #DDD;}
  .item-gallery{flex-direction:column;}
  .item-thumbs{flex-direction:row;width:100%;padding:12px 16px 0;}
  .item-main-img{min-height:260px;}
  .topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px;
  transition: background 0.3s, padding 0.3s, transform 0.35s ease;
}
  .page-hero{padding: 120px 40px 48px;}
  .footer-inner{flex-direction:column;gap:28px;padding:48px 20px 40px;}
  .footer-nav{grid-template-columns:repeat(2,1fr);}
  .footer-bottom{padding:18px 20px;}
}


/* RELATED ITEMS */
.related-items-section { background:#fff; padding:56px 0 64px; border-top:1px solid #DDD; }
.related-items-inner { max-width:1200px; margin:0 auto; padding:0 40px; }
.ri-head { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; margin-bottom:28px; }
.ri-heading { font-family:'Cormorant Garamond',serif; font-size:26px; font-weight:600; color:#1a1a1a; }
.ri-filter { display:flex; flex-wrap:wrap; gap:8px; }
.ri-btn {
  padding:6px 16px; border-radius:20px;
  border:1.5px solid #DDD; background:#fafaf8;
  font-family:'Barlow',sans-serif; font-size:12px; font-weight:400;
  color:#555; letter-spacing:0.06em; cursor:pointer;
  transition:background 0.18s,border-color 0.18s,color 0.18s;
}
.ri-btn:hover { border-color:#b0c8a0; color:#3a6820; }
.ri-btn.active {
  background: #3a6020 !important;
  border-color: #3a6020 !important;
  color: #fff;
  font-weight: 500;
}

/* グリッド */
.ri-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.ri-card { background:#fff; border:1px solid #DDD; border-radius:8px; overflow:hidden; transition:box-shadow 0.2s; }
.ri-card:hover { box-shadow:0 6px 20px rgba(0,0,0,0.08); }
.ri-card.hidden { display:none; }

.ri-img { width:100%; aspect-ratio:1/1; background:#e8e8e8 center/cover no-repeat; }

.ri-body { padding:14px 16px 16px; }
.ri-badge {
  display:inline-block; padding:2px 10px; border-radius:20px;
  font-size:10px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase;
  margin-bottom:6px;
}
.ri-badge.seed     { background:#e8f5e0; color:#3a6020; }
.ri-badge.inhaler  { background:#e0e8f5; color:#304878; }
.ri-badge.original { background:#f5f0e0; color:#786830; }
.ri-badge.other    { background:#f0e8f5; color:#583070; }

.ri-name { font-family:'Cormorant Garamond',serif; font-size:17px; font-weight:600; color:#1a1a1a; margin-bottom:2px; line-height:1.3; }
.ri-brand { font-size:11px; color:#aaa; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:8px; }
.ri-price { font-size:15px; font-weight:500; color:#3a6020); margin-bottom:12px; }
.ri-price span { font-size:11px; color:#999; margin-left:3px; }
.ri-btn-more {
  display:block; text-align:center; padding:9px 0;
  background:#3a6020); color:#fff;
  font-size:11px; font-weight:500; letter-spacing:0.2em;
  border-radius:5px; transition:background 0.2s;
}
.ri-btn-more:hover { background:#3a6020; }

@media (max-width:768px) {
  .ri-grid { grid-template-columns:1fr 1fr; }
  .related-items-inner { padding:0 18px; }
  .ri-head { flex-direction:column; align-items:flex-start; }
}
@media (max-width:480px) {
  .ri-grid { grid-template-columns:1fr; }
}

/* ══════════════════════
   ARTICLE
══════════════════════ */
.article-wrap {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
  width: 96%;
  margin-left: 4%;
}

/* メインビジュアル */
.article-hero-img {
  width:100%;
	height: auto;

}

.article-hero-img img {
  width:100%;
	height: auto;

}

.article-body { padding:40px 48px 48px; }

/* メタ情報 */
.article-meta {
  display:flex; align-items:center; gap:12px;
  margin-bottom:20px; flex-wrap:wrap;
}
.article-cat {
  padding:3px 12px; border-radius:20px;
  font-size:10px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase;
  background:#e8f5e0; color:#3a6020;
}
.article-date { font-size:12px; color:#aaa; letter-spacing:0.08em; }
.article-read-time { font-size:12px; color:#aaa; }
.article-read-time::before { content:'·'; margin-right:8px; }

/* タイトル */
.article-title {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(26px,3.5vw,38px); font-weight:600;
  color:#1a1a1a; line-height:1.25; margin-bottom:24px;
}

/* 本文 */
.article-content { font-size:15px; font-weight:300; color:#333; line-height:1.95; }
.article-content p { margin-bottom:20px; }
.article-content h2 {
  font-family:'Cormorant Garamond',serif;
  font-size:24px; font-weight:600; color:#1a1a1a;
  margin:36px 0 14px; letter-spacing:0.02em;
}
.article-content h3 {
  font-size:16px; font-weight:500; color:#222;
  margin:28px 0 10px;
}
.article-content ul, .article-content ol {
  padding-left:20px; margin-bottom:20px;
}
.article-content li { margin-bottom:8px; line-height:1.75; }
.article-content blockquote {
  border-left:3px solid var(--gold);
  padding:12px 20px; margin:24px 0;
  background:#faf8f2; color:#555; font-style:italic;
  border-radius:0 6px 6px 0;
}
.article-content strong { font-weight:500; color:#1a1a1a; }

/* タグ */
.article-tags { display:flex; flex-wrap:wrap; gap:6px; margin-top:36px; padding-top:24px; border-top:1px solid #DDD; }
.article-tag {
  padding:4px 12px; border-radius:20px;
  border:1.5px solid #DDD; font-size:11px; color:#666;
  background:#fafaf8; letter-spacing:0.06em;
}
.article-tag:hover { border-color:#3a6020); color:#3a6020); }

/* ナビゲーション（前後記事） */
.article-nav {
  display:grid; grid-template-columns:1fr 1fr; gap:16px;
  margin-top:32px; padding-top:24px; border-top:1px solid #DDD;
}
.article-nav-item {
  padding:16px; border-radius:8px; border:1.5px solid #DDD;
  background:#fafaf8; transition:border-color 0.18s, background 0.18s;
  display:flex; flex-direction:column; gap:6px;
}
.article-nav-item:hover { border-color:#3a6020); background:#f0f7ec; }
.article-nav-item.next { text-align:right; }
.article-nav-label { font-size:10px; font-weight:500; letter-spacing:0.18em; text-transform:uppercase; color:#aaa; }
.article-nav-title { font-size:13px; font-weight:500; color:#333; line-height:1.4; }

/* 関連記事リスト */
.related-posts { margin-top: 24px; }
.related-posts-title { font-size:11px; font-weight:500; letter-spacing:0.18em; text-transform:uppercase; color:#888; margin-bottom:12px; }
.related-post-item {
  display:flex; gap:10px; padding:10px 0;
  border-bottom:1px solid #DDD; align-items:flex-start;
}
.related-post-item:last-child { border-bottom:none; }
.related-post-thumb {
  width:56px; height:56px; flex-shrink:0; border-radius:4px;
  background:#e8e8e8 center/cover no-repeat;
}
.related-post-info { flex:1; }
.related-post-title {
  font-size:12px; font-weight:500; color:#333; line-height:1.4;
  display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2; overflow:hidden;
}
.related-post-title:hover { color:#3a6020); }
.related-post-date { font-size:10px; color:#aaa; margin-top:3px; }

.related-post-thumb img{
	width: 100%;
	height: auto;
}

/* ══════════════════════════════
   PAGE HERO（品種名バナー）
══════════════════════════════ */
.strain-hero {
  background: var(--green-dark);
  padding: 120px 40px 48px;
  position: relative;
  overflow: hidden;
}
.strain-hero::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.35;
}
.strain-hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
}
.strain-breadcrumb {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(232,201,106,0.7); margin-bottom: 12px;
}
.strain-breadcrumb a { color: inherit; }
.strain-breadcrumb a:hover { color: var(--gold-light); }
.strain-hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 600; color: var(--cream);
  letter-spacing: 0.02em; line-height: 1.1;
  margin-bottom: 12px;
}
.strain-hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.badge-cbd  { background: rgba(200,168,75,0.2); color: var(--gold-light); border: 1px solid rgba(200,168,75,0.4); }
.badge-type { background: rgba(255,255,255,0.1); color: var(--cream); border: 1px solid rgba(255,255,255,0.2); }

/* ══════════════════════════════
   MAIN CONTENT
══════════════════════════════ */
.detail-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px 80px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: start;
}

/* ── 左：写真 ── */
.strain-photo {
  position: sticky; top: 90px;
}
/* ── 写真ボックス（CSS背景で確実表示） ── */
.strain-img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background-color: #2d4a2d;
  background-image: url('https://images.unsplash.com/photo-1574169208507-84376144848b?w=600&q=80');
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* ── Source box ── */
.source-box {
  background: #f9f9f7;
  border-radius: 6px;
  padding: 12px 14px;
  border-left: 3px solid #c8ddb0;
}
.source-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #999; margin-bottom: 4px;
}
.source-text {
  font-size: 13px; font-weight: 500; color: #333;
  margin-bottom: 4px;
}
.source-note {
  font-size: 12px; font-weight: 300;
  color: #777; line-height: 1.7;
}
.gacp-btn {
  width: 100%;
  margin-top: 12px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green-dark);
  color: var(--gold-light);
  border: 1.5px solid rgba(200,168,75,0.4);
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s;
}
.gacp-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.gacp-btn:hover { background: #2d5a2d; border-color: var(--gold); }

/* ── GACPライトボックス（画像ビューア） ── */
.gacp-lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 400;
  background: rgba(0,0,0,0.88);
  align-items: center; justify-content: center;
  padding: 20px;
}
.gacp-lightbox.open { display: flex; }

.gacp-viewer {
  position: relative;
  max-width: 720px;
  width: 100%;
  animation: lbIn 0.26s cubic-bezier(0.34,1.4,0.64,1) both;
}
@keyframes lbIn {
  from { opacity:0; transform:scale(0.92) translateY(14px); }
  to   { opacity:1; transform:scale(1) translateY(0); }
}

.gacp-viewer-img {
  width: 100%;
  border-radius: 8px;
  display: block;
  max-height: 85vh;
  object-fit: contain;
}

.gacp-viewer-label {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.gacp-close {
  position: absolute;
  top: -14px; right: -14px;
  width: 34px; height: 34px;
  background: #fff;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  color: #333;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.gacp-close:hover { background: #eee; }
.strain-cbd-info {
  margin-top: 14px;
  background: #fff;
  border: 1px solid #DDD;
  border-radius: 8px;
  padding: 14px 16px;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.cbd-chip {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em;
}
.cbd-chip.cbd { background: #e8f5e0; color: #3a6020; }
.cbd-chip.ratio { background: #f0f0f0; color: #555; font-size: 11px; }

.cbd-chip.thc{ background: #e8f5e0; color: #3a6020; }

/* ── 右：詳細情報 ── */
.strain-info { display: flex; flex-direction: column; gap: 24px; }

/* セクションカード */
.info-card {
  background: #fff;
  border: 1px solid #DDD;
  border-radius: 10px;
  overflow: hidden;
}
.info-card-head {
  background: #f9f9f7;
  border-bottom: 1px solid #DDD;
  padding: 12px 20px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #666;
}
.info-card-body { padding: 18px 20px; }

/* ── レベル表 ── */
.level-table { width: 100%; border-collapse: collapse; }
.level-table tr { border-bottom: 1px solid #f0f0ee; }
.level-table tr:last-child { border-bottom: none; }
.level-table td { padding: 10px 0; vertical-align: middle; }
.level-label {
  font-size: 13px; font-weight: 300;
  color: #444; width: 130px;
  letter-spacing: 0.04em;
}
.level-dots { display: flex; gap: 5px; align-items: center; }
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  border: 1.5px solid #c8c8c0;
}
.dot.on { background: #3a6020 !important; border-color: #3a6020 !important; }

/* ── タグリスト ── */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid #DDD;
  font-size: 12px; font-weight: 400;
  color: #555; letter-spacing: 0.04em;
  background: #fafaf8;
}
.tag.effect {
  border-color: #c8ddb0; color: #3a6820;
  background: #f0f7ec;
}
.tag.medical {
  border-color: #c8c0d0; color: #483870;
  background: #f5f0f8;
}

/* ── 価格表 ── */
.price-table { width: 100%; border-collapse: collapse; }
.price-table th {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: #888;
  border-bottom: 2px solid #DDD;
  padding: 8px 12px; text-align: left;
}
.price-table td {
  padding: 12px 12px;
  font-size: 15px; color: #222;
  border-bottom: 1px solid #f0f0ee;
  vertical-align: middle;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table .weight {
  font-weight: 300; font-size: 13px; color: #666;
  letter-spacing: 0.06em;
}
.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: #3a6020);
}
.price-unit { font-size: 11px; color: #999; margin-left: 2px; }

/* ── NOTE ── */
.note-box {
  background: #f9f6f0;
  border: 1px solid rgba(200,168,75,0.25);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 12px; font-weight: 300;
  color: #666; line-height: 1.8;
}

/* ── MOBILE ── */
@media (max-width: 700px) {
  .detail-wrap {
    grid-template-columns: 1fr;
    padding: 24px 18px 60px;
    gap: 20px;
  }
  .strain-photo { position: static; }
  .strain-hero  { padding: 100px 20px 36px; }
  .level-label  { width: 110px; font-size: 12px; }
}

/* ════════════════════════════
   FIND BY SITUATION（新版）
════════════════════════════ */
.situation-section {
  background: #f9f9f7;
  padding: 56px 0 64px;
  border-top: 1px solid #DDD;
}
.situation-inner { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.sit-header { margin-bottom: 28px; }
.sit-heading { font-family:'Cormorant Garamond',serif; font-size:28px; font-weight:600; color:#1a1a1a; margin-bottom:6px; }
.sit-sub { font-size:13px; font-weight:300; color:#888; }

/* 左右レイアウト */
.sit-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* フィルター：横並びに */
.sit-filter {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.sit-filter-block { flex: 1; min-width: 200px; }
.sit-filter-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.sit-filter-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: #888;
}
.sit-clear-btn {
  font-size: 11px; color: #4a7a30; background: none; border: none;
  cursor: pointer; letter-spacing: 0.04em;
}
.sit-clear-btn:hover { text-decoration: underline; }

/* タイプボタン */
.sit-type-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.sit-type-btn {
  padding: 8px 6px; border: 1.5px solid #DDD;
  border-radius: 5px; background: #fff;
  font-family:'Barlow',sans-serif; font-size:12px; font-weight:400;
  color:#555; letter-spacing:0.06em; cursor:pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.sit-type-btn.active {
  background: #4a7a30; border-color: #4a7a30; color: #fff; font-weight:500;
}

/* Effectionチェックリスト */
.sit-eff-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}
.sit-eff-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 10px; border-radius: 6px;
  border: 1.5px solid #DDD; background: #fff;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  user-select: none;
}
.sit-eff-item:hover { border-color: #b0c8a0; }
.sit-eff-item.active { border-color: #4a7a30; background: #f0f7ec; }
.sit-eff-item input[type="checkbox"] { margin-top:2px; accent-color:#4a7a30; flex-shrink:0; width:13px; height:13px; }
.sit-eff-text { flex:1; }
.sit-eff-name { font-size:12px; font-weight:600; color:#1a1a1a; display:block; line-height:1.3; }
.sit-eff-desc { font-size:11px; font-weight:300; color:#888; display:block; margin-top:1px; line-height:1.4; }

/* 右：カードエリア */
.sit-right { }
.sit-count { font-size:12px; color:#888; margin-bottom:16px; letter-spacing:0.04em; }
.sit-count span { color:#4a7a30; font-weight:500; }

/* 品種グリッド（1カラム） */
.sit-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sit-card {
  background: #fff;
  border: 1px solid #DDD;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  overflow: visible;
  transition: box-shadow 0.2s;
}
.sit-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.sit-card.hidden { display:none; }

/* sit-card内のcard-img（横並び用） */
.sit-card .card-img {
  position: relative;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  background: #e8e8e8 center/cover no-repeat;
  border-radius: 6px;
  overflow: hidden;
	margin-bottom: 0;
}
.sit-card .card-body {
  flex: 1;
  text-align: left;
}
.sit-card .card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: #1a1a1a; margin-bottom: 3px;
}
.sit-card .card-lineage {
  font-size: 11px; letter-spacing: 0.14em; color: #888;
  text-transform: uppercase; margin-bottom: 6px;
}
.sit-card .card-meta {
  font-size: 13px; font-weight: 300; color: #555;
  letter-spacing: 0.04em; white-space: nowrap; flex-shrink: 0;
}
.sit-card .card-meta-row {
  display: flex; align-items: center; flex-wrap: wrap;
  justify-content: flex-start; gap: 5px; margin-bottom: 10px;
}
.sit-card .card-eff-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.sit-card .card-eff-tag {
  display: inline-block; padding: 2px 8px; border-radius: 20px;
  font-size: 10px; font-weight: 400; letter-spacing: 0.05em;
  color: #4a7a30; background: #f0f7ec; border: 1px solid #c8ddb0;
  white-space: nowrap;
}
.sit-card .card-arrival  {
  font-size: 10px;
  color: #aaa;
  letter-spacing: 0.06em;
  margin-top: 6px;
  display: inline-block;
  position: relative;
  left: 7%;
  top: 0;
}
/* MOREボタンは右下に */
.sit-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: stretch;
  flex-shrink: 0;
}
.sit-card .card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: #4a7a30; color: #fff;
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-align: center; border-radius: 5px; text-decoration: none;
  transition: background 0.2s; white-space: nowrap;
}
.sit-card .card-btn:hover { background: #3a6020; }

/* タイプバッジ（右上） */
.sit-type-badge  {
  position: absolute;
  top: 75%;
  right: 25%;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.sit-type-badge.sativa { background:#e8f5e0; color:#3a6020; }
.sit-type-badge.hybrid { background:#e8f0e0; color:#4a6830; }
.sit-type-badge.indica { background:#e0e8f5; color:#304878; }
.sit-type-badge.cbd    { background:#f5f0e0; color:#786830; }

.sit-no-result { text-align:center; padding:40px 0; font-size:14px; color:#aaa; grid-column:1/-1; }
.sit-footer { margin-top:24px; text-align:right; }
.sit-all-btn {
  display:inline-flex; align-items:center; padding:12px 28px;
  border:1.5px solid #4a7a30; border-radius:4px; color:#4a7a30;
  font-family:'Barlow',sans-serif; font-size:12px; font-weight:500;
  letter-spacing:0.14em; text-transform:uppercase; text-decoration:none;
  transition:background 0.2s, color 0.2s;
}
.sit-all-btn:hover { background:#4a7a30; color:#fff; }

@media (max-width: 900px) {
  .sit-layout { grid-template-columns: 1fr; }
  .sit-eff-list { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .sit-grid { grid-template-columns: 1fr 1fr; }
  .sit-eff-list { grid-template-columns: 1fr; }
  .situation-inner { padding: 0 18px; }
}

/* ══════════════════════════════════════
   GACP LIGHTBOX
══════════════════════════════════════ */
.gacp-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.65);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.gacp-lightbox.open { display: flex; }

.gacp-lb-card {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  position: relative;
  animation: lbIn 0.24s cubic-bezier(0.34, 1.4, 0.64, 1) both;
}
@keyframes lbIn {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.gacp-lb-close {
  position: absolute;
  top: 12px; right: 14px;
  width: 28px; height: 28px;
  background: rgba(0, 0, 0, 0.08);
  border: none; border-radius: 50%;
  font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s;
}
.gacp-lb-close:hover { background: rgba(0, 0, 0, 0.16); }

.gacp-lb-head {
  background: var(--green-dark, #1a2e1a);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.gacp-lb-head svg {
  width: 28px; height: 28px;
  flex-shrink: 0;
  stroke: var(--gold, #c8a84b);
}
.gacp-lb-head span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--gold-light, #e8c96a);
}

.gacp-lb-body { padding: 24px 28px 28px; }

.gacp-lb-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: #444;
  margin-bottom: 22px;
}
.gacp-lb-text strong { font-weight: 600; color: #1a1a1a; }

.gacp-lb-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--green-dark, #1a2e1a);
  color: var(--gold-light, #e8c96a);
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.gacp-lb-btn:hover {
  background: var(--green-leaf, #4a7a30);
  color: #fff;
}
.gacp-lb-btn svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}

@media (max-width: 480px) {
  .gacp-lb-card { max-width: 100%; }
  .gacp-lb-body { padding: 20px; }
  .gacp-lb-btn  { width: 100%; justify-content: center; }
}

body.tag,
body.archive  {
  padding: 0 !important;
  border: none !important;
}

/* AGE VERIFICATION POPUP */
.age-popup {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 24px;

  background: rgba(13, 26, 13, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.age-popup.show {
  display: flex;
}

.age-popup__box {
  width: 100%;
  max-width: 460px;

  padding: 40px 32px;

  background: #f7f7f5;
  border: 1px solid #e2e2de;
  border-radius: 12px;

  text-align: center;

  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}

.age-popup__label {
  margin-bottom: 12px;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #4a7a30;
}

.age-popup__title {
  margin-bottom: 16px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.1;
  color: #1a1a1a;
}

.age-popup__text {
  margin-bottom: 28px;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

.age-popup__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.age-popup__btn {
  width: 100%;
  padding: 14px 16px;
  border-radius: 4px;
  border: 1.5px solid #4a7a30;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  cursor: pointer;
}

.age-popup__btn--yes {
  background: #4a7a30;
  color: #fff;
}

.age-popup__btn--no {
  background: transparent;
  color: #4a7a30;
}

/* MOBILE */
@media (max-width: 520px) {
  .age-popup {
    padding: 18px;
    align-items: center;
  }

  .age-popup__box {
    max-width: 100%;
    padding: 34px 22px;
    border-radius: 10px;
  }

  .age-popup__label {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .age-popup__title {
    font-size: 30px;
  }

  .age-popup__text {
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 24px;
  }

  .age-popup__actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .age-popup__btn {
    padding: 13px 14px;
    font-size: 11px;
  }
}

/* ════════════════════════════════════════════
   STORE TABS
════════════════════════════════════════════ */

.store-tabs-section {
  width: 96%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 80px 0;
}

/* TAB BUTTONS */
.store-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.store-tab {
  padding: 14px 24px;

  border: 1.5px solid #d7d7d2;
  border-radius: 999px;

  background: #fff;
  color: #444;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.store-tab:hover {
  border-color: #4a7a30;
  color: #4a7a30;
}

.store-tab.active {
  background: #4a7a30;
  border-color: #4a7a30;
  color: #fff;
}

/* PANE */
.store-pane {
  display: none;
}

.store-pane.active {
  display: block;
}

/* STORE INFO */
.store-info {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* MAP */
.store-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e2de;
}

.store-map iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
}

/* CONTENT */
.store-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.store-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #777;
}

.store-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1;
  color: #111;
}

.store-address {
  font-size: 18px;
  line-height: 1.9;
  color: #333;
}

/* HOURS */
.store-hours {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.store-hour-row {
  display: flex;
  gap: 20px;
  align-items: center;
}

.store-hour-label {
  min-width: 120px;

  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.store-hour-time {
  font-size: 15px;
  color: #555;
}

/* BUTTONS */
.store-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 10px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 180px;
  height: 52px;

  padding: 0 28px;

  border: 1.5px solid #4a7a30;
  border-radius: 6px;

  background: transparent;
  color: #4a7a30;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;

  text-decoration: none;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.store-btn:hover {
  background: #4a7a30;
  color: #fff;
  transform: translateY(-2px);
}

.store-btn--line {
  border-color: #00b900;
  color: #00b900;
}

.store-btn--line:hover {
  background: #00b900;
  color: #fff;
}

/* MOBILE */
@media (max-width: 900px) {

  .store-tabs-section {
    width: 92%;
    padding: 56px 0;
  }

  .store-tabs {
    gap: 10px;
    margin-bottom: 24px;
  }

  .store-tab {
    width: 100%;
    justify-content: center;
  }

  .store-info {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .store-map iframe {
    height: 340px;
  }

  .store-content {
    gap: 20px;
  }

  .store-title {
    font-size: 42px;
  }

  .store-address {
    font-size: 15px;
    line-height: 1.8;
  }

  .store-hour-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .store-links {
    flex-direction: column;
  }

  .store-btn {
    width: 100%;
  }

}

.store-license-btn {
  cursor: pointer;
  font-family: inherit;
}

/* ════════════════════════════════════════════
   LICENSE / IMAGE LIGHTBOX
════════════════════════════════════════════ */

.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 56px 24px 32px;

  background: rgba(10, 16, 10, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.img-lightbox.open {
  display: flex;
}

.img-lightbox::before {
  content: "LICENSE";
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #e8c96a;
}

.img-lightbox img {
  display: block;

  max-width: min(92vw, 860px);
  max-height: 84vh;

  object-fit: contain;

  background: #fff;
  border-radius: 10px;
  padding: 10px;

  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

/* CLOSE BUTTON */
.img-lb-close {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 100000;

  width: 44px;
  height: 44px;

  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;

  background: rgba(255,255,255,0.12);
  color: #fff;

  font-size: 28px;
  line-height: 1;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.img-lb-close:hover {
  background: rgba(255,255,255,0.22);
  transform: rotate(90deg);
}

/* LICENSE BUTTON */
.store-license-btn {
  cursor: pointer;
  font-family: inherit;
}

/* MOBILE */
@media (max-width: 600px) {

  .img-lightbox {
    padding: 64px 14px 24px;
    align-items: center;
  }

  .img-lightbox::before {
    top: 24px;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .img-lightbox img {
    max-width: 94vw;
    max-height: 78vh;
    padding: 8px;
    border-radius: 8px;
  }

  .img-lb-close {
    top: 18px;
    right: 14px;

    width: 40px;
    height: 40px;

    font-size: 25px;
  }
}

/* ════════════════════════════════
   サイドバー・ページレイアウト修正
   pages.css の末尾に追記
════════════════════════════════ */

/* stickyのtop = scrolled時のtopbar高さ(68px)に合わせる */
.sidebar {
  top: 18px;
}

/* page-wrap上部余白を詰める */
.page-wrap {
  padding-top: 20px;
}

/* page-heroとpage-wrapの間の余白をなくす */
.page-hero + .page-wrap {
  margin-top: 0;
}

/* モバイル */
@media (max-width: 768px) {
  .page-wrap {
    padding-top: 20px;
  }
  .sidebar {
    top: 0;
    position: static;
  }
}

/* タグ・アーカイブページ 余白リセット — pages.css 末尾に追記 */
body.tag,
body.archive {
  padding-top: 0 !important;
}

/* ── サイドバー上部余白リセット ── */
.sidebar {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.page-wrap > .sidebar:first-child,
.page-wrap > aside:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ── Effect タグリンク一覧 ── */
.eff-tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.eff-tag-link {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid #c8ddb0;
  background: #f0f7ec;
  color: #3a6820;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.eff-tag-link:hover {
  background: #4a7a30;
  border-color: #4a7a30;
  color: #fff;
}

/* 現在のタグページのボタンをアクティブ表示 */
.eff-tag-link.current {
  background: #4a7a30;
  border-color: #4a7a30;
  color: #fff;
}

/* ── Effect タグリンク一覧 ── ブロック装飾 */
.eff-tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 18px 20px;
  background: #f7faf4;
  border: 1.5px solid #c8ddb0;
  border-radius: 8px;
}

/* Item サイドバー：タイプボタン上の余分な線を除去 */
#accItem {
  border-top: none;
}
#accItem .sb-type-btns {
  padding-top: 10px;
}

/* Item サイドバー：ボタン上部の余分な線を除去 */
#accItem {
  border-top: none;
}
#accItem .sb-type-btns {
  padding-top: 0;
  margin-top: 0;
}

/* sb-type-btns 上部の区切り線を完全除去 */
.sb-accordion .sb-acc-body#accItem {
  border-top: none !important;
}
.sb-accordion > .sb-acc-head:first-child {
  border-top: none;
}

/* Item サイドバー：ITEM行の上の線・ボタン上の線を完全除去 */
.sb-accordion .sb-acc-head:first-child {
  border-top: none !important;
}
.sb-acc-body#accItem {
  border-top: none !important;
}
.sb-acc-body#accItem .sb-type-btns {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Item サイドバー：ITEM見出し上の線・ボタン上の線を除去 */
.sb-accordion .sb-acc-head:first-child,
.sb-accordion .sb-acc-head[data-target="accItem"] {
  border-top: none !important;
}
.sb-acc-body#accItem {
  border-top: none !important;
}
.sb-acc-body#accItem .sb-type-btns {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Item サイドバー ヘッダー */
.sb-item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

/* ── Item サイドバー controls ── */
.sb-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Item ヘッダー上線を除去 */
[data-acc-toggle="accItem"] {
  border-top: none !important;
  cursor: default;
}

/* Item body 上線を除去 */
#accItem {
  border-top: none !important;
}

/* Item サイドバーのヘッダーdiv — border-bottom除去 */
[data-acc-toggle="accItem"] {
  border-bottom: none !important;
}

/* タグ・アーカイブページ 余白リセット — pages.css 末尾に追記 */
body.tag,
body.archive {
  padding-top: 0 !important;
}

/* ── サイドバー上部余白リセット ── */
.sidebar {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.page-wrap > .sidebar:first-child,
.page-wrap > aside:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ── Effect タグリンク一覧 ── */
.eff-tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.eff-tag-link {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid #c8ddb0;
  background: #f0f7ec;
  color: #3a6820;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.eff-tag-link:hover {
  background: #4a7a30;
  border-color: #4a7a30;
  color: #fff;
}

/* 現在のタグページのボタンをアクティブ表示 */
.eff-tag-link.current {
  background: #4a7a30;
  border-color: #4a7a30;
  color: #fff;
}

/* ── Effect タグリンク一覧 ── ブロック装飾 */
.eff-tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 18px 20px;
  background: #f7faf4;
  border: 1.5px solid #c8ddb0;
  border-radius: 8px;
}

/* Item サイドバー：タイプボタン上の余分な線を除去 */
#accItem {
  border-top: none;
}
#accItem .sb-type-btns {
  padding-top: 10px;
}

/* Item サイドバー：ボタン上部の余分な線を除去 */
#accItem {
  border-top: none;
}
#accItem .sb-type-btns {
  padding-top: 0;
  margin-top: 0;
}

/* sb-type-btns 上部の区切り線を完全除去 */
.sb-accordion .sb-acc-body#accItem {
  border-top: none !important;
}
.sb-accordion > .sb-acc-head:first-child {
  border-top: none;
}

/* Item サイドバー：ITEM行の上の線・ボタン上の線を完全除去 */
.sb-accordion .sb-acc-head:first-child {
  border-top: none !important;
}
.sb-acc-body#accItem {
  border-top: none !important;
}
.sb-acc-body#accItem .sb-type-btns {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Item サイドバー：ITEM見出し上の線・ボタン上の線を除去 */
.sb-accordion .sb-acc-head:first-child,
.sb-accordion .sb-acc-head[data-target="accItem"] {
  border-top: none !important;
}
.sb-acc-body#accItem {
  border-top: none !important;
}
.sb-acc-body#accItem .sb-type-btns {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Item サイドバー ヘッダー */
.sb-item-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

/* ── Item サイドバー controls ── */
.sb-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Item ヘッダー上線を除去 */
[data-acc-toggle="accItem"] {
  border-top: none !important;
  cursor: default;
}

/* Item body 上線を除去 */
#accItem {
  border-top: none !important;
}

/* Item サイドバーのヘッダーdiv — border-bottom除去 */
[data-acc-toggle="accItem"] {
  border-bottom: none !important;
}

/* ── Item一覧 タイプバッジ 視認性改善 ── */
.item-list-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.item-list-badge.seed     { background: rgba(232,245,224,0.92); color: #3a6020; }
.item-list-badge.inhaler  { background: rgba(224,232,245,0.92); color: #304878; }
.item-list-badge.original { background: rgba(245,240,224,0.92); color: #786830; }
.item-list-badge.other    { background: rgba(240,232,245,0.92); color: #583070; }

/* shop-img を relative にしてバッジを絶対配置 */
.shop-card .shop-img {
  position: relative;
}

/* ════════════════════════════════════════════
   タグ・アーカイブページ 追加CSS
   pages.css の末尾に追記してください
════════════════════════════════════════════ */

/* ── ページ余白リセット ── */
body.tag,
body.archive {
  padding-top: 0 !important;
}

/* ── サイドバー上部余白リセット ── */
.sidebar {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.page-wrap > .sidebar:first-child,
.page-wrap > aside:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ── Item/Blog サイドバー：上線・border除去 ── */
[data-acc-toggle="accItem"],
[data-acc-toggle="accBlog"] {
  border-top: none !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

/* .sb-acc-head クラスのborder-bottomをdivヘッダーでは除去 */
div.sb-acc-head {
  border-bottom: none !important;
}
/* sb-acc-body（accItem）の上下線除去 */
#accItem,
.sb-acc-body#accItem {
  border-top: none !important;
  border-bottom: none !important;
}
.sb-acc-body#accItem .sb-type-btns {
  margin-top: 0 !important;
  padding-top: 10px !important;
  border-top: none !important;
}
/* sb-accordion の最初の子要素（Itemヘッダーdiv）上線除去 */
.sb-accordion > div:first-child {
  border-top: none !important;
}
/* sb-type-btns自体の上線除去 */
.sb-type-btns {
  border-top: none !important;
}

/* ── sb-item-controls（Clear all + 矢印横並び） ── */
.sb-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── type-btn をリンクで使う場合（sidebar-6） ── */
.sidebar .sb-type-btns a.type-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* ── Effect タグリンク一覧ブロック ── */
.eff-tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 18px 20px;
  background: #f7faf4;
  border: 1.5px solid #c8ddb0;
  border-radius: 8px;
}

.eff-tag-link {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid #c8ddb0;
  background: #f0f7ec;
  color: #3a6820;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.eff-tag-link:hover,
.eff-tag-link.current {
  background: #4a7a30;
  border-color: #4a7a30;
  color: #fff;
}

/* ── Item一覧 タイプバッジ ── */
.shop-card .shop-img {
  position: relative;
}
.item-list-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.item-list-badge.seed     { background: rgba(232,245,224,0.92); color: #3a6020; }
.item-list-badge.inhaler  { background: rgba(224,232,245,0.92); color: #304878; }
.item-list-badge.original { background: rgba(245,240,224,0.92); color: #786830; }
.item-list-badge.other    { background: rgba(240,232,245,0.92); color: #583070; }

/* ── トップページ Blog一覧：カテゴリバッジ常時表示 ── */
.blog-section .blog-img,
.blog-track .blog-img {
  position: relative;
}
.blog-section .blog-card-cat,
.blog-track .blog-card-cat {
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
}

/* ── Item カード高さ調整 ── */
.shop-card {
  display: flex;
  flex-direction: column;
}
.shop-name {
  flex: 1;
  min-height: 2.6em;
  display: flex;
  align-items: flex-start;
}
.shop-price { margin-top: auto; }
.shop-btn   { margin-top: 10px; }

@media (min-width: 641px) {
  .shop-track { align-items: stretch; }
}
@media (max-width: 640px) {
  .shop-track { align-items: start; }
  .shop-card  { height: auto; }
  .shop-name  { min-height: unset; }
}

/* ── sidebar-6 関連記事 ── */
.sb-related {
  padding: 14px 0;
  border-top: 1px solid #ddd;
}
.sb-related-head {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  padding: 10px 0 0;
  margin-bottom: 12px;
}
.sb-related-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0ee;
  text-decoration: none;
  transition: opacity 0.18s;
}
.sb-related-item:last-child { border-bottom: none; }
.sb-related-item:hover { opacity: 0.75; }
.sb-related-img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 5px;
  background: #e8e8e8 center/cover no-repeat;
}
.sb-related-info { flex: 1; min-width: 0; }
.sb-related-title {
  font-size: 12px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 2px;
}
.sb-related-price {
  font-size: 11px;
  color: #4a7a30;
  font-weight: 500;
}


/* ════════════════════════════════════════════
   タグ・アーカイブページ 追加CSS（完全版）
   pages.css の末尾の既存追記を全て削除してから
   このファイルの内容を追記してください
════════════════════════════════════════════ */

/* ── ページ余白リセット ── */
body.tag,
body.archive {
  padding-top: 0 !important;
}

/* ── サイドバー上部余白リセット ── */
.sidebar {
  padding-top: 0 !important;
  margin-top: 0 !important;
  top: 18px;
}
.page-wrap > .sidebar:first-child,
.page-wrap > aside:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
@media (max-width: 768px) {
  .sidebar { top: 0; position: static; }
  .page-wrap { padding-top: 20px; }
}

/* ── サイドバー ヘッダー border除去 ── */
div.sb-acc-head {
  border-top: none !important;
  border-bottom: none !important;
}
[data-acc-toggle="accItem"],
[data-acc-toggle="accBlog"] {
  border-top: none !important;
  border-bottom: none !important;
}
.sb-accordion > div:first-child,
.sb-accordion > button.sb-acc-head:first-child {
  border-top: none !important;
}

/* ── accItem body：下線追加・上線除去 ── */
div#accItem {
  border-top: none !important;
  border-bottom: 1px solid #ddd;
  padding-bottom: 14px;
}

/* ── accBlog body：下線追加 ── */
div#accBlog {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

/* ── accBlog body：下線追加 ── */
div#accBlog1 {
  padding-bottom: 0px;
}

/* ── sb-type-btns：上線除去 ── */
.sb-type-btns {
  border-top: none !important;
  margin-top: 0 !important;
}
.sb-acc-body .sb-type-btns {
  border-top: none !important;
  margin-top: 0 !important;
  padding-top: 10px !important;
}

/* ── accItem open時のmax-height確保 ── */
#accItem.open,
#accBlog.open {
  max-height: 400px !important;
  overflow: visible !important;
}

/* ── sb-item-controls（Clear all + 矢印横並び） ── */
.sb-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── type-btn リンク対応 ── */
.sidebar .sb-type-btns a.type-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* ── #accBlog .tag-btn-list をグリッドに ── */
#accBlog .tag-btn-list {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 6px !important;
  padding: 10px 0 14px !important;  /* style.cssの30pxを上書き */
}
#accBlog .tag-btn {
  padding: 8px 6px !important;
  border: 1.5px solid #e2e2de !important;
  border-radius: 5px !important;
  background: #fff !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: 0.06em !important;
  color: #555 !important;
  text-align: center;
  width: 100%;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
#accBlog .tag-btn.active {
  background: #4a7a30 !important;
  border-color: #4a7a30 !important;
  color: #fff !important;
  font-weight: 500 !important;
}

/* ── Effect タグリンク一覧ブロック ── */
.eff-tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 18px 20px;
  background: #f7faf4;
  border: 1.5px solid #c8ddb0;
  border-radius: 8px;
}
.eff-tag-link {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1.5px solid #c8ddb0;
  background: #f0f7ec;
  color: #3a6820;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}
.eff-tag-link:hover,
.eff-tag-link.current {
  background: #4a7a30;
  border-color: #4a7a30;
  color: #fff;
}

/* ── Item一覧 タイプバッジ ── */
.shop-card .shop-img { position: relative; }
.item-list-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.item-list-badge.seed     { background: rgba(232,245,224,0.92); color: #3a6020; }
.item-list-badge.inhaler  { background: rgba(224,232,245,0.92); color: #304878; }
.item-list-badge.original { background: rgba(245,240,224,0.92); color: #786830; }
.item-list-badge.other    { background: rgba(240,232,245,0.92); color: #583070; }

/* ── トップページ Blog一覧：カテゴリバッジ常時表示 ── */
.blog-section .blog-img,
.blog-track .blog-img { position: relative; }
.blog-section .blog-card-cat,
.blog-track .blog-card-cat {
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-block !important;
}

/* ── Item カード高さ調整 ── */
.shop-card { display: flex; flex-direction: column; }
.shop-name { flex: 1; min-height: 2.6em; display: flex; align-items: flex-start; }
.shop-price { margin-top: auto; }
.shop-btn   { margin-top: 10px; }
@media (min-width: 641px) { .shop-track { align-items: stretch; } }
@media (max-width: 640px) {
  .shop-track { align-items: start; }
  .shop-card  { height: auto; }
  .shop-name  { min-height: unset; }
}

/* ── sidebar-4 関連記事 画像サイズ ── */
.related-post-thumb {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px;
  border-radius: 6px;
  background: #e8e8e8 center/cover no-repeat;
  flex-shrink: 0;
  overflow: hidden;
}
.related-post-thumb img { display: none; }

/* ── sidebar-6 関連記事 ── */
.sb-related { padding: 14px 0; border-top: 1px solid #ddd; }
.sb-related-head {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: #888; padding: 10px 0 0; margin-bottom: 12px;
}
.sb-related-item {
  display: flex; gap: 10px; align-items: center;
  padding: 8px 0; border-bottom: 1px solid #f0f0ee;
  text-decoration: none; transition: opacity 0.18s;
}
.sb-related-item:last-child { border-bottom: none; }
.sb-related-item:hover { opacity: 0.75; }
.sb-related-img {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 5px; background: #e8e8e8 center/cover no-repeat;
}
.sb-related-info { flex: 1; min-width: 0; }
.sb-related-title {
  font-size: 12px; font-weight: 500; color: #1a1a1a; line-height: 1.4;
  display: -webkit-box; -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; overflow: hidden; margin-bottom: 2px;
}
.sb-related-price { font-size: 11px; color: #4a7a30; font-weight: 500; }

/* ── sidebar-3：ITEMの下・BLOGの上の余分な線除去 ── */
/* accItemの直後のbuttonのborder-topを除去 */
div#accItem1 + button.sb-acc-head {
  border-top: none !important;
}

/* ════════════════════════════════════════════
   Privacy Policy ページ
════════════════════════════════════════════ */
.privacy-main {
  width: 100%;
  max-width: 100%;
  float: none;
  display: block;
}

.privacy-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 24px;
  color: #333;
  font-size: 15px;
  line-height: 1.8;
}

.privacy-updated {
  font-size: 12px;
  color: #999;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}

.privacy-intro {
  margin-bottom: 32px;
  color: #444;
}

.privacy-notice-box {
  background: #fff8e6;
  border-left: 4px solid #c8a84b;
  border-radius: 4px;
  padding: 16px 20px;
  margin-bottom: 40px;
  font-size: 14px;
  color: #7a6020;
}

.privacy-section-title {
  font-size: 17px;
  font-weight: 700;
  color: #1a2e1a;
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0ead8;
}

.privacy-list {
  padding-left: 20px;
  margin: 12px 0 16px;
}

.privacy-list li {
  margin-bottom: 8px;
}

.privacy-list a {
  color: #2d6a2d;
  text-decoration: underline;
}

.privacy-contact {
  background: #f7f9f6;
  border: 1px solid #e0ead8;
  border-radius: 8px;
  padding: 20px 24px;
  margin-top: 12px;
  line-height: 2;
}

.privacy-contact a {
  color: #2d6a2d;
}

@media (max-width: 600px) {
  .privacy-body {
    padding: 40px 16px;
    font-size: 14px;
  }
  .privacy-section-title {
    font-size: 16px;
  }
}

/* ════════════════════════════════════════════
   Contact ページ
════════════════════════════════════════════ */
.contact-main {
  width: 100%;
  max-width: 100%;
  float: none;
  display: block;
}

.contact-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 24px 24px 80px;
  text-align: center;
}

.contact-eyebrow {
  font-size: 11px;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200,168,75,0.8);
  margin-bottom: 12px;
}

.contact-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a2e1a;
  margin-bottom: 16px;
  line-height: 1.4;
}

.contact-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 48px;
}

/* LINE ブロック */
.contact-line-block {
  background: #f7f9f6;
  border: 1px solid #e0ead8;
  border-radius: 16px;
  padding: 40px 32px;
  margin-bottom: 48px;
}

.contact-line-icon {
  margin-bottom: 16px;
}

.contact-line-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a2e1a;
  margin-bottom: 12px;
}

.contact-line-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: #00b900;
  color: #fff;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 12px;
}

.contact-line-btn:hover {
  background: #009900;
  transform: translateY(-1px);
}

.contact-line-note {
  font-size: 11px;
  color: #aaa;
  margin-top: 8px;
}

/* FAQ */
.contact-faq {
  text-align: left;
  border-top: 1px solid #e0ead8;
  padding-top: 40px;
}

.contact-faq-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a2e1a;
  margin-bottom: 20px;
  text-align: center;
}

.contact-faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-faq-list li {
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #e0ead8;
  border-radius: 10px;
}

.contact-faq-list li strong {
  display: block;
  font-size: 14px;
  color: #1a2e1a;
  margin-bottom: 6px;
}

.contact-faq-list li p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 600px) {
  .contact-body {
    padding: 40px 16px 60px;
  }
  .contact-title {
    font-size: 22px;
  }
  .contact-line-block {
    padding: 28px 20px;
  }
  .contact-line-btn {
    padding: 14px 28px;
    font-size: 14px;
  }
}
