/* =============== RESET / BASE =============== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  color: #1a1a1a;
  background: #fafaf7;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

:root {
  --ink: #1a1a1a;
  --ink-soft: #555;
  --ink-mute: #8a8a8a;
  --paper: #fafaf7;
  --paper-warm: #f4eee2;
  --rule: #d8d4c8;
  --rule-soft: #ebe7dc;
  --corp-accent: #1a3a52;       /* 深い藍 — 瀬戸内 */
  --corp-accent-soft: #e2eaf2;
  --shop-accent: #c0392b;       /* 朱赤 — 食欲 */
  --shop-accent-2: #e8a23b;     /* 山吹 — 賑やかさ */
  --gold: #b8924a;
  --container: 1200px;
}

/* =============== TYPOGRAPHY =============== */
body.mode-corp {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "Hiragino Mincho ProN", serif;
}
body.mode-shop {
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", "Hiragino Sans", sans-serif;
}
h1, h2, h3, h4, h5 { margin: 0; line-height: 1.4; font-weight: 500; }
.mode-corp h2 { letter-spacing: 0.12em; font-weight: 400; }
.mode-shop h2 { letter-spacing: 0.04em; font-weight: 700; }

/* =============== LAYOUT =============== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* =============== HEADER =============== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 247, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule-soft);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container); margin: 0 auto;
}
.site-header__brand {
  font-family: "Noto Serif JP", serif;
  font-size: 1.55rem; font-weight: 700; letter-spacing: 0.12em;
}
.site-header__brand small {
  display: block; font-size: 0.78rem; color: var(--ink-mute);
  letter-spacing: 0.3em; margin-top: 6px; font-weight: 400;
}
.site-nav ul {
  display: flex; gap: 32px; list-style: none; margin: 0; padding: 0;
}
.site-nav a {
  font-size: 1.1rem; font-weight: 600; color: var(--ink-soft);
  transition: color 0.2s, background-color 0.2s;
  letter-spacing: 0.08em;
  padding: 8px 14px; border-radius: 4px;
}
.site-nav a:hover {
  color: #fff;
  background: var(--corp-accent);
}
.site-nav a.is-active {
  color: var(--ink); border-bottom: 2px solid var(--ink); padding-bottom: 4px;
}
.site-header__cta {
  display: none;
  background: var(--shop-accent); color: #fff;
  font-size: 0.8rem; font-weight: 700;
  padding: 10px 20px; border-radius: 4px;
  letter-spacing: 0.05em;
}
.mode-shop .site-header__cta { display: inline-block; }
@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-header__inner { padding: 14px 16px; }
}

/* =============== HERO (CORP) =============== */
.hero-corp {
  position: relative; overflow: hidden;
  height: 86vh; min-height: 560px;
  display: flex; align-items: center;
  background:
    linear-gradient(180deg, rgba(13, 36, 56, 0.45) 0%, rgba(13, 36, 56, 0.7) 100%),
    linear-gradient(135deg, #1f4a6e 0%, #0d2438 100%);
  color: #fff;
}
.hero-corp::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 80px;
  background: linear-gradient(180deg, transparent, var(--paper));
  z-index: 3;
}
/* ヒーロー: 6枚の写真を6種類の入り方で順送り (36s 1サイクル、各6s可視) */
.hero-corp__slides {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-corp__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  animation-duration: 36s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  will-change: opacity, transform, filter;
}
.hero-corp__slide:nth-child(1) { animation-name: heroSlide1; animation-delay: 0s; }
.hero-corp__slide:nth-child(2) { animation-name: heroSlide2; animation-delay: 6s; }
.hero-corp__slide:nth-child(3) { animation-name: heroSlide3; animation-delay: 12s; }
.hero-corp__slide:nth-child(4) { animation-name: heroSlide4; animation-delay: 18s; }
.hero-corp__slide:nth-child(5) { animation-name: heroSlide5; animation-delay: 24s; }
.hero-corp__slide:nth-child(6) {
  animation-name: heroSlide6; animation-delay: 30s;
  background-position: 30% 25%;  /* 社長写真を左寄せ+顔位置を下に */
}

/* 1. ゆったりズームアウト (Ken Burns) */
@keyframes heroSlide1 {
  0%   { opacity: 0; transform: scale(1.18); filter: blur(0); }
  5%   { opacity: 1; }
  20%  { opacity: 1; transform: scale(1.02); }
  25%  { opacity: 0; }
  100% { opacity: 0; transform: scale(1.02); }
}
/* 2. 右から ぼかしながらスライドイン */
@keyframes heroSlide2 {
  0%   { opacity: 0; transform: translateX(22%) scale(1.08); filter: blur(22px); }
  5%   { opacity: 1; transform: translateX(0)   scale(1.00); filter: blur(0); }
  20%  { opacity: 1; transform: translateX(0)   scale(1.00); filter: blur(0); }
  25%  { opacity: 0; transform: translateX(-3%) scale(1.00); filter: blur(8px); }
  100% { opacity: 0; }
}
/* 3. 浮き出てくる (奥から手前へスケールアップ) */
@keyframes heroSlide3 {
  0%   { opacity: 0; transform: scale(0.82); filter: blur(18px); }
  5%   { opacity: 1; transform: scale(1.00); filter: blur(0); }
  20%  { opacity: 1; transform: scale(1.03); filter: blur(0); }
  25%  { opacity: 0; transform: scale(1.08); }
  100% { opacity: 0; }
}
/* 4. 左から ぼかしながらスライドイン */
@keyframes heroSlide4 {
  0%   { opacity: 0; transform: translateX(-22%) scale(1.08); filter: blur(22px); }
  5%   { opacity: 1; transform: translateX(0)    scale(1.00); filter: blur(0); }
  20%  { opacity: 1; transform: translateX(0)    scale(1.00); filter: blur(0); }
  25%  { opacity: 0; transform: translateX(3%)   scale(1.00); filter: blur(8px); }
  100% { opacity: 0; }
}
/* 5. 手前から奥へ押し込み (ゆるいズームイン) */
@keyframes heroSlide5 {
  0%   { opacity: 0; transform: scale(0.96); filter: blur(12px); }
  5%   { opacity: 1; transform: scale(1.00); filter: blur(0); }
  20%  { opacity: 1; transform: scale(1.10); filter: blur(0); }
  25%  { opacity: 0; transform: scale(1.12); }
  100% { opacity: 0; }
}
/* 6. ゆっくり左パン + 微ズーム (社長ポートレート向け) */
@keyframes heroSlide6 {
  0%   { opacity: 0; transform: translateX(2%) scale(1.08); filter: blur(6px); }
  5%   { opacity: 1; transform: translateX(1%) scale(1.06); filter: blur(0); }
  20%  { opacity: 1; transform: translateX(-2%) scale(1.02); filter: blur(0); }
  25%  { opacity: 0; transform: translateX(-3%) scale(1.00); }
  100% { opacity: 0; }
}
/* 文字を読みやすくする為のオーバーレイ (旧 .hero-corp の上に被せる) */
.hero-corp__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(13,36,56,0.55) 0%, rgba(13,36,56,0.78) 100%);
  pointer-events: none;
}
.hero-corp__inner {
  position: relative; z-index: 2;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.hero-corp__since {
  font-size: 0.72rem; letter-spacing: 0.45em; opacity: 0.75;
  margin-bottom: 28px;
}
.hero-corp__title {
  font-size: clamp(3.4rem, 7.8vw, 6.4rem);
  letter-spacing: 0.14em; line-height: 1.5; font-weight: 700;
}
.hero-corp__sub {
  font-size: 0.95rem; letter-spacing: 0.08em; opacity: 0.88;
  margin-top: 32px; max-width: 540px; line-height: 2;
}
.hero-corp__photo-note {
  position: absolute; bottom: 90px; right: 24px; z-index: 2;
  font-size: 0.7rem; opacity: 0.5; letter-spacing: 0.1em;
}

/* スマホ用: 大見出しが折り返して なぞりアニメが崩れる問題を解消 */
@media (max-width: 640px) {
  .hero-corp { height: auto; min-height: 480px; padding: 80px 0 100px; }
  .hero-corp__inner { padding: 0 20px; }

  .hero-corp__since {
    font-size: 0.62rem;
    letter-spacing: 0.25em;   /* 0.45em → 0.25em はみ出し防止 */
    margin-bottom: 20px;
  }
  .hero-corp__title {
    font-size: 2.2rem;         /* clamp 最小 3.4rem → 2.2rem に */
    letter-spacing: 0.05em;    /* 0.14em → 0.05em で 1行維持 */
    line-height: 1.55;
  }
  .hero-corp__sub {
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    margin-top: 24px;
    line-height: 1.9;
  }
  .hero-corp__photo-note { display: none; }
}

/* =============== HERO (SHOP) =============== */
.hero-shop {
  background: linear-gradient(135deg, #fff8e8 0%, #ffe0c8 100%);
  padding: 40px 0;
  border-bottom: 3px solid var(--shop-accent-2);
}
.hero-shop__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 32px;
}
@media (max-width: 768px) { .hero-shop__inner { grid-template-columns: 1fr; } }
.hero-shop__title {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 700;
  color: var(--shop-accent); margin-bottom: 12px; line-height: 1.4;
}
.hero-shop__lead { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.9; }
.hero-shop__badges { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.hero-shop__badge {
  background: #fff; color: var(--shop-accent);
  font-size: 0.78rem; font-weight: 700;
  padding: 6px 12px; border-radius: 14px;
  border: 1px solid var(--shop-accent);
}

/* =============== SECTIONS =============== */
.sec { padding: 100px 0; }
.sec--narrow { padding: 60px 0; }
.sec--paper { background: var(--paper-warm); }
.sec--white { background: #fff; }
.sec__eyebrow {
  font-size: 0.7rem; letter-spacing: 0.4em;
  color: var(--corp-accent); margin-bottom: 18px;
}
.sec__title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  letter-spacing: 0.12em; margin-bottom: 40px; font-weight: 400;
  line-height: 1.5;
}
.mode-shop .sec__title { letter-spacing: 0.03em; font-weight: 700; }
.mode-shop .sec__eyebrow { color: var(--shop-accent); }
.sec__lead {
  font-size: 1rem; line-height: 2.1; color: var(--ink-soft); max-width: 720px;
}

/* スマホ用: セクション共通の見出し・リード・パディングを詰める */
@media (max-width: 640px) {
  .sec { padding: 60px 0; }
  .sec--narrow { padding: 40px 0; }
  .container { padding: 0 16px; }        /* 24px → 16px で使える幅を広げる */
  .sec__eyebrow { letter-spacing: 0.24em; margin-bottom: 12px; }
  .sec__title {
    font-size: 1.5rem;                    /* 1.85rem → 1.5rem 折返し防止 */
    letter-spacing: 0;                    /* 0.04em → 0 中央揃えを厳密に */
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .mode-shop .sec__title { letter-spacing: 0; }
  .sec__lead { font-size: 0.92rem; line-height: 1.9; letter-spacing: 0; }
  .mini-heading { font-size: 1.05rem; letter-spacing: 0.02em; }
  .mini-heading + p { line-height: 1.9; font-size: 0.92rem; letter-spacing: 0; }
}

/* =============== EN SUBTEXT (説明文の英訳) =============== */
.en-text {
  display: block;
  margin-top: 14px;
  font-family: "Noto Serif JP", "Times New Roman", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
  max-width: 720px;
}
.en-text--center { margin-left: auto; margin-right: auto; }
.en-text--hero {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.en-text--product {
  margin-top: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--ink-mute);
}

/* =============== TWO COL =============== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.two-col--reverse > :first-child { order: 2; }
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col--reverse > :first-child { order: 0; }
}

/* =============== IMAGE PLACEHOLDERS =============== */
.ph {
  position: relative;
  background: linear-gradient(135deg, #e8e3d4 0%, #cbc4ad 100%);
  background-size: cover;
  background-position: center;
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 20px;
  letter-spacing: 0.08em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  overflow: hidden;
}
.ph::before {
  content: "📷"; position: absolute; top: 12px; left: 12px;
  font-size: 0.9rem; opacity: 0.5;
}
/* サンプル画像が当たった状態。テキストと 📷 を隠し、背景画像を見せる */
.ph--has-img { color: transparent; }
.ph--has-img::before { display: none; }
.ph--has-img::after {
  content: "サンプル画像";
  position: absolute; right: 10px; bottom: 8px;
  font-size: 0.62rem; letter-spacing: 0.15em;
  color: #fff; opacity: 0.7;
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 8px; border-radius: 2px;
}
/* 実写真は「サンプル画像」ラベルを出さない */
.ph--real::after { display: none; }
.ph--sea     { background: linear-gradient(135deg, #4a7088 0%, #2d4d6a 100%); color: rgba(255, 255, 255, 0.75); }
.ph--pond    { background: linear-gradient(135deg, #5a8270 0%, #2d4d3a 100%); color: rgba(255, 255, 255, 0.75); }
.ph--ebi     { background: linear-gradient(135deg, #e09858 0%, #a85d30 100%); color: rgba(255, 255, 255, 0.85); }
.ph--portrait{ background: linear-gradient(135deg, #8e8270 0%, #5e5240 100%); color: rgba(255, 255, 255, 0.75); }
.ph--cook    { background: linear-gradient(135deg, #e8b070 0%, #b8602e 100%); color: rgba(255, 255, 255, 0.88); }
.ph--data    { background: linear-gradient(135deg, #6a7d92 0%, #354858 100%); color: rgba(255, 255, 255, 0.78); }
.ph--16x9    { aspect-ratio: 16/9; }
.ph--4x3     { aspect-ratio: 4/3; }
.ph--1x1     { aspect-ratio: 1/1; }
.ph--3x4     { aspect-ratio: 3/4; }
.ph--3x2     { aspect-ratio: 3/2; }
.ph--full    { width: 100%; height: 100%; min-height: 320px; }

/* =============== PHOTO REVEAL (farmsuzuki-style fade + slow zoom) =============== */
/* `.ph` を内包するラッパー `.ph-wrap` をJSが付与する。ラッパーがマスク役を担い、
   中身の `.ph` がゆっくり 1.12倍 → 1倍にズームアウト。
   ラッパー不在(=JS失敗時/CSS旧版)でも .ph 単体は通常表示される。 */
html.js-ph .ph-wrap {
  display: block;
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
  -webkit-clip-path: inset(100% 0 0 0);
  transition:
    clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-clip-path 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: clip-path;
}
html.js-ph .ph-wrap > .ph {
  transform: scale(1.12);
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
  will-change: transform;
}
html.js-ph .ph-wrap.is-revealed {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}
html.js-ph .ph-wrap.is-revealed > .ph {
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  html.js-ph .ph-wrap,
  html.js-ph .ph-wrap.is-revealed {
    clip-path: none;
    -webkit-clip-path: none;
  }
  html.js-ph .ph-wrap > .ph {
    transform: none;
    transition: none;
  }
}

/* =============== BUTTONS =============== */
.btn {
  display: inline-block; padding: 14px 36px;
  font-size: 0.9rem; letter-spacing: 0.15em;
  border: 1px solid currentColor; background: transparent; color: inherit;
  cursor: pointer; transition: all 0.2s;
  text-align: center; text-decoration: none;
}
.btn--corp { color: var(--ink); border-color: var(--ink); }
.btn--corp:hover { background: var(--ink); color: var(--paper); }

.btn--corp-inv { color: #fff; border-color: rgba(255, 255, 255, 0.8); }
.btn--corp-inv:hover { background: #fff; color: var(--corp-accent); }

.btn--shop {
  background: var(--shop-accent); color: #fff !important; border-color: var(--shop-accent);
  padding: 16px 40px; font-size: 1rem; font-weight: 700; letter-spacing: 0.05em;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(192, 57, 43, 0.25);
}
.btn--shop:hover { background: #a02e22; border-color: #a02e22; }
.btn--shop--lg {
  padding: 20px; font-size: 1.15rem; width: 100%;
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}
.btn--shop--lg::before { content: "🛒 "; }

/* =============== CORP TIMELINE =============== */
.timeline { border-left: 1px solid var(--rule); padding-left: 32px; margin-top: 20px; }
.timeline__item { margin-bottom: 32px; position: relative; }
.timeline__item::before {
  content: ""; position: absolute; left: -38px; top: 9px;
  width: 11px; height: 11px; background: var(--corp-accent); border-radius: 50%;
  box-shadow: 0 0 0 4px var(--paper);
}
.timeline__year {
  font-size: 0.95rem; letter-spacing: 0.15em;
  color: var(--corp-accent); font-weight: 500;
}
.timeline__body { margin-top: 6px; color: var(--ink-soft); line-height: 1.9; }

/* =============== CORP DATA CARDS =============== */
.data-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 768px) { .data-grid { grid-template-columns: repeat(2, 1fr); } }
.data-card {
  background: linear-gradient(160deg, #1f4561 0%, #0d2438 100%);
  padding: 38px 22px 30px;
  border: 1px solid rgba(184, 146, 74, 0.45);
  text-align: center;
  color: #f5f0e8;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
/* 上端中央の金ライン */
.data-card::before {
  content: ""; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 64px; height: 2px;
  background: var(--gold);
  opacity: 0.9;
  transition: width 0.25s, opacity 0.25s;
}
/* 内側に薄い金の額縁 (ダブル枠の演出) */
.data-card::after {
  content: ""; position: absolute;
  inset: 6px;
  border: 1px solid rgba(184, 146, 74, 0.18);
  pointer-events: none;
}
a.data-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(13, 36, 56, 0.4);
  border-color: var(--gold);
}
a.data-card:hover::before { width: 96px; opacity: 1; }
a.data-card:hover .data-card__more {
  color: var(--gold);
  letter-spacing: 0.26em;
}
.data-card__label {
  font-size: 0.7rem; letter-spacing: 0.32em;
  color: rgba(184, 146, 74, 0.95);
  font-weight: 500;
  position: relative; z-index: 1;
}
.data-card__value {
  font-size: clamp(2rem, 3vw, 2.6rem); margin-top: 18px;
  letter-spacing: 0.04em; font-weight: 400;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  position: relative; z-index: 1;
}
.data-card__unit {
  font-size: 0.9rem; margin-left: 6px;
  color: rgba(245, 240, 232, 0.65);
  font-family: "Noto Sans JP", sans-serif;
}
.data-card__more {
  margin-top: 20px;
  font-size: 0.74rem; letter-spacing: 0.2em;
  color: rgba(184, 146, 74, 0.75);
  transition: color 0.25s, letter-spacing 0.25s;
  position: relative; z-index: 1;
}
/* カード内の説明文 (farm.html の水温/塩分/溶存酸素/pH カード本文) */
.data-card p {
  color: rgba(245, 240, 232, 0.78);
  position: relative; z-index: 1;
}

/* =============== ABOUT (ORNATE / 豪華) =============== */
.sec--ornate {
  position: relative;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(184, 146, 74, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(26, 58, 82, 0.04) 0%, transparent 55%),
    linear-gradient(180deg, #fdfbf5 0%, #f7efe0 100%);
  overflow: hidden;
}
.sec--ornate::before,
.sec--ornate::after {
  content: ""; position: absolute; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.55;
}
.sec--ornate::before { top: 0; }
.sec--ornate::after  { bottom: 0; }

.ornate__watermark {
  position: absolute;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(14rem, 30vw, 30rem);
  font-weight: 200;
  color: rgba(184, 146, 74, 0.07);
  top: 50%; left: -4%;
  transform: translateY(-50%);
  line-height: 0.9;
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.two-col--ornate {
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 80px;
}
@media (max-width: 768px) {
  .two-col--ornate { gap: 40px; }
}

/* スマホ用: 見出しの文字間・本文の行間を詰めて右端ズレを解消 */
@media (max-width: 640px) {
  .ornate__years {
    font-size: 0.8rem;
    letter-spacing: 0.18em;   /* 0.35em → 0.18em */
    margin-bottom: 18px;
  }
  .ornate__year-sep { width: 40px; margin: 0 10px; }
  .ornate__title {
    font-size: 1.6rem;         /* 1.85rem → 1.6rem */
    letter-spacing: 0.02em;    /* 0.06em → 0.02em */
    margin: 0 0 24px;
  }
  .ornate__lead {
    font-size: 0.9rem;         /* 0.95rem → 0.9rem */
    line-height: 1.9;          /* 2.0 → 1.9 */
    letter-spacing: 0;         /* 0.02em → 0 */
  }
}

.ornate__years {
  display: flex; align-items: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem; letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 22px;
}
.ornate__year { font-weight: 500; }
.ornate__year-sep {
  display: inline-block;
  width: 70px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 14px;
}

.ornate__eyebrow {
  color: var(--gold) !important;
  margin-bottom: 14px !important;
}

.ornate__title {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  letter-spacing: 0.14em;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 36px;
  position: relative;
  display: inline-block;
}
.ornate__title::after {
  content: ""; position: absolute;
  left: 0; bottom: -12px;
  width: 72px; height: 1.5px;
  background: var(--gold);
}

.ornate__lead {
  font-size: 1.05rem;
  line-height: 2.4;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  margin: 0;
}

.ornate__divider {
  display: flex; align-items: center; gap: 16px;
  margin: 30px 0;
}
.ornate__divider-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}
.ornate__divider-mark {
  color: var(--gold);
  font-size: 0.7rem;
  opacity: 0.85;
}

.btn--ornate {
  color: var(--ink);
  border: 1px solid var(--gold);
  background: transparent;
  padding: 16px 42px;
  font-size: 0.92rem;
  letter-spacing: 0.2em;
  font-family: "Noto Serif JP", serif;
  position: relative;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s, letter-spacing 0.3s;
}
.btn--ornate:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 10px 26px rgba(184, 146, 74, 0.3);
  letter-spacing: 0.24em;
}

.ornate__photo {
  position: relative;
  padding: 14px;
}
.ornate__photo::before,
.ornate__photo::after {
  content: ""; position: absolute;
  pointer-events: none;
}
.ornate__photo::before {
  inset: 0;
  border: 1px solid rgba(184, 146, 74, 0.55);
}
.ornate__photo::after {
  inset: 7px;
  border: 1px solid rgba(184, 146, 74, 0.25);
}
.ornate__corner {
  position: absolute;
  width: 22px; height: 22px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
  z-index: 2;
}
.ornate__corner--tl { top: -4px;    left: -4px;    border-top-width: 2px; border-left-width: 2px; }
.ornate__corner--tr { top: -4px;    right: -4px;   border-top-width: 2px; border-right-width: 2px; }
.ornate__corner--bl { bottom: -4px; left: -4px;    border-bottom-width: 2px; border-left-width: 2px; }
.ornate__corner--br { bottom: -4px; right: -4px;   border-bottom-width: 2px; border-right-width: 2px; }

/* =============== POND CARD (clickable) =============== */
.pond-card {
  border: none; background: transparent; padding: 0;
  cursor: pointer; font-family: inherit; color: inherit;
  text-align: center; display: block;
  transition: transform 0.2s;
}
.pond-card .ph { transition: box-shadow 0.2s, transform 0.2s; }
.pond-card:hover { transform: translateY(-3px); }
.pond-card:hover .ph {
  box-shadow: 0 10px 22px rgba(13, 36, 56, 0.22);
}
.pond-card__name {
  margin-top: 12px; font-size: 0.95rem; letter-spacing: 0.12em;
}
.pond-card__role {
  color: var(--ink-mute); font-size: 0.78rem; margin-top: 4px;
}
.pond-card__zoom {
  display: block;
  margin-top: 8px; font-size: 0.7rem;
  color: var(--corp-accent); letter-spacing: 0.16em;
  opacity: 0.75; transition: opacity 0.2s, letter-spacing 0.2s;
}
.pond-card:hover .pond-card__zoom {
  opacity: 1; letter-spacing: 0.2em;
}

/* 「朝/昼/夕方」カードは本文の長さがバラつくので、
   ・カードを flex 縦組みにして
   ・本文 p (2番目の p) に 4 行分の min-height を確保し
   ・「📷 ...」リンクを下端に固定して 3 枚を揃える */
.time-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-self: stretch;
}
.time-card > p:nth-of-type(2) {
  min-height: 7.6em; /* font-size 0.9rem × line-height 1.9 × 4行 */
}
.time-card .pond-card__zoom {
  margin-top: auto;
  padding-top: 14px;
}

/* =============== POND MODAL =============== */
.pond-modal {
  position: fixed; inset: 0; z-index: 300;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.pond-modal.is-open { display: flex; animation: pondFadeIn 0.25s ease-out; }
@keyframes pondFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.pond-modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(13, 36, 56, 0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}
.pond-modal__inner {
  position: relative; z-index: 1;
  background: #fff; padding: 40px 36px 32px;
  max-width: 1000px; width: 100%;
  border-radius: 6px;
  max-height: 92vh; overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}
.pond-modal__close {
  position: absolute; top: 8px; right: 14px;
  background: none; border: none;
  font-size: 2.2rem; line-height: 1; cursor: pointer;
  color: var(--ink-soft);
  padding: 4px 10px;
}
.pond-modal__close:hover { color: var(--corp-accent); }
.pond-modal__title {
  font-size: 1.5rem; letter-spacing: 0.16em;
  text-align: center; margin-bottom: 6px;
  font-weight: 500;
}
.pond-modal__sub {
  text-align: center; color: var(--ink-mute);
  font-size: 0.82rem; letter-spacing: 0.18em;
  margin: 0 0 24px;
}
.pond-modal__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
@media (max-width: 700px) {
  .pond-modal__grid { grid-template-columns: 1fr; }
}
.pond-modal__photo {
  aspect-ratio: 4/3;
  background-color: #d5cfbf;
  background-size: cover; background-position: center;
  border-radius: 4px;
}
.pond-modal__video {
  display: block; width: 100%;
  margin-top: 18px;
  background: #000;
  border-radius: 4px;
  aspect-ratio: 16/9;
  outline: none;
}
.pond-modal__video:not([src]) { display: none; }
.pond-modal__note {
  text-align: center; color: var(--ink-mute);
  font-size: 0.72rem; letter-spacing: 0.15em;
  margin: 18px 0 0;
}

/* =============== INFO TABLE =============== */
.info-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.info-table th, .info-table td {
  padding: 16px 20px; text-align: left;
  border-bottom: 1px solid var(--rule-soft);
  vertical-align: top;
}
.info-table th {
  width: 28%; color: var(--ink-soft); font-weight: 500;
  letter-spacing: 0.1em; font-size: 0.85rem;
}

/* =============== SHOP PRODUCT GRID =============== */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: #fff; border-radius: 10px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; color: inherit;
  display: block;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}
.product-card .ph { aspect-ratio: 4/3; }
.product-card__body { padding: 20px; }
.product-card__badge {
  display: inline-block; background: var(--shop-accent-2); color: #fff;
  font-size: 0.7rem; padding: 4px 10px; border-radius: 12px;
  letter-spacing: 0.05em; margin-bottom: 10px; font-weight: 700;
}
.product-card__badge--limited { background: var(--shop-accent); }
.product-card--soldout { position: relative; opacity: 0.85; filter: grayscale(0.15); }
.product-card--soldout:hover { opacity: 1; filter: none; }
.product-card--soldout::after {
  content: "SOLD OUT ／ 今期分 売り切れ";
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  background: rgba(192, 57, 43, 0.92); color: #fff;
  padding: 10px 24px; border-radius: 4px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  white-space: nowrap; z-index: 5;
}
.product-card__title { font-size: 1.08rem; font-weight: 700; margin-bottom: 6px; }
.product-card__meta { font-size: 0.83rem; color: var(--ink-soft); margin-bottom: 12px; }
.product-card__stars {
  color: var(--shop-accent-2); font-size: 0.9rem; margin-bottom: 8px;
}
.product-card__stars span { color: var(--ink-mute); font-size: 0.78rem; margin-left: 4px; }
.product-card__price { font-size: 1.6rem; font-weight: 700; color: var(--shop-accent); }
.product-card__price small { font-size: 0.7rem; font-weight: 400; color: var(--ink-soft); margin-left: 4px; }
.product-card__price--soldout {
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  color: #7a8590;
  border: 1.5px solid #cfd6dc;
  padding: 6px 14px;
  border-radius: 4px;
  display: inline-block;
  background: #f5f7f9;
  font-weight: 700;
}
.product-card__unit { font-size: 0.78rem; color: var(--ink-soft); margin-top: 2px; }

/* =============== SHOP FILTER =============== */
.shop-filter {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid var(--rule-soft);
}
.shop-filter button {
  border: 1px solid var(--rule);
  background: #fff;
  padding: 8px 18px; font-size: 0.85rem; border-radius: 20px;
  cursor: pointer; transition: all 0.2s;
}
.shop-filter button.is-active {
  background: var(--shop-accent); color: #fff; border-color: var(--shop-accent);
}

/* =============== SHOP PRODUCT DETAIL =============== */
.pd { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .pd { grid-template-columns: 1fr; gap: 28px; } }
.pd__gallery .ph { aspect-ratio: 1/1; margin-bottom: 10px; border-radius: 8px; }
.pd__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.pd__thumbs .ph { aspect-ratio: 1/1; cursor: pointer; border-radius: 4px; font-size: 0.65rem; }
.pd__breadcrumb { font-size: 0.82rem; color: var(--ink-mute); margin-bottom: 20px; }
.pd__breadcrumb a { color: var(--ink-soft); }
.pd__title { font-size: 1.55rem; font-weight: 700; margin-bottom: 12px; line-height: 1.5; }
.pd__stars { color: var(--shop-accent-2); margin-bottom: 16px; font-size: 0.95rem; }
.pd__stars span { color: var(--ink-soft); font-size: 0.85rem; margin-left: 6px; }
.pd__price-row {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 8px;
  padding: 16px 0; border-top: 1px solid var(--rule-soft); border-bottom: 1px solid var(--rule-soft);
}
.pd__price { font-size: 2.2rem; font-weight: 700; color: var(--shop-accent); }
.pd__price small { font-size: 0.9rem; font-weight: 400; color: var(--ink-soft); margin-left: 6px; }
.pd__price-per { font-size: 0.85rem; color: var(--ink-soft); margin-left: auto; background: #fff8e8; padding: 4px 10px; border-radius: 4px; }
.pd__price-soldout {
  display: flex; align-items: center; gap: 14px;
  width: 100%;
}
.pd__price-soldout-label {
  font-size: 1.35rem; font-weight: 700; letter-spacing: 0.22em;
  color: #7a8590;
  border: 1.5px solid #cfd6dc;
  padding: 8px 18px; border-radius: 4px;
  background: #f5f7f9;
}
.pd__price-soldout-sub { font-size: 0.88rem; color: var(--ink-soft); }
.pd__variant-label { font-size: 0.85rem; font-weight: 700; margin: 24px 0 10px; }
.pd__variant-tabs {
  display: flex; border: 2px solid var(--rule);
  border-radius: 6px; overflow: hidden; margin-bottom: 24px;
}
.pd__variant-tabs button {
  flex: 1; padding: 14px; background: #fff; border: none;
  font-size: 0.92rem; cursor: pointer; transition: all 0.2s;
  font-weight: 500;
}
.pd__variant-tabs button.is-active { background: var(--shop-accent); color: #fff; }
.pd__delivery {
  background: #fff8e8; border-left: 4px solid var(--shop-accent-2);
  padding: 16px 18px; border-radius: 4px; margin-bottom: 24px;
  font-size: 0.88rem; line-height: 1.8;
}
.pd__delivery strong { color: var(--shop-accent); }
.pd__qty-row { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.pd__qty-row label { font-size: 0.85rem; font-weight: 700; }
.pd__qty-row select {
  padding: 10px 14px; font-size: 0.95rem;
  border: 1px solid var(--rule); border-radius: 4px;
  font-family: inherit; background: #fff;
}
.pd__points {
  list-style: none; padding: 0; margin: 24px 0;
}
.pd__points li {
  padding: 8px 0 8px 28px; position: relative;
  font-size: 0.9rem; color: var(--ink-soft); line-height: 1.7;
}
.pd__points li::before {
  content: "✓"; position: absolute; left: 0; top: 8px;
  color: var(--shop-accent); font-weight: 700;
}

/* =============== SHOP DESCRIPTION SECTIONS =============== */
.pd-desc { margin-top: 80px; }
.pd-desc h3 {
  font-size: 1.3rem; font-weight: 700;
  border-left: 5px solid var(--shop-accent); padding-left: 14px;
  margin-bottom: 20px;
}

/* =============== SHOP REVIEWS =============== */
.review-list { display: grid; gap: 16px; }
.review {
  background: #fff; padding: 20px;
  border-radius: 6px; border: 1px solid var(--rule-soft);
}
.review__head {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px;
}
.review__name { font-weight: 700; font-size: 0.95rem; }
.review__meta { font-size: 0.78rem; color: var(--ink-mute); }
.review__stars { color: var(--shop-accent-2); font-size: 0.9rem; margin-bottom: 8px; }
.review__body { line-height: 1.85; color: var(--ink-soft); font-size: 0.92rem; }

/* =============== NEWS LIST =============== */
.news-list { list-style: none; padding: 0; margin: 0; }
.news-list li {
  padding: 18px 0; border-bottom: 1px solid var(--rule-soft);
  display: grid; grid-template-columns: 120px 100px 1fr; gap: 20px; align-items: baseline;
}
@media (max-width: 768px) {
  .news-list li { grid-template-columns: 100px 1fr; }
  .news-list .news-cat { display: none; }
}
.news-list time { font-size: 0.82rem; color: var(--ink-mute); letter-spacing: 0.08em; }
.news-cat {
  font-size: 0.72rem; letter-spacing: 0.15em;
  color: var(--corp-accent); border: 1px solid var(--corp-accent);
  padding: 3px 10px; text-align: center;
}
.news-list a:hover { color: var(--corp-accent); }

/* =============== FOOTER =============== */
.site-footer {
  background: var(--ink); color: #b8b09c;
  padding: 60px 0 30px;
  margin-top: 100px;
}
.mode-shop .site-footer { margin-top: 60px; }
.site-footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
@media (max-width: 768px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
}
.site-footer h4 {
  font-size: 0.78rem; letter-spacing: 0.28em;
  margin-bottom: 18px; color: #f5f0e8; font-weight: 500;
}
.site-footer p, .site-footer li {
  font-size: 0.85rem; line-height: 1.9; color: #b0a892;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer a:hover { color: #fff; }
.site-footer__bottom {
  border-top: 1px solid #333;
  margin-top: 40px; padding-top: 24px;
  text-align: center; font-size: 0.74rem; color: #6a6258;
}

/* =============== MICRO =============== */
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.divider { border: none; border-top: 1px solid var(--rule); margin: 60px 0; }
.spacer { height: 40px; }

/* =============== SCROLL REVEAL =============== */
/* 初期状態（未表示） */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 2.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 2.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
/* 表示状態 */
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 方向バリエーション */
.reveal--fade { transform: translateY(0); }
.reveal--up   { transform: translateY(70px); }
.reveal--left { transform: translateX(-70px); }
.reveal--right{ transform: translateX(70px); }
.reveal--scale{ transform: scale(0.92); }

.reveal--fade.is-visible,
.reveal--up.is-visible,
.reveal--left.is-visible,
.reveal--right.is-visible {
  transform: translate(0, 0);
}
.reveal--scale.is-visible { transform: scale(1); }

/* スタガー: 親 .reveal-stagger の直下子要素を順に表示 */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 2.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 2.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.00s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.70s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 1.05s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 1.40s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 1.75s; }

/* ヒーローはページロード時に即発火 — 1行ずつ左から書かれていくワイプ */
.reveal--hero {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  animation: heroWriteIn 1.4s cubic-bezier(0.65, 0, 0.35, 1) 0.4s forwards;
}
.reveal--hero.delay-1 { animation-delay: 1.6s; animation-duration: 1.6s; }
.reveal--hero.delay-2 { animation-delay: 3.0s; animation-duration: 1.6s; }
.reveal--hero.delay-3 { animation-delay: 4.4s; animation-duration: 1.4s; }
.reveal--hero.delay-4 { animation-delay: 5.4s; animation-duration: 1.4s; }
.reveal--hero.delay-5 { animation-delay: 6.4s; animation-duration: 1.4s; }

/* タイトル/サブの中の各行を block にして 1 行ずつワイプさせる */
.hero-corp__title .reveal--hero,
.hero-corp__sub .reveal--hero {
  display: block;
}

@keyframes heroWriteIn {
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}

/* ヒーロータイトル: 全行が書き終わった後 (≈4.6s) に
   1文字ずつ「塗りを抜いて金の輪郭線だけ」になる → 金の塗りに変化 なぞり演出 */
.hero-corp__title .hero-char {
  display: inline-block;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: 0 transparent;
  animation: charOutlineTrace 1.0s ease-in-out forwards;
  animation-delay: calc(8.0s + (var(--i, 0) * 0.22s));
}
@keyframes charOutlineTrace {
  0% {
    -webkit-text-fill-color: #fff;
    -webkit-text-stroke: 0 transparent;
    text-shadow: none;
  }
  35%, 60% {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.4px #f0c878;
    text-shadow: 0 0 16px rgba(232, 162, 59, 0.85);
  }
  100% {
    -webkit-text-fill-color: #d9b063;
    -webkit-text-stroke: 0 transparent;
    text-shadow: 0 0 14px rgba(216, 176, 99, 0.45);
  }
}

/* アニメ無効（モーション低減設定 / JS無効環境）の安全弁 */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > *, .reveal--hero, .hero-char {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
  }
}
/* JS無効環境では reveal を即表示（noscript で is-visible 強制） */
.no-js .reveal, .no-js .reveal-stagger > * {
  opacity: 1;
  transform: none;
}

/* =============== PROTOTYPE NOTE BAR =============== */
.proto-bar {
  background: #fff3cd; color: #856404;
  padding: 8px 16px; font-size: 0.78rem; text-align: center;
  border-bottom: 1px solid #f0e0a8;
  letter-spacing: 0.05em;
}

/* =============== FARM VIDEO GATEWAY =============== */
.sec--video {
  background: linear-gradient(180deg, var(--paper) 0%, #f0ebde 100%);
  padding: 100px 0;
}
.video-card {
  display: block;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
}
.video-card__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a1620;
  box-shadow: 0 24px 60px -20px rgba(26, 58, 82, 0.4),
              0 8px 20px -8px rgba(0, 0, 0, 0.2);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.video-card__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.video-card__overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 60px 40px 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 70%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  color: #fff;
}
.video-card__cta {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  font-weight: 500;
  transition: transform 0.4s ease;
}
.video-card__cta-en {
  font-family: "Cormorant Garamond", "Noto Serif JP", serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
}
.video-card:hover .video-card__frame {
  transform: translateY(-4px);
  box-shadow: 0 32px 72px -20px rgba(26, 58, 82, 0.5),
              0 12px 28px -8px rgba(0, 0, 0, 0.25);
}
.video-card:hover .video-card__video {
  transform: scale(1.04);
}
.video-card:hover .video-card__cta {
  transform: translateX(6px);
}
@media (max-width: 640px) {
  .sec--video { padding: 64px 0; }
  .video-card__overlay { padding: 40px 24px 20px; }
  .video-card__cta { font-size: 1.05rem; }
}

/* =============== INSTAGRAM SECTION =============== */
.sec--instagram {
  background: linear-gradient(180deg, #f4efe6 0%, #ebe4d2 100%);
  padding: 110px 0;
}
.ig-card {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(26,58,82,0.08);
  border-radius: 4px;
  padding: 64px 56px;
  text-align: center;
  box-shadow: 0 20px 60px -30px rgba(26,58,82,0.25);
  position: relative;
  overflow: hidden;
}
.ig-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.ig-card__icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  display: block;
  color: #dc2743;
}
.ig-card__handle {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--corp-accent);
  margin-bottom: 10px;
  font-weight: 500;
}
.ig-card__title {
  font-family: var(--font-serif, "Noto Serif JP", serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
}
.ig-card__lead {
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 36px;
}
.ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
  color: #fff !important;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 20px -8px rgba(220,39,67,0.5);
}
.ig-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -10px rgba(220,39,67,0.6);
}
.ig-btn__icon {
  width: 20px; height: 20px;
}
@media (max-width: 640px) {
  .sec--instagram { padding: 64px 0; }
  .ig-card { padding: 44px 24px; }
  .ig-card__icon { width: 52px; height: 52px; }
  .ig-btn { padding: 14px 28px; font-size: 0.82rem; letter-spacing: 0.15em; }
}

/* =============== FOOTER SNS =============== */
.footer-sns {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}
.footer-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid #555;
  border-radius: 50%;
  color: #b0a892;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.footer-sns a:hover {
  color: #fff;
  border-color: #fff;
  background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
}
.footer-sns svg { width: 18px; height: 18px; }
