/* ═══════════════════════════════════
   RESET & ROOT
═══════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #f5f5f0;
  color: #2a2a2a;
  line-height: 1.8;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

:root {
  --gd:   #1a3a2a;
  --gm:   #2d6a4f;
  --gmi:  #40916c;
  --gl:   #74c69d;
  --gp:   #d8f3dc;
  --gold: #c9a84c;
  --glt:  #f0d080;
  --cream:#faf8f2;
  --td:   #1c1c1c;
  --tm:   #4a4a4a;
  --tl:   #888;
}

/* ═══════════════════════════════════
   HEADER
═══════════════════════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,58,42,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.hdr {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  color: #fff; text-decoration: none;
}
.logo-img { height: 44px; width: auto; object-fit: contain; }
.logo-texts { display: flex; flex-direction: column; gap: 1px; }
.logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  color: var(--glt); letter-spacing: .15em; line-height: 1;
}
.logo-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px; color: rgba(255,255,255,.9); letter-spacing: .08em;
}
.logo-tagline {
  font-size: 9px; color: rgba(255,255,255,.45);
  letter-spacing: .12em; text-transform: uppercase;
}
nav ul { display: flex; gap: 2px; list-style: none; }
nav ul li a {
  color: rgba(255,255,255,.82);
  padding: 7px 13px; border-radius: 4px;
  font-size: 13px; letter-spacing: .04em;
  transition: background .25s, color .25s;
}
nav ul li a:hover, nav ul li a.active {
  background: var(--gmi); color: #fff;
}

/* ═══════════════════════════════════
   HAMBURGER & MOBILE DRAWER
═══════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 6px;
  transition: background .2s;
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.85); border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  background: rgba(22,50,36,.98);
  border-top: 1px solid rgba(201,168,76,.15);
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, opacity .3s ease;
  opacity: 0;
}
.nav-drawer.open { max-height: 400px; opacity: 1; }
.nav-drawer ul {
  list-style: none; padding: 12px 0 20px;
  display: flex; flex-direction: column;
}
.nav-drawer ul li a {
  display: block; padding: 13px 28px;
  color: rgba(255,255,255,.82); font-size: 14px;
  letter-spacing: .06em; border-bottom: 1px solid rgba(255,255,255,.05);
  transition: background .2s, color .2s;
}
.nav-drawer ul li a:hover { background: rgba(64,145,108,.3); color: #fff; }
.nav-drawer ul li:last-child a { border-bottom: none; }

@media (max-width: 768px) {
  nav ul { display: none; }
  .hamburger { display: flex; }
}
@media (min-width: 769px) {
  .nav-drawer { display: none; }
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
#home {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding-top: 68px; overflow: hidden;
}
.hero-bg1, .hero-bg2 {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg1 {
  background-image: url('hero/bg1.jpg');
}
.hero-bg2 {
  background-image: url('hero/bg2.jpg');
  mix-blend-mode: luminosity; opacity: .30;
}

/* ▼ オーバーレイを強化 */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(8,20,12,.55)  0%,
      rgba(8,20,12,.72) 40%,
      rgba(8,20,12,.80) 60%,
      rgba(8,20,12,.65) 100%
    );
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image:
    repeating-linear-gradient(60deg,
      transparent, transparent 28px,
      rgba(201,168,76,.4) 28px, rgba(201,168,76,.4) 29px),
    repeating-linear-gradient(-60deg,
      transparent, transparent 28px,
      rgba(201,168,76,.4) 28px, rgba(201,168,76,.4) 29px);
}

/* ▼ コンテンツエリアにすりガラス背景を追加 */
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 60px 40px;
  max-width: 860px; width: 100%;
  background: rgba(8,20,12,.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  box-shadow:
    0 8px 48px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.hero-logo-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  margin-bottom: 28px;
}
.hero-logo-img {
  height: 90px; width: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.7));
}
.hero-logo-texts {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.hero-logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5vw, 48px); font-weight: 700;
  color: var(--glt); letter-spacing: .25em; line-height: 1;
  text-shadow:
    0 2px 8px rgba(0,0,0,.8),
    0 0 24px rgba(201,168,76,.3);
}
.hero-logo-sep {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 4px auto;
}
.hero-logo-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(15px, 2.5vw, 22px);
  color: #fff;
  letter-spacing: .12em;
  text-shadow: 0 2px 8px rgba(0,0,0,.8);
}
.hero-logo-tagline {
  font-size: 11px;
  color: rgba(255,255,255,.65);
  letter-spacing: .12em;
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,.22);
  border: 1px solid rgba(201,168,76,.55);
  color: var(--glt); font-size: 12px;
  padding: 6px 20px; border-radius: 20px;
  letter-spacing: .1em; margin-bottom: 28px;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
  box-shadow: 0 2px 12px rgba(201,168,76,.15);
}
.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(30px, 5.5vw, 58px); font-weight: 700;
  color: #fff; line-height: 1.35; margin-bottom: 20px;
  text-shadow:
    0 2px 4px rgba(0,0,0,.9),
    0 4px 20px rgba(0,0,0,.7);
}
.hero-title-em {
  color: var(--glt);
  text-shadow:
    0 2px 4px rgba(0,0,0,.9),
    0 0 20px rgba(240,208,128,.25);
}

/* ─── HERO DIVIDER & SUB ─── */
.hero-divider {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.6), transparent);
  margin: 0 auto 20px;
}
.hero-sub {
  font-size: clamp(12px, 1.8vw, 14px);
  color: rgba(255,255,255,.80);
  line-height: 2; margin-bottom: 32px;
  letter-spacing: .08em;
  text-shadow: 0 1px 6px rgba(0,0,0,.8);
}

.hero-btns {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 0;
}
.btn {
  padding: 14px 36px; border-radius: 4px;
  font-size: 14px; font-weight: 500; letter-spacing: .1em;
  border: none; cursor: pointer; transition: all .3s;
  display: inline-block;
}
.btn-gold {
  background: var(--gold); color: var(--gd);
  box-shadow: 0 4px 16px rgba(201,168,76,.35);
}
.btn-gold:hover {
  background: var(--glt); transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,.5);
}
.btn-outline {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.5); color: #fff;
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.18);
  border-color: #fff;
}

/* ─── HERO PILLS ─── */
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-top: 32px;
}
.hero-pill {
  font-size: 11px;
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 20px; padding: 5px 16px;
  letter-spacing: .08em;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(4px);
  transition: border-color .25s, color .25s, background .25s;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.hero-pill:hover {
  border-color: rgba(201,168,76,.6);
  color: var(--glt);
  background: rgba(201,168,76,.12);
}

/* ═══════════════════════════════════
   SECTION COMMON
═══════════════════════════════════ */
section { padding: 96px 24px; }
section:nth-child(even) { background: #fff; }
.si { max-width: 1100px; margin: 0 auto; }
.sh { text-align: center; margin-bottom: 60px; }
.sl {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; color: var(--gmi);
  letter-spacing: .25em; text-transform: uppercase;
  display: block; margin-bottom: 8px;
}
.st {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3.5vw, 32px); color: var(--gd); font-weight: 700;
}
.sr {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gmi), var(--gold));
  margin: 14px auto 0;
}

/* ═══════════════════════════════════
   NEWS
═══════════════════════════════════ */
.news-list { display: flex; flex-direction: column; gap: 16px; }
.news-card {
  background: #fff; border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  display: flex; align-items: stretch;
  cursor: pointer; transition: box-shadow .25s, transform .25s;
  overflow: hidden;
}
.news-card:hover {
  box-shadow: 0 8px 30px rgba(45,106,79,.15);
  transform: translateY(-2px);
}
.news-bar { width: 4px; background: var(--gmi); flex-shrink: 0; }
.news-inner {
  padding: 18px 22px; flex: 1;
  display: flex; align-items: center; gap: 18px;
}
.news-date {
  font-size: 12px; color: var(--tl); white-space: nowrap;
  font-family: 'Cormorant Garamond', serif; letter-spacing: .06em;
}
.news-tag {
  font-size: 10px; background: var(--gp); color: var(--gm);
  padding: 3px 10px; border-radius: 20px; white-space: nowrap;
  border: 1px solid rgba(64,145,108,.25); letter-spacing: .06em;
}
.news-title { font-size: 14px; color: var(--td); flex: 1; font-weight: 500; }
.news-arr {
  color: var(--gmi); font-size: 16px; flex-shrink: 0;
  transition: transform .2s;
}
.news-card:hover .news-arr { transform: translateX(4px); }

/* ─── NEWS LOADING / ERROR / EMPTY ─── */
.news-loading {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; padding: 48px 0;
  color: var(--tl); font-size: 13px; letter-spacing: .08em;
}
.news-loading-spinner {
  width: 24px; height: 24px;
  border: 2px solid rgba(64,145,108,.2);
  border-top-color: var(--gmi);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  flex-shrink: 0;
}
.news-empty {
  text-align: center; padding: 48px 0;
  color: var(--tl); font-size: 13px; letter-spacing: .08em;
}
.news-error {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; padding: 48px 0;
  color: var(--tl); font-size: 13px; letter-spacing: .08em;
}
.news-retry-btn {
  background: var(--gm); color: #fff; border: none;
  padding: 8px 24px; border-radius: 4px;
  font-size: 12px; cursor: pointer; letter-spacing: .08em;
  transition: background .2s;
}
.news-retry-btn:hover { background: var(--gd); }

/* ═══════════════════════════════════
   NEWS MODAL
═══════════════════════════════════ */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,22,14,.7); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--cream); border-radius: 12px;
  max-width: 700px; width: 100%; max-height: 85vh; overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  animation: modalIn .3s ease;
  padding: 48px;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.modal-close-btn {
  position: sticky; top: 0; float: right;
  background: var(--gm); color: #fff; border: none;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; margin-bottom: 16px;
}
.modal-close-btn:hover { background: var(--gd); }
.modal-tag {
  display: inline-block; font-size: 10px;
  background: var(--gp); color: var(--gm);
  padding: 3px 10px; border-radius: 20px; margin-bottom: 12px;
  border: 1px solid rgba(64,145,108,.25);
}
.modal-date { font-size: 12px; color: var(--tl); margin-bottom: 16px; }
.modal-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px; color: var(--gd); margin-bottom: 24px; line-height: 1.5;
}
.modal-body { font-size: 14px; color: var(--tm); line-height: 1.9; }
.modal-body p { margin-bottom: 12px; }
.modal-back {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 32px; color: var(--gm); font-size: 13px; cursor: pointer;
  background: none; border: none; font-family: inherit;
}
.modal-back:hover { color: var(--gd); }

/* ═══════════════════════════════════
   ABOUT
═══════════════════════════════════ */
#about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 64px; align-items: start;
}
.about-imgbox {
  position: relative; border-radius: 12px; overflow: visible;
}
.about-imgbox img {
  width: 100%; border-radius: 10px;
  box-shadow: 0 12px 40px rgba(26,58,42,.18);
}
.green-dot {
  position: absolute; top: -20px; left: -20px;
  width: 80px; height: 80px; border-radius: 50%;
  background: radial-gradient(circle, var(--gl) 0%, transparent 70%);
  opacity: .5; pointer-events: none;
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gm); color: #fff;
  border-radius: 50%; width: 88px; height: 88px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(45,106,79,.4);
}
.about-badge-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 700; line-height: 1;
}
.about-badge-n sup { font-size: .6em; }
.about-badge-u { font-size: 8px; letter-spacing: .08em; opacity: .85; }
.about-body { padding-top: 16px; }
.about-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 3vw, 30px); font-weight: 700;
  color: var(--gd); line-height: 1.4; margin-bottom: 20px;
}
.about-body p {
  font-size: 14px; color: var(--tm); line-height: 1.9; margin-bottom: 14px;
}
.feat-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 28px;
}
.feat {
  background: #fff; border: 1px solid rgba(64,145,108,.15);
  border-radius: 10px; padding: 20px 14px; text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.feat:hover { box-shadow: 0 6px 20px rgba(45,106,79,.12); transform: translateY(-3px); }
.feat-icon {
  width: 52px; height: 52px; margin: 0 auto 8px;
  display: flex; align-items: center; justify-content: center; font-size: 0;
}
.feat-icon-img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  transition: transform .32s;
}
.feat:hover .feat-icon-img { transform: scale(1.12); }
.feat-label { font-size: 12px; color: var(--gd); line-height: 1.5; font-weight: 500; }

/* ═══════════════════════════════════
   PRODUCTS
═══════════════════════════════════ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.prod-card {
  background: #fff; border: 1px solid rgba(64,145,108,.12);
  border-radius: 12px; padding: 28px 16px 22px;
  text-align: center; cursor: pointer; position: relative;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.prod-card:hover {
  box-shadow: 0 10px 32px rgba(45,106,79,.18);
  transform: translateY(-4px); border-color: var(--gmi);
}
.prod-card::after {
  content: '写真を見る';
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(45,106,79,.92), transparent);
  color: rgba(255,255,255,.92); font-size: 11px; letter-spacing: .08em;
  padding: 18px 0 10px; border-radius: 0 0 12px 12px;
  opacity: 0; transition: opacity .28s; pointer-events: none;
}
.prod-card:hover::after { opacity: 1; }
.prod-icon { width: 64px; height: 64px; margin: 0 auto 14px; font-size: 0; }
.prod-icon-img { width: 100%; height: 100%; object-fit: contain; }
.prod-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px; font-weight: 600; color: var(--gd); margin-bottom: 6px;
}
.prod-desc { font-size: 11px; color: var(--tl); letter-spacing: .04em; }

/* ═══════════════════════════════════════
   SHOPS ─ 楽天のみ・横長バナー型
═══════════════════════════════════════ */
#shops { background: var(--cream); }

.rakuten-wrap {
  display: flex;
  justify-content: center;
}
.rakuten-card {
  display: flex; align-items: stretch;
  width: 100%; max-width: 860px;
  border-radius: 16px; overflow: hidden;
  text-decoration: none;
  box-shadow: 0 8px 36px rgba(0,0,0,.10);
  border: 1px solid rgba(191,0,0,.12);
  transition: .32s; background: #fff; position: relative;
}
.rakuten-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(191,0,0,.15);
}
.rakuten-accent {
  width: 8px; flex-shrink: 0;
  background: linear-gradient(180deg, #bf0000 0%, #e00 50%, #ff4444 100%);
}
.rakuten-body {
  flex: 1; padding: 32px 28px; min-width: 0;
}
.rakuten-badge {
  display: inline-block; font-size: 10px; letter-spacing: .18em;
  color: #bf0000; border: 1px solid rgba(191,0,0,.35);
  border-radius: 20px; padding: 3px 12px;
  margin-bottom: 14px; font-weight: 500;
}
.rakuten-shop-name {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.rakuten-kd {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3.5vw, 28px); font-weight: 600;
  color: var(--gd); letter-spacing: .12em;
}
.rakuten-komada {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(18px, 3vw, 24px); font-weight: 700;
  color: var(--gd); letter-spacing: .1em;
}
.rakuten-desc {
  font-size: 13px; color: var(--tm); line-height: 1.9; margin-bottom: 18px;
}
.rakuten-tags {
  display: flex; flex-wrap: wrap; gap: 7px;
}
.rakuten-tags span {
  font-size: 11px; color: var(--gm); background: var(--gp);
  border-radius: 20px; padding: 3px 12px;
  letter-spacing: .06em; font-weight: 500;
}
.rakuten-right {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 16px; padding: 32px;
  background: linear-gradient(160deg, #fff8f8 0%, #fff 100%);
  border-left: 1px solid rgba(191,0,0,.08);
  min-width: 190px; flex-shrink: 0;
}
.rakuten-logo-wrap {
  display: flex; align-items: center; gap: 10px;
}
.rakuten-logo-r {
  width: 44px; height: 44px; background: #bf0000;
  border-radius: 8px; color: #fff; font-size: 26px;
  font-weight: 900; font-family: Arial, sans-serif;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0; flex-shrink: 0;
}
.rakuten-logo-text {
  display: flex; flex-direction: column; gap: 1px;
}
.rakuten-ichiba {
  font-size: 14px; font-weight: 700; color: #bf0000;
  letter-spacing: .06em; line-height: 1;
}
.rakuten-ichiba-en {
  font-size: 9px; color: rgba(191,0,0,.55); letter-spacing: .1em;
}
.rakuten-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px; background: #bf0000; color: #fff;
  border-radius: 4px; font-size: 13px; font-weight: 700;
  letter-spacing: .08em; transition: .25s; white-space: nowrap;
}
.rakuten-card:hover .rakuten-cta { background: #e00; gap: 11px; }
.rakuten-note {
  font-size: 10px; color: var(--tl);
  letter-spacing: .06em; text-align: center;
}
@media (max-width: 680px) {
  .rakuten-card { flex-direction: column; }
  .rakuten-accent { width: 100%; height: 6px; }
  .rakuten-body { padding: 24px 20px 16px; }
  .rakuten-right {
    border-left: none; border-top: 1px solid rgba(191,0,0,.08);
    padding: 20px; min-width: unset;
  }
}

/* ═══════════════════════════════════
   INSTAGRAM
═══════════════════════════════════ */
#instagram { background: #fff; }
.ig-profile-card {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  background: var(--gp); border-radius: 14px;
  padding: 28px 32px; margin-bottom: 40px;
  border: 1px solid rgba(64,145,108,.2);
}
.ig-avatar { width: 72px; height: 72px; flex-shrink: 0; }
.ig-avatar svg { width: 100%; height: 100%; }
.ig-profile-info { flex: 1; min-width: 200px; }
.ig-username { font-size: 15px; font-weight: 600; color: var(--gd); letter-spacing: .05em; }
.ig-name { font-size: 12px; color: var(--gm); margin: 2px 0 6px; }
.ig-bio { font-size: 12px; color: var(--tm); line-height: 1.7; }
.ig-follow-btn {
  display: inline-block;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  color: #fff; padding: 10px 22px; border-radius: 6px;
  font-size: 13px; font-weight: 500; letter-spacing: .05em;
  transition: opacity .25s, transform .25s;
}
.ig-follow-btn:hover { opacity: .85; transform: translateY(-2px); }
.ig-posts-label {
  text-align: center; font-size: 12px; color: var(--tl);
  letter-spacing: .15em; margin-bottom: 24px;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-bottom: 36px;
}
.ig-post-wrap {
  border-radius: 10px; overflow: hidden;
  background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.ig-cta { text-align: center; }
.btn-ig {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  color: #fff; padding: 12px 28px; border-radius: 6px;
  font-size: 13px; font-weight: 500; letter-spacing: .06em;
  transition: opacity .25s, transform .25s;
}
.btn-ig:hover { opacity: .85; transform: translateY(-2px); }

/* ═══════════════════════════════════
   ACCESS
═══════════════════════════════════ */
#access { background: var(--cream); }
.access-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px; align-items: start;
}
.access-info { display: flex; flex-direction: column; gap: 24px; }
.info-row { display: flex; align-items: flex-start; gap: 14px; }
.iicon-img {
  width: 22px; height: 22px; margin-top: 2px;
  flex-shrink: 0; object-fit: contain;
}
.ilabel {
  font-size: 11px; color: var(--tl); letter-spacing: .1em;
  margin-bottom: 4px; text-transform: uppercase;
}
.ival { font-size: 14px; color: var(--td); line-height: 1.8; }
.access-map { width: 100%; }
.access-map iframe {
  width: 100%; height: 400px; border: none;
  border-radius: 10px;
  box-shadow: 0 6px 28px rgba(0,0,0,.1);
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
footer {
  background: var(--gd); color: rgba(255,255,255,.65);
  padding: 56px 24px;
}
.fi {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  gap: 28px; text-align: center;
}
.foot-brand { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.foot-logo-link { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.foot-logo-img {
  height: 50px; width: auto; object-fit: contain;
  filter: brightness(0) invert(1); opacity: .85;
}
.foot-logo-texts { display: flex; flex-direction: column; gap: 2px; }
.foot-logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--glt); letter-spacing: .2em; line-height: 1;
}
.foot-logo-jp {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px; color: rgba(255,255,255,.8); letter-spacing: .1em;
}
.foot-addr { font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: .06em; }
.foot-tel {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; color: rgba(255,255,255,.7);
}
.footer-tel-icon {
  width: 16px; height: 16px;
  filter: brightness(0) invert(1); opacity: .7;
}
.fnav { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: center; }
.fnav a {
  font-size: 12px; color: rgba(255,255,255,.55);
  letter-spacing: .06em; transition: color .2s;
}
.fnav a:hover { color: var(--glt); }
.fcopy { font-size: 11px; color: rgba(255,255,255,.3); letter-spacing: .06em; }
.fslogan {
  margin-top: 4px; font-family: 'Noto Serif JP', serif;
  font-size: 12px; color: rgba(201,168,76,.5);
}

/* ═══════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════ */
.rv {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.rv.show { opacity: 1; transform: none; }

/* ═══════════════════════════════════
   SLIDESHOW MODAL
═══════════════════════════════════ */
.ss-overlay {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(5,15,10,.88); backdrop-filter: blur(10px);
  align-items: center; justify-content: center; padding: 20px;
}
.ss-overlay.open { display: flex; }
.ss-modal {
  position: relative; width: min(860px, 96vw);
  background: #0f1f16; border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  border: 1px solid rgba(201,168,76,.2);
  animation: ssIn .32s ease;
}
@keyframes ssIn {
  from { opacity: 0; transform: scale(.94) translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.ss-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px; border-bottom: 1px solid rgba(201,168,76,.15);
  background: rgba(26,58,42,.7);
}
.ss-header-left { display: flex; align-items: center; gap: 12px; }
.ss-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px; color: #fff; letter-spacing: .08em;
}
.ss-counter {
  font-size: 12px; color: var(--glt); letter-spacing: .1em;
  background: rgba(201,168,76,.15); padding: 3px 12px;
  border-radius: 20px; border: 1px solid rgba(201,168,76,.25);
}
.ss-close {
  width: 34px; height: 34px; background: rgba(255,255,255,.08);
  border: none; border-radius: 50%; color: rgba(255,255,255,.7);
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: .2s;
}
.ss-close:hover { background: rgba(201,168,76,.4); color: #fff; }
.ss-stage {
  position: relative; width: 100%; aspect-ratio: 16/10;
  background: #080f0b;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ss-img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  opacity: 0; transition: opacity .35s ease;
  position: absolute; user-select: none;
}
.ss-img.active { opacity: 1; position: relative; }
.ss-spinner {
  position: absolute; width: 40px; height: 40px;
  border: 3px solid rgba(255,255,255,.1); border-top-color: var(--glt);
  border-radius: 50%; animation: spin .8s linear infinite; display: none;
}
.ss-spinner.show { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.ss-error {
  display: none; flex-direction: column;
  align-items: center; gap: 10px;
  color: rgba(255,255,255,.4); font-size: 13px; letter-spacing: .06em;
}
.ss-error.show { display: flex; }
.ss-error-icon { font-size: 40px; }
.ss-prev, .ss-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; background: rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.15); border-radius: 50%;
  color: #fff; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: .25s; z-index: 10; backdrop-filter: blur(4px);
}
.ss-prev { left: 14px; }
.ss-next { right: 14px; }
.ss-prev:hover, .ss-next:hover {
  background: rgba(45,106,79,.8); border-color: var(--glt);
  transform: translateY(-50%) scale(1.1);
}
.ss-prev.hidden, .ss-next.hidden { display: none; }
.ss-thumbs {
  display: flex; gap: 8px; padding: 12px 16px;
  overflow-x: auto; background: rgba(10,22,14,.85);
  scrollbar-width: thin; scrollbar-color: rgba(201,168,76,.3) transparent;
  min-height: 74px; align-items: center;
}
.ss-thumbs::-webkit-scrollbar { height: 4px; }
.ss-thumbs::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 2px; }
.ss-thumbs.hidden { display: none; }
.ss-thumb {
  flex-shrink: 0; width: 70px; height: 52px;
  object-fit: cover; border-radius: 6px;
  border: 2px solid transparent; cursor: pointer;
  transition: .22s; opacity: .5;
}
.ss-thumb:hover { opacity: .82; border-color: rgba(201,168,76,.5); }
.ss-thumb.active { opacity: 1; border-color: var(--glt); transform: scale(1.07); }
.ss-footer {
  display: flex; align-items: center; justify-content: flex-end;
  padding: 9px 18px; background: rgba(26,58,42,.5);
  border-top: 1px solid rgba(255,255,255,.06);
}
.ss-hint { font-size: 10px; color: rgba(255,255,255,.3); letter-spacing: .08em; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 900px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .access-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  section { padding: 64px 16px; }
  .hero-content { padding: 40px 16px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-pills { gap: 6px; }
  .hero-pill  { font-size: 10px; padding: 4px 12px; }
  .hero-sub   { font-size: 12px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-profile-card { flex-direction: column; text-align: center; }
  .access-map iframe { height: 280px; }
  .ss-prev, .ss-next { width: 38px; height: 38px; font-size: 16px; }
  .ss-thumb { width: 54px; height: 40px; }
  .ss-footer { display: none; }
  .logo-tagline { display: none; }
  .hero-logo-img { height: 60px; }
  .foot-logo-img { height: 38px; }
}
