/*
Theme Name: TOG55 main
Author: Organic Gangsta
Version: 1.0.0
*/


*, *::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 20px;
}

/* 下スクロール時：上に隠れる */
.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(2, 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-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.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: 0 0 32px;
  font-family: 'Barlow', sans-serif;
	margin-bottom: 40px;
}

/* PC：グリッド表示 */
.shop-track {
  display: grid !important;
  grid-template-columns: repeat(3, 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(3, 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-slider img{
	width: auto;
	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 20px;
}
.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 リンク */


/* ══════════════════════════════════
   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: 10px 0 14px; }
.tag-btn {
  padding: 5px 10px; 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: 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%;
	margin-bottom: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 20px;
  transition: background 0.3s, padding 0.3s, transform 0.35s ease;
}
  .page-hero{padding: 120px 40px 48px;}
  .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-filter .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-filter .ri-btn:hover { border-color:#b0c8a0; color:#3a6820; }
.ri-filter .ri-btn.active {
  background:#3a6020;
  border-color:#3a6020;
  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-badge.aroimak  { background:#e8f5e0; color:#3a6020; }

.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; }

/* MOREボタン（aタグ。テーマのa装飾に負けないようスコープを上げる） */
.related-items-section .ri-btn-more {
  display:block; text-align:center; padding:9px 0;
  background:#3a6020; color:#fff;
  font-family:'Barlow',sans-serif; font-size:11px; font-weight:500; letter-spacing:0.2em;
  text-decoration:none; border-radius:5px;
  transition:background 0.2s;
}
.related-items-section .ri-btn-more:hover { background:#2d4a18; color:#fff; }

@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%;
  }

}


/* ════════════════════════════════════════════
   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;
  }
}

.home-main{
	width: 96%;
	margin: 50px auto;
	color: #000;
}

.home-main h2{
  position: relative;
  padding-left: 25px;
  font-size: 24px;
  margin-top: 30px;
}

.home-main h2:before {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px transparent;
  border-bottom: solid 15px rgb(200, 221, 176);
}
.home-main h2:after {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 10px;
  width: 53%;
  border-bottom: solid 3px rgb(200, 221, 176);
}

.home-main p{
	font-size: 21px;
	line-height: 1.3em;
	margin: 20px 0;
}

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

.home-main{
	width: 96%;
	margin: 50px auto;
	color: #000;
}

.home-main h2{
  position: relative;
  padding-left: 25px;
  font-size: 24px;
  margin-top: 30px;
}

.home-main h2:before {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px transparent;
  border-bottom: solid 15px rgb(200, 221, 176);
}
.home-main h2:after {
  position: absolute;
  content: '';
  bottom: -3px;
  left: 10px;
  width: 53%;
  border-bottom: solid 3px rgb(200, 221, 176);
}

.home-main p{
	font-size: 21px;
	line-height: 1.3em;
	margin: 20px 0;
}

}

/* ════════════════════════════════════════════════════════════════════════
   PARTNER LOGO SLIDER
════════════════════════════════════════════════════════════════════════ */
.partner-section {
  padding: 56px 0;
  background: var(--green-dark, #1a2e1a);
  overflow: hidden;
}

.partner-label {
  text-align: center;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(200,168,75,0.6);
  margin-bottom: 32px;
}

/* トラックラッパー：両端フェード */
.partner-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.partner-track-wrap::before,
.partner-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.partner-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--green-dark, #1a2e1a), transparent);
}
.partner-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--green-dark, #1a2e1a), transparent);
}

/* スライドするトラック — アニメーションはJSで制御 */
.partner-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  will-change: transform;
}

/* ロゴ1件 */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 35px;
  border-right: 1px solid rgba(200,168,75,0.15);
  flex-shrink: 0;
}

.partner-logo img {
  height: 90px;
  width: auto;
  object-fit: contain;
	border-radius: 30px;
}
.partner-logo:hover img { opacity: 1; }

@media (max-width: 768px) {
  .partner-track-wrap::before,
  .partner-track-wrap::after { width: 60px; }
  .partner-logo { padding: 0 28px; }
  .partner-logo img { height: 85px; }
  .partner-section { padding: 40px 0; }
}

/* SAMPLE ボタン */
.sample-btn {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 16px 24px;
  border: 1.5px solid #4a7a30;
  border-radius: 4px;
  background: #fff;
  color: #4a7a30;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

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

/* ════════════════════════════════════════════════════════════════════════
   MONTHLY REPORT — タブ切り替えレポート
════════════════════════════════════════════════════════════════════════ */
.monthly-report-ja {
  padding: 64px 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.monthly-report-ja h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a2e1a;
  margin-bottom: 24px;
  text-align: center;
}

/* タブ */
.monthly-report-ja .strain-tabs {
  display: flex;
  border-bottom: 2px solid #d6e8d0;
  margin-bottom: 24px;
}

.monthly-report-ja .strain-tab {
  flex: 1;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  color: #888;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.04em;
}

.monthly-report-ja .strain-tab.active {
  color: #2d6a2d;
  border-bottom-color: #2d6a2d;
}

/* テーブルラッパー */
.report-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e0ead8;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  box-sizing: border-box;
}

/* テーブル本体 */
.report-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
}

.report-table th {
  background: #f0f7ec;
  font-weight: 700;
  color: #2d4a2f;
  padding: 13px 20px;
  border-bottom: 1px solid #e0ead8;
  text-align: center;
  white-space: nowrap;
}

.report-table td {
  padding: 13px 20px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  vertical-align: middle;
  text-align: center;
}

.report-table tr:last-child td {
  border-bottom: none;
}

/* 数値列を強調 */
.report-table td:nth-child(2) {
  font-weight: 700;
  color: #2d6a2d;
  white-space: nowrap;
}

/* タイトル＋更新日 */
.report-heading {
  text-align: center;
  margin-bottom: 28px;
}

.report-heading h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a2e1a;
  margin-bottom: 6px;
  text-align: center;
}

.report-updated {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.04em;
  text-align: center;
}

/* JP/EN ラベル */
.report-site-label {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin: 24px 0 8px;
  padding-left: 4px;
  letter-spacing: 0.04em;
  text-align: left;
}

/* パネル */
.report-panel {
  width: 100%;
  box-sizing: border-box;
}

/* 注釈テキスト */
.report-note {
  font-size: 11px;
  color: #999;
  line-height: 1.6;
  margin: 8px 4px 24px;
  letter-spacing: 0.02em;
  text-align: left;
}

/* ════════════════════════════════════════════
   OG Times メディア紹介ブロック
════════════════════════════════════════════ */
.report-media-intro {
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid #e0ead8;
}

.report-media-label {
  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;
}

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

.report-media-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  max-width: 760px;
  margin: 0 auto 32px;
}

.report-media-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.report-media-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid #2d6a2d;
  border-radius: 4px;
  background: #fff;
  color: #2d6a2d;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.report-media-btn:hover {
  background: #2d6a2d;
  color: #fff;
}

/* ════════════════════════════════════════════
   Analytics ページ専用ラッパー
════════════════════════════════════════════ */
.analytics-main {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  float: none;
  display: block;
  box-sizing: border-box;
}

.analytics-main .monthly-report-ja {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  float: none;
}

.analytics-main .report-panel {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 0;
}

.analytics-main .report-table-wrap {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0;
}

/* レスポンシブ */
@media (max-width: 600px) {
  .monthly-report-ja {
    padding: 40px 16px;
  }
  .monthly-report-ja h2 {
    font-size: 18px;
  }
  .monthly-report-ja .strain-tab {
    font-size: 13px;
    padding: 12px 8px;
  }
  .report-table {
    font-size: 13px;
    min-width: 480px;
  }
  .report-table th,
  .report-table td {
    padding: 11px 12px;
  }
  .report-media-title {
    font-size: 20px;
  }
  .report-media-btn {
    font-size: 12px;
    padding: 11px 16px;
  }
}

/* ════════════════════════════════════════════
   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;
  }
}

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

.artserv-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 24px 20px;
}

/* イントロ */
.artserv-intro {
  text-align: center;
  padding-bottom: 48px;
  border-bottom: 1px solid #e0ead8;
  margin-bottom: 56px;
}

.artserv-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;
}

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

.artserv-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

/* セクション */
.artserv-section {
  margin-bottom: 20px;
}

.artserv-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a2e1a;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e0ead8;
}

/* プランテーブル */
.artserv-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e0ead8;
  -webkit-overflow-scrolling: touch;
}

.artserv-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
}

.artserv-table th {
  width: 200px;
  background: #f0f7ec;
  font-weight: 600;
  color: #2d4a2f;
  padding: 14px 20px;
  border-bottom: 1px solid #e0ead8;
  text-align: left;
  white-space: nowrap;
  vertical-align: top;
}

.artserv-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
  vertical-align: top;
  line-height: 1.7;
}

.artserv-table tr:last-child th,
.artserv-table tr:last-child td {
  border-bottom: none;
}

/* フロー */
.artserv-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.artserv-steps::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: #e0ead8;
}

.artserv-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  position: relative;
}

.artserv-step-badge {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #2d6a2d;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.artserv-step--final .artserv-step-badge {
  background: #c8a84b;
}

.artserv-step-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a2e1a;
  margin-bottom: 4px;
  padding-top: 8px;
}

.artserv-step-content p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin: 0;
}

/* FAQ */
.artserv-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e0ead8;
  border-radius: 12px;
  overflow: hidden;
}

.artserv-faq-item {
  border-bottom: 1px solid #e0ead8;
}

.artserv-faq-item:last-child {
  border-bottom: none;
}

.artserv-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: #fff;
  border: none;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #1a2e1a;
  cursor: pointer;
  line-height: 1.5;
  transition: background 0.15s;
}

.artserv-faq-q:hover {
  background: #f7f9f6;
}

.artserv-faq-item.is-open .artserv-faq-q {
  background: #f0f7ec;
  color: #2d6a2d;
}

.artserv-faq-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
}

.artserv-faq-icon::before,
.artserv-faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s;
}

.artserv-faq-icon::before {
  width: 12px;
  height: 2px;
  top: 7px;
  left: 2px;
}

.artserv-faq-icon::after {
  width: 2px;
  height: 12px;
  top: 2px;
  left: 7px;
}

.artserv-faq-item.is-open .artserv-faq-icon::after {
  transform: rotate(90deg);
}

.artserv-faq-a {
  padding: 0 24px 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  background: #f0f7ec;
}

.artserv-faq-a p {
  margin: 0 0 12px;
}

.artserv-faq-a p:last-child {
  margin-bottom: 0;
}

/* CTA */
.artserv-cta {
  text-align: center;
  padding: 48px 24px;
  background: #f0f7ec;
  border-radius: 16px;
  margin-top: 64px;
}

.artserv-cta-text {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.artserv-cta-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;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

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

@media (max-width: 600px) {
  .artserv-body {
    padding: 20px 16px 60px;
  }
  .artserv-title {
    font-size: 22px;
  }
  .artserv-table th {
    width: 130px;
    padding: 12px 14px;
  }
  .artserv-table td {
    padding: 12px 14px;
  }
  .artserv-faq-q {
    padding: 16px 18px;
    font-size: 13px;
  }
  .artserv-faq-a {
    padding: 0 18px 16px;
    font-size: 13px;
  }
}

/* ════════════════════════════════════════════
   プラン2カード並列
════════════════════════════════════════════ */
.artserv-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.artserv-plan-card {
  border: 1px solid #e0ead8;
  border-radius: 14px;
  padding: 28px 24px;
  background: #fff;
  position: relative;
}

.artserv-plan-card--featured {
  border-color: #2d6a2d;
  border-width: 2px;
  background: #f7faf5;
}

.artserv-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2d6a2d;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.artserv-plan-head {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e0ead8;
}

.artserv-plan-name {
  font-size: 13px;
  font-weight: 600;
  color: #777;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.artserv-plan-price {
  font-size: 32px;
  font-weight: 800;
  color: #1a2e1a;
  line-height: 1.1;
  margin-bottom: 4px;
}

.artserv-plan-price span {
  font-size: 14px;
  font-weight: 500;
  color: #888;
}

.artserv-plan-price-note {
  font-size: 12px;
  color: #aaa;
}

.artserv-plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.artserv-plan-list li {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.artserv-plan-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2d6a2d;
  font-weight: 700;
}

@media (max-width: 600px) {
  .artserv-plan-grid {
    grid-template-columns: 1fr;
  }
  .artserv-plan-card--featured {
    order: -1;
  }
}

/* ════════════════════════════════════════════
   One-Time Article Plan（スポットプラン）
════════════════════════════════════════════ */
.artserv-spot-box {
  border: 2px solid #c8a84b;
  border-radius: 12px;
  padding: 32px;
  background: #fffdf5;
}

.artserv-spot-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.artserv-spot-amount {
  font-size: 36px;
  font-weight: 700;
  color: #1a2e1a;
  letter-spacing: -0.02em;
}

.artserv-spot-unit {
  font-size: 15px;
  color: #888;
}

.artserv-spot-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.artserv-spot-list li {
  font-size: 14px;
  color: #444;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.artserv-spot-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2d6a2d;
  font-weight: 700;
}

.artserv-spot-note {
  font-size: 12px;
  color: #999;
  line-height: 1.6;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid #e8dfc0;
}

@media (max-width: 600px) {
  .artserv-spot-box {
    padding: 24px 18px;
  }
  .artserv-spot-amount {
    font-size: 28px;
  }
}

/* ════════════════════════════════════════════
   プラン比較カード（横並び）
════════════════════════════════════════════ */
.artserv-plan-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 64px;
}

.artserv-plan-card {
  border: 1.5px solid #e0ead8;
  border-radius: 16px;
  padding: 32px;
  background: #fff;
  position: relative;
}

.artserv-plan-card--featured {
  border-color: #2d6a2d;
  background: #f7fbf7;
}

.artserv-plan-card-badge {
  display: inline-block;
  background: #2d6a2d;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.artserv-plan-card-label {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.artserv-plan-card--featured .artserv-plan-card-label {
  color: #2d6a2d;
}

.artserv-plan-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0ead8;
}

.artserv-plan-card-amount {
  font-size: 28px;
  font-weight: 700;
  color: #1a2e1a;
  letter-spacing: -0.02em;
}

.artserv-plan-card-unit {
  font-size: 13px;
  color: #999;
}

.artserv-plan-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.artserv-plan-card-list li {
  font-size: 13px;
  color: #444;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.artserv-plan-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2d6a2d;
  font-weight: 700;
}

.artserv-plan-card-note {
  font-size: 11px;
  color: #aaa;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 600px) {
  .artserv-plan-cards {
    grid-template-columns: 1fr;
  }
  .artserv-plan-card {
    padding: 24px 20px;
  }
  .artserv-plan-card-amount {
    font-size: 24px;
  }
}


/* ════════════════════════════════════════════
   プラン詳細比較表
════════════════════════════════════════════ */
.artserv-compare-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e0ead8;
  -webkit-overflow-scrolling: touch;
}

.artserv-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
  min-width: 560px;
}

/* ヘッダー */
.artserv-compare-table thead tr {
  background: #f0f7ec;
}

.artserv-compare-table thead th {
  padding: 16px 20px;
  font-weight: 700;
  color: #2d4a2f;
  border-bottom: 2px solid #e0ead8;
  vertical-align: middle;
  line-height: 1.5;
}

.artserv-compare-item-col {
  text-align: left;
  width: 36%;
}

.artserv-compare-plan-col {
  text-align: center;
  width: 32%;
}

.artserv-compare-featured-col {
  background: #e8f4e8;
  color: #1a4a1a !important;
}

.artserv-compare-price {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #2d6a2d;
  margin-top: 4px;
}

/* 行 */
.artserv-compare-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
}

.artserv-compare-table tbody tr:last-child {
  border-bottom: none;
}

.artserv-compare-table tbody td {
  padding: 13px 20px;
  color: #444;
  vertical-align: middle;
}

.artserv-compare-table tbody td:first-child {
  font-weight: 500;
  color: #333;
  text-align: left;
}

/* ○ × */
.artserv-compare-o {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #2d6a2d;
}

.artserv-compare-x {
  text-align: center;
  font-size: 13px;
  color: #bbb;
}

/* 月額列の強調 */
.artserv-compare-featured {
  background: #f7fbf7;
}

@media (max-width: 600px) {
  .artserv-compare-table {
    font-size: 12px;
    min-width: 480px;
  }
  .artserv-compare-table thead th,
  .artserv-compare-table tbody td {
    padding: 11px 12px;
  }
}

/* 比較表ヘッダーのおすすめバッジ */
.artserv-compare-badge {
  display: inline-block;
  background: #2d6a2d;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 6px;
}

/* インラインリンク */
.artserv-inline-link {
  color: #2d6a2d;
  font-size: 12px;
  text-decoration: underline;
}

/* ════════════════════════════════════════════
   横幅 1200px 対応・バッジ横並び
════════════════════════════════════════════ */

/* バッジ + プラン名 横並び */


/* ════════════════════════════════════════════
   Web Service ページ — プランカード（3列）
════════════════════════════════════════════ */
.webserv-plan-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 64px;
}

.webserv-plan-card {
  border: 1.5px solid #e0ead8;
  border-radius: 16px;
  padding: 28px 24px;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
}

.webserv-plan-card--featured {
  border-color: #2d6a2d;
  background: #f7fbf7;
}

.webserv-plan-badge {
  display: inline-block;
  background: #2d6a2d;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  width: fit-content;
}

.webserv-plan-name {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.webserv-plan-card--featured .webserv-plan-name {
  color: #2d6a2d;
}

.webserv-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0ead8;
}

.webserv-plan-amount {
  font-size: 26px;
  font-weight: 700;
  color: #1a2e1a;
  letter-spacing: -0.02em;
}

.webserv-plan-unit {
  font-size: 13px;
  color: #999;
}

.webserv-plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.webserv-plan-list li {
  font-size: 13px;
  color: #444;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.webserv-plan-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2d6a2d;
  font-weight: 700;
}

.webserv-plan-btn {
  display: block;
  text-align: center;
  padding: 10px 16px;
  border: 1.5px solid #2d6a2d;
  border-radius: 6px;
  color: #2d6a2d;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-top: auto;
}

.webserv-plan-btn:hover {
  background: #2d6a2d;
  color: #fff;
}

.webserv-plan-btn--featured {
  background: #2d6a2d;
  color: #fff;
}

.webserv-plan-btn--featured:hover {
  background: #1a4a1a;
}

@media (max-width: 768px) {
  .webserv-plan-cards {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════
   横幅 1200px 対応・バッジ横並び
════════════════════════════════════════════ */

/* webserv 側もartserv-bodyを使用 */
.artserv-body {
  max-width: 1200px;
}

/* カードのバッジ + プラン名 横並び */
.webserv-plan-head-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.webserv-plan-head-row .webserv-plan-badge {
  margin-bottom: 0;
}

.webserv-plan-head-row .webserv-plan-name {
  margin-bottom: 0;
}

/* 比較表のバッジ横並び（webserv内） */
.artserv-compare-head-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.artserv-compare-head-label {
  font-size: 14px;
  font-weight: 700;
  color: #1a4a1a;
}

/* ════════════════════════════════════════════
   実績セクション — 横スクロールカード
════════════════════════════════════════════ */
.artworks-section {
  padding: 56px 0 64px;
  background: #f7f9f6;
  width: 100%;
}

.artworks-head {
  text-align: center;
  padding: 0 24px;
  margin-bottom: 32px;
}

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

.artworks-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a2e1a;
}

/* 横スクロールトラック */
.artworks-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 24px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.artworks-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

/* カード */
.artworks-card {
  flex: 0 0 280px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0ead8;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.artworks-card-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.artworks-card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.artworks-card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2d6a2d;
  margin-bottom: 8px;
}

.artworks-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a2e1a;
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}

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

.artworks-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  background: #2d6a2d;
  color: #fff;
  border: none;
}

.artworks-card-btn--en {
  background: #f0f0f0;
  color: #555;
}

.artworks-card-btn:hover {
  opacity: 0.85;
}

/* PC：カード幅を広げる */
@media (min-width: 900px) {

  .artworks-track {
    padding: 0 40px 16px;
  }
  .artworks-card {
    flex: 0 0 320px;
  }
  .artworks-card-img {
    height: 200px;
  }
}

/* ════════════════════════════════════════════
   Drawer Nav — Accordion Sub Menu
════════════════════════════════════════════ */

/* トグルボタン — 既存リンクと同じ外観 */
.drawer-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 28px;
  height: 52px;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(244,240,232,0.85);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.drawer-nav-toggle:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

/* ＋ アイコン */
.drawer-nav-toggle-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  position: relative;
  margin-left: 8px;
}

.drawer-nav-toggle-icon::before,
.drawer-nav-toggle-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* 横線 */
.drawer-nav-toggle-icon::before {
  width: 12px;
  height: 1.5px;
  top: 6px;
  left: 1px;
}

/* 縦線 */
.drawer-nav-toggle-icon::after {
  width: 1.5px;
  height: 12px;
  top: 1px;
  left: 6px;
}

/* 開いたとき縦線を非表示（+ → −） */
.drawer-nav-toggle[aria-expanded="true"] .drawer-nav-toggle-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

/* ─── サブメニュー本体 ─── */

/* デフォルト：非表示（max-height で滑らかに） */
.drawer-nav-sub {
  max-height: 0;
  overflow: hidden;
  background: rgba(0,0,0,0.18);
  transition: max-height 0.28s ease;
}

/* 開いた状態 */
.drawer-nav-sub.is-open {
  max-height: 200px; /* 3アイテム分で十分な高さ */
}

/* サブリンク */
.drawer-nav-sub a {
  display: flex !important;
  align-items: center !important;
  padding: 0 28px 0 40px !important;
  height: 44px !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  letter-spacing: 0.10em !important;
  color: rgba(244,240,232,0.55) !important;
  border-bottom: 1px solid rgba(255,255,255,0.04) !important;
  transition: background 0.15s, color 0.15s, padding-left 0.15s !important;
  white-space: nowrap;
}

.drawer-nav-sub a:last-child {
  border-bottom: none !important;
}

.drawer-nav-sub a:hover {
  background: rgba(255,255,255,0.05) !important;
  color: rgba(200,168,75,0.9) !important;
  padding-left: 48px !important;
}

/* ════════════════════════════════
   その他オプション — 1クリック開閉
════════════════════════════════ */

.webserv-option-wrap {
  margin-top: 16px;
}

/* トグルボタン */
.webserv-option-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: none;
  border: 1.5px solid #4a7a30;
  border-radius: 4px;
  color: #4a7a30;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 16px;
}

.webserv-option-toggle:hover {
  background: #4a7a30;
  color: #fff;
}

.webserv-option-toggle-icon {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

/* パネル */
.webserv-option-panel {
  border: 1px solid #e2e2de;
  border-radius: 6px;
  overflow: hidden;
}

/* リスト */
.webserv-option-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.webserv-option-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 12px 18px;
  border-bottom: 1px solid #f0f0ee;
}

.webserv-option-list li:last-child {
  border-bottom: none;
}

.webserv-option-name {
  font-size: 13px;
  font-weight: 500;
  color: #222;
  letter-spacing: 0.04em;
}

.webserv-option-memo {
  font-size: 11px;
  font-weight: 300;
  color: #aaa;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* ── ABOUT BLOCK スマホ対応 ── */
@media (max-width: 640px) {
  .about-block {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  /* img-right（画像が右）のとき → スマホでは画像を上に */
  .about-block.img-right .about-slider {
    order: -1;
  }

  .about-slider {
    min-height: 240px;
  }

  .about-slider img {
    width: 100%;
    height: 240px;
    object-fit: cover;
  }

  .about-text {
    padding: 24px 20px;
  }
}

.rv-url-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #4a7a30;
  border: 1.5px solid #4a7a30;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
	text-align: center;
}
.rv-url-btn:hover {
  background: #4a7a30;
  color: #fff;
}

/* ════════════════════════════════════════════
   SINGLE BLOG
════════════════════════════════════════════ */


/* ── ACFメタパネル ── */


.sb-visit-btn:hover { background: #3a6020; }


.sb-visit-btn--en:hover { background: #3a4a7a; }

/* ── スマホ ── */
@media (max-width: 640px) {
  .sb-wrap {
    padding: 24px 18px 60px;
  }

  .sb-meta-panel {
    gap: 16px 20px;
    padding: 18px 20px;
  }
}

/* ════════════════════════════════════════════
   SINGLE BLOG
════════════════════════════════════════════ */


/* ── ACFメタパネル ── */


.sb-visit-btn:hover { background: #3a6020; }


.sb-visit-btn--en:hover { background: #3a4a7a; }

/* ── single スライダー ── */
.single-slider-outer {
  text-align: center;
  background: #fff;
  position: relative;
}


.single-slider-outer .slider-btn.prev { left: 12px; }
.single-slider-outer .slider-btn.next { right: 12px; }


/* ── スマホ ── */
@media (max-width: 640px) {
  .sb-wrap {
    padding: 24px 18px 60px;
  }

  .sb-meta-panel {
    gap: 16px 20px;
    padding: 18px 20px;
  }

  .single-slide img {
    max-height: 60vh;
  }
}

/* ════════════════════════════════════════════
   FF DISCOUNT PRICE DESIGN
   ::before の固定テキストをやめ ff-price-note をバッジとして使用
════════════════════════════════════════════ */

.ff-discount-price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* 取り消し線付き旧価格 */
.ff-old-price {
  position: relative;
  color: #9b9b9b;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
}
.ff-old-price::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 2px;
  background: #c74242;
  transform: rotate(-7deg);
}

/* 新価格（::before を使わずシンプルに） */
.ff-new-price {
  color: #2d6a2d;
  font-weight: 800;
  display: inline-block;
}

/* 割引バッジ — ff-price-note をバッジとして表示 */
.ff-price-note {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  letter-spacing: .12em;
  color: #fff;
  background: #2d6a2d;
  border-radius: 999px;
  padding: 3px 9px;
  font-weight: 700;
  vertical-align: middle;
  margin-left: 4px;
}

/* プランカード内のユニット（/ Month など） */
.artserv-plan-card-unit {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  margin-left: 2px;
}

/* 比較表内での調整 */
.artserv-compare-price .ff-old-price {
  font-size: 11px;
  margin-right: 4px;
}
.artserv-compare-price .ff-new-price {
  font-size: 13px;
}
.artserv-compare-price .ff-price-note {
  font-size: 9px;
  padding: 2px 6px;
}

/* ════════════════════════════════════════════
   SINGLE BLOG
════════════════════════════════════════════ */

.sb-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 4% 80px;
}

/* ── ACFメタパネル ── */
.sb-meta-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  background: #fafaf8;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 36px;
}

.sb-meta-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sb-meta-block--url {
  width: 100%;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid #eee;
}

.sb-meta-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  font-family: 'Barlow', sans-serif;
}

.sb-meta-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border: 1.5px solid #ddd;
  border-radius: 20px;
  font-size: 12px;
  color: #333;
  background: #fff;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.04em;
}

.sb-meta-tag--plan {
  border-color: #3a6020;
  color: #3a6020;
}

.sb-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sb-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1.5px solid #ddd;
  font-size: 11px;
  color: #555;
  background: #fff;
  font-family: 'Barlow', sans-serif;
  letter-spacing: 0.04em;
  transition: border-color 0.15s, color 0.15s;
}

.sb-tag:hover {
  border-color: #3a6020;
  color: #3a6020;
}

.sb-visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: #1a2e1a;
  color: #f4f0e8;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-family: 'Barlow', sans-serif;
  transition: background 0.18s;
}

.sb-visit-btn svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.sb-visit-btn:hover { background: #3a6020; }

.sb-visit-btn--en {
  background: #2a3a5a;
}

.sb-visit-btn--en:hover { background: #3a4a7a; }


.single-slider-inner {
  position: relative;
  display: inline-block;
  width: 100%;
}

.single-slide {
  display: none;
  width: 100%;
}

.single-slide.active {
  display: block;
}

.single-slide img {
  width: auto;
  height: auto;
  max-height: 80vh;
  max-width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: contain;
}

.single-slider-outer .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.4);
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-slider-outer .slider-btn.prev { left: 12px; }
.single-slider-outer .slider-btn.next { right: 12px; }

.single-slider-outer .slider-btn svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

/* ── スマホ ── */
@media (max-width: 640px) {
  .sb-wrap {
    padding: 24px 18px 60px;
  }

  .sb-meta-panel {
    gap: 16px 20px;
    padding: 18px 20px;
  }

  .single-slide img {
    max-height: 60vh;
  }
}

/* ════════════════════════════════════════════
   X ANALYTICS SUMMARY CARDS
════════════════════════════════════════════ */
.report-x-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.report-x-card {
  background: #f8faf6;
  border: 1px solid #dce8d4;
  border-radius: 10px;
  padding: 20px 18px;
  text-align: center;
}

.report-x-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7a9a6a;
  margin-bottom: 8px;
}

.report-x-value {
  font-size: 28px;
  font-weight: 800;
  color: #1a2e1a;
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Barlow', sans-serif;
}

.report-x-note {
  font-size: 11px;
  color: #888;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .report-x-summary {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ════════════════════════════════════════════
   ANALYTICS PAGE SLIDER
════════════════════════════════════════════ */
#analyticsSlider {
  position: relative;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 40px;
  overflow: hidden;
}

#analyticsSlider .an-slide {
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

#analyticsSlider .an-slide.an-active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

#analyticsSlider .an-slide img {
  width: auto;
  height: auto;
  max-height: 80vh;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

#analyticsSlider .an-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.3);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}

#analyticsSlider .an-btn:hover { background: rgba(0,0,0,0.6); }
#analyticsSlider .an-btn.prev { left: 12px; }
#analyticsSlider .an-btn.next { right: 12px; }

/* ════════════════════════════════════════════
   CONTACT — Divider & CF7 Form
════════════════════════════════════════════ */

/* 区切り線 */
.contact-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 40px;
  color: #bbb;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: 'Barlow', sans-serif;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0ead8;
}

/* CF7ラッパー */
.contact-form-wrap {
  text-align: left;
  background: #f7f9f6;
  border: 1px solid #e0ead8;
  border-radius: 16px;
  padding: 36px 32px 40px;
}

/* ラベル */
.contact-form-wrap .wpcf7 label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7a9a6a;
  font-family: 'Barlow', sans-serif;
  margin-bottom: 20px;
}

/* インプット・テキストエリア・セレクト */
.contact-form-wrap .wpcf7 input[type="text"],
.contact-form-wrap .wpcf7 input[type="email"],
.contact-form-wrap .wpcf7 textarea,
.contact-form-wrap .wpcf7 select {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 16px;
  background: #fff;
  border: 1.5px solid #dce8d4;
  border-radius: 8px;
  font-size: 14px;
  color: #1a2e1a;
  font-family: 'Barlow', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}

.contact-form-wrap .wpcf7 input[type="text"]:focus,
.contact-form-wrap .wpcf7 input[type="email"]:focus,
.contact-form-wrap .wpcf7 textarea:focus,
.contact-form-wrap .wpcf7 select:focus {
  border-color: #3a6020;
  box-shadow: 0 0 0 3px rgba(58,96,32,0.1);
}

.contact-form-wrap .wpcf7 textarea {
  height: 140px;
  resize: vertical;
}

/* セレクトの矢印 */
.contact-form-wrap .wpcf7 select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='1,1 7,7 13,1' fill='none' stroke='%237a9a6a' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
  cursor: pointer;
}

/* 送信ボタン */
.contact-form-wrap .wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  background: #1a2e1a;
  color: #f4f0e8;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  font-family: 'Barlow', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}

.contact-form-wrap .wpcf7 input[type="submit"]:hover {
  background: #3a6020;
  transform: translateY(-1px);
}

/* バリデーションメッセージ */
.contact-form-wrap .wpcf7-not-valid-tip {
  font-size: 11px;
  color: #c74242;
  margin-top: 4px;
  display: block;
}

.contact-form-wrap .wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  border: none;
  background: #eaf4e2;
  color: #2d6020;
}

.contact-form-wrap .wpcf7-response-output.wpcf7-validation-errors,
.contact-form-wrap .wpcf7-response-output.wpcf7-mail-sent-ng {
  background: #fde8e8;
  color: #c74242;
}

/* スマホ */
@media (max-width: 600px) {
  .contact-form-wrap {
    padding: 24px 18px 28px;
  }
}

/* ════════════════════════════════════════════
   PASSWORD PROTECTED PAGE
════════════════════════════════════════════ */

.pw-protect-wrap {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.pw-protect-card {
  width: 100%;
  max-width: 460px;
  background: #f7f9f6;
  border: 1px solid #e0ead8;
  border-radius: 20px;
  padding: 52px 40px 48px;
  text-align: center;
}

/* 鍵アイコン */
.pw-protect-icon {
  width: 72px;
  height: 72px;
  background: #1a2e1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #c8d9a0;
}

.pw-protect-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #7a9a6a;
  font-family: 'Barlow', sans-serif;
  margin-bottom: 10px;
}

.pw-protect-title {
  font-size: 22px;
  font-weight: 600;
  color: #1a2e1a;
  line-height: 1.3;
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
}

.pw-protect-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 32px;
  font-family: 'Barlow', sans-serif;
}

/* フォーム */
.pw-protect-form {
  text-align: left;
}

.pw-protect-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #7a9a6a;
  font-family: 'Barlow', sans-serif;
  margin-bottom: 8px;
}

.pw-protect-input {
  display: block;
  width: 100%;
  padding: 14px 18px;
  background: #fff;
  border: 1.5px solid #dce8d4;
  border-radius: 10px;
  font-size: 15px;
  color: #1a2e1a;
  font-family: 'Barlow', sans-serif;
  letter-spacing: .15em;
  outline: none;
  box-sizing: border-box;
  margin-bottom: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pw-protect-input:focus {
  border-color: #3a6020;
  box-shadow: 0 0 0 3px rgba(58,96,32,0.1);
}

.pw-protect-input::placeholder {
  letter-spacing: .05em;
  color: #bbb;
}

.pw-protect-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: #1a2e1a;
  color: #f4f0e8;
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: 'Barlow', sans-serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.pw-protect-btn:hover {
  background: #3a6020;
  transform: translateY(-1px);
}

/* スマホ */
@media (max-width: 600px) {
  .pw-protect-card {
    padding: 36px 22px 32px;
  }
  .pw-protect-title {
    font-size: 18px;
  }
}

/* ════════════════════════════════════════════
   FF 比較表ヘッダー修正
   バッジを比較表から除去し、旧価格→新価格のみシンプルに表示
════════════════════════════════════════════ */

/* テーブル固定幅・均等列 */
.artserv-compare-table {
  min-width: 700px;
  table-layout: fixed;
}

.artserv-compare-item-col { width: 30%; }
.artserv-compare-plan-col { width: 23.3%; }

/* ヘッダーth */
.artserv-compare-table thead th {
  padding: 14px 12px;
  vertical-align: middle;
  line-height: 1.4;
}

/* 価格ブロック：縦積み・中央揃え */
.artserv-compare-price {
  display: block;
  margin-top: 6px;
  text-align: center;
  line-height: 1.5;
}

/* 旧価格：小さく・グレー・取り消し線 */
.artserv-compare-price .ff-old-price {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: #aaa;
  margin-bottom: 2px;
  white-space: nowrap;
}

/* 新価格：グリーン・太字 */
.artserv-compare-price .ff-new-price {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2d6a2d;
  white-space: nowrap;
}

/* featured列 */
.artserv-compare-featured-col {
  background: #e8f4e8 !important;
}

/* スマホ */
@media (max-width: 600px) {
  .artserv-compare-table {
    min-width: 560px;
    font-size: 12px;
  }
  .artserv-compare-table thead th {
    padding: 10px 8px;
  }
}

/* ════════════════════════════════════════════
   ff-old-price 打ち消し線を文字範囲内に修正
════════════════════════════════════════════ */

/* テキストデコレーションで文字範囲内のみに限定 */
.ff-old-price {
  text-decoration: line-through;
  text-decoration-color: #c74242;
  text-decoration-thickness: 1.5px;
}

/* ::after の疑似要素による斜め線を完全に無効化 */
.ff-old-price::after {
  display: none !important;
}

/* ════════════════════════════════════════════
   比較表ヘッダー バッジ + プラン名 縦揃え修正
════════════════════════════════════════════ */
.artserv-compare-head-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  vertical-align: middle;
}

.artserv-compare-badge {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  vertical-align: middle;
}

.artserv-compare-head-label {
  font-size: 14px;
  font-weight: 700;
  color: #1a4a1a;
  vertical-align: middle;
  line-height: 1;
}

/* ── 比較表ヘッダー 縦積み構造 ── */
.artserv-compare-th-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.artserv-compare-plan-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a4a1a;
  line-height: 1;
}

/* バッジ＋プラン名 横並び・中央揃え */
.artserv-compare-head-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: nowrap;
}

.artserv-compare-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  line-height: 1;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   比較表 列幅均等・余白縮小・Pro列崩れ修正
════════════════════════════════════════════ */

/* テーブル固定幅・4列均等 */
.artserv-compare-table {
  table-layout: fixed !important;
  min-width: 0 !important;
  width: 100% !important;
}

/* Features列を狭く、プラン3列を均等に */
.artserv-compare-item-col {
  width: 25% !important;
}
.artserv-compare-plan-col {
  width: 25% !important;
}

/* ヘッダーpadding を半分に */
.artserv-compare-table thead th {
  padding: 8px 8px !important;
  vertical-align: middle !important;
}

/* th内コンテンツが折り返さないよう */
.artserv-compare-th-inner {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px !important;
}

.artserv-compare-plan-name {
  white-space: nowrap !important;
}

/* 価格の折り返しを防ぐ */
.artserv-compare-price .ff-old-price,
.artserv-compare-price .ff-new-price {
  white-space: nowrap !important;
}

/* ── ヘッダーセル内の上下余白調整 ── */
.artserv-compare-table thead th {
  padding-top: 12px !important;
  padding-bottom: 6px !important;
}

/* ════════════════════════════════════════
   analytics.php 追加CSS
   style.css 末尾に追記
════════════════════════════════════════ */

/* ── Area Guide Table ── */
.area-guide-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 16px;
}

.area-guide-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 13px;
}

.area-guide-table thead th {
  background: #111;
  color: #fff;
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  white-space: nowrap;
}

.area-guide-table tbody tr {
  border-bottom: 1px solid #e6e6e6;
}

.area-guide-table tbody tr:hover {
  background: #f9f9f9;
}

.area-guide-table td {
  padding: 10px 14px;
  vertical-align: middle;
  line-height: 1.45;
}


/* 順位バッジ */
.area-rank {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #111;
  margin-right: 8px;
  min-width: 36px;
}

/* 各記事のReadボタン */
.area-guide-btn {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #111;
  border: 1px solid #111;
  border-radius: 4px;
  padding: 4px 10px;
  white-space: nowrap;
  text-decoration: none !important;
  transition: background .15s, color .15s;
}

.area-guide-btn:hover {
  background: #111;
  color: #fff !important;
}

/* ENボタン: グリーン系 */
.area-guide-btn--en {
  color: #1a6e34;
  border-color: #1a6e34;
}

.area-guide-btn--en:hover {
  background: #1a6e34;
  color: #fff !important;
}

/* 5列テーブル: Area/JAボタン/JA Rank/ENボタン/EN Rank */
.area-guide-table th:nth-child(1),
.area-guide-table td:nth-child(1) { width: 18%; }
.area-guide-table th:nth-child(2),
.area-guide-table td:nth-child(2),
.area-guide-table th:nth-child(4),
.area-guide-table td:nth-child(4) { width: 26%; text-align: center; }
.area-guide-table th:nth-child(3),
.area-guide-table td:nth-child(3),
.area-guide-table th:nth-child(5),
.area-guide-table td:nth-child(5) { width: 15%; text-align: center; }



/* ── About Minimedia 画像 ── */
.minimedia-img-wrap {
  margin: 32px 0 0;
  width: 100%;
  overflow: hidden;
}

.minimedia-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* ════════════════════════════════════════
   余白修正: セクション間・要素間の過剰スペース削除
════════════════════════════════════════ */


/* report-heading の上下余白を縮小 */
.analytics-main .report-heading {
  margin-top: 24px;
  margin-bottom: 12px;
  padding-bottom: 8px;
}


/* strain-tabs と report-panel 間の余白 */
.analytics-main .strain-tabs {
  margin-bottom: 12px;
}

/* report-site-label の上余白を縮小 */
.analytics-main .report-site-label {
  margin-top: 16px;
  margin-bottom: 6px;
}

/* report-note の上下余白を縮小 */
.analytics-main .report-note {
  margin-top: 8px;
  margin-bottom: 8px;
}


/* area-guide-table-wrap の上余白 */
.analytics-main .area-guide-table-wrap {
  margin-top: 8px;
}


/* ════════════════════════════════════════
   FOOTER LINE BAR
════════════════════════════════════════ */
.site-footer-line {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: var(--line-green, #00b900);
  transform: translateY(0);
  transition: transform 0.30s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 下スクロール時に隠す */
.site-footer-line.hidden {
  transform: translateY(100%);
}

.footer-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: transparent;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s;
}

.footer-line-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}

.footer-line-btn svg:first-child {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

.footer-line-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.footer-line-btn:hover .footer-line-arrow {
  transform: translateX(3px);
}

/* コピーライトバー */
.footer-copy-bar {
  background: #111e11;
  padding: 14px 4%;
  text-align: center;
  /* フッターLINEバーの高さ分だけ下マージン */
  padding-bottom: calc(14px + 52px); /* LINEバー分の余白 */
}

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

/* ════════════════════════════════════════
   FF WELCOME PAGE — 追加スタイル
════════════════════════════════════════ */

/* 注意書きテキスト（金額表の下） */
.ff-price-note-text {
  font-size: 12px;
  color: #999;
  line-height: 1.7;
  text-align: center;
  margin: 12px 4% 0;
  padding: 12px 16px;
  background: #f8f8f6;
  border-radius: 4px;
}

/* 詳細を見るボタン */
.ff-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: #2d6a2d;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}
.ff-detail-btn:hover {
  background: #1e4a1e;
  transform: translateY(-1px);
}

/* キーワードテーブル */
.ff-kw-section {
  margin-top: 8px;
}
.ff-kw-section .report-site-label {
  font-size: 13px;
  font-weight: 600;
  color: #2d4a2f;
  margin-bottom: 10px;
}
.ff-kw-section .report-table-wrap {
  overflow-x: auto;
}
.ff-kw-section .report-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.ff-kw-section .report-table th {
  background: #f0f7ec;
  color: #2d4a2f;
  font-weight: 700;
  padding: 10px 14px;
  text-align: left;
  white-space: nowrap;
	text-align:center;
}
.ff-kw-section .report-table td {
  padding: 9px 14px;
  border-bottom: 1px solid #eef2ec;
  color: #333;
}
.ff-kw-section .report-table tr:last-child td {
  border-bottom: none;
}

/* ポイント3つ 横スクロール */
.ff-web-points-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
.ff-web-points-track::-webkit-scrollbar {
  height: 4px;
}
.ff-web-points-track::-webkit-scrollbar-thumb {
  background: #c8dfc8;
  border-radius: 2px;
}
.ff-web-point-card {
  flex: 0 0 280px;
  background: #ffffff;
  border: 1px solid #d8ead8;
  border-radius: 8px;
  padding: 24px 20px;
  scroll-snap-align: start;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  min-width: 0;
}
.ff-web-point-num {
  font-size: 11px;
  font-weight: 700;
  color: #2d6a2d;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.ff-web-point-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a3a1a;
  line-height: 1.5;
  margin-bottom: 12px;
}
.ff-web-point-body {
  font-size: 13px;
  color: #555;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .ff-web-points-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow-x: visible;
  }
  .ff-web-point-card {
    flex: none;
  }
}
/* ══ Web料金シミュレーター（webcalc）══ */
.webcalc{margin:24px 0 8px;padding:20px;border:1px solid #d8e6d8;border-radius:14px;background:#f6faf6;}
.webcalc-lead{margin:0 0 16px;font-size:16px;font-weight:700;color:#1a4a1a;text-align:center;}
.webcalc-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;}
.webcalc-field{display:flex;flex-direction:column;gap:6px;}
.webcalc-label{font-size:12px;font-weight:700;color:#2d6a2d;line-height:1.3;}
.webcalc-note{display:block;font-size:10px;font-weight:500;color:#7a8a7a;margin-top:2px;}
.webcalc-select{width:100%;padding:9px 10px;border:1px solid #c3d6c3;border-radius:8px;background:#fff;font-size:13px;color:#1a4a1a;}
.webcalc-static{padding:9px 10px;border:1px solid #e0e0e0;border-radius:8px;background:#eef3ee;font-size:13px;font-weight:700;color:#1a4a1a;}
.webcalc-total{display:flex;align-items:center;justify-content:space-between;margin-top:16px;padding:14px 18px;border-radius:10px;background:#1a4a1a;color:#fff;}
.webcalc-total-label{font-size:14px;font-weight:700;letter-spacing:.05em;}
.webcalc-total-val{font-size:24px;font-weight:800;}
.webcalc-disclaim{margin:10px 0 0;font-size:11px;line-height:1.5;color:#7a8a7a;}
@media(max-width:600px){
  .webcalc-grid{grid-template-columns:repeat(2,1fr);}
  .webcalc-total-val{font-size:20px;}
}

/* ══ Web料金シミュレーター 合計列を含む5列レイアウト（追記）══ */
.webcalc-grid{grid-template-columns:repeat(5,1fr);}
.webcalc-static--total{background:#1a4a1a;color:#fff;font-size:18px;font-weight:800;border-color:#1a4a1a;}
.webcalc-field--total .webcalc-label{color:#1a4a1a;}
@media(max-width:600px){
  .webcalc-grid{grid-template-columns:repeat(2,1fr);}
  .webcalc-field--total{grid-column:1 / -1;}
}

/* ══ 記事広告プランカード 3列化（追記）══ */
.artserv-plan-cards{grid-template-columns:repeat(3,1fr);}

/* ══ 記事広告(FF Welcome) スマホはみ出し総合対策（最終）══ */
@media (max-width: 600px){

  /* 親の器を画面幅に固定し、子のはみ出しを切る */
  .ff-panel,
  .artserv-main,
  .artserv-body{
    max-width: 100% !important;
    overflow-x: hidden;
  }

  /* プランカードは1列 */
  .artserv-plan-cards{ grid-template-columns: 1fr !important; }

  /* グリッド/フレックスの子が中身で膨らむのを解除（最重要） */
  .artserv-plan-cards > .artserv-plan-card,
  .artserv-plan-card{
    min-width: 0 !important;
    max-width: 100% !important;
  }

  /* 比較表：幅固定を解除し、枠内だけで横スクロール */
  .artserv-compare-wrap{
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  .artserv-compare-table{
    min-width: 0 !important;
  }

  /* 長い英文・金額・URLの折り返し */
  .artserv-plan-card,
  .artserv-body{
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

/* ══ 比較表デザイン仕上げ（追記・最終）══ */
.artserv-compare-wrap{
  border:1px solid #e0ead8;
  border-radius:14px;
  overflow:hidden;
}
.artserv-compare-table{
  table-layout:fixed !important;
  width:100% !important;
  min-width:0 !important;
  border-collapse:separate;
  border-spacing:0;
}
.artserv-compare-item-col{ width:28% !important; }
.artserv-compare-plan-col{ width:24% !important; }
.artserv-compare-table thead th{
  height:104px;
  padding:14px 10px !important;
  vertical-align:middle !important;
  border-bottom:1px solid #e0ead8 !important;
  background:#f4f9f0;
}
.artserv-compare-th-inner{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  gap:8px !important;
}
.artserv-compare-plan-name{ font-size:14px; font-weight:700; color:#1a4a1a; }
.artserv-compare-price{ margin-top:2px; line-height:1.4; }
.artserv-compare-price .ff-old-price{ font-size:11px; color:#aaa; }
.artserv-compare-price .ff-new-price{ font-size:14px; font-weight:800; color:#2d6a2d; }
.artserv-compare-featured-col{ background:#eaf5ea !important; }
.artserv-compare-table tbody td.artserv-compare-featured{ background:#f4faf2; }
.artserv-compare-table tbody td{
  padding:14px 12px !important;
  border-bottom:1px solid #eef3ec;
}
.artserv-compare-table tbody tr:last-child td{ border-bottom:none; }
.artserv-compare-table tbody td:first-child{ font-weight:500; color:#333; }
.artserv-compare-o{ color:#2d6a2d; font-weight:700; }
.artserv-compare-x{ color:#c4c4c4; }
.artserv-compare-th-inner > div{ gap:6px !important; }
@media (max-width:600px){
  .artserv-compare-table thead th{ height:auto; padding:12px 8px !important; }
  .artserv-compare-table tbody td{ padding:11px 8px !important; }
}

/* ══ 記事広告プランカード 金額行をWeb仕様に揃える（追記）══ */
.artserv-plan-card-price{
  flex-wrap:wrap;
  align-items:center;
  gap:6px 8px;
}
.artserv-plan-card-amount{
  font-size:26px;
  white-space:nowrap;
}
.artserv-plan-card-price .ff-old-price{
  font-size:13px;
  white-space:nowrap;
}
.artserv-plan-card-price .ff-price-note{
  font-size:10px;
}
.artserv-plan-card-unit{
  white-space:nowrap;
}

/* ════════════════════════════════════════════════════════════════
   月額 / 買取 タブ + メリット・デメリット対比カード
   ※ style.css 末尾に追記
   ※ 既存 .webcalc / .artserv 系の緑トーンに統一
════════════════════════════════════════════════════════════════ */

/* ── サブ切り替えタブ ── */
.plan-mode-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.plan-mode-tab {
  flex: 1;
  min-width: 160px;
  padding: 14px 20px;
  border: 1.5px solid #d7e2d2;
  border-radius: 999px;
  background: #fff;
  color: #4a6a4a;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.plan-mode-tab:hover {
  border-color: #2d6a2d;
  color: #2d6a2d;
}
.plan-mode-tab.active {
  background: #2d6a2d;
  border-color: #2d6a2d;
  color: #fff;
}

/* ── メリット / デメリット 対比 ── */
.plan-pros-cons {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.plan-pc-card {
  border-radius: 14px;
  padding: 24px 24px 22px;
  border: 1.5px solid #e0ead8;
  background: #fff;
}
.plan-pc-card--pro {
  border-color: #cfe6cf;
  background: #f7fbf7;
}
.plan-pc-card--con {
  border-color: #ecd9d9;
  background: #fdf8f8;
}

.plan-pc-head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6ede2;
}
.plan-pc-card--pro .plan-pc-head { color: #2d6a2d; }
.plan-pc-card--con .plan-pc-head { color: #b4524a; border-bottom-color: #f0dede; }

.plan-pc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-pc-list li {
  font-size: 13.5px;
  line-height: 1.65;
  color: #3a4a3a;
  padding-left: 26px;
  position: relative;
}

.plan-pc-list a{
	text-decoration:underline;
	color:#000;
}

.plan-pc-list li strong { font-weight: 700; color: #1a3a1a; }

/* メリット：緑チェック */
.plan-pc-list--pro li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 6px;
  height: 11px;
  border: solid #2d6a2d;
  border-width: 0 2.4px 2.4px 0;
  transform: rotate(45deg);
}
/* デメリット：赤の横棒（マイナス） */
.plan-pc-list--con li {
  color: #6a4a4a;
}
.plan-pc-list--con li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 13px;
  height: 2.4px;
  background: #c2554c;
  border-radius: 2px;
}

/* ── レスポンシブ ── */
@media (max-width: 768px) {
  .plan-pros-cons {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .plan-mode-tab {
    min-width: 0;
    padding: 12px 14px;
    font-size: 13px;
  }
  .plan-pc-card {
    padding: 20px 18px;
  }
}

/* ════════════════════════════════════════════════════════════════
   月額 / 買取 タブ + メリット・デメリット対比カード
   ※ style.css 末尾に追記
   ※ 既存 .webcalc / .artserv 系の緑トーンに統一
════════════════════════════════════════════════════════════════ */

/* ── サブ切り替えタブ ── */
.plan-mode-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.plan-mode-tab {
  flex: 1;
  min-width: 160px;
  padding: 14px 20px;
  border: 1.5px solid #d7e2d2;
  border-radius: 999px;
  background: #fff;
  color: #4a6a4a;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.plan-mode-tab:hover {
  border-color: #2d6a2d;
  color: #2d6a2d;
}
.plan-mode-tab.active {
  background: #2d6a2d;
  border-color: #2d6a2d;
  color: #fff;
}

/* ── メリット / デメリット 対比 ── */
.plan-pros-cons {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.plan-pc-card {
  border-radius: 14px;
  padding: 24px 24px 22px;
  border: 1.5px solid #e0ead8;
  background: #fff;
}
.plan-pc-card--pro {
  border-color: #cfe6cf;
  background: #f7fbf7;
}
.plan-pc-card--con {
  border-color: #ecd9d9;
  background: #fdf8f8;
}

.plan-pc-head {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6ede2;
}
.plan-pc-card--pro .plan-pc-head { color: #2d6a2d; }
.plan-pc-card--con .plan-pc-head { color: #b4524a; border-bottom-color: #f0dede; }

.plan-pc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-pc-list li {
  font-size: 13.5px;
  line-height: 1.65;
  color: #3a4a3a;
  padding-left: 26px;
  position: relative;
}
.plan-pc-list li strong { font-weight: 700; color: #1a3a1a; }

/* メリット：緑チェック */
.plan-pc-list--pro li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 6px;
  height: 11px;
  border: solid #2d6a2d;
  border-width: 0 2.4px 2.4px 0;
  transform: rotate(45deg);
}
/* デメリット：赤の横棒（マイナス） */
.plan-pc-list--con li {
  color: #6a4a4a;
}
.plan-pc-list--con li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 10px;
  width: 13px;
  height: 2.4px;
  background: #c2554c;
  border-radius: 2px;
}

/* ── レスポンシブ ── */
@media (max-width: 768px) {
  .plan-pros-cons {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .plan-mode-tab {
    min-width: 0;
    padding: 12px 14px;
    font-size: 13px;
  }
  .plan-pc-card {
    padding: 20px 18px;
  }
}

/* ══ 年齢確認ゲート（独立・新クラス）══ */
.tog-agegate{
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;                 /* JSで flex に切り替え */
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(13,26,13,0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.tog-agegate.is-open{ display: flex; }

.tog-agegate__box{
  width: 100%;
  max-width: 440px;
  background: #f7f7f5;
  border: 1px solid #e2e2de;
  border-radius: 14px;
  padding: 40px 32px 36px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}
.tog-agegate__label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #4a7a30;
  margin-bottom: 12px;
}
.tog-agegate__title{
  font-size: clamp(24px,5vw,32px);
  color: #1a2e1a;
  line-height: 1.2;
  margin-bottom: 14px;
}
.tog-agegate__text{
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 28px;
}
.tog-agegate__actions{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tog-agegate__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.tog-agegate__btn:hover{ opacity: 0.9; transform: translateY(-1px); }
.tog-agegate__btn--service{
  background: #4a7a30;
  color: #fff;
}
.tog-agegate__btn--media{
  background: #1a2e1a;
  color: #fff;
}

/* ════════════════════════════════════════
   shop-card 価格表示（Wholesale / Retail）
   2カラムGrid：ラベル列＋金額列を常に揃える
   ・文字数が変わっても金額の頭が揃う
   ・行が1行/2行どちらでも崩れない
   ・スマホ/PCで固定px幅に依存せず崩れない
   ※このブロックで .shop-price-wrap の定義は1つに統一（重複定義は削除済み）
════════════════════════════════════════ */

/* 価格ブロック：2カラムのグリッド（ラベル列／金額列）。中央寄せ */
.shop-price-wrap{
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: baseline;
  column-gap: 12px;
  row-gap: 8px;
  width: 100%;
  margin: 10px 0 14px;
}

/* 各価格行を“透明化”して、中のラベル・金額を親グリッドの升目へ流す
   ※テーマの .shop-price が持つ display を無効化する唯一の !important */
.shop-price-wrap .shop-price{
  display: contents !important;
}

/* ラベル（Wholesale / Retail）：ラベル列いっぱいに広げ、幅を統一 */
.shop-price-wrap .shop-price-label{
  justify-self: stretch;
  box-sizing: border-box;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
}

/* 卸値：控えめ（小さめ・グレー） */
.shop-price-wrap .shop-price--cost{
  color: #7a7a7a;
  font-size: 15px;
  font-weight: 600;
}
.shop-price-wrap .shop-price--cost .shop-price-label{
  background: #ededed;
  color: #666;
}

/* 売値：主役（大きめ・濃い・太字） */
.shop-price-wrap .shop-price--sell{
  color: #161616;
  font-size: 21px;
  font-weight: 800;
}
.shop-price-wrap .shop-price--sell .shop-price-label{
  background: #3a7d3a;
  color: #fff;
}

/* スマホ微調整（崩れ防止） */
@media (max-width: 600px){
  .shop-price-wrap{ column-gap: 10px; row-gap: 7px; }
  .shop-price-wrap .shop-price-label{ font-size: 10px; padding: 3px 8px; }
  .shop-price-wrap .shop-price--cost{ font-size: 14px; }
  .shop-price-wrap .shop-price--sell{ font-size: 19px; }
}

/* ════════════════════════════════════════
   Item single ギャラリー（oggal）＋レイアウト
   item-single.php 専用。style.css に追記。
════════════════════════════════════════ */

/* ── ページ全体：サイドバー無し・中央寄せ ── */
.item-page-wrap{
  display: block;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 上段：画像（左）＋スペック（右） */
.item-page-wrap .item-top{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}
.item-page-wrap .item-gallery{
  flex: 1 1 420px;
  max-width: 480px;
  min-width: 0;
}
.item-page-wrap .item-specs{
  flex: 1 1 360px;
  min-width: 0;
}

/* ── ギャラリー本体 ── */
.oggal{ width:100%; margin:0; }

/* メイン表示エリア：比率固定。画像はこの中だけに収める */
.oggal-main{
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f3f3;
  cursor: zoom-in;
}

/* メイン画像：通常は非表示、.is-active のみ表示。
   テーマの img 指定（幅・余白）を打ち消す箇所のみ !important */
.oggal-main-img{
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.oggal-main-img.is-active{ opacity: 1; }

/* ズームヒント */
.oggal-main .img-zoom-hint{
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  color: #fff;
  background: rgba(0,0,0,.45);
  pointer-events: none;
}

/* サムネ列 */
.oggal-thumbs{
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 12px;
  width: 100%;
}
.oggal-thumb{
  flex: 1 1 0;
  min-width: 0;
  display: block;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: #f3f3f3;
  transition: border-color .15s ease, transform .15s ease;
}
.oggal-thumb img{
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  margin: 0 !important;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.oggal-thumb:hover{ transform: translateY(-2px); }
.oggal-thumb.is-active{ border-color:#2d6a2d; }
.oggal-thumb:focus-visible{ outline:2px solid #2d6a2d; outline-offset:2px; }

/* ── スマホ：1カラム中央 ── */
@media (max-width: 768px){
  .item-page-wrap .item-top{
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .item-page-wrap .item-gallery{
    flex-basis: auto;
    width: 100%;
    max-width: 460px;
  }
  .item-page-wrap .item-specs{
    flex-basis: auto;
    width: 100%;
    max-width: 480px;
  }
}
@media (max-width: 600px){
  .oggal-thumbs{ gap: 7px; }
  .oggal-main{ border-radius: 12px; }
}

/* ════════════════════════════════════════
   Related Items 価格表示（Wholesale / Retail）
   related-items-section 配下にスコープしてテーマCSSに勝つ
════════════════════════════════════════ */
.related-items-section .ri-price-wrap{
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

/* 価格行 共通 */
.related-items-section .ri-price{
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}
.related-items-section .ri-price span{
  font-size: 10px;
  color: #999;
  margin-left: 2px;
}

/* ラベル（Wholesale / Retail）の小さなバッジ */
.related-items-section .ri-price-label{
  display: inline-block;
  min-width: 64px;
  padding: 1px 7px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.6;
  text-align: center;
  color: #555;
}

/* 卸値：控えめ（グレー） */
.related-items-section .ri-price--cost{
  color: #6b6b6b;
}
.related-items-section .ri-price--cost .ri-price-label{
  background: #ececec;
  color: #555;
}

/* 売値：強調（緑＋太字） */
.related-items-section .ri-price--sell{
  color: #1a1a1a;
  font-weight: 700;
  font-size: 16px;
}
.related-items-section .ri-price--sell .ri-price-label{
  background: #3a6020;
  color: #fff;
}

/* ============================================================
   年齢ゲート内 AREA ボタン＋エリアタグ（追加分のみ）
   既存の .tog-agegate スタイルに追記してください。
============================================================ */

/* AREA トグルボタン */
.tog-agegate__btn--area{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid #ccc;
  color: #444;
  cursor: pointer;
}
.tog-agegate__btn--area:hover{
  border-color: #4a7a30;
  color: #4a7a30;
}
.tog-agegate__area-caret{
  font-size: 11px;
  line-height: 1;
  transition: transform .2s ease;
}
.tog-agegate__btn--area.is-open .tog-agegate__area-caret{
  transform: rotate(180deg);
}

/* AREA パネル */
.tog-agegate__areas{
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #ececec;
  text-align: center;
}
.tog-agegate__areas[hidden]{ display: none; }

.tog-agegate__areas-label{
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .08em;
  color: #999;
}
/* 2つ目のラベル（Area Guide）は少し上に余白 */
.tog-agegate__chips--main + .tog-agegate__areas-label{
  margin-top: 20px;
}

/* チップ並び */
.tog-agegate__chips{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

/* 通常チップ（エリア別ガイド） */
.tog-agegate__chip{
  display: inline-block;
  padding: 7px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 999px;
  font-size: 12.5px;
  line-height: 1;
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, border-color .2s, color .2s;
}
.tog-agegate__chip:hover{
  background: #4a7a30;
  border-color: #4a7a30;
  color: #fff;
}
.tog-agegate__chip.is-disabled{
  color: #c4c4c4;
  border-color: #ececec;
  pointer-events: none;
}

/* 主要エリア（大きめ・塗り） */
.tog-agegate__chip--main{
  padding: 10px 22px;
  border: 1.5px solid #4a7a30;
  background: #4a7a30;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
}
.tog-agegate__chip--main:hover{
  background: #3c6626;
  border-color: #3c6626;
  color: #fff;
}

/* スマホ */
@media (max-width: 600px){
  .tog-agegate__chip{ font-size: 12px; padding: 6px 12px; }
  .tog-agegate__chip--main{ font-size: 13px; padding: 9px 18px; }
}

/* ===== 見出し（会話ブロックの上） ===== */
.ogsp5-head{
  max-width: 1250px;
  margin: 56px auto 8px;
  padding: 0 8px;
  text-align: center;
  font-family: 'Barlow', 'Helvetica Neue', sans-serif;
  box-sizing: border-box;
}
.ogsp5-head__eyebrow{
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  color: #4a7a30;
}
.ogsp5-head__title{
  margin: 0 auto 16px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.55;
  color: #1a1a1a;
}
.ogsp5-head__lead{
  margin: 0 auto;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.9;
  color: #666;
}
.ogsp5-head::after{
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin: 22px auto 0;
  background: #4a7a30;
  border-radius: 3px;
}

/* ===== 会話イラスト＋吹き出し 5連 ===== */
.ogsp5{
  position: relative;
  max-width: 1250px;
  margin: 20px auto 40px;
  font-family: 'Barlow', 'Helvetica Neue', sans-serif;
}

/* PC：横スクロール（2.5個分だけ見える） */
.ogsp5__track{
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
}
.ogsp5__track::-webkit-scrollbar{ height: 8px; }
.ogsp5__track::-webkit-scrollbar-thumb{ background:#cfcfcf; border-radius:8px; }
.ogsp5__track::-webkit-scrollbar-track{ background:#f2f2f2; border-radius:8px; }

/* カード1枚：2.5個表示 */
.ogsp5__item{
  margin: 0;
  flex: 0 0 calc((100% - 80px) / 2.5);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* 画像 */
.ogsp5__photo{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* 吹き出し本体（黒縁・高さ固定で3列を揃える） */
.ogsp5__bubble{
  position: relative;
  min-height: 110px;
  display: flex;
  align-items: center;
  background: #fff;
  border: 2.5px solid #1a1a1a;
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 3px 5px 0 rgba(26,26,26,0.18);
  box-sizing: border-box;
}

/* しっぽ：下向き三角（黒縁＋白の2枚重ね） */
.ogsp5__bubble::before{
  content:"";
  position:absolute;
  bottom:-18px;
  border-width: 18px 13px 0 13px;
  border-style: solid;
  border-color: #1a1a1a transparent transparent transparent;
}
.ogsp5__bubble::after{
  content:"";
  position:absolute;
  bottom:-13px;
  border-width: 14px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

/* 右の人が話す → しっぽは右下 */
.ogsp5__bubble--right::before{ right: 44px; }
.ogsp5__bubble--right::after{  right: 47px; }

/* 左の人が話す → しっぽは左下 */
.ogsp5__bubble--left::before{ left: 44px; }
.ogsp5__bubble--left::after{  left: 47px; }

/* 文章 */
.ogsp5__text{
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}
.ogsp5__text strong{
  color: #2d6a2d;
  font-weight: 700;
}
.ogsp5__text a{ color:#2d6a2d; text-decoration:underline; }

/* ── 横スクロール誘導の矢印（右端に重ねる） ── */
.ogsp5__scrollHint{
  position: absolute;
  top: 40%;
  right: 8px;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(26,26,26,0.82);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  pointer-events: none;
  animation: ogsp5-nudge 1.2s ease-in-out infinite;
  transition: opacity .35s ease;
}
.ogsp5.is-scrolled .ogsp5__scrollHint{ opacity: 0; }
@keyframes ogsp5-nudge{
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50%      { transform: translateY(-50%) translateX(6px); }
}

/* 開閉ボタン：PCでは非表示（スマホ専用） */
.ogsp5__toggle{ display: none; }

/* ============================================================
   スマホ（アコーディオン＋窮屈さ解消）
============================================================ */
@media (max-width: 600px){
  .ogsp5-head{
    margin: 36px auto 14px;
    padding: 0 20px;
  }
  .ogsp5-head__title{ font-size: 20px; line-height: 1.5; }
  .ogsp5-head__lead{ font-size: 13px; line-height: 1.8; }
  .ogsp5-head__br{ display: none; }

  .ogsp5{
    margin: 14px auto 32px;
    padding: 0 16px;
    box-sizing: border-box;
  }

  /* スクロール矢印は不要 */
  .ogsp5__scrollHint{ display: none; }

  /* ── アコーディオン枠：初期は420pxで隠す ── */
  .ogsp5__track{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 14px;
    overflow: hidden;
    scroll-snap-type: none;
    padding-bottom: 0;
    max-height: 300px;              /* 420px → 300px に下げてもっと隠す */
    transition: max-height .45s ease;
  }
  /* 開いた状態：高さ解除 */
  .ogsp5.is-open .ogsp5__track{
    max-height: 4000px;             /* 十分大きい値で全表示 */
  }

  .ogsp5__item{ flex: none; gap: 12px; }
  .ogsp5__item:nth-child(5){ grid-column: 1 / -1; }

  .ogsp5__bubble{
    min-height: auto;
    padding: 16px 15px;
  }
  .ogsp5__text{
    font-size: 13px;
    line-height: 1.8;
  }

  /* しっぽ位置を内側へ */
  .ogsp5__bubble--right::before{ right: 28px; }
  .ogsp5__bubble--right::after{  right: 31px; }
  .ogsp5__bubble--left::before{ left: 28px; }
  .ogsp5__bubble--left::after{  left: 31px; }

  /* ── 下端グラデーション＋開閉ボタンの土台 ── */
  .ogsp5__fade{
    position: relative;
    display: block;
    margin-top: -90px;              /* トラック下端に重ねる */
    height: 90px;
    pointer-events: none;           /* グラデ自体はクリック透過 */
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 78%);
    z-index: 3;
    transition: opacity .35s ease;
  }
  /* 開いたらグラデーションを消す */
  .ogsp5.is-open .ogsp5__fade{
    opacity: 0;
    height: 0;
    margin-top: 20px;
  }

  /* 開閉ボタン：グラデーションの上に重ねて表示 */
.ogsp5__toggle{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 4;
    margin: -30px auto 0;           /* auto で中央。left/transform は使わない */
    padding: 11px 26px;
    border: 1.5px solid #1a1a1a;
    border-radius: 999px;
    background: #1a1a1a;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 4px 14px rgba(0,0,0,.18);
  }
  .ogsp5__toggle-caret{
    font-size: 10px;
    transition: transform .3s ease;
  }
  .ogsp5.is-open .ogsp5__toggle-caret{
    transform: rotate(180deg);
  }
  /* ボタンの下余白（開閉どちらでも） */
  .ogsp5__toggleWrap{
    text-align: center;
    margin-top: 6px;
  }
}

.ogsp6-head{
	margin-top:0 !important;
}