@charset "UTF-8";
/* ============================================================================
   デザインシステム

   出典: research/09-brand-design.md
   配色は同ドキュメント3節でWCAG 2.2のコントラスト比を1色ずつ検証済み。
   ここの値を変えるときは、必ず比を再計算してから変えること。

   【この配色の考え方】
   遊漁船サイトは「海だから青」で組まれたものばかりで、結果どれも同じ顔になっている。
   ここでは敦賀の土地の色を使う。気比神宮の朱、気比の松原の松緑、日本海の深い紺、
   そして夜焚きの集魚灯の青緑。青は「海紺」1色に絞って深く沈める。

   【2つのパレットを持つ】
   既定はライトの「気比」。初心者・ファミリー向けの明るさと、老眼世代への可読性を優先する。
   イカメタル・タルイカ系のページとトップのヒーローには .theme-night を当て、
   ダークの「夜焚き」に切り替える。同じサイトの中に昼と夜を持てること自体が、
   テンプレートで作られた競合に対する最大の差になる。

   【文字サイズの前提】
   ルートの16pxを変えない。html{font-size:10px} のようなrem基準の改変はしない
   （競合2サイトがこれをやって、実際に11〜13pxの本文を生んでいる）。
   中心顧客は40〜60代で、港や車内という明るい屋外でスマホを見る。本文17px・最小15pxを守る。
   ============================================================================ */

/* ----------------------------------------------------------------------------
   1. トークン
   ---------------------------------------------------------------------------- */
:root {
  /* -- パレットB「気比」: 全体の既定 ------------------------------------- */
  --c-bg: #ffffff;
  --c-bg-alt: #f6f3ee;          /* 気比の松原の砂。セクションの交互背景 */
  --c-surface: #ffffff;
  --c-border: #9a9081;          /* 対白 3.14:1 — 入力欄・UIの境界に使える下限 */
  --c-rule: #d9d2c7;            /* 対白 1.50:1 — 装飾罫線のみ。文字にもUIにも使わない */
  --c-text: #1b2430;            /* 対白 15.65:1 */
  --c-text-sub: #4a5765;        /* 対白 7.39:1 */

  --c-brand: #b23a26;           /* 気比神宮の朱。対白 5.96:1 */
  --c-brand-cta: #b23a26;       /* 白文字を載せるCTA背景 5.96:1 */
  --c-on-brand: #ffffff;
  --c-sea: #0e4c6b;             /* 日本海の紺。対白 9.27:1 */
  --c-pine: #25574a;            /* 松原の松緑。対白 8.27:1 */
  --c-lamp: #0f6b52;            /* 集魚灯の緑（文字用）。対白 6.47:1 */
  --c-dawn: #a85008;            /* 朝焼け（文字用に沈めた）。対白 5.50:1 */
  --c-focus: #0e4c6b;

  /* LINEの公式グリーン #06C755 に白文字は 2.26:1 で不適合。使わない。
     ブランド識別は公式ロゴマークで担保し、面の色は自前の濃緑にする。 */
  --c-line: #0f7a45;            /* 白文字 5.40:1 */

  /* -- タイポグラフィ ----------------------------------------------------- */
  /* 本文は転送0バイトのシステムフォントだけで組む。
     "Yu Gothic Medium" を明示するのは、"Yu Gothic" とだけ書くと
     Windows Chrome が Regular を拾って細く掠れるため。競合が実際にこれで失敗している。
     BIZ UDPGothic はユニバーサルデザイン書体で、40〜60代には游ゴシックより読みやすい。 */
  --font-sans:
    system-ui, -apple-system,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    "BIZ UDPGothic",
    "Yu Gothic Medium", "游ゴシック Medium",
    Meiryo, sans-serif;

  --fs-body: 1.0625rem;   /* 17px */
  --fs-note: 0.9375rem;   /* 15px — これ未満を作らない */
  --fs-h3: 1.1875rem;     /* 19px */
  --fs-h2: 1.4375rem;     /* 23px */
  --fs-h1: 1.6875rem;     /* 27px */
  --fs-hero: 1.9375rem;   /* 31px */

  --lh-body: 1.8;         /* 日本語は欧文より広くとる。詰めると圧迫感が出る */
  --lh-note: 1.7;
  --lh-heading: 1.4;

  /* -- 余白（4pxグリッド） ------------------------------------------------ */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  /* -- レイアウト --------------------------------------------------------- */
  --container: 68.75rem;  /* 1100px */
  --measure: 34em;        /* 本文の行長。日本語で読みやすい上限 */
  --radius: 0.5rem;
  --radius-lg: 0.875rem;

  /* -- 操作系 ------------------------------------------------------------- */
  --tap: 2.75rem;         /* 44px。WCAG 2.2 の SC 2.5.5(AAA) 相当を既定にする */
  --tap-cta: 3rem;        /* 48px */
  --bar-h: 3.5rem;        /* 下部固定CTAバー 56px */

  --shadow: 0 1px 2px rgba(27, 36, 48, .06), 0 4px 16px rgba(27, 36, 48, .08);
  --shadow-lg: 0 2px 6px rgba(27, 36, 48, .08), 0 12px 32px rgba(27, 36, 48, .12);
}

@media (min-width: 48em) {
  :root {
    --fs-h3: 1.25rem;     /* 20px */
    --fs-h2: 1.75rem;     /* 28px */
    --fs-h1: 2.25rem;     /* 36px */
    --fs-hero: 3rem;      /* 48px */
  }
}

/* -- パレットA「夜焚き」: イカメタル系ページとヒーローに当てる ------------- */
.theme-night {
  --c-bg: #0b1620;              /* 夜の海面・墨紺 */
  --c-bg-alt: #16242f;
  --c-surface: #16242f;
  --c-border: #526a7e;          /* 対墨紺 3.24:1 */
  --c-rule: #2c3e4d;            /* 装飾罫線のみ */
  --c-text: #f2f5f7;            /* 対墨紺 16.68:1 */
  --c-text-sub: #b9c6d1;        /* 対墨紺 10.49:1 */

  --c-brand: #e2523b;           /* 朱（文字用）。対墨紺 4.79:1 */
  --c-brand-cta: #c13b26;       /* 白文字を載せるCTA背景 5.36:1。#E2523B だと3.82:1で不足 */
  --c-on-brand: #ffffff;
  --c-sea: #7fb6d6;
  --c-pine: #6fbfa8;
  --c-lamp: #4fe0a8;            /* 集魚灯の青緑（480nm帯）。対墨紺 10.92:1 */
  --c-dawn: #ffa24d;            /* 朝焼け。対墨紺 9.16:1 */
  --c-focus: #4fe0a8;

  color: var(--c-text);
  background: var(--c-bg);
}

/* ----------------------------------------------------------------------------
   2. リセットと基本
   ---------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  /* ルートは16pxのまま。ここを縮めるとページ全体の文字が小さくなる */
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--sp-6);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-text);
  background: var(--c-bg);
  /* 下部固定CTAバーの分だけ本文の下に逃げを作る（最後の要素が隠れないように） */
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom, 0px));
  overflow-wrap: break-word;
  font-feature-settings: "palt" 0;  /* 日本語の詰めはしない。可読性優先 */
}

@media (min-width: 62em) {
  body { padding-bottom: 0; }
}

h1, h2, h3, h4 {
  margin: 0 0 var(--sp-4);
  line-height: var(--lh-heading);
  font-weight: 700;
  letter-spacing: .01em;
  /* 日本語の文節単位で折り返す。これが無いと「イカメタル」が
     「イカメ / タル」のように語の途中で割れる。対応していないブラウザでは
     従来どおりの折り返しに戻るだけなので、入れて損はない。 */
  word-break: auto-phrase;
  /* 1文字だけ次行に落ちる「泣き別れ」を防ぐ */
  text-wrap: pretty;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-body); }

p, ul, ol, dl, table, figure, blockquote { margin: 0 0 var(--sp-5); }
li + li { margin-top: var(--sp-2); }
li > ul, li > ol { margin-top: var(--sp-2); margin-bottom: 0; }

a {
  color: var(--c-brand);
  text-underline-offset: .2em;
  text-decoration-thickness: from-font;
}
a:hover { text-decoration: none; }

/* フォーカスは必ず見える状態を保つ。キーボードと支援技術の利用者の唯一の手がかり */
:focus-visible {
  outline: 3px solid var(--c-focus);
  outline-offset: 2px;
  border-radius: 2px;
}

img, picture, video, svg { max-width: 100%; height: auto; display: block; }

/* 画像は必ず width/height 属性を持たせる前提だが、
   ギャラリーのように縦横が混在する場所は枠側で比率を固定してCLSを止める */
.ratio-4x3 { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.ratio-16x9 { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }

hr {
  border: 0;
  border-top: 1px solid var(--c-rule);
  margin: var(--sp-7) 0;
}

small, .note {
  font-size: var(--fs-note);
  line-height: var(--lh-note);
  color: var(--c-text-sub);
}

strong { font-weight: 700; }

code, kbd, samp {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-rule);
  border-radius: 4px;
  padding: .1em .35em;
}
pre {
  overflow-x: auto;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius);
  padding: var(--sp-4);
  margin-bottom: var(--sp-5);
  line-height: 1.6;
}
pre code { background: none; border: 0; padding: 0; font-size: var(--fs-note); }
mark { background: #fdf0c8; color: inherit; padding: 0 .15em; }

::selection { background: var(--c-brand); color: var(--c-on-brand); }

/* ----------------------------------------------------------------------------
   3. レイアウト
   ---------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

@media (min-width: 48em) {
  .container { padding-inline: var(--sp-6); }
}

.section { padding-block: var(--sp-7); }
.section--alt { background: var(--c-bg-alt); }

@media (min-width: 48em) {
  .section { padding-block: var(--sp-8); }
}

/* 読み物の本文。行長を制限する。見出し・表・画像は制限の外に出す */
.prose > p,
.prose > ul,
.prose > ol,
.prose > dl { max-width: var(--measure); }

/* 長い案内の現在地が一目で分かる本文見出し */
.prose > h2 {
  max-width: 44rem;
  margin-top: var(--sp-8);
  padding: var(--sp-3) var(--sp-4);
  color: var(--c-sea);
  background: var(--c-bg-alt);
  border-left: 0.375rem solid var(--c-brand);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.prose > h3 {
  max-width: var(--measure);
  margin-top: var(--sp-6);
  padding-bottom: var(--sp-2);
  color: var(--c-pine);
  border-bottom: 2px solid var(--c-rule);
}

.prose > h2:first-child, .prose > h3:first-child { margin-top: 0; }

/* 本文中の写真。`![](photo:...)` から <picture> で出てくる。
   本文の測り幅（--measure）より少し広く取る。文章と同じ幅だと写真が小さく、
   何が写っているか分からなくなる。ただし全幅にはしない。読む列を壊すため。 */
.prose > picture {
  display: block;
  max-width: 44rem;
  margin-block: var(--sp-6);
}
.prose > picture img {
  width: 100%;
  border-radius: var(--radius-lg);
}

/* 集合場所は写真より地図を大きく見せ、その場で位置を確認できるようにする */
.prose > .meeting-map {
  overflow: hidden;
  width: 100%;
  max-width: 44rem;
  margin-block: var(--sp-6);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  background: var(--c-bg-alt);
  box-shadow: var(--shadow);
}
.meeting-map iframe {
  display: block;
  width: 100%;
  height: clamp(22rem, 58vw, 31rem);
  border: 0;
}

/* 届出済みの業務規程。PDFがページに収まり、表示できない端末でもリンクを残す */
.prose > .legal-document {
  width: 100%;
  max-width: 44rem;
  margin-block: var(--sp-5) var(--sp-7);
}
.legal-document__actions { margin-bottom: var(--sp-4); }
.legal-document__viewer {
  display: block;
  width: 100%;
  height: clamp(38rem, 78svh, 52rem);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  background: var(--c-bg-alt);
  box-shadow: var(--shadow);
}
@media (max-width: 39.99em) {
  .legal-document__actions .btn { width: 100%; }
  .legal-document__viewer { height: 34rem; }
}
/* 縦長の写真が本文を押し流さないようにする。船内やトイレは縦位置で撮られている。 */
@media (min-width: 48em) {
  .prose > picture img { max-height: 34rem; object-fit: cover; }
}

.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }

@media (min-width: 40em) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 62em) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--c-brand-cta);
  color: var(--c-on-brand);
  padding: var(--sp-3) var(--sp-4);
  font-weight: 700;
}
.skip-link:focus {
  left: var(--sp-3);
  top: var(--sp-3);
}

/* ----------------------------------------------------------------------------
   4. ボタン
   ---------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: var(--tap-cta);
  padding: var(--sp-3) var(--sp-5);
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: var(--fs-body);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: filter .15s ease, transform .05s ease;
}
.btn:hover { filter: brightness(1.08); text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--c-brand-cta);
  color: var(--c-on-brand);
}
.btn--sea {
  background: var(--c-sea);
  color: #fff;
}
.btn--line {
  background: var(--c-line);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--c-brand);
  border-color: currentColor;
}
.btn--lg { min-height: 3.5rem; padding-inline: var(--sp-6); font-size: 1.125rem; }
.btn--block { display: flex; width: 100%; }

/* 隣り合うボタンは8px以上離す。誤タップを防ぐ */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

/* ----------------------------------------------------------------------------
   5. ヘッダー・ナビ
   ---------------------------------------------------------------------------- */
.site-chrome {
  position: sticky;
  top: 0;
  z-index: 80;
  box-shadow: var(--shadow);
}

.site-header {
  border-bottom: 1px solid var(--c-rule);
  background: var(--c-bg);
}

/* 夜便ページでもヘッダーとメインナビは全ページ共通の白にする。
   黒い屋号ロゴを夜テーマの濃紺へ載せると判別できなくなるため、
   サイト共通部分だけライトパレットへ戻す。本文の夜テーマは維持する。 */
.theme-night .site-header,
.theme-night .site-nav {
  --c-bg: #ffffff;
  --c-border: #9a9081;
  --c-rule: #d9d2c7;
  --c-text: #1b2430;
  --c-text-sub: #4a5765;
  --c-brand: #b23a26;
  --c-brand-cta: #b23a26;
  --c-on-brand: #ffffff;
  --c-sea: #0e4c6b;
  --c-focus: #0e4c6b;
  color: var(--c-text);
  background: var(--c-bg);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  min-height: 4rem;
  padding-block: var(--sp-3);
}

.site-logo {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.25;
}
/* ロゴは高さで揃える。横幅で揃えると、横組みと縦組みで見た目の大きさが変わる。 */
.site-logo__mark {
  width: auto;
  height: 2.25rem;
}
.site-logo__sub {
  font-size: var(--fs-note);
  font-weight: 400;
  color: var(--c-text-sub);
  margin-top: var(--sp-1);
}

@media (min-width: 48em) {
  .site-logo__mark { height: 2.75rem; }
}

.footer-logo {
  width: auto;
  height: 2.5rem;
  margin-bottom: var(--sp-6);
}

.site-header__spacer { flex: 1; }

.site-header__contact {
  display: none;
  align-items: center;
  gap: var(--sp-4);
}
@media (min-width: 62em) {
  .site-header__contact { display: flex; }
}

.header-tel { margin: 0; text-align: right; line-height: 1.3; }
.header-tel__num {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--c-sea);
  text-decoration: none;
  letter-spacing: .02em;
}
.header-tel__note {
  display: block;
  font-size: var(--fs-note);
  color: var(--c-text-sub);
}

.site-nav { border-bottom: 1px solid var(--c-rule); background: var(--c-bg); }
.site-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 var(--sp-3);
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav__list li { margin: 0; }
.site-nav__link {
  display: flex;
  align-items: center;
  min-height: var(--tap);
  color: inherit;
  font-weight: 700;
  font-size: var(--fs-note);
  text-decoration: none;
  border-bottom: 3px solid transparent;
}
.site-nav__link:hover { color: var(--c-brand); }
.site-nav__link[aria-current="page"] {
  color: var(--c-brand);
  border-bottom-color: var(--c-brand);
}

/* モバイルのメニュー開閉。JSを使わずチェックボックスで組む */
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-toggle__label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: var(--tap);
  padding-inline: var(--sp-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  font-size: var(--fs-note);
  font-weight: 700;
  cursor: pointer;
}
.nav-toggle:focus-visible + * .nav-toggle__label,
.nav-toggle__label:focus-visible { outline: 3px solid var(--c-focus); outline-offset: 2px; }

@media (max-width: 61.99em) {
  .site-nav { display: none; }
  .nav-toggle:checked ~ .site-nav { display: block; }
  .site-nav__list { flex-direction: column; gap: 0; padding-block: var(--sp-2); }
  .site-nav__list li + li { border-top: 1px solid var(--c-rule); }
  .site-nav__link { min-height: var(--tap-cta); font-size: var(--fs-body); border-bottom: 0; }
}
@media (min-width: 62em) {
  .nav-toggle__label { display: none; }
}

/* ----------------------------------------------------------------------------
   6. パンくず
   ---------------------------------------------------------------------------- */
.breadcrumbs {
  font-size: var(--fs-note);
  color: var(--c-text-sub);
  background: var(--c-bg-alt);
  padding-block: var(--sp-2);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs li { margin: 0; display: flex; align-items: center; gap: var(--sp-2); }
.breadcrumbs li + li::before { content: "›"; color: var(--c-border); }
.breadcrumbs a { color: inherit; }

/* ----------------------------------------------------------------------------
   7. カード・パネル
   ---------------------------------------------------------------------------- */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  box-shadow: var(--shadow);
}
.card > :last-child { margin-bottom: 0; }
.card__title { font-size: var(--fs-h3); margin-bottom: var(--sp-3); }

/* リンク全体をカードにする場合 */
.card--link { display: block; color: inherit; text-decoration: none; transition: box-shadow .15s ease, transform .15s ease; }
.card--link:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

/* 便（プラン）カード */
.plan-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  font-size: var(--fs-note);
  color: var(--c-text-sub);
  margin-bottom: var(--sp-3);
}
.plan-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-brand);
}
.plan-card__price small { font-size: var(--fs-note); color: var(--c-text-sub); font-weight: 400; }

/* 注意書き・補足 */
.callout {
  border-left: 4px solid var(--c-sea);
  background: var(--c-bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--sp-4) var(--sp-5);
  margin-bottom: var(--sp-5);
}
.callout > :last-child { margin-bottom: 0; }
.callout__title { font-weight: 700; margin-bottom: var(--sp-2); color: var(--c-sea); }
.callout--warn { border-left-color: var(--c-dawn); }
.callout--warn .callout__title { color: var(--c-dawn); }
.callout--safety { border-left-color: var(--c-pine); }
.callout--safety .callout__title { color: var(--c-pine); }

/* 打消し表示。景表法上、強調表示と同一視野・同等の大きさに置く必要がある。
   薄いグレーの極小文字にしない（それをやると打消しとして機能しない） */
.disclaimer {
  font-size: var(--fs-note);
  line-height: var(--lh-note);
  color: var(--c-text);
  background: var(--c-bg-alt);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-4);
  margin-bottom: var(--sp-5);
}

/* ----------------------------------------------------------------------------
   8. 表
   ---------------------------------------------------------------------------- */
/* .table-scroll は Markdown の表レンダラが出すクラス名。.table-wrap と同じ扱いにする */
.table-wrap,
.table-scroll { overflow-x: auto; margin-bottom: var(--sp-5); -webkit-overflow-scrolling: touch; }

table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-note);
  line-height: var(--lh-note);
}
th, td {
  padding: var(--sp-3);
  border: 1px solid var(--c-rule);
  text-align: left;
  vertical-align: top;
}
thead th {
  background: var(--c-bg-alt);
  font-weight: 700;
  white-space: nowrap;
}
tbody th { background: var(--c-bg-alt); font-weight: 700; }

.plan-table thead th {
  text-align: center;
  vertical-align: middle;
}

.plan-table__benefit {
  display: inline-block;
  margin-top: calc(var(--sp-2) * -1);
  margin-bottom: var(--sp-4);
  padding: var(--sp-2) var(--sp-3);
  border: 1px solid var(--c-brand);
  border-radius: 999px;
  color: var(--c-brand);
  font-weight: 700;
}

.plan-table__link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--sp-1);
  min-height: var(--tap);
  color: var(--c-brand);
  font-weight: 700;
  text-underline-offset: .25em;
}

.plan-table__name {
  display: block;
  color: var(--c-brand);
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: var(--lh-heading);
}

.plan-table__label {
  display: inline-block;
  margin-left: var(--sp-2);
  padding: .1em .55em;
  border: 1px solid var(--c-brand);
  border-radius: 999px;
  font-size: var(--fs-note);
  line-height: 1.4;
  vertical-align: .1em;
}

.plan-table__schedule {
  display: grid;
  gap: var(--sp-1);
  margin-top: var(--sp-2);
}

.plan-table__schedule > span { display: block; }

.plan-table__link-label {
  color: var(--c-text-sub);
  font-size: var(--fs-note);
  font-weight: 400;
  text-decoration: none;
}

/* 列の多い表は、狭い画面ではカードに積み替える。
   横スクロールにすると気づかれずに読み飛ばされるし、
   幅を詰めると「イ カ メ タ ル」と1文字ずつ折り返して読めなくなる。
   料金表は最も読まれる表なので、ここだけは組み替える。 */
@media (max-width: 40em) {
  .table-stack table { border: 0; }
  .table-stack thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
  .table-stack tr {
    display: block;
    border: 1px solid var(--c-rule);
    border-radius: var(--radius-lg);
    padding: var(--sp-4);
    margin-bottom: var(--sp-4);
    background: var(--c-surface);
  }
  .table-stack tbody th[scope="row"] {
    display: block;
    border: 0;
    background: none;
    padding: 0 0 var(--sp-3);
    font-size: var(--fs-h3);
    white-space: normal;
  }
  /* ラベルは値の上に置く。横並びにすると、金額と注記が
     狭い列に押し込まれて折り返しが崩れる（実際に崩れた）。 */
  .table-stack td {
    display: block;
    border: 0;
    border-top: 1px solid var(--c-rule);
    padding: var(--sp-3) 0 0;
    margin-top: var(--sp-3);
  }
  .table-stack td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    font-size: var(--fs-note);
    color: var(--c-text-sub);
    margin-bottom: var(--sp-1);
  }
  /* カード内では注記を金額の下に素直に流す */
  .table-stack td .note { display: block; }
}

/* ----------------------------------------------------------------------------
   9. よくある質問
   質問をh2、直後に結論、という構造にする。FAQPageの構造化データは付けない
   （2026年5月にGoogle検索から消滅済み。ただしAI検索の引用にはこの形が効く）
   ---------------------------------------------------------------------------- */
.faq-item {
  border-bottom: 1px solid var(--c-rule);
  padding-block: var(--sp-4);
}
.faq-item__q {
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-3);
  display: flex;
  gap: var(--sp-3);
}
.faq-item__q::before {
  content: "Q";
  color: var(--c-brand);
  font-weight: 700;
  flex: none;
}
.faq-item__a > :last-child { margin-bottom: 0; }

/* ----------------------------------------------------------------------------
   10. 下部固定CTAバー（モバイル）
   高さ56px。iPhoneのホームインジケータに被らないよう safe-area を加味する
   ---------------------------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  background: var(--c-bg);
  border-top: 1px solid var(--c-rule);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -2px 12px rgba(27, 36, 48, .12);
}

.sticky-cta__item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: var(--bar-h);
  padding: var(--sp-2) var(--sp-1);
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-body);
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
}
.sticky-cta__item + .sticky-cta__item { border-left: 1px solid rgba(255, 255, 255, .35); }
.sticky-cta__label {
  display: block;
  font-size: 0.8125rem;   /* 13px。ラベルは補助情報なので例外的に小さくする */
  font-weight: 400;
  opacity: .95;
}

.sticky-cta__item--tel { background: var(--c-brand-cta); }
.sticky-cta__item--line { background: var(--c-line); }
.sticky-cta__item--reserve { background: var(--c-sea); }

/* 営業時間外など、押しても繋がらないときに使う */
.sticky-cta__item[aria-disabled="true"] {
  background: #6b7280;
  pointer-events: none;
}

@media (min-width: 62em) {
  .sticky-cta { display: none; }
}

/* ----------------------------------------------------------------------------
   11. ヒーロー
   ---------------------------------------------------------------------------- */

/* 写真＋文章の横並び。船長紹介や設備で使う。 */
.feature {
  display: grid;
  gap: var(--sp-5);
  align-items: center;
}
.feature > figure { margin: 0; }
/* 縦横比を揃える。元写真は縦横バラバラで、そのまま並べると片側だけ極端に伸びる。
   3:4 にしたのは、船長（2:3）とトイレ（3:4）の両方を顔・便器を切らずに収められるため。 */
.feature img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.feature figcaption { margin-top: var(--sp-2); }

@media (min-width: 48em) {
  .feature { grid-template-columns: 1fr 1fr; gap: var(--sp-7); }
  .feature--reverse > figure { order: 2; }
  /* 横並びでは正方形に切る。3:4 のまま並べると写真の高さが本文の3倍になり、
     本文が写真の脇に取り残されて見える。
     切る位置を少し上げているのは、人物の顔が上寄りに写っているため。 */
  .feature img {
    aspect-ratio: 1 / 1;
    object-position: center 22%;
  }
}

/* 便カードの写真 */
.plan-card__media {
  margin: calc(var(--sp-5) * -1) calc(var(--sp-5) * -1) var(--sp-4);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.plan-card__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.hero {
  position: relative;
  padding-block: var(--sp-8);
  background: var(--c-bg);
  color: var(--c-text);
}
.hero__title {
  font-size: var(--fs-hero);
  margin-bottom: var(--sp-4);
}
/* キャッチコピー。h1 は主KWを担うため、コピーはここに降ろしている。
   見出しではないが、視覚的にはタイトルの一部として読ませたい。 */
.hero__catch {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-lamp);
  margin-bottom: var(--sp-4);
  word-break: auto-phrase;
}

.hero__lead {
  font-size: 1.125rem;
  max-width: var(--measure);
  margin-bottom: var(--sp-6);
  word-break: auto-phrase;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
  padding: 0;
  list-style: none;
}
.hero__badges li { margin: 0; }

/* 写真を敷いたヒーロー。
   文字だけのヒーローは事務的に見える。船の空気は写真でしか伝わらない。

   スマホでは写真を「敷く」のではなく「上に置く」。
   船を横位置で撮った1枚を、縦長の枠に cover で流し込むと横が半分近く切れて、
   船が船に見えなくなる。写真は帯として全部見せ、文字はその下に置く。
   画面が横に広がる48em以上でだけ、写真の上に文字を重ねる。 */
.hero--photo {
  padding: 0;
  display: flex;
  flex-direction: column;
  background: #0b1620;
}
.hero__media picture {
  display: block;
  width: 100%;
}
.hero__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
/* ヒーローと直下の帯は同じ背景色なので、上下の余白が二重に見える。
   ここで詰めて、ひと続きの塊として読ませる。 */
.hero--photo .container {
  padding-block: var(--sp-6) var(--sp-4);
}

@media (min-width: 48em) {
  .hero--photo {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    /* 縦に伸ばしすぎない。ヒーローで画面を埋めきると、
       下に続きがあることが伝わらず離脱する。 */
    min-height: 62svh;
    overflow: hidden;
  }
  .hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  /* picture は既定で inline のため、そのままだと img の height:100% が解決されず
     写真が途中で切れる（実際に切れた）。ブロックにして高さを継がせる。 */
  .hero__media picture { height: 100%; }
  .hero__media img { height: 100%; }
  /* 文字が乗る範囲だけ暗くする。写真全体を暗くすると写真の良さが消える。
     下半分をしっかり沈める。空や集魚灯のように白飛びする被写体が入ると、
     薄いグラデーションでは白文字が読めなくなる。 */
  .hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
      rgba(6, 14, 20, .95) 0%,
      rgba(6, 14, 20, .88) 30%,
      rgba(6, 14, 20, .52) 58%,
      rgba(6, 14, 20, .12) 100%);
  }
  .hero--photo .container {
    position: relative;
    z-index: 1;
    padding-block: var(--sp-6) var(--sp-7);
  }
  .hero__brand { max-width: 22rem; }
}

/* 屋号。船体の筆文字を写真から起こしたもの。
   ここだけはゴシック体ではなく、実際に船に書いてある字を使う。 */
.hero__brand {
  display: block;
  max-width: 17rem;
  margin-bottom: var(--sp-4);
}

/* 写真のすぐ下の帯。ヒーローと地続きに見せる */
.hero-sub {
  background: var(--c-bg);
  color: var(--c-text);
  padding-block: 0 var(--sp-7);
}
.hero-sub__lead {
  font-size: 1.125rem;
  max-width: var(--measure);
  margin-bottom: var(--sp-4);
  word-break: auto-phrase;
}
.hero-sub .hero__badges { margin-bottom: 0; }


.badge {
  display: inline-block;
  padding: var(--sp-1) var(--sp-3);
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: var(--fs-note);
  font-weight: 700;
  color: var(--c-lamp);
}

/* ----------------------------------------------------------------------------
   12. 釣果
   ---------------------------------------------------------------------------- */
.report-list { display: grid; gap: var(--sp-5); padding: 0; list-style: none; }
.report-list li { margin: 0; }

@media (min-width: 40em) {
  .report-list { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 62em) {
  .report-list { grid-template-columns: repeat(3, 1fr); }
}

.report-card__date {
  font-size: var(--fs-note);
  color: var(--c-text-sub);
  font-weight: 700;
}
.report-card__title { font-size: var(--fs-h3); margin: var(--sp-2) 0 var(--sp-3); }

/* 釣果ページは、最新情報→年間の目安→プラン→敦賀湾の順に読む。 */
.report-hub__latest {
  margin-top: var(--sp-7);
  padding-top: var(--sp-7);
}
.report-hub__latest + .disclaimer { margin-top: var(--sp-5); }

/* Instagramの縦長画像をそのまま貼らず、月別に比較できる年間表へ組み直す。 */
.season-calendar {
  max-width: var(--container);
  margin-block: var(--sp-5);
  overflow: hidden;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  background: var(--c-surface);
  box-shadow: var(--shadow);
}
.season-calendar__guide {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  max-width: none !important;
  margin: 0;
  padding: var(--sp-3) var(--sp-4);
  color: var(--c-text-sub);
  background: var(--c-bg-alt);
  font-size: var(--fs-note);
  line-height: var(--lh-note);
}
.season-calendar__guide > span {
  flex: 0 0 auto;
  width: 1.6rem;
  height: .55rem;
  border-radius: 999px;
  background: var(--c-brand);
}
.season-calendar__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.season-calendar table {
  min-width: 50rem;
  margin: 0;
  table-layout: fixed;
}
.season-calendar th,
.season-calendar td {
  height: 3.75rem;
  padding: var(--sp-2);
  text-align: center;
  vertical-align: middle;
}
.season-calendar thead th {
  color: #fff;
  background: var(--c-sea);
  border-color: rgba(255, 255, 255, .28);
}
.season-calendar thead th:first-child,
.season-calendar tbody th {
  width: 9.5rem;
}
.season-calendar thead th:first-child {
  position: sticky;
  left: 0;
  z-index: 2;
}
.season-calendar tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  text-align: left;
  color: var(--c-sea);
  background: var(--c-bg-alt);
  box-shadow: 1px 0 0 var(--c-border);
}
.season-calendar tbody th small {
  display: block;
  margin-top: var(--sp-1);
  color: var(--c-text-sub);
  font-size: var(--fs-note);
  font-weight: 400;
  line-height: 1.35;
}
.season-calendar td { background: var(--c-surface); }
.season-calendar td.is-season {
  position: relative;
  background: #f7e4c3;
}
.season-calendar td.is-season::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  top: 50%;
  height: .55rem;
  border-radius: 999px;
  background: var(--c-brand);
  transform: translateY(-50%);
}

.report-plan-grid {
  display: grid;
  gap: var(--sp-4);
  margin-block: var(--sp-5) var(--sp-6);
}
.report-plan-card {
  position: relative;
  display: grid;
  gap: var(--sp-2);
  min-height: 100%;
  padding: var(--sp-5);
  border: 1px solid var(--c-rule);
  border-left: .35rem solid var(--c-brand);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: var(--c-surface);
  color: var(--c-text);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: box-shadow .15s ease, transform .15s ease;
}
.report-plan-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.report-plan-card__name {
  color: var(--c-sea);
  font-size: var(--fs-h3);
}
.report-plan-card__summary {
  color: var(--c-text-sub);
  line-height: 1.7;
}
.report-plan-card__link {
  margin-top: auto;
  padding-top: var(--sp-2);
  color: var(--c-brand);
  font-size: var(--fs-note);
  font-weight: 700;
}

.report-bay-photo {
  max-width: 44rem;
  margin-block: var(--sp-6);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.report-bay-photo picture,
.report-bay-photo img {
  display: block;
  width: 100%;
}
.report-bay-photo img {
  max-height: 34rem;
  object-fit: cover;
  object-position: center 56%;
}
.report-bay-photo figcaption {
  margin: 0;
  padding: var(--sp-3) var(--sp-4);
  background: var(--c-bg-alt);
}

@media (min-width: 44em) {
  .report-plan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* 釣果写真には必ず撮影日・魚種・数量のキャプションを付ける（景表法の要請） */
figure { margin-inline: 0; }
figcaption {
  font-size: var(--fs-note);
  line-height: var(--lh-note);
  color: var(--c-text-sub);
  margin-top: var(--sp-2);
}

/* ----------------------------------------------------------------------------
   13. フッター
   ---------------------------------------------------------------------------- */
/* フッタはダークの面なので、色を直接書かずにトークンごと差し替える。
   ここを「背景色と文字色だけ」で作ると、内側の .note や .callout が
   ライト用の --c-text-sub（#4A5765）を継承して、暗い地に暗い文字が乗る。
   実際に一度それで潰れたので、面ごとテーマを持たせる形にした。 */
.site-footer {
  --c-bg: #16242f;
  --c-bg-alt: #0b1620;
  --c-surface: #16242f;
  --c-text: #f2f5f7;            /* 対 #16242F 14.45:1 */
  --c-text-sub: #b9c6d1;        /* 対 #16242F 9.09:1 */
  --c-rule: #5c7488;            /* 対 #16242F 3.25:1 */
  --c-border: #5c7488;
  --c-focus: #4fe0a8;

  margin-top: var(--sp-8);
  padding-block: var(--sp-7) var(--sp-6);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: var(--fs-note);
  line-height: var(--lh-note);
}
.site-footer a { color: var(--c-text); }
.site-footer .note { color: var(--c-text-sub); }

.footer-grid {
  display: grid;
  gap: var(--sp-5);
  margin-bottom: var(--sp-6);
}
@media (min-width: 40em) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 62em) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-heading {
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: #ffa24d;               /* 対 #16242F 7.93:1 */
}
.footer-nav { margin: 0; padding: 0; list-style: none; }
.footer-nav li { margin: 0; }
.footer-nav a {
  display: flex;
  align-items: center;
  min-height: var(--tap);
  text-decoration: none;
}
.footer-nav a:hover { text-decoration: underline; }

/* 遊漁船業法に基づく表示。
   小さくしない・薄くしない・画像にしない・折りたたみの中に隠さない。
   ここを削ったり読みにくくしたりしないこと（研究資料 04 の8節A参照） */
.legal-notice {
  /* フッタ地色 #16242F に対して 3.25:1。#526A7E だと 2.80:1 で基準未達だった */
  border: 1px solid #5c7488;
  border-radius: var(--radius);
  padding: var(--sp-4) var(--sp-5);
  margin-bottom: var(--sp-5);
}
.legal-notice__title {
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: #ffa24d;               /* 対 #16242F 7.93:1 */
}
.legal-notice dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-2) var(--sp-4);
  margin: 0;
}
.legal-notice dt { font-weight: 700; white-space: nowrap; color: var(--c-text-sub); }
.legal-notice dd { margin: 0; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-5);
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--c-rule);
  padding-top: var(--sp-4);
}

/* ----------------------------------------------------------------------------
   14. ユーティリティ
   ---------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-6 { margin-top: var(--sp-6); }
.stack > * + * { margin-top: var(--sp-4); }

/* ----------------------------------------------------------------------------
   15. まるまる丸の物語

   トップと「私たちについて」は、案内カードの集合ではなく一篇の読み物として組む。
   明朝の大見出し、余白、夕暮れから夜へ移る写真で、海にいる時間を伝える。
   ---------------------------------------------------------------------------- */
.story-display,
.home-hero__title,
.about-hero h1,
.story-teaser h2,
.about-story h2,
.about-story blockquote,
.story-reviews__heading h3,
.story-reviews blockquote {
  font-family:
    "Hiragino Mincho ProN", "Yu Mincho", YuMincho,
    "BIZ UDPMincho", "Noto Serif JP", serif;
  font-weight: 600;
  font-feature-settings: "palt" 1;
}

.story-display {
  max-width: 15em;
  margin-bottom: var(--sp-5);
  font-size: clamp(2rem, 4.6vw, 4.25rem);
  line-height: 1.35;
  letter-spacing: .035em;
}

.story-kicker {
  margin-bottom: var(--sp-4);
  color: var(--c-lamp);
  font-size: var(--fs-note);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .18em;
}

.home-page .site-footer,
.about-page .site-footer { margin-top: 0; }

/* --- ファーストビュー ---------------------------------------------------- */
.home-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(51rem, calc(100svh - 7rem));
  overflow: hidden;
  isolation: isolate;
}

.home-hero__media,
.home-hero__media picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__media { z-index: -2; }
.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% 48%;
  filter: saturate(1.08) contrast(1.04) brightness(1.06);
}

.home-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 13, 19, .79) 0%, rgba(5, 13, 19, .52) 40%, rgba(5, 13, 19, .03) 75%),
    linear-gradient(0deg, rgba(5, 13, 19, .64) 0%, rgba(5, 13, 19, .02) 55%);
}

.home-hero__inner {
  padding-block: clamp(4.5rem, 11vh, 8rem);
}

.home-hero__eyebrow {
  margin-bottom: var(--sp-4);
  color: #d9e2e8;
  font-size: var(--fs-note);
  font-weight: 700;
  letter-spacing: .12em;
}

.home-hero__title {
  max-width: 11em;
  margin-bottom: var(--sp-4);
  color: #fff;
  font-size: clamp(2.75rem, 6.9vw, 5.75rem);
  line-height: 1.24;
  letter-spacing: .045em;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .25);
}
.home-hero__title span { white-space: nowrap; }

.home-hero__promise,
.story-closing__promise,
.about-hero__signature {
  color: var(--c-text);
  font-weight: 700;
  letter-spacing: .08em;
}
.home-hero__promise { margin-bottom: var(--sp-5); }
.home-hero__promise span,
.story-closing__promise span,
.about-hero__signature span { color: var(--c-lamp); }

.home-hero__lead {
  max-width: 32em;
  margin-bottom: var(--sp-6);
  color: #eef3f5;
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  line-height: 1.9;
}

.home-hero__cta {
  gap: var(--sp-5);
  min-height: 4.25rem;
  padding-inline: clamp(1.75rem, 4vw, 2.5rem);
  border-color: #e45a42;
  background: #d34730;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .34), 0 0 0 1px rgba(255, 255, 255, .18) inset;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}
.home-hero__cta:hover { background: #b93621; box-shadow: 0 14px 36px rgba(0, 0, 0, .42); }
.home-hero__cta span { font-size: 1.4em; line-height: 1; }

.home-hero .btn--ghost,
.story-closing .btn--ghost {
  border-color: #f2f5f7;
  color: #f2f5f7;
}

.home-hero__scroll {
  position: absolute;
  right: var(--sp-5);
  bottom: var(--sp-5);
  display: none;
  gap: var(--sp-2);
  align-items: center;
  color: #fff;
  font-size: var(--fs-note);
  font-weight: 700;
  letter-spacing: .16em;
  text-decoration: none;
  writing-mode: vertical-rl;
}

@media (min-width: 62em) {
  .home-hero__scroll { display: flex; }
}

/* --- 物語への入口 -------------------------------------------------------- */
.story-teaser { border-top: 1px solid var(--c-rule); }
.story-teaser .about-hero__photo { background: #fff; }
.story-teaser .about-hero__photo picture {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.story-teaser .about-hero__photo img {
  object-fit: contain;
  object-position: center;
}
.story-teaser__quote {
  color: var(--c-text) !important;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
}
.story-teaser__action { margin-top: var(--sp-6); }
.story-teaser .btn--ghost { border-color: #f2f5f7; color: #f2f5f7; }

/* この船を作った思いが、実際にお客様へ届いていることを示す。
   引用は自社の説明を補う「従」とし、投稿者・媒体・選定掲載であることを明記する。 */
.story-reviews-section { padding-block: clamp(5rem, 11vw, 9rem); }
.story-reviews {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.story-reviews__heading {
  display: grid;
  gap: var(--sp-5);
  margin-bottom: var(--sp-7);
}
.story-reviews__heading h3 {
  max-width: 16em;
  margin: 0;
  color: var(--c-sea);
  font-size: clamp(1.85rem, 4vw, 3.25rem);
  line-height: 1.45;
  letter-spacing: .035em;
}
.story-reviews__heading > p {
  max-width: 34rem;
  margin: 0;
  color: var(--c-text-sub);
  line-height: 2;
}
.story-reviews__grid {
  display: grid;
  gap: var(--sp-4);
}
.story-reviews blockquote {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 17rem;
  margin: 0;
  padding: var(--sp-6);
  border-top: 3px solid var(--c-brand);
  background: var(--c-bg-alt);
  color: var(--c-text);
}
.story-reviews blockquote::before {
  content: "“";
  position: absolute;
  top: .15rem;
  right: var(--sp-4);
  color: var(--c-brand);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1;
  opacity: .18;
}
.story-reviews blockquote > p {
  position: relative;
  margin: 0 0 var(--sp-6);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  font-weight: 600;
  line-height: 1.85;
}
.story-reviews blockquote footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0 var(--sp-3);
  margin-top: auto;
  color: var(--c-text-sub);
  font-family: var(--font-sans);
  font-size: var(--fs-note);
  line-height: var(--lh-note);
}
.story-reviews blockquote cite { color: var(--c-text); font-style: normal; font-weight: 700; }
.story-reviews__footer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5) var(--sp-7);
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-rule);
}
.story-reviews__score {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
  margin: 0;
}
.story-reviews__score strong {
  color: var(--c-brand);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: 3rem;
  line-height: 1;
}
.story-reviews__score span { color: var(--c-text-sub); font-size: var(--fs-note); line-height: 1.5; }
.story-reviews__links { display: flex; flex-wrap: wrap; gap: var(--sp-4) var(--sp-5); align-items: center; }
.story-reviews__links > a:first-child { color: var(--c-brand); font-weight: 700; }
.story-reviews__links > a:first-child span { margin-left: var(--sp-1); }
.story-reviews__disclosure {
  margin: var(--sp-4) 0 0;
  color: var(--c-text-sub);
  font-size: var(--fs-note);
  line-height: var(--lh-note);
}

@media (min-width: 48em) {
  .story-reviews__heading { grid-template-columns: minmax(0, 1.1fr) minmax(20rem, .9fr); align-items: end; }
  .story-reviews__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* --- 三つの輪 ------------------------------------------------------------ */
.brand-rings { padding-block: clamp(5rem, 10vw, 8.5rem); }
.brand-rings__layout {
  display: grid;
  gap: var(--sp-8);
}
.brand-rings__intro {
  max-width: 34rem;
}
.brand-rings__intro > p:last-child { color: var(--c-text-sub); }
.brand-rings__symbol {
  width: clamp(5.5rem, 9vw, 8rem);
  margin-bottom: var(--sp-5);
  opacity: .9;
}
.brand-rings__list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}
.brand-rings__list li {
  position: relative;
  margin: 0;
  padding: var(--sp-5) 0 var(--sp-6);
  border-top: 1px solid var(--c-border);
}
.brand-rings__number {
  color: var(--c-lamp);
  font-size: var(--fs-note);
  font-weight: 700;
  letter-spacing: .12em;
}
.brand-rings__name {
  margin: var(--sp-2) 0 var(--sp-3);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 600;
}
.brand-rings__name span { color: var(--c-lamp); }

/* 細い記号ではなく、輪郭の滑らかな太いリングとして見せる。 */
.home-hero__promise span,
.story-closing__promise span,
.about-hero__signature span,
.brand-rings__name span {
  display: inline-block;
  width: .86em;
  height: .86em;
  margin-inline: .08em .03em;
  overflow: hidden;
  border: .15em solid var(--c-lamp);
  border-radius: 50%;
  color: transparent;
  line-height: 1;
  vertical-align: -.08em;
  transform: none;
}
.brand-rings__list li > p:last-child { margin: 0; color: var(--c-text-sub); }

@media (min-width: 56em) {
  .brand-rings__layout { grid-template-columns: .8fr 1.2fr; gap: clamp(4rem, 9vw, 9rem); align-items: start; }
  .brand-rings__list li { display: grid; grid-template-columns: 3.5rem 10rem 1fr; gap: var(--sp-4); align-items: start; }
  .brand-rings__name { margin: 0; }
}

/* --- 空き状況とInstagram ------------------------------------------------- */
.now-section { padding-block: clamp(5rem, 10vw, 8rem); }
.availability__heading,
.latest-catch__heading {
  display: grid;
  gap: var(--sp-5);
  margin-bottom: var(--sp-7);
}
.availability__heading .story-display,
.latest-catch__heading .story-display { margin-bottom: 0; }
.availability__intro,
.latest-catch__heading > p { max-width: 35rem; }
.availability__intro p,
.latest-catch__heading > p { margin: 0; color: var(--c-text-sub); line-height: 2; }
.availability__note {
  margin-top: var(--sp-3) !important;
  padding-left: var(--sp-4);
  border-left: 3px solid var(--c-lamp);
  font-size: var(--fs-note);
}
.availability__frame {
  overflow: hidden;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-lg);
}
.availability__frame iframe {
  display: block;
  width: 100%;
  height: clamp(38rem, 72svh, 48rem);
  border: 0;
  background: #fff;
}
.availability__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4) var(--sp-5);
  align-items: center;
  margin-top: var(--sp-5);
}
.availability__actions > a:last-child { color: var(--c-brand); font-weight: 700; }

.reserve-calendar {
  margin-block: var(--sp-7);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--c-border);
}
.reserve-calendar__heading { margin-bottom: var(--sp-5); }
.reserve-calendar__heading h2 { margin-bottom: var(--sp-3); }
.reserve-calendar__heading > p:last-child { margin: 0; color: var(--c-text-sub); }
.reserve-calendar__fallback {
  margin: var(--sp-3) 0 var(--sp-6);
  color: var(--c-text-sub);
  font-size: var(--fs-note);
}
.reserve-calendar__fallback a { color: var(--c-brand); font-weight: 700; }

.latest-catch {
  margin-top: clamp(5rem, 11vw, 9rem);
  padding-top: clamp(3.5rem, 8vw, 6rem);
  border-top: 1px solid var(--c-border);
}
.latest-catch__grid {
  display: grid;
  gap: var(--sp-5);
}
.instagram-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--c-rule);
  background: var(--c-surface);
  color: var(--c-text);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.instagram-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.instagram-card__media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-bg-alt);
}
.instagram-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.instagram-card:hover .instagram-card__media img { transform: scale(1.025); }
.instagram-card__body {
  display: grid;
  gap: var(--sp-2);
  padding: var(--sp-5);
}
.instagram-card__date {
  color: var(--c-brand);
  font-size: var(--fs-note);
  font-weight: 700;
  letter-spacing: .08em;
}
.instagram-card__body strong {
  color: var(--c-sea);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
}
.instagram-card__body > span:not(.instagram-card__date, .instagram-card__link) {
  color: var(--c-text-sub);
  line-height: 1.8;
}
.instagram-card__link {
  margin-top: var(--sp-3);
  color: var(--c-brand);
  font-size: var(--fs-note);
  font-weight: 700;
}
.latest-catch__footer { margin-top: var(--sp-6); text-align: center; }
.latest-catch__disclosure {
  margin: var(--sp-4) 0 0;
  color: var(--c-text-sub);
  font-size: var(--fs-note);
  line-height: var(--lh-note);
  text-align: center;
}

@media (min-width: 48em) {
  .availability__heading,
  .latest-catch__heading {
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, .9fr);
    align-items: end;
  }
  .latest-catch__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* --- 便を選ぶ ------------------------------------------------------------ */
.voyages { padding-block: clamp(5rem, 10vw, 8rem); }
.voyages__lead { max-width: 39rem; margin-bottom: var(--sp-7); }
.voyage-grid {
  display: grid;
  gap: var(--sp-5);
}
.voyage-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--c-rule);
  background: var(--c-surface);
  color: var(--c-text);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.voyage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.voyage-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.voyage-card__media picture {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.voyage-card__media--duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  background: #07131c;
}
.voyage-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.voyage-card--ikametal .voyage-card__media img,
.voyage-card--ikametal-mid .voyage-card__media img {
  object-position: center 42%;
}
.voyage-card:hover .voyage-card__media img { transform: scale(1.025); }
.voyage-card__body { position: relative; padding: var(--sp-5); }
.voyage-card__title {
  margin-bottom: var(--sp-2);
  color: var(--c-sea);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.voyage-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-3);
  color: var(--c-text-sub);
  font-size: var(--fs-note);
}
.voyage-card__meta span { padding-left: var(--sp-3); border-left: 1px solid var(--c-rule); }
.voyage-card__price { margin: var(--sp-5) var(--sp-7) 0 0; color: var(--c-brand); font-size: 1.25rem; font-weight: 700; }
.voyage-card__price small { font-weight: 400; }
.voyage-card__arrow { position: absolute; right: var(--sp-5); bottom: var(--sp-5); font-size: 1.75rem; }
.voyages__all { margin: var(--sp-6) 0 0; text-align: right; }

@media (min-width: 40em) {
  .voyage-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  }
}

/* --- 便ごとの船上写真 ----------------------------------------------------
   各便の縦写真を横長へ無理に切らず、スマートフォンでは主役の1枚＋2枚、
   広い画面では3枚を同じ高さに並べる。全ての専用ページで共通利用する。 */
.plan-photo-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 64rem;
  margin-block: var(--sp-6) var(--sp-7);
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.plan-photo-gallery__item {
  min-width: 0;
  overflow: hidden;
}
.plan-photo-gallery__item--main { grid-column: 1 / -1; }
.plan-photo-gallery picture {
  display: block;
  width: 100%;
  height: 100%;
}
.plan-photo-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 30%;
}
.plan-photo-gallery__item--main img {
  aspect-ratio: 4 / 5;
  object-position: center 32%;
}

@media (min-width: 48em) {
  .plan-photo-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .plan-photo-gallery__item--main { grid-column: auto; }
  .plan-photo-gallery img,
  .plan-photo-gallery__item--main img {
    aspect-ratio: 9 / 14;
  }
}

.tackle-guide-image {
  display: block;
  max-width: 60rem;
  margin-block: var(--sp-5) var(--sp-2);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.tackle-guide-image:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.tackle-guide-image picture { display: block; }
.tackle-guide-image img {
  display: block;
  width: 100%;
  height: auto;
}
.tackle-guide-image__hint {
  margin-bottom: var(--sp-5);
  color: var(--c-text-sub);
  font-size: var(--fs-note);
}

.bachikon-setup {
  max-width: 60rem;
  margin-block: var(--sp-7);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius-lg);
  background: var(--c-bg-alt);
}
.bachikon-setup__kicker {
  margin-bottom: var(--sp-2);
  color: var(--c-lamp);
  font-size: var(--fs-note);
  font-weight: 700;
  letter-spacing: .16em;
}
.bachikon-setup h3 {
  max-width: 18em;
  margin-bottom: var(--sp-3);
  color: var(--c-sea);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.45;
}
.bachikon-setup__shared {
  max-width: 40rem !important;
  margin-bottom: var(--sp-5);
  color: var(--c-text-sub);
}
.bachikon-setup__grid {
  display: grid;
  gap: var(--sp-3);
  margin: 0;
}
.bachikon-setup__grid > div {
  padding: var(--sp-4);
  border-top: 3px solid var(--c-lamp);
  background: var(--c-surface);
}
.bachikon-setup__grid dt {
  margin-bottom: var(--sp-2);
  color: var(--c-text-sub);
  font-size: var(--fs-note);
  font-weight: 700;
  letter-spacing: .08em;
}
.bachikon-setup__grid dd { margin: 0; }
.bachikon-setup__grid strong,
.bachikon-setup__grid span,
.bachikon-setup__grid small { display: block; }
.bachikon-setup__grid strong {
  color: var(--c-text);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  line-height: 1.45;
}
.bachikon-setup__grid span {
  margin-top: var(--sp-2);
  color: var(--c-brand);
  font-weight: 700;
}
.bachikon-setup__grid small {
  margin-top: var(--sp-2);
  color: var(--c-text-sub);
  font-size: var(--fs-note);
}

@media (min-width: 40em) {
  .bachikon-setup__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --- 乗船前の案内 -------------------------------------------------------- */
.visit-guide { padding-block: clamp(5rem, 10vw, 8rem); }
.visit-guide__grid {
  display: grid;
  margin-top: var(--sp-7);
  border-bottom: 1px solid var(--c-border);
}
.visit-guide__grid a {
  position: relative;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0 var(--sp-3);
  min-height: 8rem;
  padding: var(--sp-5) var(--sp-4);
  border-top: 1px solid var(--c-border);
  color: var(--c-text);
  text-decoration: none;
}
.visit-guide__grid a::after {
  content: "→";
  position: absolute;
  right: var(--sp-4);
  top: var(--sp-5);
  color: var(--c-brand);
  font-size: 1.5rem;
}
.visit-guide__grid a:hover { background: var(--c-bg-alt); }
.visit-guide__grid span { grid-row: 1 / 3; color: var(--c-brand); font-size: var(--fs-note); font-weight: 700; }
.visit-guide__grid strong { padding-right: var(--sp-6); font-size: 1.25rem; }
.visit-guide__grid small { color: var(--c-text-sub); }
.visit-guide__facts {
  display: grid;
  gap: var(--sp-4);
  margin-top: var(--sp-7);
}
.visit-guide__facts p { margin: 0; padding-left: var(--sp-4); border-left: 3px solid var(--c-lamp); }
.visit-guide__facts strong,
.visit-guide__facts span { display: block; }
.visit-guide__facts span { margin-top: var(--sp-1); color: var(--c-text-sub); font-size: var(--fs-note); }

@media (min-width: 48em) {
  .visit-guide__grid { grid-template-columns: repeat(2, 1fr); border-left: 1px solid var(--c-border); }
  .visit-guide__grid a { border-right: 1px solid var(--c-border); }
  .visit-guide__facts { grid-template-columns: repeat(3, 1fr); }
}

/* --- 結び ---------------------------------------------------------------- */
.story-closing { padding-block: clamp(5rem, 11vw, 9rem); }
.story-closing__inner { max-width: 58rem; text-align: center; }
.story-closing .story-display { max-width: none; margin-inline: auto; }
.story-closing__inner > p:not(.story-kicker, .story-closing__promise) { color: var(--c-text-sub); }
.story-closing__promise { margin-block: var(--sp-6); font-size: clamp(1.125rem, 2.2vw, 1.5rem); }
.story-closing__actions { justify-content: center; }

/* --- 私たちについて ------------------------------------------------------ */
.about-page-title {
  padding-block: clamp(3rem, 7vw, 5.5rem) 0;
  background: var(--c-bg);
}
.about-page-title h1 {
  margin: 0;
  color: var(--c-sea);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.25;
  letter-spacing: .04em;
}
.about-page-title + .about-story { padding-top: clamp(2.5rem, 6vw, 4.5rem); }
.about-hero { display: grid; }
.about-hero__photo { min-height: 25rem; overflow: hidden; }
.about-hero__photo picture { height: 100%; }
.about-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}
.about-hero__copy { padding: clamp(3rem, 8vw, 7rem) max(var(--sp-4), calc((100vw - var(--container)) / 2)); }
.about-hero h1,
.story-teaser h2 {
  margin-bottom: var(--sp-6);
  font-size: clamp(2.5rem, 5.6vw, 5rem);
  line-height: 1.3;
  letter-spacing: .04em;
}
.about-hero__copy > p:not(.story-kicker, .about-hero__signature, .story-teaser__action) { max-width: 32rem; color: var(--c-text-sub); line-height: 2; }
.about-hero__signature { margin-top: var(--sp-6); }

@media (min-width: 56em) {
  .about-hero { grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr); min-height: 44rem; }
  .about-hero__photo { min-height: 44rem; }
  .about-hero__copy { align-self: center; padding-left: clamp(3rem, 7vw, 7rem); }
}

.about-story { padding-block: clamp(5rem, 11vw, 9rem); }
.about-story__inner { max-width: 62rem; }
.about-story h2 {
  max-width: 18em;
  margin-top: clamp(5rem, 10vw, 8rem);
  margin-bottom: var(--sp-6);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--c-brand);
  color: var(--c-sea);
  font-size: clamp(2rem, 4.1vw, 3.5rem);
  line-height: 1.4;
  letter-spacing: .035em;
}
.about-story h2:first-child { margin-top: 0; }
.about-story > .prose,
.about-story__inner > p,
.about-story__inner > ul,
.about-story__inner > .table-scroll { margin-left: clamp(0rem, 7vw, 6rem); }
.about-story__inner > p,
.about-story__inner > ul { line-height: 2; }
.about-story__inner > blockquote {
  max-width: 46rem;
  margin: var(--sp-7) 0;
  padding: var(--sp-6) clamp(var(--sp-4), 5vw, var(--sp-7));
  border-left: 4px solid var(--c-brand);
  background: var(--c-bg-alt);
  color: var(--c-brand);
  font-size: clamp(1.55rem, 3.4vw, 2.6rem);
  line-height: 1.65;
}
.about-story__inner > blockquote p { margin: 0; }
.about-story__inner > picture {
  max-width: 50rem;
  margin-block: clamp(3rem, 8vw, 6rem);
}
.about-story__inner > picture img {
  width: 100%;
  max-height: 42rem;
  border-radius: 0;
  object-fit: cover;
}
.about-story__inner > picture:nth-of-type(even) { margin-left: auto; }
.about-story__inner > .table-scroll { max-width: 42rem; }

@media (max-width: 39.99em) {
  .home-hero { min-height: 44rem; }
  .home-hero::after {
    background:
      linear-gradient(0deg, rgba(5, 13, 19, .88) 0%, rgba(5, 13, 19, .58) 56%, rgba(5, 13, 19, .08) 100%);
  }
  .home-hero__inner { padding-block: 12rem 3.5rem; }
  .home-hero__actions .btn { width: 100%; }
  .home-hero__title { font-size: clamp(2.45rem, 11vw, 3.35rem); }
  .story-teaser__action .btn { width: 100%; }
  .story-display br,
  .home-hero__lead br,
  .story-closing__inner br { display: none; }
  .story-reviews blockquote { min-height: 0; }
  .story-reviews__links,
  .story-reviews__links .btn { width: 100%; }
  .availability__actions,
  .availability__actions .btn,
  .latest-catch__footer .btn { width: 100%; }
  .availability__actions { align-items: stretch; }
  .availability__actions > a:last-child { text-align: center; }
  .story-closing__actions .btn { width: 100%; }
  .about-hero__copy { padding-inline: var(--sp-4); }
  .about-story__inner > p,
  .about-story__inner > ul,
  .about-story__inner > .table-scroll { margin-left: 0; }
}

/* 印刷時は固定CTAと装飾を落とす */
@media print {
  .sticky-cta, .site-nav, .nav-toggle__label, .skip-link { display: none !important; }
  .site-chrome { position: static; box-shadow: none; }
  body { padding-bottom: 0; font-size: 11pt; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}
