* { box-sizing: border-box; }

/* ── スキップリンク（キーボードユーザー向け） ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  z-index: 9999;
  padding: 8px 18px;
  background: #225a3c;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top .15s;
}
.skip-link:focus { top: 0; color: #fff; }

/* ── フッター利用規約・プライバシーリンク ── */
.sns-footer-legal { margin-top: 8px; font-size: 12px; }
.sns-footer-legal a { color: rgba(255,255,255,.6); text-decoration: underline; }

/* ── :focus-visible フォーカスリング ── */
*:focus-visible {
  outline: 2px solid #c5ff4e;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #0a2e10;
  border-radius: 2px;
}

/* ── prefers-reduced-motion: アニメーション無効化（ファイル末尾に移動済み） ── */

body {
  margin: 0;
  color: #1a2e1e;
  background: #fff;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.8;
}

a { color: #225a3c; text-decoration: none; transition: color .2s; touch-action: manipulation; }
a:hover { color: #1a4530; text-decoration: underline; }
button { touch-action: manipulation; }
[role="button"] { touch-action: manipulation; }

/* ── フルブリード：.page は画面幅100% ── */
.page {
  width: 100%;
  background: #fff;
  overflow-x: clip; /* 水平方向のはみ出し防止（sticky を壊さない） */
}

/* ── ヘッダー：緑1段レイアウト・スクロール固定 ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: stretch;
  background: #fff;
}

.logo-area {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 10px clamp(16px, 3vw, 40px);
  background: transparent;
  border-bottom: none;
  border-right: 1px solid rgba(34,90,60,.25);
}

.logo {
  display: inline-flex;
  align-items: center;
  background: transparent;
  transition: opacity .15s;
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.75;
}

/* ヘッダーキャッチコピーは1段化で非表示 */
.header-info { display: none; }

/* ── ハンバーガーボタン（デスクトップでは非表示） ── */
.nav-toggle { display: none; }

/* ── グローバルナビ（ロゴ右に横並び） ── */
.global-nav {
  flex: 1;
  background: transparent;
  display: flex;
  align-items: stretch;
}

.global-nav ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}
.global-nav li { flex: 1; border-right: 1px solid rgba(34,90,60,.2); display: flex; justify-content: center; }
.global-nav li:first-child { border-left: 1px solid rgba(34,90,60,.2); }
.global-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(8px, 1.1vw, 18px);
  color: #0a2e10;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.global-nav a:hover {
  background: rgba(34,90,60,.12);
  color: #225a3c;
  text-decoration: none;
}

.global-nav a[aria-current="page"] {
  background: rgba(34,90,60,.18);
  color: #225a3c;
  border-bottom: 3px solid #225a3c;
}

/* ── シングルページコンテンツ ── */
.content.single {
  display: block;
  padding: clamp(28px, 4vw, 56px) clamp(20px, 6vw, 80px) clamp(48px, 6vw, 80px);
}

/* ── セクションタイトル ── */
.section-title {
  margin: 0 0 18px;
  padding: 10px 16px;
  border-left: 5px solid #225a3c;
  border-bottom: 1px solid #c9efd4;
  background: #f4fbf5;
  color: #0a2e10;
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 900;
  letter-spacing: .04em;
  border-radius: 0 3px 0 0;
}

/* ── 記事カード ── */
.article {
  display: grid;
  grid-template-columns: clamp(160px, 18vw, 220px) 1fr;
  gap: 20px;
  padding: 20px;
  margin: 0 0 16px;
  border: 1px solid #e0f0e5;
  border-radius: 8px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.article:hover {
  border-color: #a5ddb8;
  box-shadow: 0 4px 20px rgba(13,140,60,.1);
  transform: translateY(-2px);
}

.thumb {
  min-height: 120px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: linear-gradient(135deg, #d8f5e2 0%, #b8edca 100%);
  color: #4a7a56;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  border: 1px solid #c9efd4;
}

/* ── 番号付き画像 figure/figcaption ── */
.article figure {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

.article figure figcaption {
  padding: 5px 8px;
  background: #225a3c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  border-radius: 0 0 4px 4px;
  letter-spacing: .04em;
}

.article h2 {
  margin: 0 0 8px;
  color: #0a2e10;
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.5;
  font-weight: 900;
}

.article p { margin: 0; color: #4a5a4e; font-size: clamp(12px, 1.1vw, 14px); line-height: 1.7; }

/* ── リードボックス ── */
.lead-box {
  margin: 0 0 20px;
  padding: 16px 20px;
  border: 1px solid #c9efd4;
  border-left: 4px solid #225a3c;
  background: #f4fbf5;
  border-radius: 0 6px 6px 0;
}
.lead-box p { margin: 0; color: #1a4a28; font-size: 14px; line-height: 1.8; }

/* ── サブタイトル ── */
.sub-title {
  margin: 28px 0 12px;
  padding: 8px 12px;
  border-bottom: 2px solid #c9efd4;
  color: #0a2e10;
  font-size: 15px;
  font-weight: 900;
}

/* ── プレーンリスト ── */
.plain-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  border: 1px solid #c9efd4;
  border-radius: 6px;
  overflow: hidden;
}
.plain-list li {
  padding: 11px 14px;
  border-top: 1px solid #eaf5ec;
  color: #1a4a28;
  font-size: 13px;
  transition: background .15s;
}
.plain-list li:first-child { border-top: 0; }
.plain-list li:hover { background: #f4fbf5; }

/* ── フォームテーブル ── */
.form-table { width: 100%; border-collapse: collapse; margin-top: 10px; border-radius: 6px; overflow: hidden; }
.form-table th, .form-table td { padding: 12px 14px; border: 1px solid #c9efd4; text-align: left; vertical-align: top; font-size: 13px; }
.form-table th { width: 180px; background: #f4fbf5; color: #0a5a22; font-weight: 700; }

/* ── フッターナビ ── */
.footer-nav {
  border-top: 2px solid #c9efd4;
  background: #f4fbf5;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 14px clamp(16px, 4vw, 60px);
  list-style: none;
}
.footer-nav li {
  padding: 4px 14px;
  border-right: 1px solid #a5ddb8;
  font-size: 13px;
  line-height: 1.4;
}
.footer-nav li:last-child { border-right: 0; }
.footer-nav a { color: #0a5a22; }


/* ── フッター ── */
footer {
  padding: clamp(20px, 3vw, 40px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(10, 46, 16, .88) 0%, rgba(13, 92, 40, .82) 100%),
    url("image/ドローン撮影風.png") center / cover no-repeat;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  text-align: center;
  letter-spacing: .06em;
}

/* ── SNS フッター（index + 全サブページ共通） ── */
footer.sns-footer {
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 72px) clamp(32px, 5vw, 56px);
  background:
    linear-gradient(160deg, rgba(7, 30, 10, .88) 0%, rgba(10, 46, 16, .82) 40%, rgba(13, 92, 40, .76) 100%),
    url("image/ドローン撮影風.png") center / cover no-repeat;
  text-align: center;
}
.sns-footer-logo {
  height: clamp(36px, 4vw, 52px);
  width: auto;
  margin-bottom: 32px;
  opacity: .88;
  filter: brightness(0) invert(1);
}
.sns-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 3vw, 32px);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.sns-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, 5vw, 56px);
  height: clamp(44px, 5vw, 56px);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  transition: background .2s, transform .15s, border-color .2s;
  color: #fff;
  text-decoration: none;
}
.sns-icon:hover {
  background: rgba(197,255,78,.18);
  border-color: #c5ff4e;
  transform: translateY(-3px);
  text-decoration: none;
}
.sns-icon svg {
  width: clamp(18px, 2vw, 24px);
  height: clamp(18px, 2vw, 24px);
  fill: #fff;
  display: block;
}
.sns-footer-copy {
  color: rgba(255,255,255,.6);
  font-size: 11px;
  letter-spacing: .12em;
  margin: 0;
}

/* ═══════════════════════════════
   レスポンシブ — タブレット (≤900px)
   ═══════════════════════════════ */
@media (max-width: 900px) {
  .logo-area { padding: 10px 16px; }
  .logo img { height: 38px; }
  .global-nav a { font-size: 11px; padding: 0 8px; }

  .content.single { padding: 24px 24px 40px; }

  .article {
    grid-template-columns: 140px 1fr;
    gap: 14px;
    padding: 14px;
  }

  .form-table th { width: 130px; }
  .footer-nav li { padding: 4px 8px; font-size: 12px; }
}

/* ═══════════════════════════════
   レスポンシブ — スマートフォン (≤600px)
   ═══════════════════════════════ */
@media (max-width: 600px) {
  body { font-size: 13px; }

  /* ヘッダー：ロゴ左／ハンバーガーを右端に固定 */
  header { justify-content: space-between; }

  .logo-area { padding: 10px 14px; border-right: none; }
  .logo img { height: 36px; }

  /* モバイル：ナビを右端ハンバーガーに */
  .global-nav {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #0a2e10;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    height: 100%;
  }

  .nav-toggle-icon { display: flex; flex-direction: column; gap: 5px; flex-shrink: 0; }
  .nav-toggle-icon span { display: block; width: 20px; height: 2px; background: #0a2e10; border-radius: 1px; transition: transform .25s ease, opacity .25s ease; }
  .global-nav.open .nav-toggle-icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .global-nav.open .nav-toggle-icon span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .global-nav.open .nav-toggle-icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ドロップダウンメニュー */
  .global-nav ul {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    background: #fff;
  }
  .global-nav.open ul { max-height: 600px; }
  .global-nav li { border-bottom: 1px solid rgba(34,90,60,.15); border-right: none; display: block; }
  .global-nav a { padding: 12px 20px; font-size: 13px; display: block; white-space: normal; }

  .content.single { padding: 16px 14px 32px; }

  .section-title { font-size: 15px; padding: 8px 10px; }

  .article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .article h2 { font-size: 15px; }

  .form-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .form-table, .form-table tbody, .form-table tr, .form-table th, .form-table td { display: block; width: 100%; }
  .form-table th { background: #f4fbf5; padding: 8px 12px 4px; border-bottom: 0; font-size: 12px; font-weight: 900; }
  .form-table td { padding: 4px 12px 12px; border-top: 0; }
  .form-table tr { border-bottom: 1px solid #c9efd4; }
  .form-table tr:last-child { border-bottom: 0; }

  .footer-nav ul { flex-direction: column; padding: 8px 14px; }
  .footer-nav li { padding: 7px 0; border-right: 0; border-bottom: 1px solid #c9efd4; font-size: 13px; }
  .footer-nav li:last-child { border-bottom: 0; }

  footer { padding: 16px; }

  /* SNS フッターアイコン：スマホで余白を縮める */
  .sns-icons { gap: 14px; margin-bottom: 28px; }
  .sns-icon { width: 44px; height: 44px; }
}

/* ── トップへ戻るボタン（全サブページ共通） ── */
.back-to-top-wrap {
  text-align: center;
  padding: 28px 16px 20px;
  background: #f4fbf5;
  border-top: 1px solid #c9efd4;
}
.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: #225a3c;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 40px;
  letter-spacing: .06em;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(34,90,60,.25);
}
.back-to-top-btn:hover {
  background: #1a4530;
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(34,90,60,.3);
}

/* ═══════════════════════════════
   トップページ専用スタイル
   ═══════════════════════════════ */

@keyframes heroFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-section {
  position: relative;
  width: 100%;
  height: clamp(280px, 56.25vw, 90vh);
  background: #000;
  overflow: hidden;
  line-height: 0;
  opacity: 0;
  animation: heroFadeIn 0.7s ease 0.1s forwards;
}

.hero-video-wrap {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  pointer-events: none;
}

.hero-video.active { opacity: 1; pointer-events: auto; }

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.62) 0%,
    rgba(0,0,0,.38) 35%,
    rgba(0,0,0,.08) 65%,
    rgba(0,0,0,0)   100%
  );
  pointer-events: none;
  z-index: 2;
}

.hero-caption {
  position: absolute;
  left: 6vw;
  bottom: 12vh;
  z-index: 3;
  max-width: clamp(260px, 45vw, 600px);
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}

.hero-caption.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-caption-main {
  display: block;
  font-size: clamp(14px, 1.8vw, 22px);
  font-weight: 900;
  color: #fff;
  line-height: 1.6;
  letter-spacing: .02em;
  text-shadow: 0 2px 8px rgba(0,0,0,.55);
  margin-bottom: 8px;
}

.hero-movie-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 22px 8px 18px;
  background: #c5ff4e;
  color: #1a3d00;
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 50px;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  pointer-events: auto;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
}

.hero-movie-btn:hover {
  background: #d8ff72;
  color: #1a3d00;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0,0,0,.3);
}

.hero-movie-btn::after {
  content: '»';
  font-size: 1.1em;
  line-height: 1;
}

/* ── ベネフィットバンド ── */
.benefit-band {
  background: linear-gradient(135deg, #0a2e10 0%, #225a3c 100%);
  padding: clamp(20px, 3.5vw, 40px) clamp(20px, 6vw, 80px);
  text-align: center;
}

.benefit-band p {
  font-size: clamp(14px, 1.8vw, 20px);
  color: #fff;
  margin: 0;
  line-height: 1.9;
  font-weight: 700;
}

.benefit-band strong { color: #c5ff4e; }

/* ── コンテンツグリッド（トップ用） ── */
.content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: #fff;
}

.main-column { min-width: 0; }

.page-section {
  padding: clamp(28px, 4vw, 56px) clamp(20px, 6vw, 80px);
  border-bottom: 1px solid #eaf5ec;
}

.page-section:last-child { border-bottom: none; }
.page-section:nth-child(even) { background: #f4fbf5; }
.page-section:nth-child(even) .section-title { background: #e8f5eb; }

/* ── サムネイル画像 ── */
.thumb-img {
  width: 100%;
  height: clamp(100px, 12vw, 140px);
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* ── もっと見るボタン ── */
.more {
  display: inline-block;
  padding: 5px 16px;
  background: #225a3c;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: .04em;
  transition: background .2s, transform .15s;
}

.more:hover { background: #1a4530; color: #fff; text-decoration: none; transform: translateX(2px); }

/* ── LEVEL UP グリッド ── */
.levelup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 24px);
  margin-top: 8px;
}

.levelup-card {
  background: #fff;
  border: 1px solid #c9efd4;
  border-radius: 12px;
  padding: clamp(14px, 2vw, 22px);
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}

.levelup-card:hover {
  box-shadow: 0 6px 24px rgba(34,90,60,.12);
  transform: translateY(-3px);
}

.levelup-card img {
  width: 100%;
  height: clamp(120px, 14vw, 200px);
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
}

.levelup-card h3 {
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 900;
  color: #0a2e10;
  margin: 0 0 8px;
  line-height: 1.5;
}

.levelup-card p {
  font-size: clamp(11px, 1vw, 13px);
  color: #4a5a4e;
  line-height: 1.7;
  margin: 0;
}

/* ── 芝生イントロセクション ── */
.sod-intro {
  position: relative;
  width: 100%;
  padding: clamp(56px, 10vw, 120px) clamp(20px, 6vw, 80px);
  background-image: url('image/芝生.jpg');
  background-size: cover;
  background-position: center 60%;
  text-align: center;
  overflow: hidden;
}

.sod-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 38, 14, .70);
}

.sod-intro-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.sod-intro-en {
  display: block;
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 700;
  letter-spacing: .28em;
  color: #c5ff4e;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sod-intro-copy {
  font-size: clamp(18px, 2.6vw, 34px);
  font-weight: 900;
  color: #fff;
  line-height: 1.65;
  letter-spacing: .04em;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
  margin: 0 0 20px;
}

.sod-intro-sub {
  font-size: clamp(13px, 1.4vw, 16px);
  color: rgba(255,255,255,.78);
  letter-spacing: .03em;
  line-height: 2;
  margin: 0 0 28px;
}

.sod-intro-sub .m-break { display: none; }

.sod-intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 28px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 50px;
  color: rgba(255,255,255,.85);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}

.sod-intro-btn::after {
  content: '→';
  font-size: .9em;
  transition: transform .2s;
}

.sod-intro-btn:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
  color: #fff;
  text-decoration: none;
}

.sod-intro-btn:hover::after { transform: translateX(4px); }

/* ── フィーチャー行 ── */
.feature-rows {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 4vw, 52px);
  padding: clamp(28px, 4vw, 56px) clamp(20px, 5vw, 80px);
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 56px);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .6s ease, transform .6s ease;
}

.feature-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-row.reverse { flex-direction: row-reverse; }

.feature-row-img {
  flex: 0 0 44%;
  min-width: 0;
  border-radius: 14px;
  overflow: hidden;
}

.feature-row-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.feature-row-body {
  flex: 1 1 0;
  min-width: 0;
  padding-top: 4px;
}

.feature-row-body::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: #c5ff4e;
  border-radius: 2px;
  margin-bottom: 20px;
}

.feature-row-body h2,
.feature-row-body h3 {
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 900;
  color: #0a2e10;
  margin: 0 0 16px;
  line-height: 1.55;
}

.feature-row-body p {
  font-size: clamp(13px, 1.1vw, 15px);
  color: #4a5a4e;
  line-height: 2;
  margin: 0;
}

.feature-row-img--clickable {
  position: relative;
  cursor: pointer;
}

.feature-row-img--clickable img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.feature-row-img--clickable:hover img {
  transform: scale(1.03);
  filter: brightness(0.85);
}

.feature-row-img-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,46,16,.82);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 14px;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  white-space: nowrap;
}

.feature-row-img--clickable:hover .feature-row-img-hint,
.feature-row-img--clickable:focus-within .feature-row-img-hint { opacity: 1; }

/* ── プロフィールモーダル ── */
.prof-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99998;
  align-items: center;
  justify-content: center;
}

.prof-modal.open { display: flex; }

.prof-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.62);
}

.prof-modal-box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 14px;
  max-width: 720px;
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  box-shadow: 0 8px 48px rgba(0,0,0,.28);
  padding: 36px 32px 32px;
}

.prof-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 22px;
  color: #4a5a4e;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .2s;
}

.prof-modal-close:hover { color: #0a2e10; }

.prof-modal-inner {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.prof-modal-img {
  flex: 0 0 200px;
  border-radius: 10px;
  overflow: hidden;
}

.prof-modal-img img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.prof-modal-body { flex: 1; }

.prof-modal-body h2 {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
  color: #0a2e10;
  margin: 0 0 10px;
  line-height: 1.4;
}

.prof-modal-sub {
  font-size: 13px;
  color: #225a3c;
  font-weight: 700;
  line-height: 1.8;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #c9efd4;
}

.prof-modal-bio {
  font-size: 13px;
  color: #4a5a4e;
  line-height: 2;
  margin: 0;
}

/* ── SNSフローティングボタン ── */
.sns-float {
  position: fixed;
  right: 16px;
  bottom: 72px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 900;
}

.sns-float-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.28);
  transition: transform .2s, box-shadow .2s;
}

.sns-float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 4px 14px rgba(0,0,0,.38);
  text-decoration: none;
  color: #fff;
}

.sns-float-btn i { font-size: 18px; }
.sns-float-x  { background: #000; }
.sns-float-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.sns-float-yt { background: #ff0000; }
.sns-float-ss { background: #ff6719; }
.sns-float-fn { background: #7b2d8b; }

.sns-close-btn {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2px;
  transition: background .2s;
}

.sns-close-btn:hover { background: rgba(0,0,0,.6); }

.sns-reopen-btn {
  position: fixed;
  right: 16px;
  bottom: 72px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #225a3c;
  color: #fff;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.28);
  z-index: 900;
  transition: background .2s, transform .2s;
}

.sns-reopen-btn:hover { background: #1a4530; transform: scale(1.1); }
.sns-reopen-btn i { font-size: 18px; }

/* ─── フィーチャー行：タブレット ≤760px ─── */
@media (max-width: 760px) {
  .feature-rows { gap: 28px; padding: 24px 16px; }
  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .feature-row-img img { aspect-ratio: 16 / 9; }
  .feature-row-body { padding-top: 0; }
  .feature-row-body h2, .feature-row-body h3 { font-size: 17px; }
}

/* ─── トップページ追加：スマートフォン ≤600px ─── */
@media (max-width: 600px) {
  .prof-modal-box { padding: 48px 16px 24px; }
  .prof-modal-inner { flex-direction: column; }
  .prof-modal-img { flex: none; width: 100%; max-width: 240px; margin: 0 auto; }
  .prof-modal-img img { aspect-ratio: 4 / 3; }
  .hero-section { height: 56.25vw; }
  .hero-caption { bottom: 8%; left: 4vw; max-width: calc(100vw - 8vw); }
  .hero-caption-main { font-size: clamp(11px, 3.2vw, 15px); margin-bottom: 4px; }
  .hero-movie-btn { margin-top: 6px; padding: 5px 14px 5px 10px; font-size: 11px; }
  .sod-intro-copy { font-size: 17px; }
  .sod-intro-sub { font-size: 12px; letter-spacing: .02em; }
  .sod-intro-sub .m-break { display: inline; }
}


/* ── prefers-reduced-motion: アニメーション無効化 ── */
/* ファイル末尾に置くことで後続ルールを正しく上書き */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-section {
    opacity: 1 !important;
    animation: none !important;
  }
  .anim {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
