@import url('https://fonts.googleapis.com/css2?family=Anton&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');

:root {
  --bg: #EEF2F6;
  --panel: #D7DEE6;
  --black: #0B0B0C;
  --black-2: #17181A;
  --ink: #171F26;
  --ink-soft: #52606B;
  --accent: #0B63A6;
  --accent-deep: #084877;
  --ink-on-black: #F4F6F8;
  --ink-on-black-soft: #AAB4BD;
  --line: #C4CDD6;
  --line-deep: #34383C;
  --max: 760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  color: var(--ink);
  margin: 0;
  line-height: 1.4;
}

.display {
  font-family: 'Anton', 'Zen Kaku Gothic New', sans-serif;
  text-transform: uppercase;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

img, svg { display: block; max-width: 100%; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* ---------- nav ---------- */
.site-nav {
  background: var(--black);
  padding: 16px 40px;             /* 左右の余白のみで幅を決める（wrap-wide の960px制限を使わない） */
}
.site-nav .wrap-wide {
  max-width: none;                /* 960px制限を解除し、ロゴとナビを画面端近くまで離す */
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Anton', sans-serif; font-size: 1.15rem; letter-spacing: .02em; color: #fff; }
.brand svg { width: 26px; height: 26px; flex: none; }
.brand-logo { height: 60px; width: auto; display: block; }
.nav-links { display: flex; gap: 12px; flex-wrap: wrap; }
.nav-links a {
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .84rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .2s;
}
.nav-links a:hover { background: rgba(255,255,255,.2); text-decoration: none; }

/* お問い合わせだけ目立たせるCTAボタン */
.nav-links a.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.nav-links a.nav-contact svg { width: 14px; height: 14px; flex: none; }
.nav-links a.nav-contact:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, #BFE0F5 0%, #4E9BCB 45%, #0B5FA0 78%, #08406E 100%);
  padding: 96px 0 0;
  overflow: hidden;
}
.hero .wrap-wide { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 30px; align-items: center; padding-bottom: 70px; }
.hero h1 {
  font-family: 'Anton', 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  color: #fff;
  text-shadow: 0 3px 14px rgba(0,0,0,.35);
  transform: skewY(-5deg);
  letter-spacing: .01em;
}
.hero-emph { font-size: 1.2em; }
.hero-sub { font-size: .68em; }
.hero-highlight {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 60px 2px 16px;
  background: linear-gradient(to right, rgba(8,72,119,.65) 0%, rgba(8,72,119,.4) 55%, rgba(8,72,119,0) 100%);
  border-radius: 6px;
}
.hero .lead {
  margin-top: 22px;
  color: #EAF3FA;
  font-size: 1.02rem;
  max-width: 30em;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.hero .cta-row { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero-waves { display: block; width: 100%; position: relative; z-index: 3; margin-top: -2px; }
.hero-visual { display: flex; flex-direction: column; }
.hero-figure { position: relative; height: 300px; z-index: 2; }

.profile-teaser {
  background: #fff;
  border-radius: 0;               /* 角丸をやめてシャープな名刺の角に */
  margin-top: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.14);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.profile-teaser-top {
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px 22px 26px;
  margin: 0;
}
.profile-teaser-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 1.05rem;
  flex: none;
}
.profile-teaser-label-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.profile-teaser-label { margin: 0; font-family: 'Anton', sans-serif; font-size: .72rem; letter-spacing: .08em; color: var(--accent); text-transform: uppercase; }
.profile-teaser-name { margin: 2px 0 0; font-size: 1.05rem; font-weight: 900; color: var(--ink); letter-spacing: .02em; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.profile-teaser-name-en { font-family: 'Zen Kaku Gothic New', sans-serif; font-size: .7rem; font-weight: 700; color: var(--ink-soft); letter-spacing: .03em; }
.profile-teaser-role {
  display: inline-block;
  font-size: .64rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(11,99,166,.08);
  padding: 2px 9px;
  border-radius: 999px;
  letter-spacing: .05em;
}
/* 名刺の中に釣り人シルエットを配置：左＝名前、右端＝シルエットのレイアウト */
.profile-teaser-mark {
  width: 72px;
  height: 62px;
  margin-left: auto;   /* flexの並びの中で右端に押し出す */
  flex: none;
  align-self: flex-end; /* 足元をカードの下側に揃える */
  background: var(--accent-deep);  /* サイトの紺色に合わせて馴染ませる */
  -webkit-mask-image: url('/images/profile-silhouette.png');
  mask-image: url('/images/profile-silhouette.png');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: bottom right;
  mask-position: bottom right;
  pointer-events: none;
}
@media (max-width: 640px) {
  .profile-teaser-mark { width: 56px; height: 48px; }
}
.profile-teaser-wave {
  position: relative;
  z-index: 1;
  margin-top: -22px;      /* 波を大きくした分、重ねる量も増やす */
  line-height: 0;
}
.profile-teaser-wave svg {
  display: block;
  width: 100%;
  height: 26px;           /* 波を大きく */
}
.profile-teaser-body {
  background: var(--accent-deep);   /* 紺色 */
  padding: 4px 22px 12px 26px;      /* 上下の余白を縮小 */
}
.profile-teaser-text { margin: 0; font-size: .77rem; line-height: 1.5; color: #BFE0F5; }
.profile-teaser-cta {
  margin-top: 14px;
  text-align: right;
}
.profile-teaser-link {
  display: inline-block;
  font-size: .86rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  font-size: .9rem;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.btn:hover { text-decoration: none; }
.btn-solid { background: var(--black); color: #fff; }
.btn-solid:hover { background: #000; }
.btn-outline { border-color: #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--accent-deep); }

/* ---------- snapshot card (polaroid motif) ---------- */
.snap {
  background: #fff;
  padding: 6px 6px 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
  border-radius: 4px;
}
.snap .snap-fill {
  aspect-ratio: 16/11;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-radius: 2px;
}
.snap .snap-fill img { width: 100%; height: 100%; object-fit: cover; padding: 0; }
.snap.t-left { transform: rotate(-6deg); }
.snap.t-right { transform: rotate(6deg); }

/* ---------- section ---------- */
.section { padding: 56px 0; }
.section-head { margin-bottom: 30px; }
.section-head .kicker {
  font-family: 'Anton', sans-serif;
  color: var(--accent);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.section-head h2 { font-size: 1.5rem; }
.section-head p { color: var(--ink-soft); margin-top: 10px; }

/* ---------- about split ---------- */
.about-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: start; }
.stat-list { border-top: 1px solid var(--line); }
.stat-list div { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 12px; }
.stat-list dt { color: var(--ink-soft); font-size: .88rem; }
.stat-list dd { margin: 0; font-weight: 700; text-align: right; }

/* ---------- list rows (intro series / log) ---------- */
.row-list { border-top: 1px solid var(--line); }
.row-item { display: grid; grid-template-columns: 44px 1fr auto; gap: 18px; align-items: baseline; padding: 22px 0; border-bottom: 1px solid var(--line); }
.row-num { font-family: 'Anton', sans-serif; font-size: 1.3rem; color: var(--accent); }
.row-body h3 { font-size: 1.08rem; }
.row-body p { margin: 6px 0 0; color: var(--ink-soft); font-size: .92rem; font-weight: 400; }
.row-link { font-size: .86rem; font-weight: 700; white-space: nowrap; align-self: center; background: var(--panel); padding: 7px 14px; border-radius: 999px; }
.row-link:hover { background: #fff; text-decoration: none; }
.row-item.soon { opacity: .55; }
.row-item.soon .row-link { color: var(--ink-soft); background: transparent; }

/* ---------- log rows ---------- */
.log-item { padding: 26px 0; border-bottom: 1px solid var(--line); }
.log-item .log-date { font-size: .82rem; color: var(--ink-soft); letter-spacing: .03em; font-weight: 700; }
.log-item h3 { font-size: 1.08rem; margin-top: 6px; }
.log-item .catch { margin-top: 10px; display: flex; gap: 8px; flex-wrap: wrap; }
.catch span { font-size: .8rem; font-weight: 700; background: var(--panel); padding: 6px 13px; border-radius: 999px; color: var(--ink); }
.log-item p.desc { margin-top: 12px; color: var(--ink-soft); }

/* ---------- deep band ---------- */
.band-deep {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: var(--ink-on-black);
  padding: 62px 0;
}
.band-deep h2 { color: #fff; font-size: 1.5rem; }
.band-deep p { color: #CFE4F4; margin-top: 14px; max-width: 34em; }

/* ---------- footer ---------- */
footer { background: var(--black); color: var(--ink-on-black-soft); padding: 30px 0; font-size: .84rem; border-top: 1px solid var(--line-deep); }
footer .wrap-wide { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
footer a { color: #fff; }

/* ---------- article page ---------- */
.article-head { padding: 56px 0 20px; background: linear-gradient(180deg, #EAF2F8 0%, var(--panel) 100%); }
.article-head .eyebrow { font-family: 'Anton', sans-serif; color: var(--accent); font-size: 1rem; letter-spacing: .04em; }
.article-head h1 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); margin-top: 10px; }
.article-head .meta { color: var(--ink-soft); font-size: .88rem; margin-top: 14px; font-weight: 400; }
.article-body { padding: 40px 0 60px; }
.article-body h2 { font-size: 1.2rem; margin-top: 46px; padding-bottom: 10px; border-bottom: 3px solid var(--panel); }
.article-body h2 .num { color: var(--accent); margin-right: 10px; }
.article-body p { margin: 16px 0; }
.article-body ul { padding-left: 1.2em; }
.article-body li { margin: 8px 0; }
.pull { background: var(--panel); padding: 18px 22px; margin: 26px 0; font-size: .94rem; color: var(--ink); font-weight: 700; border-radius: 4px; }
.article-nav { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 30px 0; border-top: 1px solid var(--line); margin-top: 10px; }
.article-nav a { font-weight: 700; }

.video-embed { margin: 24px 0; }
.video-embed .frame { position: relative; padding-top: 56.25%; background: var(--black); border-radius: 4px; overflow: hidden; box-shadow: 0 10px 22px rgba(0,0,0,.22); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed .cap { margin-top: 10px; font-size: .84rem; color: var(--ink-soft); }

/* ---------- link collection page ---------- */
.cat-jump-wrap { margin-top: 24px; }
.cat-jump { display: flex; flex-wrap: wrap; gap: 10px; }
.cat-jump a {
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid var(--line);
}
.cat-jump a:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

.link-category { padding: 38px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 24px; }
.link-category:last-child { border-bottom: none; }
.link-category h2 { font-size: 1.12rem; padding-bottom: 10px; border-bottom: 3px solid var(--panel); }
.link-category h2 .num { color: var(--accent); margin-right: 10px; font-family: 'Anton', sans-serif; }
.link-category .count { font-size: .76rem; font-weight: 400; color: var(--ink-soft); margin-left: 8px; }

.link-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.link-grid a {
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: 8px;
  transition: border-color .15s, color .15s;
}
.link-grid a:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.link-grid a::after { content: " ↗"; font-size: .78em; color: var(--ink-soft); }

/* ---------- glossary (jisyo) page ---------- */
.term-section { padding: 38px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 24px; }
.term-section:last-child { border-bottom: none; }
.term-section h2 { font-size: 1.15rem; padding-bottom: 10px; border-bottom: 3px solid var(--panel); display: flex; align-items: baseline; gap: 10px; }
.term-section h2 .kana-big { font-family: 'Anton', sans-serif; color: var(--accent); font-size: 1.4rem; }
.term-section .count { font-size: .76rem; font-weight: 400; color: var(--ink-soft); }
.term-list { border-top: 1px solid var(--line); margin-top: 6px; }
.term-item { padding: 16px 0; border-bottom: 1px solid var(--line); }
.term-item .term-name { display: block; font-weight: 900; color: var(--ink); font-size: 1rem; }
.term-item .term-desc { margin: 6px 0 0; color: var(--ink-soft); font-size: .9rem; }
.gojuon-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 24px; }
.gojuon-grid a {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 10px;
  text-align: center;
  transition: border-color .15s, background .15s;
}
.gojuon-grid a:hover { border-color: var(--accent); background: rgba(11,99,166,.05); text-decoration: none; }
.gojuon-grid .kana { display: block; font-family: 'Anton', sans-serif; font-size: 1.4rem; color: var(--accent); }
.gojuon-grid .romaji { display: block; font-size: .72rem; color: var(--ink-soft); margin-top: 2px; }
.gojuon-grid .sub { display: block; font-size: .72rem; color: var(--ink-soft); margin-top: 4px; letter-spacing: .05em; }

/* ---------- one-point advice box (reusable component) ---------- */
.advice-box {
  display: flex;
  align-items: flex-end;
  gap: 0;
  margin: 32px 0;
}
.advice-box-figure {
  flex: none;
  width: 120px;
  margin-bottom: -4px;
}
.advice-box-figure img { width: 100%; display: block; }
.advice-box-bubble {
  position: relative;
  flex: 1;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 20px;
  margin-left: -8px;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}
.advice-box-bubble::before {
  content: "";
  position: absolute;
  left: -14px; bottom: 26px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 9px 14px 9px 0;
  border-color: transparent var(--line) transparent transparent;
}
.advice-box-bubble::after {
  content: "";
  position: absolute;
  left: -12px; bottom: 27px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 8px 13px 8px 0;
  border-color: transparent #fff transparent transparent;
}
.advice-box-label {
  display: inline-block;
  font-family: 'Anton', sans-serif;
  font-size: .88rem;
  letter-spacing: .06em;
  color: var(--accent);
  background: rgba(11,99,166,.08);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.advice-box-bubble p { margin: 0; color: var(--ink); font-size: .92rem; line-height: 1.8; }
.advice-box-bubble p + p { margin-top: 8px; }

@media (max-width: 720px) {
  .gojuon-grid { grid-template-columns: repeat(3, 1fr); }

  .advice-box { flex-direction: column; align-items: center; }
  .advice-box-figure { width: 96px; margin-bottom: 0; }
  .advice-box-bubble { margin-left: 0; margin-top: 16px; width: 100%; }
  .advice-box-bubble::before {
    left: 50%; top: -13px; bottom: auto; transform: translateX(-50%);
    border-width: 0 10px 14px 10px;
    border-color: transparent transparent var(--line) transparent;
  }
  .advice-box-bubble::after {
    left: 50%; top: -11px; bottom: auto; transform: translateX(-50%);
    border-width: 0 9px 13px 9px;
    border-color: transparent transparent #fff transparent;
  }

  .hero .wrap-wide { grid-template-columns: 1fr; }
  .hero-figure { display: none; }
  .hero-visual { margin-top: 26px; }
  .profile-teaser { margin-top: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .row-item { grid-template-columns: 32px 1fr; }
  .row-link { grid-column: 2; justify-self: start; }
  .nav-links a { font-size: .78rem; padding: 8px 14px; }
  .site-nav { padding: 14px 20px; }
  .link-grid a { font-size: .82rem; padding: 8px 13px; }
}

/* ---------- field guide page (釣り場エリア紹介) ---------- */
.field-head {
  position: relative;
  background: linear-gradient(180deg, #BFE0F5 0%, #4E9BCB 45%, #0B5FA0 78%, #08406E 100%);
  padding: 90px 0 0;
  overflow: hidden;
}
.field-head .wrap-wide { position: relative; z-index: 2; padding-bottom: 56px; }
.field-head .eyebrow { font-family: 'Anton', sans-serif; color: #EAF3FA; font-size: 1rem; letter-spacing: .04em; opacity: .9; }
.field-head h1 {
  font-family: 'Anton', 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(2rem, 4.6vw, 3rem);
  color: #fff;
  margin-top: 10px;
  text-shadow: 0 3px 14px rgba(0,0,0,.3);
}
.field-head .lead { color: #EAF3FA; margin-top: 18px; max-width: 34em; font-size: 1rem; text-shadow: 0 2px 8px rgba(0,0,0,.25); }
.field-head-waves { display: block; width: 100%; position: relative; z-index: 3; margin-top: -2px; }
.field-facts { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 28px; }
.field-facts div { color: #fff; font-size: .86rem; }
.field-facts dt { color: #AFCFE6; font-weight: 700; margin-bottom: 2px; }
.field-facts dd { margin: 0; font-weight: 700; }

/* 島の内訳カード */
.island-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.island-card { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 22px 20px; }
.island-card .num { font-family: 'Anton', sans-serif; color: var(--accent); font-size: 1rem; }
.island-card h3 { font-size: 1.05rem; margin-top: 8px; }
.island-card p { color: var(--ink-soft); font-size: .86rem; margin: 10px 0 0; }
.island-card .fish-tags { margin-top: 14px; }
.island-card-head { display: flex; align-items: baseline; gap: 10px; }
.island-card-head .num { font-family: 'Anton', sans-serif; color: var(--accent); font-size: 1.1rem; }
.island-card-head h3 { font-size: 1.05rem; margin-top: 0; }

/* 島紹介を横並びの行として見せるパターン(説明文・魚種タグが多い場合向け) */
.island-list { display: flex; flex-direction: column; gap: 16px; }
.island-row { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 26px 28px; }
.island-row-head { display: flex; align-items: baseline; gap: 16px; }
.island-row-head .island-row-num { font-family: 'Anton', sans-serif; color: var(--accent); font-size: 1.6rem; line-height: 1; flex: none; }
.island-row-head h3 { font-size: 1.2rem; }
.island-row p { color: var(--ink-soft); font-size: .92rem; margin: 12px 0 0; max-width: 62em; }
.island-row .fish-tags { margin-top: 16px; }
@media (max-width: 640px) {
  .island-row { padding: 20px; }
  .island-row-head .island-row-num { font-size: 1.3rem; }
}

/* 魚種タグ */
.fish-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.fish-tags span { font-size: .76rem; font-weight: 700; background: var(--panel); padding: 5px 12px; border-radius: 999px; color: var(--ink); }

/* 釣りポイントカード */
.spot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.spot-card { background: #fff; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; }
.spot-card-photo { aspect-ratio: 16/10; background: var(--panel); position: relative; overflow: hidden; }
.spot-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.spot-card-island {
  position: absolute; top: 12px; right: 12px;
  background: var(--accent-deep); color: #fff;
  font-size: .72rem; font-weight: 700; padding: 4px 12px; border-radius: 999px;
}
.spot-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.spot-card-body h3 { font-size: 1.08rem; }
.spot-card-body .catch-line { color: var(--ink-soft); font-size: .88rem; }
.spot-card-body .catch-label {
  display: block; font-family: 'Anton', sans-serif; letter-spacing: .04em;
  color: var(--accent); font-size: .7rem; margin-bottom: 4px;
}
.spot-facts { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.spot-facts li { font-size: .84rem; color: var(--ink-soft); padding-left: 1.3em; position: relative; }
.spot-facts li::before { content: "―"; position: absolute; left: 0; color: var(--accent); }
.spot-card-cta { margin-top: auto; padding-top: 4px; }
.spot-card-cta a { font-size: .86rem; font-weight: 700; }

/* 来島前のチェックリスト */
.check-list { border-top: 1px solid var(--line); }
.check-item { display: grid; grid-template-columns: 28px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: start; }
.check-item .mark { color: var(--accent); font-weight: 900; font-size: 1.1rem; }
.check-item h4 { margin: 0; font-size: .96rem; font-weight: 700; }
.check-item p { margin: 6px 0 0; color: var(--ink-soft); font-size: .88rem; }

/* エリア間ナビ（前へ／次へ） */
.field-pager { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; border-top: 1px solid var(--line); padding: 36px 0; margin-top: 10px; }
.field-pager a {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 22px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.field-pager a:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(11,99,166,.14);
  transform: translateY(-2px);
  text-decoration: none;
}
.field-pager .arrow {
  flex: none;
  color: var(--accent);
  font-family: 'Anton', sans-serif;
  font-size: 1.3rem;
  transition: transform .2s, color .2s;
}
.field-pager .prev:hover .arrow { transform: translateX(-4px); color: var(--accent-deep); }
.field-pager .next:hover .arrow { transform: translateX(4px); color: var(--accent-deep); }
.field-pager .text { min-width: 0; }
.field-pager .dir { display: block; font-family: 'Anton', sans-serif; font-size: .7rem; letter-spacing: .06em; color: var(--accent); text-transform: uppercase; }
.field-pager .name { display: block; margin-top: 4px; font-weight: 900; color: var(--ink); font-size: 1rem; line-height: 1.4; }
.field-pager .next { justify-content: flex-end; }
.field-pager .next .text { text-align: right; }

@media (max-width: 720px) {
  .island-strip { grid-template-columns: 1fr; }
  .spot-grid { grid-template-columns: 1fr; }
  .field-facts { gap: 8px 20px; }
  .field-pager { grid-template-columns: 1fr; }
  .field-pager .next .text { text-align: left; }
}

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: start; }

.contact-form { margin: 0; }
.form-row { margin-bottom: 22px; }
.form-row label { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: .88rem; margin-bottom: 8px; color: var(--ink); }
.form-row .required {
  font-size: .68rem; font-weight: 700; color: var(--accent);
  background: rgba(11,99,166,.08); padding: 2px 9px; border-radius: 999px;
}
.form-row .optional {
  font-size: .68rem; font-weight: 700; color: var(--ink-soft);
  background: var(--panel); padding: 2px 9px; border-radius: 999px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: .95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(11,99,166,.12);
}
.contact-form textarea { min-height: 170px; resize: vertical; line-height: 1.7; }
.contact-form .hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-submit { margin-top: 32px; }
.form-submit .btn-solid { background: var(--accent); border: none; }
.form-submit .btn-solid:hover { background: var(--accent-deep); }
.form-note { font-size: .78rem; color: var(--ink-soft); margin-top: 12px; }

/* サイドバー：直接連絡先カード */
.info-card { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 26px; }
.info-card h3 { font-size: 1rem; }
.info-card .mail-link {
  display: inline-block; margin-top: 12px; font-weight: 700; font-size: .96rem;
  color: var(--accent); word-break: break-all;
}
.info-card ul { list-style: none; margin: 20px 0 0; padding: 0; border-top: 1px solid var(--line); }
.info-card li { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .86rem; color: var(--ink-soft); }
.info-card li strong { display: block; color: var(--ink); font-size: .88rem; margin-bottom: 4px; }

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- spot detail page (釣り場の詳細) ---------- */
.spot-crumb { font-size: .78rem; color: var(--ink-soft); padding: 18px 0 0; }
.spot-crumb a { color: var(--ink-soft); }
.spot-crumb a:hover { color: var(--accent); }
.spot-crumb .sep { margin: 0 6px; opacity: .6; }

.spot-hero { position: relative; height: 420px; margin-top: 14px; border-radius: 6px; overflow: hidden; background: var(--panel); }
.spot-hero img { width: 100%; height: 100%; object-fit: cover; }
.spot-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,20,35,0) 35%, rgba(5,20,35,.35) 70%, rgba(5,20,35,.82) 100%);
}
.spot-hero-content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 28px 32px 26px; }
.spot-hero-island {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: .72rem; font-weight: 700; padding: 4px 13px; border-radius: 999px; margin-bottom: 12px;
}
.spot-hero h1 {
  font-family: 'Anton', 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  color: #fff;
  text-shadow: 0 3px 14px rgba(0,0,0,.4);
}
.spot-hero-tags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.spot-hero-tags span {
  background: rgba(255,255,255,.16); color: #fff; font-size: .78rem; font-weight: 700;
  padding: 5px 13px; border-radius: 999px; border: 1px solid rgba(255,255,255,.35);
}

/* 釣れる魚カード */
.fish-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.fish-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.fish-card-photo { aspect-ratio: 1/1; background: var(--panel); }
.fish-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.fish-card-body { padding: 14px 16px 16px; }
.fish-card-body h4 { font-size: .96rem; }
.fish-card-season {
  display: inline-block; margin-top: 7px; font-size: .68rem; font-weight: 700; color: var(--accent);
  background: rgba(11,99,166,.08); padding: 2px 9px; border-radius: 999px;
}
.fish-card-body p { margin: 8px 0 0; font-size: .8rem; color: var(--ink-soft); line-height: 1.6; }

/* 写真ギャラリー */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.gallery-grid a { display: block; aspect-ratio: 4/3; border-radius: 6px; overflow: hidden; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gallery-grid a:hover img { transform: scale(1.06); }

@media (max-width: 720px) {
  .spot-hero { height: 300px; }
  .spot-hero-content { padding: 22px 20px 20px; }
  .fish-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
