
/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #f5f3ef;
  color: #1a2534;
  overflow-x: hidden;
  cursor: none;
}

/* ============================================================
   CUSTOM CURSOR
============================================================ */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none;
  mix-blend-mode: exclusion;
}
.cursor-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #c8a44a;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(200,164,74,0.6);
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.2s, height 0.2s, border-color 0.2s;
  pointer-events: none; z-index: 9998;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 56px; height: 56px;
  border-color: #c8a44a;
}

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --navy: #0f2236;
  --navy-2: #1a3a5c;
  --navy-3: #2a5080;
  --navy-lt: #e8f0f8;
  --gold: #c8a44a;
  --gold-lt: #e8d5a0;
  --cream: #f5f3ef;
  --cream-2: #ede9e1;
  --white: #ffffff;
  --text-dark: #1a2534;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: rgba(26,58,92,0.12);
}

/* ============================================================
   PROGRESS BAR
============================================================ */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--gold); width: 0%; z-index: 1000;
  transition: width 0.1s linear;
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center;
  padding: 0 5vw;
  height: 80px;
  /* 初見でも読みやすいよう最初から背景色を付与（従来はスクロール時のみ）20260810。
     初期状態は少し透けた濃度に（スクロール後は .nav.scrolled で濃くする）20260812 */
  background: rgba(15,34,54,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200,164,74,0.2);
  transition: height 0.4s ease, background 0.4s ease, backdrop-filter 0.4s;
}
.nav.scrolled {
  height: 56px;
  background: rgba(15,34,54,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200,164,74,0.2);
}
.nav-logo {
  display: flex; flex-direction: column; gap: 2px;
  text-decoration: none;
}
.nav-logo-en {
  font-family: 'Oswald', sans-serif;
  font-weight: 400; font-size: 11px; letter-spacing: 0.06em;
  color: var(--gold); text-transform: none;
  transition: opacity 0.4s;
}
.nav-logo-jp {
  font-size: 11px; color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em; font-weight: 300;
}
.nav-links {
  display: flex; align-items: center; gap: 1.45rem; /* 項目増(お知らせ追加)に合わせさらに間隔を詰めて1行維持 20260812 */
  margin-left: auto; list-style: none;
}
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,0.75);
  font-size: 12px; letter-spacing: 0.12em;
  font-family: 'Oswald', sans-serif; font-weight: 300;
  text-transform: uppercase; position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-links a:hover::after { width: 100%; }
.nav-tel {
  margin-left: 1.45rem; /* メニュー増に合わせ詰める 20260812 */
  font-family: 'Oswald', sans-serif; font-weight: 300;
  font-size: 14px; color: var(--gold-lt); letter-spacing: 0.05em;
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none;
  margin-left: auto; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--gold-lt); transition: all 0.3s;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative; width: 100vw;
  /* ヘッダーバー(80px)の分だけ下げ、ナビと重ならないようにする（クライアント指示 20260812） */
  margin-top: 80px; height: calc(100vh - 80px);
  overflow: hidden; background: var(--navy);
  display: flex; align-items: flex-end;
}
/* 勝納サイロがしっかり写るよう広角化（クライアント指示 20260724）。
   inset:-10% は写真を約20%拡大＝画角を狭めていたため 0 に戻し、
   ケンバーンズの寄り幅も 1.08 → 1.04 に抑えて全体が見える状態を維持する */
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,34,54,0.05) 0%, rgba(15,34,54,0.35) 60%, rgba(15,34,54,0.88) 100%),
    url('../img/hero-bg.jpg') center/cover no-repeat;
  transform-origin: center;
  animation: kenBurns 18s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1.0) translate(0,0); }
  to   { transform: scale(1.04) translate(-0.5%, -0.5%); }
}
.hero-noise {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.06;
  background-image:
    linear-gradient(rgba(200,164,74,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,164,74,0.4) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 5vw 8vh;
  max-width: 1200px; width: 100%;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero-eyebrow-line {
  width: 48px; height: 1px; background: var(--gold);
}
.hero-eyebrow-text {
  font-family: 'Oswald', sans-serif; font-weight: 300;
  font-size: 12px; letter-spacing: 0.25em;
  color: var(--gold); text-transform: uppercase;
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  /* 1行目「食の安定供給を未来へとつなぐ、」15文字が1行に収まるサイズに調整 */
  font-size: clamp(2.2rem, 5.2vw, 4.1rem);
  font-weight: 400; line-height: 1.08;
  color: var(--white);
  margin-bottom: 0.3rem;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero-h1 em {
  font-style: italic; color: var(--gold-lt);
}
.hero-h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-weight: 300; color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em; margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.8s forwards;
}
.hero-typewriter {
  font-family: 'Oswald', sans-serif; font-weight: 300;
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.6); letter-spacing: 0.2em;
  min-height: 1.6em; margin-bottom: 3rem;
  opacity: 0; animation: fadeIn 0.5s ease 1.2s forwards;
}
/* タイプライター：消去時は1文字ずつ削除ではなくスッとフェードアウト（20260810） */
.hero-typewriter #tw-text { transition: opacity 0.4s ease; }
.hero-typewriter #tw-text.tw-fade { opacity: 0; }
.hero-typewriter .cursor-blink {
  display: inline-block; width: 2px; height: 1em;
  background: var(--gold); margin-left: 2px;
  vertical-align: middle;
  animation: blink 0.8s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.hero-cta {
  display: flex; align-items: center; gap: 2rem;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.8s ease 1.5s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px; background: var(--gold);
  color: var(--navy); text-decoration: none;
  font-family: 'Oswald', sans-serif; font-weight: 400;
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: rgba(255,255,255,0.75);
  font-family: 'Oswald', sans-serif; font-weight: 300;
  font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase;
  padding-bottom: 2px; border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--gold-lt); border-color: var(--gold); }
.hero-scroll {
  position: absolute; right: 5vw; bottom: 8vh;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0; animation: fadeIn 1s ease 2s forwards;
}
.hero-scroll-label {
  font-family: 'Oswald', sans-serif; font-weight: 300;
  font-size: 10px; letter-spacing: 0.3em; color: rgba(255,255,255,0.4);
  text-transform: uppercase; writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 60px; background: rgba(200,164,74,0.4);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; top: -100%;
  width: 100%; height: 100%; background: var(--gold);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { top: -100%; }
  100% { top: 200%;  }
}
.hero-stats {
  position: absolute; right: 5vw; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 2rem;
  opacity: 0; animation: fadeIn 1s ease 1.8s forwards;
}
.hero-stat {
  text-align: right;
}
.hero-stat-num {
  font-family: 'Oswald', sans-serif; font-weight: 300;
  font-size: 2rem; color: var(--white); line-height: 1;
}
.hero-stat-num span { font-size: 1rem; color: var(--gold); }
.hero-stat-label {
  font-size: 10px; color: rgba(255,255,255,0.45);
  letter-spacing: 0.15em; margin-top: 4px;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* ============================================================
   SECTION COMMON
============================================================ */
.section { padding: 120px 5vw; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 2rem;
}
.section-label-line {
  width: 32px; height: 1px; background: var(--gold);
}
.section-label-text {
  font-family: 'Oswald', sans-serif; font-weight: 300;
  font-size: 11px; letter-spacing: 0.25em; color: var(--gold);
  text-transform: uppercase;
}
.section-num {
  margin-left: auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; color: rgba(26,58,92,0.06);
  font-weight: 600; line-height: 1; letter-spacing: -0.02em;
}
.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; color: var(--navy);
  line-height: 1.2; margin-bottom: 1rem;
}
.section-h2 em { font-style: italic; color: var(--navy-3); }
/* ABOUT US は2カラムの左半分に入るため、見出し2行目「北海道の物流を支える。」が
   折り返して3行にならないよう、このセクションのみ小さめに指定 */
.about .section-h2 { font-size: clamp(1.8rem, 3.6vw, 2.9rem); }

/* ============================================================
   REVEAL ANIMATIONS
============================================================ */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================================
   ABOUT SECTION
============================================================ */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.about-body {
  font-size: 1rem; line-height: 2; color: var(--text-mid);
  margin-bottom: 2.5rem; font-weight: 300;
}
.about-sig {
  display: flex; align-items: flex-end; gap: 16px;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.about-sig-title {
  font-size: 11px; color: var(--text-light); letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.about-sig-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600; color: var(--navy);
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.about-stat {
  padding: 2rem 2rem;
  background: var(--cream); position: relative;
  overflow: hidden;
}
.about-stat::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.6s ease;
}
.about-stat.visible::before { height: 100%; }
.about-stat-num {
  font-family: 'Oswald', sans-serif; font-weight: 300;
  font-size: 2.8rem; color: var(--navy); line-height: 1;
  margin-bottom: 8px;
}
.about-stat-num sup {
  font-size: 1rem; color: var(--gold); vertical-align: super;
}
.about-stat-label {
  font-size: 12px; color: var(--text-light);
  letter-spacing: 0.08em; line-height: 1.5;
}

/* ============================================================
   FACILITIES SECTION
============================================================ */
/* セクション地色は濃紺のベタ塗りだと重いため、やや明るい紺へのグラデーションにする */
.facilities {
  /* さらに明るく（クライアント指示 20260724 / E案）：
     セクション背景の紺を一段明るくして、カード間の余白から抜け感を出す */
  background: linear-gradient(160deg, #2b527d 0%, #1c3d61 55%, #2b527d 100%);
  position: relative; overflow: hidden;
}
.facilities::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,164,74,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,164,74,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.facilities .section-label-text { color: var(--gold); }
.facilities .section-h2 { color: var(--white); }
.facilities .section-h2 em { color: var(--gold-lt); }
.facilities .section-num { color: rgba(200,164,74,0.06); }
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 議事録⑧ 3枠→4枠化（勝納埠頭倉庫団地を追加） */
  gap: 6px; margin-top: 3rem; /* E案：カード間に余白を作り明るい背景を覗かせる */
}
.facility-card {
  position: relative; overflow: hidden;
  /* 縦フレックスにして、スペック表をカード下端に揃えられるようにする */
  display: flex; flex-direction: column;
  background: var(--navy-2);
  /* 枠を明るくしてカードの輪郭を立たせる（E案でさらに明るく 0.38→0.50） */
  border: 1px solid rgba(232,213,160,0.50);
  padding: 2.5rem 2rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: none;
}
.facility-card::before {
  content: '';
  position: absolute; inset: 0;
  /* 写真は明るく（brightness で持ち上げ）、
     文字が乗る中〜下部はスクリムを濃くして可読性を確保する。 */
  /* さらに明るく（E案）：文字が乗る下部のスクリムは残しつつ、
     上〜中部の膜を薄くして写真を見せる（0.18→0.06 / 0.62→0.42 / 0.86→0.74） */
  background-image:
    linear-gradient(to bottom, rgba(15,34,54,0.06) 0%, rgba(15,34,54,0.42) 32%, rgba(15,34,54,0.74) 100%),
    var(--fc-bg, none);
  background-size: cover;
  background-position: center;
  opacity: 1;
  /* 写真自体の明度・彩度を上げる（スクリムで沈む分を補う）1.30→1.42 */
  filter: brightness(1.42) saturate(1.18) contrast(1.02);
  transition: transform 0.6s ease, filter 0.4s ease;
  transform: scale(1.04);
  z-index: 0;
}
.facility-card:hover::before {
  transform: scale(1.09);
}
/* 低温倉庫（D棟）カードは、写真右寄りにあるD棟を正面に見せるため
   背景の切り抜き位置を右へ寄せる（画像が左に移動して見える） */
.facility-card[data-bg="reion"]::before {
  background-position: 72% center;
  /* 低温倉庫（D棟）カードのみ、内蔵の4%ズームインを除去して約4%広角に
     （倉庫がもう少し入るように 20260806 クライアント指示 A案）。全面表示は維持 */
  transform: scale(1.0);
}
/* ホバー時も他カード(1.09)に対し-4%とし、広角の比率を保つ */
.facility-card[data-bg="reion"]:hover::before {
  transform: scale(1.05);
}
.facility-card > * {
  position: relative; z-index: 1;
}
.facility-card .fc-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.13;
  transition: opacity 0.5s ease, transform 0.6s ease;
  transform: scale(1.04);
  filter: grayscale(30%) brightness(0.7);
}
.facility-card:hover .fc-photo {
  opacity: 0.22;
  transform: scale(1.08);
}
.facility-card .fc-content {
  position: relative; z-index: 1;
}
.facility-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.facility-card:hover {
  border-color: rgba(200,164,74,0.55);
  box-shadow: 0 14px 34px rgba(0,0,0,0.38);
  transform: translateY(-4px);
}
.facility-card:hover::after { transform: scaleX(1); }
.facility-card-img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; margin-bottom: 1.5rem;
  filter: brightness(0.75) saturate(0.8);
  transition: filter 0.3s;
}
.facility-card:hover .facility-card-img { filter: brightness(0.9) saturate(1); }
.facility-icon {
  width: 48px; height: 48px; border: 1px solid rgba(200,164,74,0.55);
  background: rgba(200,164,74,0.10);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.facility-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--gold); stroke-width: 1.5; }
.facility-num {
  font-family: 'Oswald', sans-serif; font-weight: 300;
  font-size: 11px; letter-spacing: 0.2em;
  color: var(--gold-lt); margin-bottom: 0.8rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}
.facility-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 400; color: var(--white);
  line-height: 1.2; margin-bottom: 1rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.85), 0 2px 18px rgba(0,0,0,0.6);
}
.facility-title a {
  color: inherit; text-decoration: none;
  transition: color 0.25s ease;
}
.facility-title a:hover { color: var(--gold-lt); }
.facility-body {
  font-size: 0.85rem; line-height: 1.9;
  color: rgba(255,255,255,0.95); font-weight: 300;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 5px rgba(0,0,0,0.85), 0 1px 12px rgba(0,0,0,0.6);
  /* 文章量がカードごとに違っても本文ブロックの高さを4行分で揃える
     （改行タグを入れずにスペック表の開始位置を統一するため） */
  min-height: calc(0.85rem * 1.9 * 4);
}
.facility-specs {
  display: flex; flex-direction: column; gap: 6px;
  /* 本文が4行を超えるカードがあっても、スペック表はカード下端に揃える */
  margin-top: auto;
}
.facility-spec {
  display: flex; justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(200,164,74,0.22);
  font-size: 11px;
}
.facility-spec-key { color: rgba(255,255,255,0.85); letter-spacing: 0.08em; text-shadow: 0 1px 5px rgba(0,0,0,0.85); }
.facility-spec-val {
  font-family: 'Oswald', sans-serif; font-weight: 300;
  color: var(--gold-lt); letter-spacing: 0.05em;
  text-shadow: 0 1px 5px rgba(0,0,0,0.85);
}

/* ============================================================
   MEMBERS SECTION
============================================================ */
.members {
  position: relative; overflow: hidden;
  background:
    linear-gradient(
      to bottom,
      rgba(15,34,54,0.54) 0%,
      rgba(15,34,54,0.44) 40%,
      rgba(15,34,54,0.62) 100%
    ),
    url('../img/hiraiso-1.jpg'); /* 中央サイロ→小樽港全景に差し替え（クライアント指示 20260724） */
  background-size: cover;
  background-position: center 55%;
  background-attachment: fixed;
}
/* 背景写真そのものを明るくする（文字は .member-card 側の地色で可読性を確保） */
.members::after {
  content: ''; position: absolute; inset: 0;
  backdrop-filter: brightness(1.10) saturate(1.12);
  -webkit-backdrop-filter: brightness(1.10) saturate(1.12);
  pointer-events: none; z-index: 0;
}
.members > * { position: relative; z-index: 1; }
.members .section-h2 { color: #ffffff; }
.members .section-h2 em { color: var(--gold-lt); }
.members .section-label-text { color: var(--gold-lt); }
.members .section-label-line { background: var(--gold-lt); }
.members .section-num { color: rgba(255,255,255,0.2); }
.members-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px; margin-top: 3rem;
}
.member-card {
  background: rgba(15,34,54,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 1.5rem 1.8rem;
  border-left: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 0; transform: translateX(-20px);
}
.member-card.visible {
  opacity: 1; transform: translateX(0);
}
.member-card:hover {
  border-left-color: var(--gold-lt);
  transform: translateX(4px);
}
.member-num {
  font-family: 'Oswald', sans-serif; font-weight: 300;
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--gold); margin-bottom: 8px;
}
.member-name {
  font-size: 1rem; font-weight: 500; color: #ffffff;
  margin-bottom: 6px; line-height: 1.4;
}
/* 議事録⑭ 組合員HPリンク（URL登録済みの会社のみ会社名がリンク化） */
.member-name a {
  color: inherit; text-decoration: none;
  border-bottom: 1px solid rgba(200,164,74,0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.member-name a:hover { color: var(--gold-lt); border-color: var(--gold-lt); }
/* 外部リンクは「四角＋飛び出す矢印」のSVGアイコンで明示（打合せ20260731 A-2） */
.member-link-icon { color: var(--gold); margin-left: 6px; display: inline-flex; }
.member-link-icon svg { width: 0.82em; height: 0.82em; vertical-align: -0.1em; }
.member-address {
  font-size: 0.8rem; color: rgba(255,255,255,0.65);
  letter-spacing: 0.03em; margin-bottom: 4px;
}
.member-tel {
  font-family: 'Oswald', sans-serif; font-weight: 300;
  font-size: 0.9rem; color: var(--gold-lt); letter-spacing: 0.05em;
}

/* ============================================================
   ACCESS SECTION
============================================================ */
.access {
  position: relative; overflow: hidden;
  background:
    linear-gradient(
      135deg,
      rgba(15,34,54,0.56) 0%,
      rgba(26,58,92,0.44) 50%,
      rgba(15,34,54,0.62) 100%
    ),
    url('../img/katsunai-2.jpg'); /* 背景を勝納サイロ空撮に差し替え（クライアント指示 20260724） */
  background-size: cover;
  background-position: center 50%;
  background-attachment: fixed;
}
/* 背景写真そのものを明るくする（文字は .access-info 側の地色で可読性を確保） */
.access::after {
  content: ''; position: absolute; inset: 0;
  backdrop-filter: brightness(1.10) saturate(1.12);
  -webkit-backdrop-filter: brightness(1.10) saturate(1.12);
  pointer-events: none; z-index: 0;
}
.access > * { position: relative; z-index: 1; }
.access .section-h2 { color: #ffffff; }
.access .section-h2 em { color: var(--gold-lt); }
.access .section-label-text { color: var(--gold-lt); }
.access .section-label-line { background: var(--gold-lt); }
.access .section-num { color: rgba(255,255,255,0.2); }
.access-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-top: 3rem;
}
.access-map {
  position: relative; background: var(--navy-lt);
  min-height: 440px; overflow: hidden;
}
.access-map iframe {
  width: 100%; height: 100%; border: none;
  filter: grayscale(20%) contrast(1.05);
}
.access-info {
  background: rgba(15,34,54,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 3rem 2.5rem;
  display: flex; flex-direction: column; gap: 2rem;
  border-left: 4px solid var(--gold);
  position: relative;
}
.access-info::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.015) 0px,
    rgba(255,255,255,0.015) 1px,
    transparent 1px,
    transparent 12px
  );
  pointer-events: none; z-index: 0;
}
.access-block { position: relative; z-index: 1; }
.access-block {}
.access-block-label {
  font-family: 'Oswald', sans-serif; font-weight: 400;
  font-size: 11px; letter-spacing: 0.25em; color: var(--gold-lt);
  text-transform: uppercase; margin-bottom: 10px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(200,164,74,0.2);
}
.access-block-val {
  font-size: 0.95rem; color: rgba(255,255,255,0.95);
  line-height: 1.9; font-weight: 400;
}
.access-tel-num {
  font-family: 'Oswald', sans-serif; font-weight: 300;
  font-size: 1.8rem; color: #ffffff; letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(200,164,74,0.5);
}

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact {
  background: var(--navy);
  padding: 100px 5vw;
  text-align: center; position: relative; overflow: hidden;
}
.contact::before {
  content: 'CONTACT';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Oswald', sans-serif; font-weight: 400;
  font-size: clamp(6rem, 15vw, 14rem);
  color: rgba(200,164,74,0.04); letter-spacing: 0.1em;
  white-space: nowrap; pointer-events: none;
}
.contact .section-label { justify-content: center; }
.contact .section-h2 { color: var(--white); text-align: center; margin-bottom: 1.5rem; }
.contact-lead {
  color: rgba(255,255,255,0.6); font-size: 1rem;
  font-weight: 300; margin-bottom: 3rem;
}
.contact-actions {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.btn-contact {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 48px; background: var(--gold);
  color: var(--navy); text-decoration: none;
  font-family: 'Oswald', sans-serif; font-weight: 400;
  font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  position: relative; z-index: 1;
}
.btn-contact:hover { background: var(--gold-lt); transform: translateY(-2px); }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: #0a1d2e; padding: 3rem 5vw 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 2rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: rgba(255,255,255,0.85);
  font-weight: 400;
}
.footer-meta {
  font-size: 13px; color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em; line-height: 2;
  text-align: right;
}
.footer-bottom {
  max-width: 1200px; margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy {
  font-size: 11px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}
.footer-links {
  display: flex; gap: 2rem; list-style: none;
}
.footer-links a {
  font-size: 12px; color: rgba(255,255,255,0.5);
  text-decoration: none; letter-spacing: 0.08em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ============================================================
   TILT EFFECT (via JS)
============================================================ */
.tilt-wrap { transform-style: preserve-3d; perspective: 800px; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero-stats { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .facilities-grid { grid-template-columns: 1fr 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .access-map { min-height: 280px; }
}
@media (max-width: 768px) {
  .facilities-grid { grid-template-columns: 1fr; }
  .members-grid { grid-template-columns: 1fr 1fr; }
  /* 狭い画面でも1行目15文字が折り返さないよう vw 追従にする */
  .hero-h1 { font-size: clamp(1.2rem, 5.7vw, 2.2rem); }
  .section { padding: 80px 5vw; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

/* ナビ横並び→ハンバーガー切替を1150pxに（9項目が1行に収まらない幅からメニューに集約）20260812 */
@media (max-width: 1150px) {
  .nav-links, .nav-tel { display: none; }
  .nav-hamburger { display: flex; }
  /* ── モバイルメニュー（ハンバーガー）開閉 20260806 ── */
  .nav-hamburger { cursor: pointer; }
  /* 開いた時：ナビ下からフルスクリーンのパネルで表示 */
  .nav.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 100vh;
    padding: 96px 8vw 6rem;
    background: rgba(12,38,38,0.98);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    overflow-y: auto;
    z-index: 1;
    animation: navMenuIn 0.28s ease;
  }
  .nav.nav-open .nav-links li { width: 100%; }
  .nav.nav-open .nav-links a {
    display: block;
    padding: 16px 2px;
    font-size: 15px;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav.nav-open .nav-links a::after { display: none; }
  /* 電話番号はパネル下部に表示 */
  .nav.nav-open .nav-tel {
    display: block;
    position: fixed;
    left: 0; right: 0; bottom: 5vh;
    text-align: center;
    font-size: 18px;
    z-index: 1;
  }
  /* ロゴとハンバーガーはパネルより前面（クリック可能に保つ） */
  .nav.nav-open .nav-logo,
  .nav.nav-open .nav-hamburger { position: relative; z-index: 2; }
  /* ハンバーガー → × に変形 */
  .nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
  .nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  /* メニュー展開中は背景スクロールを止める */
  body.nav-locked { overflow: hidden; }
}
@keyframes navMenuIn { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 480px) {
  .members-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .contact-actions { flex-direction: column; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-left, .reveal-right, .member-card { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   INNER PAGES — 共通
============================================================ */
.page-hero {
  position: relative; padding: 160px 5vw 80px;
  background: var(--navy); overflow: hidden;
 }
/* 組合情報ページ専用：キャッチコピー・説明文を削除した分、上下の余白を詰める（クライアント指示 20260724） */
.page-hero--compact { padding-top: 118px; padding-bottom: 46px; }
.page-hero--compact .page-hero-eyebrow { margin-bottom: 0; }
.page-hero::before {
  content: attr(data-label);
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Oswald', sans-serif; font-weight: 400;
  font-size: clamp(5rem, 12vw, 11rem);
  color: rgba(200,164,74,0.04); letter-spacing: 0.1em;
  white-space: nowrap; pointer-events: none;
}
.page-hero-eyebrow {
  font-family: 'Oswald', sans-serif; font-weight: 300;
  font-size: 11px; letter-spacing: 0.25em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 0.8rem;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 400;
  color: var(--white); line-height: 1.3;
}
.page-hero h1 em { font-style: italic; color: var(--gold-lt); }
.page-hero-sub {
  font-size: 0.95rem; color: rgba(255,255,255,0.6);
  margin-top: 1rem; font-weight: 300; line-height: 1.8;
}

.page-body {
  padding: 80px 5vw;
  background: var(--white);
}
.page-body-inner {
  max-width: 960px; margin: 0 auto;
}

/* 見出し */
.page-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 400; color: var(--navy);
  margin: 3rem 0 1.5rem; padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 100px; /* 固定ナビ分オフセット（カードからのアンカーリンク用） */
}
.page-body h2:first-child { margin-top: 0; }
/* 組合情報ページ：h2見出しをフォント指定の画像に置換（20260810）。
   h2要素は残し alt にタイトルを保持（アクセシビリティ・SEO維持）。下線・余白は既存h2のまま */
.page-body h2.h2-img { line-height: 0; }
.page-body h2.h2-img img { height: 48px; width: auto; max-width: 100%; display: block; }
@media (max-width: 480px) {
  .page-body h2.h2-img img { height: 40px; }
}
.page-body h3 {
  font-size: 1.15rem; font-weight: 600; color: var(--navy-2);
  margin: 2rem 0 1rem;
}
.page-body p, .page-body li {
  font-size: 0.95rem; color: var(--text-mid);
  line-height: 2; font-weight: 300;
}
.page-body ul, .page-body ol {
  padding-left: 1.5rem; margin-bottom: 1.5rem;
}
.page-body li { margin-bottom: 0.5rem; }

/* テーブル */
.page-table {
  width: 100%; border-collapse: collapse; margin: 2rem 0;
  font-size: 0.9rem;
}
.page-table th {
  background: var(--navy); color: var(--white);
  padding: 12px 16px; text-align: left; font-weight: 500;
  font-size: 0.85rem; letter-spacing: 0.05em;
}
.page-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  color: var(--text-mid); vertical-align: top;
}
.page-table tr:nth-child(even) td { background: var(--cream); }
.page-table .label {
  font-weight: 500; color: var(--text-dark);
  white-space: nowrap; width: 140px;
}

/* カードグリッド */
.page-card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem; margin: 2rem 0;
}
.page-card {
  background: var(--cream); padding: 2rem;
  border-left: 3px solid var(--gold); transition: transform 0.2s;
}
.page-card:hover { transform: translateY(-4px); }
.page-card h3 {
  font-size: 1rem; color: var(--navy); margin: 0 0 0.5rem;
}
.page-card p {
  font-size: 0.85rem; color: var(--text-mid); line-height: 1.8;
}

/* コンタクトフォーム */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block; font-size: 0.85rem; font-weight: 500;
  color: var(--text-dark); margin-bottom: 0.4rem;
}
.form-label .required {
  color: #e04040; font-size: 0.75rem; margin-left: 0.3rem;
}
.form-input, .form-textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); background: var(--cream);
  font-size: 0.9rem; color: var(--text-dark);
  font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.2s;
}
.form-input:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-textarea { min-height: 180px; resize: vertical; }
.form-submit {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 48px; background: var(--gold);
  color: var(--navy); border: none; cursor: pointer;
  font-family: 'Oswald', sans-serif; font-weight: 400;
  font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: var(--gold-lt); transform: translateY(-2px); }

/* 約款 */
.terms-content {
  font-size: 0.9rem; color: var(--text-mid); line-height: 2.2;
}
.terms-content h3 {
  font-size: 1.05rem; margin: 2.5rem 0 0.8rem;
  color: var(--navy); font-weight: 600;
}
.terms-content .article {
  margin-bottom: 1rem; padding-left: 1rem;
}
.terms-content .article-num {
  font-weight: 600; color: var(--navy-2);
}

/* 採用 */
.recruit-point {
  display: flex; align-items: flex-start; gap: 1.5rem;
  padding: 2rem 0; border-bottom: 1px solid var(--border);
}
.recruit-point-num {
  font-family: 'Oswald', sans-serif; font-size: 2rem;
  font-weight: 400; color: var(--gold); line-height: 1;
  min-width: 50px;
}
.recruit-point h3 { margin-top: 0; }

/* プライバシーポリシー */
.privacy-section { margin-bottom: 2.5rem; }
.privacy-section h3 {
  font-size: 1.05rem; color: var(--navy);
  margin-bottom: 0.8rem;
}

@media (max-width: 768px) {
  .page-hero { padding: 120px 5vw 60px; }
  .page-body { padding: 60px 5vw; }
  .page-table .label { width: auto; }
  .recruit-point { flex-direction: column; gap: 0.5rem; }
}

/* 施設写真 */
.facility-photo {
  margin: 1.5rem 0 2rem;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.facility-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}
.facility-photo:hover img {
  transform: scale(1.03);
}

/* ============================================================
   印刷用スタイル（A4）
   目的：ブラウザ印刷・PDF出力で写真と本文が正しく出るようにする。
   - 背景画像で表示している写真を印刷対象にする（既定では省略されるため）
   - スクロール連動アニメーション（.reveal は初期 opacity:0）を解除して本文を表示
   - 画面専用UI（固定ナビ・カーソル・進捗バー等）を非表示
   - A4に収まるよう余白・段組を調整
============================================================ */
@media print {
  @page { size: A4; margin: 10mm; }

  /* 背景色・背景画像を印刷する */
  *, *::before, *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* アニメーション・JS制御で隠れている要素を確実に表示
     （.member-card / .about-stat はJSが .visible を付与するまで非表示のため必須） */
  .reveal, .reveal-left, .reveal-right,
  .member-card, .about-stat, .facility-card,
  .hero-content, .hero-stats, .hero-h1, .hero-eyebrow {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
    visibility: visible !important;
  }
  /* 印刷では描画されず白い箱になるものを非表示 */
  iframe, .access-map { display: none !important; }
  .access-grid { grid-template-columns: 1fr !important; }

  /* 画面専用UI・装飾を非表示 */
  .nav, .cursor, .cursor-ring, .progress-bar, .hamburger,
  .hero-scroll, .hero-noise, .hero-grid, .hero-typewriter,
  .hero-cta, .section-num, .footer-links {
    display: none !important;
  }
  body { cursor: auto !important; }

  /* 固定背景は印刷で描画されないためスクロールに変更 */
  .hero, .hero-bg, .members, .access, .facilities, .page-hero {
    background-attachment: scroll !important;
  }

  /* ヒーローは1ページ目いっぱいの表紙にする（A4 297mm − 上下余白20mm） */
  .hero {
    height: 277mm !important; min-height: 0 !important;
    width: 100% !important; max-width: 100% !important;
  }
  .hero-bg { inset: 0 !important; animation: none !important; transform: none !important; }
  .hero-content { padding: 0 10mm 14mm !important; max-width: 100% !important; }
  .section { padding: 12mm 6mm !important; }
  .page-hero { padding: 16mm 6mm 10mm !important; }
  .page-body { padding: 10mm 6mm !important; }

  /* 主要セクションは新しいページから。
     セクション自体は1ページに収まらないため分断を許可し、
     代わりにカード等の小さな単位が途中で切れないようにする。 */
  .facilities, .members, .access { page-break-before: always; break-before: page; }
  .section { page-break-inside: auto; break-inside: auto; overflow: visible !important; }
  .facility-card, .member-card, .about-stat, .access-block, .facility-photo {
    page-break-inside: avoid; break-inside: avoid;
  }
  /* 画面用の装飾（絶対配置・はみ出し）が印刷で重なるのを防ぐ */
  .facilities::before, .members::before, .access::before, .page-hero::before { display: none !important; }

  /* A4幅に合わせて段組・文字サイズを調整 */
  .facilities-grid { grid-template-columns: 1fr 1fr !important; }
  .members-grid { grid-template-columns: 1fr 1fr !important; }
  .about-grid { grid-template-columns: 1.15fr 1fr !important; gap: 8mm !important; }
  .access-grid { grid-template-columns: 1fr 1fr !important; }
  /* A4幅では画面用の大見出しが折り返して崩れるため縮小 */
  .section-h2 { font-size: 22pt !important; line-height: 1.3 !important; }
  .about-body { font-size: 9.5pt !important; line-height: 1.85 !important; }
  .about-stat-num { font-size: 20pt !important; }

  /* 施設カードの背景写真を印刷でもはっきり見せる */
  .facility-card::before { opacity: 1 !important; transform: none !important; }

  /* リンクの下線等は印刷では簡素に */
  a { text-decoration: none !important; }

  /* 団地の2カラムは印刷では図が小さくなりすぎるため1カラムに */
  .danchi-cols { grid-template-columns: 1fr !important; }
  .danchi-map, .danchi-cols-spec { page-break-inside: avoid; break-inside: avoid; }

  /* 表はページ跨ぎで行が切れないように */
  .page-table tr { page-break-inside: avoid; break-inside: avoid; }
}

/* 背景写真を明るくしたことで、写真の上に直接乗る見出し・ラベルの
   可読性が下がるため、影を付けて視認性を確保する */
.members .section-h2, .access .section-h2,
.members .section-label-text, .access .section-label-text {
  text-shadow: 0 2px 10px rgba(0,0,0,0.85), 0 2px 24px rgba(0,0,0,0.6);
}

/* 理事長挨拶の署名画像（フォント指定のため画像化） */
.daihyo-sign {
  text-align: right;
  margin-top: 2rem;
}
.daihyo-sign img {
  width: 440px;
  max-width: 100%;   /* スマホでははみ出さず縮小 */
  height: auto;
}
@media (max-width: 768px) {
  .daihyo-sign img { width: 320px; }
}

/* 勝納埠頭倉庫団地：2カラム内の小見出し（概要／配置図で共通）と配置図 */
.danchi-map-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 400; color: var(--navy);
  margin: 2.5rem 0 1rem;
}
.danchi-map {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
}
.danchi-map img {
  width: 100%; max-width: 720px; height: auto;
}
.danchi-map-note {
  font-size: 0.8rem; color: var(--text-light);
  margin-top: 0.8rem; text-align: right;
}
@media (max-width: 768px) {
  .danchi-map { padding: 0.8rem; }
}

/* 勝納埠頭倉庫団地：施設概要（左）と配置図（右）の2カラム */
.danchi-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
}
.danchi-cols .page-table { margin-top: 0; }
/* 2カラム内では見出し上の余白を詰める */
.danchi-cols .danchi-map-title { margin-top: 0; }
/* 狭い画面では縦積みに */
@media (max-width: 860px) {
  .danchi-cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .danchi-cols .danchi-map-title { margin-top: 1.5rem; }
}

/* 船積荷役の2カラム写真（20260731 B-6） */
.funazumi-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}
.funazumi-col { margin: 0; }
.funazumi-col img {
  width: 100%; height: auto; display: block;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.funazumi-col figcaption {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  text-align: center;
}
@media (max-width: 860px) {
  .funazumi-cols { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   お知らせ（投稿一覧）20260812
============================================================ */
.news-list { margin-top: 0.5rem; }
.news-item {
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--border);
}
.news-list .news-item:first-child { padding-top: 0; }
.news-title {
  font-size: 1.3rem; font-weight: 600; color: var(--navy);
  margin: 0 0 0.5rem; line-height: 1.5;
}
.news-date {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 1.1rem;
}
.news-body { color: var(--text-mid); line-height: 1.9; }
.news-body p { margin: 0 0 1rem; }
.news-body p:last-child { margin-bottom: 0; }
.news-empty { color: var(--text-mid); }
