:root {
  --brand: #2e7d32;
  --ink: #222;
  --muted: #666;
  --line: #e6e6e6;
  --paper: #fff;
  --soft: #f7f7f8;
  --radius: 12px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Hiragino Sans", "Noto Sans JP", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.8;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max); margin: auto; padding: 0 20px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 8px rgba(0, 0, 0, .03);
  transition: box-shadow .25s ease;
}
.site-header.shrink { box-shadow: 0 6px 24px rgba(0, 0, 0, .06); }
.header-inner { display: flex; gap: 18px; align-items: center; padding: 12px 0; transition: padding .25s; }
.site-header.shrink .header-inner { padding: 6px 0; }
.brand { display: flex; align-items: center; gap: 10px; }
.site-logo { width: 54px; border-radius: 8px; object-fit: contain; transition: width .25s; }
.site-header.shrink .site-logo { width: 42px; }

.site-title { color: #2e7d32; font-weight: 800; letter-spacing: .02em; }
body.dark .site-title { color: #ffffff; }

.nav ul { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }

/* SNS */
.sns { display: flex; gap: 10px; margin-left: 12px; }
.sns-btn {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform .2s, box-shadow .2s;
}
.sns-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0, 0, 0, .08); }
.sns-btn svg { fill: var(--ink); }

/* 🌈 SNS共通アニメーション設定 */
.sns-btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}
.sns-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 0 12px rgba(0,0,0,0.2);
}
.sns-btn svg {
  transition: fill 0.3s ease, transform 0.3s ease;
}
.sns-btn:hover svg {
  transform: scale(1.15);
}

/* --- 各SNS別の色変化・発光 --- */

/* X */
.sns-x:hover {
  background: #000;
  box-shadow: 0 0 12px rgba(0,0,0,0.4);
}
.sns-x:hover svg {
  fill: #fff;
}

/* Instagram グラデーション発光 */
.sns-instagram:hover {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
  box-shadow: 0 0 14px rgba(214,41,118,0.5);
}
.sns-instagram:hover svg {
  fill: #fff;
}

/* YouTube 赤い発光 */
.sns-youtube:hover {
  background: #FF0000;
  box-shadow: 0 0 14px rgba(255,0,0,0.5);
}
.sns-youtube:hover svg {
  fill: #fff;
}

/* TikTok ネオン風（赤＋青発光） */
.sns-tiktok:hover {
  background: linear-gradient(135deg, #25F4EE, #FE2C55);
  box-shadow: 0 0 14px rgba(254,44,85,0.6), 0 0 20px rgba(37,244,238,0.4);
}
.sns-tiktok:hover svg {
  fill: #fff;
}

/* 🌙 ダークモードでも発光が映える */
body.dark .sns-btn:hover {
  box-shadow: 0 0 18px rgba(255,255,255,0.2);
}

/* ダークモード切替ボタン */
.theme-toggle { margin-left: 10px; background: transparent; border: none; font-size: 20px; cursor: pointer; }

/* ===== Hero ===== */
.hero { background: var(--paper); border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; padding: 42px 0; }
.kicker { color: var(--brand); font-weight: 700; margin: 0 0 10px; }
.hero h1 { margin: 0 0 8px; font-size: clamp(22px, 4vw, 38px); }
.lead { color: #333; margin: 0 0 10px; }
.text-link { color: var(--brand); text-decoration: underline; }
.hero-media img { border-radius: 16px; box-shadow: 0 12px 24px rgba(0, 0, 0, .08); }

/* ===== Sections ===== */
.section { padding: 40px 0; background: transparent; }
.section h2 { margin: 6px 0 16px; font-size: clamp(20px, 3.2vw, 28px); }
.kicker + h2 { margin-top: 2px; }
.muted { color: var(--muted); }

/* ===== Cards ===== */
.card-grid { display: grid; gap: 20px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .04);
}
.card img { aspect-ratio: 16/9; object-fit: contain; background-color: #fff; }
.card-body { padding: 14px 16px; }
.card h3 { margin: 0 0 6px; font-size: 18px; }
.card .learn-more { color: var(--brand); font-weight: 700; }

/* ===== イベント情報（カード型スケジュール） ===== */
 /* ===== イベント情報（スケジュール） ===== */
#events {
  background: var(--soft); /* ← 白ではなく全体背景色に合わせる */
  border-top: none;        /* ← 境界線を消して自然に繋げる */
  border-bottom: none;
  padding: 40px 0;         /* ← 余白を統一 */
}

#events .container {
  background: var(--paper); /* ← 中の白カード部分だけ白に */
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 28px 24px;
}


#events .kicker {
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 4px;
}

#events h2 {
  margin-top: 2px;
  margin-bottom: 20px;
  font-size: clamp(20px, 3.2vw, 28px);
}


/* ===== イベント情報（Event Section） ===== */

#events .kicker {
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 4px;
}

#events h2 {
  margin-top: 2px;
  margin-bottom: 16px;
  font-size: clamp(20px, 3.2vw, 28px);
}


/* ===== News Section ===== */
.news-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.news-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fff;
  border: 2px solid var(--line);
  border-left: 6px solid var(--brand);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,.04);
  transition: transform .2s ease, box-shadow .2s ease;
}
.news-item:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0,0,0,.06); }
.news-item time { font-weight: 700; color: var(--brand); white-space: nowrap; }
.news-item a { font-weight: 600; color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }

body.dark .news-item {
  background: #121212;
  border-color: #333;
  border-left-color: #81c784;
  box-shadow: 0 4px 10px rgba(255,255,255,.05);
}

/* ===== MISSION / VISION / VALUE セクション ===== */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.mvv-card {
  border-radius: 16px;
  padding: 22px 20px;
  background: linear-gradient(180deg, #e8f5e9 0%, #ffffff 80%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  border: 1.5px solid #c8e6c9;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mvv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}
.mvv-card h3 {
  color: var(--brand);
  font-size: 18px;
  margin: 0 0 6px;
  font-weight: 800;
}
.mvv-card p {
  margin: 0;
  color: var(--ink);
  line-height: 1.8;
}

/* ===== ダークモード対応 ===== */
body.dark .mvv-card {
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1.5px solid #333;
  box-shadow: 0 6px 12px rgba(255, 255, 255, 0.04);
}
body.dark .mvv-card h3 { color: #81c784; }
body.dark .mvv-card p { color: #ddd; }

/* ===== NEWS ステータス色（ダークモード含む） ===== */
body.dark .news-item .status.open { color: #81c784 !important; }
body.dark .news-item .status.open::before {
  background: linear-gradient(90deg, #a5d6a7, #81c784) !important;
}
body.dark .news-item .status.closed { color: #777 !important; }
body.dark .news-item .status.closed::before {
  background: linear-gradient(90deg, #555, #333) !important;
}

/* ===== ローディング画面（白背景・フェードイン・ゆっくりフェードアウト・ちょうどいいサイズ） ===== */
#loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}
#loader.hide { opacity: 0; visibility: hidden; }

.loader-screen {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeOutScreen 4.8s ease forwards;
}

/* 🎯 画面にちょうど収まるサイズ感 */
.loader-logo {
  width: 560px;        /* ← 大きめだけどはみ出さない */
  max-width: 75vw;     /* ← 画面幅の75%までに自動調整 */
  height: auto;
  opacity: 0;
  animation: logoFade 4.8s ease forwards;
}

/* フェードイン → 一定表示 → ゆっくりフェードアウト */
@keyframes logoFade {
  0% { opacity: 0; }
  20% { opacity: 1; }
  75% { opacity: 1; }
  100% { opacity: 0; }
}

/* 背景フェードアウトもゆっくり */
@keyframes fadeOutScreen {
  0% { opacity: 1; background: #fff; }
  85% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

/* 📱 スマホ用に少し小さく */
@media (max-width: 640px) {
  .loader-logo {
    width: 300px;
    max-width: 80vw;
  }
}

/* ===== 幹部紹介（横スクロール） ===== */
.executive-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 4px 10px 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--brand) transparent;
}
.person-card {
  flex: 0 0 260px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: center;
  padding: 18px 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .04);
}
.avatar-lg {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
}
body.dark .person-card {
  background: #121212;
  border-color: #333;
  color: #f0f0f0;
}

/* ===== カード（ニュース風） ===== */
.thumb-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.thumb-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}
.thumb-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #eee;
}
.thumb-meta {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 80px;
}
.thumb-meta .title {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.thumb-meta .date {
  color: var(--muted);
  font-size: 13px;
  margin-top: auto;
}

/* ダークモード対応 */
body.dark .thumb-card {
  background: #121212;
  border-color: #333;
  color: #f0f0f0;
}


.thumb-meta .title {
  font-weight: 800;
  font-size: 15px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.thumb-meta .date {
  color: var(--muted);
  font-size: 13px;
  margin-top: auto;
}
body.dark .thumb-card {
  background: #121212;
  color: #f0f0f0;
  border-color: #333;
}

/* ===== お問い合わせ ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .05);
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
}
.contact-form input,
.contact-form textarea {
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  padding: 10px;
  background: #fff;
  font-size: 14px;
}
.contact-form .btn {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}
.contact-form .btn:hover { opacity: 0.9; }
.contact-side img {
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .05);
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
}
body.dark .contact-form {
  background: #121212;
  border-color: #333;
  box-shadow: 0 8px 18px rgba(255,255,255,.04);
}
body.dark input,
body.dark textarea {
  background: #1e1e1e;
  color: #f5f5f5;
  border: 1px solid #444;
}

body.dark .site-footer {
  background: #1a1a1a;
  border-color: #333;
  color: #bbb;
}

.error-message {
  color: #f44336;
  font-size: 13px;
  margin-top: 4px;
  display: none;
  animation: fadeIn .3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-2px); }
  to { opacity: 1; transform: translateY(0); }
}

body.dark .contact-form input.error,
body.dark .contact-form textarea.error {
  background-color: #2a1b1b;
  border-color: #ef9a9a;
}

body.dark .error-message {
  color: #ef9a9a;
}

/* ===== ギャラリーアクション（もっと見るボタン） ===== */
.gallery-actions {
  margin-top: 12px;
  text-align: right; /* ← 追加（右寄せ） */
}

/* ===== MISSION / VISION / VALUE 見出し行 ===== */
.mvv-header {
  display: flex;
  justify-content: space-between; /* ← 左右に振り分け！ */
  align-items: center;
  margin-bottom: 8px;
}

.mvv-header h3 {
  color: var(--brand);
  font-size: 18px;
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* ===== タグ（使命・未来像・価値観） ===== */
.mvv-tag {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 10px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ===== ダークモード対応 ===== */
body.dark .mvv-tag {
  background: #81c784;
  color: #111;
}

.event-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* 左側：日付＋注目 */
.event-date {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #2e7d32;
  font-size: 16px;
  white-space: nowrap;
}

/* 「注目」タブ */
.event-tab {
  display: inline-block;
  background: #2e7d32;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 4px;
  padding: 2px 8px;
  margin-left: 6px;
}

/* 中央：タイトル・場所 */
.event-info {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 16px;
}

.event-title {
  font-weight: 800;
  color: #222;
}

.event-place {
  font-size: 14px;
  color: #555;
}

/* 右側：「詳細」ボタン */
.event-detail {
  border: 2px solid #2e7d32;
  color: #2e7d32;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: .2s;
}

.event-detail:hover {
  background: #2e7d32;
  color: #fff;
}

/* スマホ時の整列 */
@media (max-width: 640px) {
  .event-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .event-info {
    margin-left: 0;
  }
  .event-detail {
    align-self: flex-end;
  }
}
/* ===== 特別イベントの強調（注目行） ===== */
.event-row.highlight {
  background: #f3f8f3; /* 淡いグリーン */
  border-color: #2e7d32;
  box-shadow: 0 2px 8px rgba(46,125,50,0.1);
}

.event-row.highlight .event-date {
  color: #1b5e20;
}

.event-row.highlight .event-tab {
  background: #2e7d32;
  color: #fff;
}
/* ===== ギャラリーを5枚並べて表示 ===== */

.thumb-card:hover {
  transform: translateY(-4px);
}
@media (max-width: 768px) {
  .gallery-scroll {
    flex-wrap: nowrap;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .thumb-card {
    flex: 0 0 70%;
    scroll-snap-align: center;
  }
}
/* 🍃 葉っぱアニメーション背景 */
#leavesCanvas {
  position: fixed;
  inset: 0;
  z-index: -1; /* 背景として表示 */
  pointer-events: none; /* クリックを邪魔しない */
  background: transparent;
}
/* 🍃 Heroセクション内で葉っぱが舞う */
.hero {
  position: relative;
  overflow: hidden; /* はみ出し防止 */
}

#heroLeaves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* クリック操作を邪魔しない */
  z-index: 0; /* Hero内の一番下に配置 */
}

/* Hero内の文字や画像を上に重ねる */
.hero-grid {
  position: relative;
  z-index: 1;
}

/* ===== Join〜Executivesまとめブロック ===== */
.event-block {
  background: var(--paper); /* 白背景 */
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  padding: 40px 24px;
  margin: 60px auto;
  max-width: var(--max);
}

/* セクション間の余白を調整（重複しないように） */
.event-block .section + .section {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 30px;
}

/* ダークモード対応 */
body.dark .event-block {
  background: #121212;
  border-color: #333;
  box-shadow: 0 4px 16px rgba(255,255,255,0.05);
}
/* event-block の中だけ、内側セクションの余白を少しタイトに */
.event-block .section { 
  padding: 28px 0; 
}

/* 区切り線は2セクション目以降にだけ。既存ルールの補強。*/
.event-block .section + .section {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 24px;
}

/* 最初/最後のセクションの上下余白を調整してカード感を出す */
.event-block .section:first-child { 
  margin-top: 0;
  padding-top: 0; 
}
.event-block .section:last-child { 
  margin-bottom: 0;
  padding-bottom: 0; 
}
/* ダークモード用テーマ */
body.dark {
  background-color: #121212;
  color: #f1f1f1;
}

body.dark .section,
body.dark .card,
body.dark .mvv-card,
body.dark .post-card {
  background-color: #1e1e1e;
  color: #f1f1f1;
}

body.dark a {
  color: #90caf9;
}

body.dark .btn,
body.dark .btn-outline {
  border-color: #90caf9;
  color: #90caf9;
}

body.dark .btn:hover,
body.dark .btn-outline:hover {
  background-color: #90caf9;
  color: #000;
}

/* ===============================
   🧭 ヘッダー全要素を1行固定レイアウトに調整
   =============================== */
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;         /* 折り返し禁止 */
  gap: 10px;
  white-space: nowrap;
  transform-origin: left center;
  transition: transform 0.2s ease;
}

/* 横幅が狭くなるほど全体を縮小して維持 */
@media (max-width: 1400px) {
  .site-header .header-inner { transform: scale(0.95); }
}
@media (max-width: 1100px) {
  .site-header .header-inner { transform: scale(0.9); }
}
@media (max-width: 900px) {
  .site-header .header-inner { transform: scale(0.85); }
}
@media (max-width: 720px) {
  .site-header .header-inner { transform: scale(0.8); }
}
@media (max-width: 560px) {
  .site-header .header-inner { transform: scale(0.75); }
}
@media (max-width: 440px) {
  .site-header .header-inner { transform: scale(0.7); }
}

/* ロゴとタイトル */
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 1;
  min-width: 0;
}
.site-logo {
  width: 42px;
  height: auto;
  flex-shrink: 0;
}
.site-title {
  font-size: clamp(12px, 1.4vw, 16px);
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ナビゲーション（横スクロールなしで詰める） */
.nav ul {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
  font-size: clamp(11px, 1.3vw, 14px);
  margin: 0;
  padding: 0;
}
.nav ul li {
  flex-shrink: 0;
}

/* SNSボタン・ボタン類 */
.sns {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.sns-btn {
  width: 26px;
  height: 26px;
}

.btn-outline {
  padding: 6px 10px;
  font-size: clamp(10px, 1.2vw, 13px);
  flex-shrink: 0;
  white-space: nowrap;
}

/* ===============================
   🖱️ ヘッダー内：ホバー時に色が変わる演出
   =============================== */

/* ナビリンク */
.nav ul li a {
  position: relative;
  display: inline-block;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.nav ul li a:hover {
  background-color: rgba(46, 125, 50, 0.12); /* 緑の薄い背景 */
  color: var(--brand); /* 文字もブランドカラーに */
}

/* SNSアイコン */
.sns-btn {
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

/* 「問い合わせる」ボタン */
.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.btn-outline:hover {
  background-color: var(--brand);
  color: #fff;
  box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
}

/* テーマ切り替えボタン */
.theme-toggle {
  transition: color 0.25s ease, transform 0.25s ease;
}
.theme-toggle:hover {
  color: var(--brand);
  transform: rotate(10deg);
}

/* サイトタイトル（ロゴ横の文字） */
.site-title {
  transition: color 0.25s ease;
}
.brand:hover .site-title {
  color: var(--brand);
}

/* ロゴに軽いエフェクト */
.brand img.site-logo {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.brand:hover img.site-logo {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.25);
}

/* ===== ダークモード対応 ===== */
body.dark .nav ul li a:hover {
  background-color: rgba(129, 199, 132, 0.2);
  color: #81c784;
}
body.dark .sns-btn:hover {
  background-color: #81c784;
}

body.dark .brand:hover .site-title {
  color: #81c784;
}
body.dark .brand:hover img.site-logo {
  box-shadow: 0 4px 12px rgba(129, 199, 132, 0.25);
}
/* ===============================
   🔒 プライバシーポリシーリンク（フォーム下に中央寄せ）
   =============================== */
.privacy-link {
  text-align: left;            /* ← 中央寄せに変更 */
  margin-top: 12px;
  font-size: 13px;
}

.privacy-link a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.privacy-link a:hover {
  color: #1b5e20;
  opacity: 0.85;
}

/* ダークモード対応 */
body.dark .privacy-link a {
  color: #81c784;
}
body.dark .privacy-link a:hover {
  color: #a5d6a7;
}
/* ===== 個人情報同意チェック（横並び1行） ===== */
.consent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap; /* ← 改行を防ぐ！ */
}

.consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
  cursor: pointer;
}

.consent a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  transition: opacity .2s ease;
}

.consent a:hover {
  opacity: 0.8;
}

/* ダークモード対応 */
body.dark .consent {
  color: #f0f0f0;
}
body.dark .consent input[type="checkbox"] {
  accent-color: #81c784;
}
body.dark .consent a {
  color: #81c784;
}

/* ===== Footer（全幅に広がるバージョン） ===== */
.site-footer {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw; /* ← ページ全体の幅 */
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--paper);
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 18px 20px;
  font-size: 14px;
  color: var(--muted);
  margin-top: 40px;
}

.site-footer p {
  margin: 0;
  line-height: 1.6;
}

/* ダークモード対応 */
body.dark .site-footer {
  background: #1a1a1a;
  border-color: #333;
  color: #bbb;
}
/* ===== ボタン（共通・旧スタイル復旧） ===== */
.btn-outline {
  display: inline-block;
  border: 2px solid var(--brand);
  color: var(--brand);
  background: transparent;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 15px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 10px rgba(46, 125, 50, 0.2);
}

/* ===== 「もっと見る」ボタン専用（右寄せ） ===== */
.gallery-actions .btn-outline {
  font-size: 14px;
  padding: 8px 18px;
  border-width: 2px;
}

/* ダークモード対応 */
body.dark .btn-outline {
  border-color: #81c784;
  color: #81c784;
}

body.dark .btn-outline:hover {
  background: #81c784;
  color: #111;
}

/* ===== ヘッダー専用ボタン（縮小版） ===== */
.header-btn {
  border: 1.5px solid var(--brand);
  color: var(--brand);
  background: transparent;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.header-btn:hover {
  background: var(--brand);
  color: #fff;
}
/* ===== メールリンク専用スタイル（復旧） ===== */
.mail-link {
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
  line-height: 1.8;
}

.mail-link a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.25s ease;
}

.mail-link a:hover {
  opacity: 0.85;
}

/* ダークモード対応 */
body.dark .mail-link a {
  color: #81c784;
}

/* 🌙 ゆっくり優雅なフェードイン */
.fadein {
  opacity: 0;
  transform: translateY(45px) scale(0.96);
  transition:
    opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.fadein.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* 🔝 ページトップボタン */
#toTopBtn {
  position: fixed;
  right: 24px;
  bottom: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--brand);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    visibility 0.6s ease;
  z-index: 1000;
}

#toTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ホバー効果 */
#toTopBtn:hover {
  background: #1b5e20;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* 📱 スマホで少し小さく */
@media (max-width: 640px) {
  #toTopBtn {
    width: 40px;
    height: 40px;
    font-size: 18px;
    right: 16px;
    bottom: 20px;
  }
}
/* ===== 参加フォームセクション ===== */
#entry {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 40px 24px;
  margin: 60px auto;
  max-width: var(--max);
}

#entry .kicker {
  color: var(--brand);
  font-weight: 700;
}

#entry h2 {
  margin-top: 2px;
  margin-bottom: 16px;
}

#entry .form-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  margin-top: 20px;
}

#entry iframe {
  width: 100%;
  min-height: 640px;
}

#entry .form-alt {
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
}

body.dark #entry {
  background: #121212;
  border-color: #333;
  box-shadow: 0 4px 16px rgba(255,255,255,0.05);
}
/* ===== Join セクションのボタン配置 ===== */
.join-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.join-buttons .btn-outline {
  font-size: 15px;
  padding: 10px 22px;
  border-width: 2px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s ease;
}

/* メイン（代表面談）を少し目立たせる */
.join-buttons .btn-outline.main {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.join-buttons .btn-outline.main:hover {
  background: #1b5e20;
  border-color: #1b5e20;
}

/* サブ（問い合わせ）は通常ボタン */
.join-buttons .btn-outline.sub:hover {
  background: var(--brand);
  color: #fff;
}

/* 📱スマホでは縦並びに */
@media (max-width: 640px) {
  .join-buttons {
    flex-direction: column;
    gap: 10px;
  }
}
/* ===== サイト内検索 ===== */
.search-section {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 16px 20px;
  text-align: center;
}
#searchInput {
  width: min(480px, 90%);
  padding: 10px 16px;
  font-size: 15px;
  border: 2px solid var(--line);
  border-radius: 999px;
  outline: none;
  transition: all 0.25s ease;
}
#searchInput:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(46,125,50,0.15);
}

/* ダークモード */
body.dark #searchInput {
  background: #1e1e1e;
  color: #f1f1f1;
  border-color: #333;
}
body.dark #searchInput:focus {
  border-color: #81c784;
  box-shadow: 0 0 0 3px rgba(129,199,132,0.2);
}

/* ハイライト */
mark.search-highlight {
  background: #ffeb3b;
  color: #000;
  padding: 0 2px;
  border-radius: 2px;
  transition: background 0.3s ease;
}
mark.search-highlight.active {
  background: #ffc107;
  box-shadow: 0 0 6px #ffc107;
}

/* 件数・未検出メッセージ */
#searchCounter, #noResult {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.9rem;
  background: #f5f5f5;
  padding: 2px 6px;
  border-radius: 4px;
  color: #555;
  user-select: none;
}
#noResult { background: none; color: #999; margin-left: 12px; }

/* カウンタの位置用 */
.search-section .container { position: relative; display: flex; justify-content: center; }
#galleryScroll .thumb-card { flex: 0 0 320px; scroll-snap-align: start; }

/* ===============================
   ✅ ギャラリー（初期：横1列スクロール）
   =============================== */
#galleryScroll {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  gap: 12px;
  padding: 4px 2px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  max-height: 360px; /* 1段のみ */
}

/* 初期カード幅 */
#galleryScroll .thumb-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
}

/* 一覧展開時 */
#galleryScroll.expanded {
  flex-wrap: wrap !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  max-height: none;
  justify-content: flex-start;
}
#galleryScroll.expanded .thumb-card { flex: 0 0 calc(33.333% - 12px); }
@media (max-width: 960px){ #galleryScroll.expanded .thumb-card { flex: 0 0 calc(50% - 12px); } }
@media (max-width: 560px){ #galleryScroll.expanded .thumb-card { flex: 1 1 100%; } }

/* 本文部 */
#bioView .post-body-wrap {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}

#bioView .post-close {
  right: 14px;
  top: 14px;
}

/* 右下：本文を内部スクロールに */
#bioView .post-body-wrap{
  padding: 16px 18px;
  overflow: auto;
}

/* モバイルは縦並びに戻す */
@media (max-width: 780px){
  #bioView .post-card{
    display: flex; flex-direction: column; width: min(680px, 92vw);
  }
  #bioView .bio-right{ display: block; }
  #bioView .bio-subhero{ height: 220px; }
}

/* ===== 幹部モーダル（右：上=画像 / 下=本文 2/3）強制レイアウト ===== */

/* post-card の縦横比固定を解除して高さを決める */
#bioView .post-card{
  aspect-ratio: auto !important;        /* 既存の 4/3 を打ち消し */
  width: min(920px, 92vw);
  height: clamp(520px, 70vh, 760px);    /* 画面に合わせて可変 */
  display: grid;
  grid-template-columns: minmax(380px, 1.15fr) minmax(320px, 0.85fr);
  overflow: hidden;
}

/* 左：メイン画像はカード高いっぱい */
#bioView #bioHero{
  grid-column: 1;
  grid-row: 1;
  height: 100% !important;              /* 旧 height を完全に無効化 */
  min-height: 0;
  border-bottom: none !important;
  background: #000;
  overflow: hidden;
}
#bioView #bioHero img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 右：上=画像 / 下=本文（下を 2/3 に） */
#bioView .bio-right{
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-rows: 1fr 2fr;  /* ← 下が 2/3 */
  min-height: 0;                /* 内部スクロールを有効にするため必須 */
}

/* 右上の画像ボックスは自動高さで切り抜き */
#bioView .bio-subhero{
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #000;
  min-height: 0;
}
#bioView .bio-subhero img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 右下：本文は内部スクロール */
#bioView .post-body-wrap{
  padding: 16px 18px;
  overflow: auto;
  min-height: 0;
}

/* モバイルは縦積み */
@media (max-width: 780px){
  #bioView .post-card{
    display: flex;
    flex-direction: column;
    height: auto;                  /* 自然な高さに */
    max-height: 90vh;
  }
  #bioView .bio-right{ display: block; }
  #bioView .bio-subhero{ height: 220px; }
}

/* ✅ モーダル全体を縦1カラムにする */
#bioView .post-card{
  display: flex;
  flex-direction: column;
  width: min(600px, 92vw);   /* いい感じの縦長カード */
  max-height: 90vh;
  overflow: hidden;
}

/* ✅ 上の画像（1/3くらいを使う） */
#bioView #bioHero{
  width: 100%;
  height: 35vh;              /* 画面の上35%くらいに固定 */
  min-height: 240px;
  max-height: 320px;
  overflow: hidden;
  background: #000;
}
#bioView #bioHero img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ✅ 本文エリア（残り 全部） */
#bioView .post-body-wrap{
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

/* ✅ 右サブ画像は完全に消す */
#bioView .bio-right,
#bioView .bio-subhero,
#bioView #bioImgSub{
  display: none !important;
}