@charset "utf-8";
/* まぐろ.com 共通スタイル
   意匠の方針: 寿司屋の品書きと魚市場の質感。赤身（#9c1c26）を主色に、
   見出しは明朝体、地は和紙の生成り。カードは木札に見立てている。
   layout.js の CSS_VERSION を上げないとキャッシュが残るので注意。 */

:root {
  --akami: #9c1c26;        /* 赤身 */
  --akami-dark: #6b1119;   /* 漬け */
  --chutoro: #d4636d;      /* 中トロ */
  --otoro: #f0b8bc;        /* 大トロの霜降り */
  --akami-wash: #f7e7e6;   /* 淡く敷く赤 */
  --sumi: #1f1a18;         /* 墨 */
  --sumi-soft: #574c47;
  --shari: #fdfaf6;        /* シャリの白 */
  --washi: #f6efe6;        /* 和紙の生成り */
  --kine: #e7dbc9;         /* 木札の縁 */
  --umi: #1d3a4a;          /* 海 */
  --kori: #e3edf1;         /* 氷 */
  --line: #e4d8cd;
  --ok: #2f6b4f;
  --ng: #a52a2a;
  --mincho: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --gothic: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  --radius: 4px;
  --shadow: 0 1px 2px rgba(31, 26, 24, .06), 0 8px 24px rgba(31, 26, 24, .07);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--washi);
  /* 和紙の目 */
  background-image:
    repeating-linear-gradient(90deg, rgba(31,26,24,.014) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(0deg, rgba(31,26,24,.014) 0 1px, transparent 1px 3px);
  color: var(--sumi);
  font-family: var(--gothic);
  font-size: 16px;
  line-height: 1.95;
}

img { max-width: 100%; height: auto; }
a { color: var(--akami-dark); text-underline-offset: 3px; }
a:hover { color: var(--akami); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ============ ヘッダー（のれん） ============ */
.site-header { background: var(--shari); position: sticky; top: 0; z-index: 50; }
.site-header::after {
  /* のれん。上は繋がっていて、裾だけに縦の切れ目が入る */
  content: ""; display: block; height: 17px; background: var(--akami);
  -webkit-mask-image:
    linear-gradient(#000, #000),
    repeating-linear-gradient(90deg, #000 0 132px, transparent 132px 136px);
  mask-image:
    linear-gradient(#000, #000),
    repeating-linear-gradient(90deg, #000 0 132px, transparent 132px 136px);
  -webkit-mask-size: 100% 7px, 100% 10px;
  mask-size: 100% 7px, 100% 10px;
  -webkit-mask-position: 0 0, 0 7px;
  mask-position: 0 0, 0 7px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.header-inner {
  max-width: 1180px; margin: 0 auto; padding: 12px 16px 10px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--sumi); }
.brand-logo { width: 46px; height: 46px; flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.35; }
.brand-text b { font-family: var(--mincho); font-size: 23px; letter-spacing: .06em; font-weight: 700; }
.brand-text em { font-style: normal; font-size: 11.5px; color: var(--sumi-soft); letter-spacing: .16em; }

.nav { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.nav a {
  text-decoration: none; color: var(--sumi); font-size: 14px;
  padding: 9px 12px; white-space: nowrap; position: relative;
}
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 1px;
  background: var(--akami); transform: scaleX(0); transition: transform .16s ease;
}
.nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav .nav-cta {
  background: var(--akami); color: #fff; font-weight: 700; padding: 10px 20px;
  border-radius: 2px; letter-spacing: .08em;
}
.nav .nav-cta:hover { background: var(--akami-dark); color: #fff; }

/* ============ 下層ヒーロー ============ */
.lp-hero {
  background:
    linear-gradient(180deg, var(--shari) 0%, var(--washi) 100%);
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.lp-hero::before {
  /* サシの筋を薄く流す */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background:
    repeating-linear-gradient(-16deg, transparent 0 34px, rgba(212,99,109,.10) 34px 38px);
}
.lp-hero-inner { max-width: 1180px; margin: 0 auto; padding: 26px 16px 30px; position: relative; }
.lp-hero-inner.has-visual {
  display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 26px; align-items: center;
}
.lp-hero-copy { min-width: 0; }
.breadcrumbs { font-size: 12.5px; color: var(--sumi-soft); margin: 0 0 12px; letter-spacing: .02em; }
.breadcrumbs a { color: var(--sumi-soft); }
.lp-hero h1 {
  font-family: var(--mincho); font-weight: 700;
  font-size: clamp(24px, 4.4vw, 37px); line-height: 1.5; margin: 0 0 14px;
  letter-spacing: .04em;
}
.lp-hero-lead { margin: 0 0 20px; max-width: 58em; color: var(--sumi-soft); }
.lp-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 16px; }

.lp-btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: 14px 30px; border-radius: 2px; font-size: 15px; text-align: center;
  letter-spacing: .08em; transition: transform .08s ease, background .16s ease;
}
.lp-btn:active { transform: translateY(1px); }
.lp-btn-main { background: var(--akami); color: #fff; box-shadow: var(--shadow); }
.lp-btn-main:hover { background: var(--akami-dark); color: #fff; }
.lp-btn-sub { background: var(--shari); color: var(--akami-dark); border: 1px solid var(--akami); }
.lp-btn-sub:hover { background: var(--akami-wash); color: var(--akami-dark); }
.lp-btn-block { display: block; width: 100%; }

.lp-license {
  font-size: 12.5px; color: var(--sumi-soft); letter-spacing: .04em;
  border: 1px solid var(--line); background: var(--shari);
  padding: 7px 13px; border-radius: 2px;
}
.lp-license span { color: var(--akami); font-weight: 700; margin-right: 5px; }

.lp-trust-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 13.5px; color: var(--sumi-soft);
}
.lp-trust-list li { display: flex; align-items: center; gap: 6px; }
.lp-trust-list span { color: var(--akami); font-weight: 700; }

/* ============ 3カラム ============ */
.lp-shell {
  max-width: 1180px; margin: 0 auto; padding: 28px 16px 44px;
  display: grid; grid-template-columns: 186px minmax(0, 1fr) 258px; gap: 26px; align-items: start;
}
.lp-side, .lp-form-side { position: sticky; top: 92px; }
.lp-side h2 {
  font-family: var(--mincho); font-size: 14px; color: var(--sumi); margin: 0 0 9px;
  letter-spacing: .18em; padding-left: 10px; border-left: 3px solid var(--akami);
}
.lp-side nav {
  display: flex; flex-direction: column; background: var(--shari);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.lp-side nav a {
  text-decoration: none; color: var(--sumi); font-size: 13.5px;
  padding: 10px 13px; border-bottom: 1px dotted var(--line); position: relative;
}
.lp-side nav a:last-child { border-bottom: 0; }
.lp-side nav a:hover { background: var(--akami-wash); color: var(--akami-dark); }
.lp-side-contact {
  margin-top: 14px; padding: 13px; background: var(--shari); border: 1px solid var(--line);
  border-radius: var(--radius); font-size: 12.5px; line-height: 1.85; color: var(--sumi-soft);
}
.lp-side-contact b {
  display: block; color: var(--sumi); margin-bottom: 5px; font-family: var(--mincho);
  letter-spacing: .1em;
}

/* ============ 本文（木札） ============ */
.lp-main { min-width: 0; }
.lp-sec {
  background: var(--shari); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 28px; margin-bottom: 20px;
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
}
.lp-sec.is-soft {
  background: var(--akami-wash); border-color: #ecd3d2;
}
.lp-sec.is-flat { background: transparent; border: 0; box-shadow: none; padding: 0 4px; }
.lp-sec h2 {
  font-family: var(--mincho); font-weight: 700;
  font-size: 22px; line-height: 1.55; margin: 0 0 18px; padding: 0 0 12px 15px;
  letter-spacing: .05em; position: relative;
  border-bottom: 1px solid var(--line);
}
.lp-sec h2::before {
  content: ""; position: absolute; left: 0; top: 4px; bottom: 16px; width: 4px;
  background: var(--akami);
}
.lp-sec h3 {
  font-family: var(--mincho); font-size: 17.5px; margin: 26px 0 9px; color: var(--akami-dark);
  letter-spacing: .04em;
}
.lp-sec p { margin: 0 0 15px; }
.lp-sec p:last-child { margin-bottom: 0; }
.lp-sec ul, .lp-sec ol { margin: 0 0 15px; padding-left: 1.35em; }
.lp-sec li { margin-bottom: 7px; }
.lp-sec ul li::marker { color: var(--chutoro); }

.lp-lead {
  font-family: var(--mincho); font-size: 18px; line-height: 2.05; letter-spacing: .03em;
  background: var(--shari); border: 1px solid var(--line); border-left: 5px solid var(--akami);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin-bottom: 20px;
}

.lp-sec-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }

/* できる／できない（木札を2枚並べる） */
.lp-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lp-card {
  border: 1px solid var(--kine); border-radius: var(--radius); padding: 18px 20px;
  background: var(--washi);
}
.lp-card h3 {
  margin: 0 0 12px; font-family: var(--mincho); font-size: 17px; letter-spacing: .08em;
  padding-bottom: 10px; border-bottom: 1px dotted var(--kine);
}
.lp-card ul { margin: 0; padding-left: 1.15em; font-size: 14.5px; }
.lp-card.is-ok { border-color: #cbdccf; background: #f6faf6; }
.lp-card.is-ok h3 { color: var(--ok); border-bottom-color: #cbdccf; }
.lp-card.is-ok ul li::marker { color: var(--ok); }
.lp-card.is-ng { border-color: #ebc9c7; background: #fdf6f5; }
.lp-card.is-ng h3 { color: var(--ng); border-bottom-color: #ebc9c7; }
.lp-card.is-ng ul li::marker { color: var(--ng); }

/* 料金表（品書き） */
.lp-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.lp-table th, .lp-table td {
  border-bottom: 1px dotted var(--kine); padding: 13px 12px; text-align: left;
}
/* 見出し行を持つのは品書き（is-price）だけ。他の表の1行目は普通の罫線のまま */
.lp-table.is-price tr:first-child th { border-bottom: 1.5px solid var(--akami); }
.lp-table th {
  font-family: var(--mincho); font-weight: 700; white-space: nowrap; letter-spacing: .08em;
  color: var(--sumi);
}
.lp-table td.num {
  text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums;
  font-family: var(--mincho); font-size: 17px; color: var(--akami-dark); letter-spacing: .02em;
}
/* 品書きなので金額列は見出しも右へ揃える */
.lp-table.is-price th:nth-child(2) { text-align: right; }
.lp-table.is-price td:last-child { color: var(--sumi-soft); font-size: 13.5px; }
.lp-table-wrap { overflow-x: auto; margin-bottom: 16px; }

/* 手順 */
.lp-steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.lp-steps li {
  counter-increment: step; position: relative; padding: 0 0 20px 46px; margin: 0;
  border-left: 1px dashed var(--kine); margin-left: 15px;
}
.lp-steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
.lp-steps li::before {
  content: counter(step); position: absolute; left: -15px; top: 0;
  width: 30px; height: 30px; border-radius: 2px; background: var(--akami); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mincho); font-weight: 700; font-size: 15px;
}
.lp-steps b {
  display: block; font-family: var(--mincho); font-size: 17px; margin-bottom: 5px;
  letter-spacing: .05em;
}

/* Q&A */
.lp-qa { border-top: 1px solid var(--line); }
.lp-qa > div { border-bottom: 1px dotted var(--kine); padding: 16px 0; }
.lp-qa dt { font-weight: 700; margin-bottom: 7px; padding-left: 30px; position: relative; }
.lp-qa dt::before {
  content: "問"; position: absolute; left: 0; top: 0;
  font-family: var(--mincho); color: #fff; background: var(--akami);
  width: 21px; height: 21px; display: flex; align-items: center; justify-content: center;
  font-size: 12px; border-radius: 2px; margin-top: 6px;
}
.lp-qa dd { margin: 0; padding-left: 30px; position: relative; color: var(--sumi-soft); }
.lp-qa dd::before {
  content: "答"; position: absolute; left: 0; top: 0;
  font-family: var(--mincho); color: var(--sumi-soft); border: 1px solid var(--kine);
  width: 21px; height: 21px; display: flex; align-items: center; justify-content: center;
  font-size: 12px; border-radius: 2px; margin-top: 6px;
}

/* リンクカード（ネタ札） */
.lp-links { display: grid; grid-template-columns: repeat(auto-fill, minmax(212px, 1fr)); gap: 12px; }
.lp-links a {
  display: block; text-decoration: none; color: var(--sumi); background: var(--washi);
  border: 1px solid var(--kine); border-radius: var(--radius); padding: 14px 16px;
  border-top: 3px solid var(--kine); transition: border-top-color .16s ease, background .16s ease;
}
.lp-links a:hover { border-top-color: var(--akami); background: var(--shari); }
.lp-links b {
  display: block; font-family: var(--mincho); color: var(--akami-dark);
  margin-bottom: 4px; font-size: 15.5px; letter-spacing: .04em;
}
.lp-links span { font-size: 12.5px; color: var(--sumi-soft); line-height: 1.75; display: block; }

/* 右カラム予約パネル */
.lp-form-panel {
  background: var(--shari); border: 1px solid var(--line); border-top: 4px solid var(--akami);
  border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow);
}
.lp-form-title {
  margin: 0 0 3px; font-family: var(--mincho); font-weight: 700; font-size: 17px;
  letter-spacing: .1em;
}
.lp-form-note { margin: 0 0 13px; font-size: 12.5px; color: var(--sumi-soft); }
.lp-form-contact {
  margin: 15px 0 0; font-size: 13px; display: grid; grid-template-columns: 3.6em 1fr; gap: 5px 6px;
}
.lp-form-contact dt { color: var(--sumi-soft); }
.lp-form-contact dd { margin: 0; word-break: break-all; }
.lp-form-facts {
  margin-top: 15px; padding-top: 13px; border-top: 1px dotted var(--kine); font-size: 13px;
}
.lp-form-facts p { margin: 0 0 7px; }
.lp-form-facts b { font-family: var(--mincho); letter-spacing: .08em; }
.lp-form-facts ul { margin: 0; padding-left: 1.15em; color: var(--sumi-soft); }
.lp-form-mini { margin: 13px 0 0; font-size: 12px; color: var(--sumi-soft); line-height: 1.75; }

/* ============ 予約フォーム ============ */
.mg-form { display: flex; flex-direction: column; gap: 17px; }
.mg-form label {
  display: flex; flex-direction: column; gap: 7px;
  font-size: 14.5px; font-weight: 700; color: var(--sumi);
}
.mg-form .mg-label {
  display: flex; align-items: center; gap: 9px; flex-wrap: wrap;
  font-family: var(--mincho); letter-spacing: .04em; font-size: 15.5px;
}
.mg-form .req {
  padding: 2px 9px; border-radius: 2px; flex: 0 0 auto; font-family: var(--gothic);
  background: var(--akami); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .06em;
}
.mg-form input[type="text"],
.mg-form select,
.mg-form textarea {
  font: inherit; font-weight: 400; width: 100%;
  padding: 12px 13px; border: 1px solid var(--kine); border-radius: 2px;
  background: #fff; color: var(--sumi);
}
.mg-form input[type="text"]:focus,
.mg-form select:focus,
.mg-form textarea:focus {
  outline: 2px solid var(--otoro); outline-offset: 1px; border-color: var(--akami);
}
.mg-form textarea { resize: vertical; line-height: 1.85; }
.mg-form .mg-check {
  flex-direction: row; align-items: flex-start; gap: 11px;
  font-weight: 400; font-size: 14px; background: var(--akami-wash);
  padding: 15px 17px; border-radius: 2px;
}
.mg-form .mg-check input { margin-top: 4px; flex: 0 0 auto; width: 18px; height: 18px; }
.mg-form button {
  font-family: var(--mincho); font-weight: 700; font-size: 17px; letter-spacing: .12em;
  padding: 16px 26px; border: 0; border-radius: 2px;
  background: var(--akami); color: #fff; cursor: pointer; box-shadow: var(--shadow);
}
.mg-form button:hover { background: var(--akami-dark); }
/* ボット避けの隠しフィールド。input[type="text"] より詳細度を上げている */
.mg-form input.mg-hp {
  position: absolute; left: -9999px; width: 1px; height: 1px; padding: 0; border: 0; opacity: 0;
}

/* ============ 最終CTA ============ */
.lp-final {
  background: linear-gradient(135deg, var(--akami) 0%, var(--akami-dark) 100%);
  color: #fff; border-radius: var(--radius); padding: 30px 28px; margin-bottom: 20px;
  position: relative; overflow: hidden;
}
.lp-final::before {
  content: ""; position: absolute; inset: 0; opacity: .18; pointer-events: none;
  background: repeating-linear-gradient(-16deg, transparent 0 30px, rgba(255,255,255,.5) 30px 33px);
}
.lp-final > * { position: relative; }
.lp-final h2 {
  margin: 0 0 12px; font-family: var(--mincho); font-size: 23px; letter-spacing: .06em;
  border: 0; padding: 0;
}
.lp-final h2::before { display: none; }
.lp-final p { margin: 0 0 18px; }
.lp-final .lp-btn-sub { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.lp-final .lp-btn-sub:hover { background: rgba(255,255,255,.14); color: #fff; }
.lp-final .lp-btn-main { background: var(--shari); color: var(--akami-dark); }
.lp-final .lp-btn-main:hover { background: var(--otoro); color: var(--akami-dark); }

/* ============ フッター ============ */
.lp-footer { background: #241d1b; color: #cfc4bd; margin-top: 24px; position: relative; }
.lp-footer::before {
  content: ""; display: block; height: 10px; background: var(--akami);
}
.lp-footer-inner { max-width: 1180px; margin: 0 auto; padding: 34px 16px 26px; }
.lp-footer strong { color: #fff; font-family: var(--mincho); font-size: 19px; letter-spacing: .08em; }
.lp-footer-lead { font-size: 13.5px; line-height: 1.95; margin: 10px 0 16px; max-width: 62em; }
.lp-footer .lp-trust-list { color: #b6aaa4; margin-bottom: 24px; }
.lp-footer .lp-trust-list span { color: var(--chutoro); }
.lp-footer-nav { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 22px; }
.lp-footer-nav h3 {
  font-family: var(--mincho); font-size: 15px; color: #fff; margin: 0 0 10px;
  letter-spacing: .1em; padding-left: 9px; border-left: 2px solid var(--chutoro);
}
.lp-footer-nav ul { list-style: none; margin: 0; padding: 0; font-size: 13px; }
.lp-footer-nav li { margin-bottom: 6px; }
.lp-footer-nav a { color: #cfc4bd; text-decoration: none; }
.lp-footer-nav a:hover { color: #fff; text-decoration: underline; }
.lp-footer-bottom {
  margin-top: 26px; padding-top: 18px; border-top: 1px solid #3d322f;
  font-size: 12px; line-height: 1.9; color: #a1948e;
}
.lp-footer-bottom p { margin: 0 0 7px; }
.lp-footer-bottom a { color: #cfc4bd; }

/* ============ トップページ ============ */
/* ヒーローは横たわる本まぐろ1匹を全幅に敷き、上に白を重ねて文字を読ませる。
   写真は下寄せ（魚が下半分にいる）。文字は上半分に置く。 */
.top-hero {
  border-bottom: 1px solid var(--line); position: relative; overflow: hidden;
  background-color: var(--washi);
  /* 写真は下端に原寸比で敷き、文字はその上の余白に置く（重ねない）。
     境界だけ地の色でぼかす。ベールを魚にかけると魚が消えるのでかけない。 */
  background-image:
    linear-gradient(180deg,
      var(--washi) 0%,
      var(--washi) 36%,
      rgba(246, 239, 230, .55) 41%,
      rgba(246, 239, 230, 0) 48%),
    image-set(url("/assets/img/hero-whole.webp") type("image/webp"),
              url("/assets/img/hero-whole.jpg") type("image/jpeg"));
  background-repeat: no-repeat, no-repeat;
  background-position: center, center bottom;
  background-size: cover, 100% auto;
}
.top-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .38;
  background: repeating-linear-gradient(-16deg, transparent 0 40px, rgba(212,99,109,.11) 40px 45px);
}
/* 下の余白は写真の高さぶん（画面幅 ÷ 3.39）。vw で確保すると
   どの画面幅でも文字が魚に乗らない。 */
.top-hero-inner {
  max-width: 1180px; margin: 0 auto; padding: 46px 16px calc(29.5vw + 24px); position: relative;
}
.top-hero-copy { min-width: 0; max-width: 44em; }
/* 魚に重なっても読めるように、文字の周囲へ地の色をにじませる */
.top-hero h1,
.top-hero-mark,
.top-hero-lead,
.top-hero .lp-trust-list {
  text-shadow: 0 0 10px var(--shari), 0 0 22px var(--shari);
}
.top-hero-mark {
  font-family: var(--mincho); font-size: 13px; letter-spacing: .3em; color: var(--akami);
  margin: 0 0 16px; display: flex; align-items: center; gap: 12px;
}
.top-hero-mark::after { content: ""; flex: 1; height: 1px; background: var(--akami); opacity: .35; }
.top-hero h1 {
  font-family: var(--mincho); font-weight: 700;
  font-size: clamp(30px, 5.6vw, 53px); line-height: 1.4; margin: 0 0 18px; letter-spacing: .05em;
  text-wrap: balance;
}
.top-hero h1 em { font-style: normal; color: var(--akami); }
.top-hero-lead {
  font-size: 17px; max-width: 36em; margin: 0 0 26px; line-height: 2.05; text-wrap: pretty;
}
/* 下層ページのヒーローに添える柵の写真。
   周囲がフラットな図版なので、四隅を地の色へ溶かして馴染ませる。 */
.lp-hero-visual { justify-self: center; }
.lp-hero-visual img {
  width: 100%; max-width: 300px; display: block;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 52%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, #000 52%, transparent 78%);
}

.top-wrap { max-width: 1180px; margin: 0 auto; padding: 34px 16px 44px; }
.top-cols { display: grid; grid-template-columns: minmax(0, 1fr) 278px; gap: 28px; align-items: start; }
.top-cols .lp-form-side { position: sticky; top: 92px; }

@media (max-width: 1000px) {
  .lp-shell { grid-template-columns: minmax(0, 1fr); }
  .lp-side, .lp-form-side { position: static; }
  .lp-side nav { flex-direction: row; flex-wrap: wrap; }
  .lp-side nav a { border-bottom: 0; border-right: 1px dotted var(--line); }
  .top-cols { grid-template-columns: minmax(0, 1fr); }
  .top-hero-inner { padding: 40px 16px 150px; }
  .lp-hero-inner.has-visual { grid-template-columns: minmax(0, 1fr); }
  .lp-hero-visual { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .header-inner { padding: 10px 12px 8px; gap: 8px; }
  .site-header::after { height: 9px; }
  .brand-logo { width: 40px; height: 40px; }
  .brand-text b { font-size: 19px; }
  .nav { width: 100%; gap: 0; }
  .nav a { font-size: 13px; padding: 7px 9px; }
  .lp-sec { padding: 20px 17px; }
  .lp-sec h2 { font-size: 19.5px; }
  .lp-lead { font-size: 16.5px; padding: 17px 18px; }
  .lp-two { grid-template-columns: 1fr; }
  .lp-btn { width: 100%; }
  .lp-hero-cta { flex-direction: column; align-items: stretch; }
  .lp-license { text-align: center; }
  /* 幅が狭いと魚が小さくなるので、下の余白を詰めて寄せる */
  .top-hero-inner { padding: 32px 16px 108px; }
  .top-hero { background-size: cover, 190% auto; }
}
