/* ====================================================================
   旅ホ連向け特別会員ページ（見本）の追加分。base.css には足さない。
   本番から写した部分は出典（テンプレート名）を添える。
   ==================================================================== */
:root { --ryo: #1B3A5C; --ryo-pale: #E8EEF5; }

/* ---- 旅ホ連専用の帯（ヘッダーの上。見本で新設） ---- */
.ryo { background: var(--ryo); color: #fff; height: 36px; padding: 0 var(--pad);
       display: flex; align-items: center; gap: 16px;
       font: 500 12px/1 "Noto Sans JP", sans-serif; letter-spacing: 1px; }
.ryo b { font-weight: 700; letter-spacing: 2px; white-space: nowrap; }
.ryo .who { margin-left: auto; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ryo .tag { border: 1px solid rgba(255,255,255,.7); border-radius: 999px;
            padding: 3px 8px; font-size: 10px; letter-spacing: 2px; }
@media (max-width: 499.98px) { .ryo { gap: 8px; } .ryo .who { display: none; } }

/* ---- 見本の入口（index） ---- */
.start { max-width: 800px; margin: 60px auto; display: flex; flex-direction: column; gap: 30px; }
.start h1 { margin: 0; font: 700 28px/1.4 "Noto Sans JP", sans-serif; letter-spacing: 3px; color: var(--ryo); }
.start p { margin: 0; font: 400 15px/2 "Noto Sans JP", sans-serif; }
.start ol { margin: 0; padding-left: 0; list-style: none; display: grid; gap: 12px; }
.start ol li { display: flex; gap: 16px; align-items: baseline; padding: 14px 18px;
               border: 2px solid #DFE3E8; border-radius: 12px; }
.start ol li b { font: 700 20px/1 "Krona One", "Noto Sans JP", sans-serif; color: var(--sea); min-width: 36px; }
.start ol li span { font: 500 15px/1.6 "Noto Sans JP", sans-serif; }
.start ol li small { display: block; font: 400 12px/1.6 "Noto Sans JP", sans-serif; color: #666; }
.start ol li a { color: var(--sea); font-size: 12px; margin-left: auto; white-space: nowrap; }
.start .btn { max-width: 320px; height: 56px; font-size: 16px; }
.start .memo { font: 400 12px/1.8 "Noto Sans JP", sans-serif; color: #666; }

/* ---- 登録（login.html の .au を写し、項目を増やした） ---- */
.au { max-width: 600px; margin: 30px auto 10px; background: #fff; border-radius: 10px;
      padding: 50px 35px 35px; display: flex; flex-direction: column; gap: 20px; }
.au > img { width: 200px; align-self: center; }
.au h1 { margin: 30px 0 0; border: 0; padding: 0; font: 700 24px/1.4 "Noto Sans JP", sans-serif; text-align: center; }
.au .lead { margin: 0 0 10px; text-align: center; font: 500 13px/1.8 "Noto Sans JP", sans-serif; color: #666; }
.au .in { display: flex; align-items: stretch; }
.au .in .ic { flex: 0 0 50px; display: flex; align-items: center; justify-content: center;
              border: 1px solid #A6A6A6; border-right: 0; border-radius: 10px 0 0 10px; }
.au .in .ic svg { width: 20px; height: 20px; fill: var(--sea); }
.au .in input, .au .in select { flex: 1 1 150px; min-width: 0; height: 50px; padding: 0 12px;
  border: 1px solid #A6A6A6; border-radius: 0 10px 10px 0; background: #fff;
  font: 500 14px/1.4 "Noto Sans JP", sans-serif; }
.au .in select { appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23333' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 12px 8px; padding-right: 32px; }
.au .grp { display: flex; flex-direction: column; gap: 8px; }
.au .grp h2 { margin: 10px 0 0; border: 0; padding: 0; font: 600 12px/1.4 "Noto Sans JP", sans-serif;
              color: var(--sea); letter-spacing: 2px; }
.au .pay { display: flex; gap: 10px; }
.au .pay label { flex: 1 1 0; display: flex; flex-direction: column; gap: 4px; padding: 12px 14px;
                 border: 2px solid #DFE3E8; border-radius: 10px; cursor: pointer; }
.au .pay label:has(input:checked) { border-color: var(--sea); background: #F2FBFF; }
.au .pay input { position: absolute; opacity: 0; pointer-events: none; }
.au .pay b { font: 600 14px/1.4 "Noto Sans JP", sans-serif; }
.au .pay small { font: 400 11px/1.6 "Noto Sans JP", sans-serif; color: #666; }
.au .agree { display: flex; gap: 4px; align-items: flex-start; font: 500 12px/1.7 "Noto Sans JP", sans-serif;
             color: #8A8A8A; cursor: pointer; }
.au .agree input { width: 20px; height: 20px; margin: 0 6px 0 0; accent-color: var(--sea); }
.au .agree a { color: #86C9F3; }
.au .go { height: 45px; background: var(--sea); border: 0; border-radius: 10px; color: #fff; cursor: pointer;
          margin-top: 10px; font: 600 14px/1.4 "Noto Sans JP", sans-serif; letter-spacing: 1px; }
.au .swap { align-self: center; margin-top: 10px; font: 500 12px/1.4 "Noto Sans JP", sans-serif; color: var(--sea); }
@media (max-width: 499.98px) { .au { margin-top: 0; padding: 0 35px 35px; } .au > img { width: 150px; } .au .pay { flex-direction: column; } }

/* ---- 入札（order_bid.html から写した分） ---- */
.hero .hero-txt { left: 10.2%; bottom: 29.4%; }
.cols { display: flex; justify-content: center; flex-wrap: wrap; }
.fish-list { width: 160px; margin-right: 20px; flex: 0 0 160px; }
.col-main  { width: 800px; max-width: 100%; flex: 0 1 800px; }
.fish-card { display: block; width: 160px; border: 3px solid var(--panel); border-radius: 15px;
             padding: 10px; text-align: center; background: #fff; margin-bottom: 8px; cursor: pointer; }
.fish-card[aria-current] { border: 5px solid var(--fish, var(--pink)); padding: 8px; }
.fish-card img { width: 130px; height: auto; display: block; margin: 0 auto; }
.fish-card .nm { font: 500 18px/1.1 "Noto Sans JP", sans-serif; margin-top: 5px; }
.fish-card .pr { display: flex; justify-content: center; align-items: baseline; gap: 5px; margin-top: 5px; }
.fish-card .pr b { font: 700 16px/1.4 "Noto Sans JP", sans-serif; }
.fish-card .pr i { font: 400 10px/1.4 "Noto Sans JP", sans-serif; font-style: normal; }
.fish-card .av { font: 400 10px/1.4 "Noto Sans JP", sans-serif; margin-top: 5px; }
.chart-box { position: relative; }
.chart-box .chart { display: block; width: 100%; height: auto; }
.chart-tabs { position: absolute; left: 12px; top: 12px; z-index: 3; display: flex; align-items: center;
  padding: 3px; gap: 3px; border-radius: 12px; border: 1px solid rgba(17,24,39,.12);
  background: rgba(255,255,255,.65); backdrop-filter: blur(4px); }
.chart-tabs a { padding: 7px 10px; border-radius: 9px; font: 400 12px/1 Arial, sans-serif;
  color: rgba(17,24,39,.9); background: rgba(17,24,39,.06); }
.chart-tabs a[aria-current] { background: rgba(17,24,39,.1); color: #111827; }
.lb { display: block; font: 500 12px/1.4 "Noto Sans JP", sans-serif; margin-bottom: 5px; white-space: nowrap; }
.lb-sub { font-size: 10px; color: #6C7A89; }
.bidbox { padding: 20px; display: flex; flex-direction: column; gap: 20px; }
.pink { background: var(--fish, var(--pink)); border-radius: 0 0 15px 15px; padding: 20px 30px 24px;
        margin: -20px -20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.pink h2 { margin: 0; font: 700 35px/1.4 "Noto Sans JP", sans-serif; border: 0; padding: 0; }
.pink .more { display: inline-flex; align-items: center; gap: 4px; color: #fff;
              font: 600 12px/1.4 "Noto Sans JP", sans-serif; margin-top: 13px; }
.pink .figs { display: flex; gap: 50px; flex-wrap: wrap; margin-top: 5px; }
.pink .figs h3 { margin: 0 0 5px; font: 600 12px/1.4 "Noto Sans JP", sans-serif; }
.pink .figs .v { display: flex; align-items: flex-end; }
.pink .figs b { font: 600 30px/1.4 "Noto Sans JP", sans-serif; }
.pink .figs i { font: 400 16px/1.4 "Noto Sans JP", sans-serif; font-style: normal; }
.bidform { display: flex; flex-direction: column; gap: 10px; }
.panel .bidform .btn { margin-top: 20px; }
.bidbox .bidform .btn { margin-top: 0; }
.f4 { display: flex; gap: 10px; flex-wrap: wrap; }
.f4 > div { flex: 1 1 183px; }
.bidbox .f4 { gap: 9px; }
.bidbox .f4 > div { flex: 0 0 183px; }
.f4 > .dt-col, .f4 > .ext-col { flex: 1 1 auto; width: auto; min-width: 0; }
.f4 > .tm-col { flex: 1 1 calc(50% - 5px); }
.f4.dt-row { align-items: center; }
.ext-pick { display: flex; gap: 20px; align-items: center; height: 45px; }
.ext-opt { display: flex; align-items: center; gap: 6px; cursor: pointer; font: 400 14px/1.4 "Noto Sans JP", sans-serif; }
.ext-opt input { appearance: none; -webkit-appearance: none; width: 18px; height: 18px; margin: 0; flex: 0 0 18px;
  border: 2px solid var(--sea); border-radius: 50%; background: #fff; cursor: pointer; display: grid; place-content: center; }
.ext-opt input::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--sea); transform: scale(0); }
.ext-opt input:checked::before { transform: scale(1); }
.btn.gray:not(:disabled) { background: #F6F668; color: #000; }
.btn.gray:disabled { background: #E6E6E6; color: #000; letter-spacing: 3px; }
.resv, .col-main .panel { margin-left: 20px; margin-right: 20px; }
.resv .c { flex: 1 1 0; min-width: 0; }
.resv .x { flex: 0 0 30px; text-align: center; }
.resv .bd-toggle { flex: 0 0 30px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: none; border: 0; padding: 0; cursor: pointer; }
.resv .bd-toggle svg { width: 14px; height: 14px; stroke: var(--sea); fill: none; stroke-width: 2; }
.resv .bd-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.resv .rows .bd-row:not(:first-child) { border-top: 1px solid var(--sea); }
.resv .bd-panel { margin: 10px 0 20px 10px; padding: 10px 20px 14px; background: #F7F7F7; border-radius: 10px;
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.resv .bd-panel[hidden] { display: none; }
.resv .bd-panel .cell { flex: 1 1 0; min-width: 120px; }
.resv .bd-panel .k { display: block; font: 600 11px/15px "Noto Sans JP", sans-serif; color: var(--sea); margin: 0 0 1px; }
.resv .bd-panel .v { display: block; font: 400 14px/20px "Noto Sans JP", sans-serif; }
.resv .bd-panel .del { background: none; border: 0; cursor: pointer; padding: 0; line-height: 0; }
.resv .empty { padding: 30px 0; text-align: center; color: #666; font-size: 13px; }
@media (max-width: 979.98px) {
  .cols { display: block; }
  .fish-scroll { position: relative; margin: 0 0 20px; }
  .fish-list { width: auto; margin: 0; display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
  .fish-list::-webkit-scrollbar { display: none; }
  .fish-card { flex: 0 0 160px; margin-bottom: 0; padding: 0 10px 10px; }
  .fish-card[aria-current] { padding: 0 8px 8px; }
  .fish-card img { margin-top: 0; }
  .fish-card .nm { line-height: 18px; margin-top: 0; }
  .col-main { width: auto; }
}
@media (max-width: 499.98px) {
  .resv, .col-main .panel { margin-left: 10px; margin-right: 10px; }
  .hero { height: 192px; }
  .hero picture img { height: 192px; object-fit: cover; }
  .pink { padding: 20px; border-radius: 0; margin: -20px -20px 0; }
  .pink .figs { flex-direction: column; gap: 40px; }
  .chart-box { margin-left: -10px; margin-right: -10px; }
  .f4 > div { flex: 1 1 calc(50% - 5px); }
  .f4 > .dt-col { flex: 1 1 calc(50% - 5px); width: auto; }
  .f4 > .ext-col { flex: 1 1 100%; }
  .lb { white-space: normal; }
  .bidbox { padding: 20px 10px; }
  .bidbox .f4 { gap: 10px; }
  .bidbox .f4 > div { flex: 0 0 calc(50% - 5px); }
  .bidbox .f4.tm-row > .tm-col, .panel .f4.tm-row > .tm-col { flex: 1 1 100%; }
  .resv .list-head span:nth-child(3), .resv .rows .bd-row .c:nth-child(3) { display: none; }
}

/* ---- 入札した魚の処理（新規・2026-09-02 質問形式に作り替え） ----
   左＝図＋答えの積み上げ、右＝いまの質問だけ。 */
.pc-wrap { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.pc-lead { margin: -30px 0 0; text-align: center; font: 500 14px/2 "Noto Sans JP", sans-serif; color: #444; }
#pc-list { display: flex; flex-direction: column; gap: 24px; }
.pc-card { border: 2px solid #DFE3E8; border-radius: 16px; background: #fff; overflow: hidden; }
.pc-head { background: var(--fish, var(--pink)); padding: 10px 20px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pc-head h2 { margin: 0; border: 0; padding: 0; font: 700 18px/1.4 "Noto Sans JP", sans-serif; }
.pc-head .sz { font: 500 13px/1.4 "Noto Sans JP", sans-serif; }
.pc-head .qty { font: 700 15px/1.4 "Noto Sans JP", sans-serif; }
.pc-head .each { margin-left: auto; display: flex; gap: 4px; background: rgba(255,255,255,.55); border-radius: 999px; padding: 3px; }
.pc-head .each button { border: 0; background: transparent; border-radius: 999px; padding: 5px 10px;
  font: 600 11px/1 "Noto Sans JP", sans-serif; cursor: pointer; color: #333; }
.pc-head .each button[aria-current] { background: #fff; color: var(--fg); }
.pc-unit { padding: 14px 20px 18px; }
.pc-unit + .pc-unit { border-top: 2px dashed #DFE3E8; }
.pc-unit > h3 { margin: 0 0 8px; font: 600 13px/1.4 "Noto Sans JP", sans-serif; color: var(--sea); letter-spacing: 2px; }
.pc-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.pc-right { display: flex; flex-direction: column; gap: 6px; }
.pc-fig { background: #F7FBFD; border-radius: 12px; padding: 8px 12px; }
.pc-fig svg { display: block; width: 100%; height: auto; }
.pc-fig svg g[id^="pc-"] { transition: opacity .25s; }
.pc-fig svg g.off { opacity: .3; }
.pc-fig svg g.hide { display: none; }
/* 色は fish.svg の持ち色（#b4dfec／#2ea7e0）のまま使う（2026-09-02 依頼者指示） */
.pc-fig svg g.off { filter: grayscale(1); }
.pc-fig svg { max-height: 360px; margin: 0 auto; }
/* いまの質問が指す部位: 薄くなる方向に3回点滅してから、元の色で止まる
   （濃くしない。2026-09-02 依頼者指示） */
@keyframes pc-blink { 0%, 100% { opacity: 1; } 50% { opacity: .15; } }
.pc-fig svg g.focus { opacity: 1; filter: none; animation: pc-blink .5s ease-in-out 3; }
/* 答えの積み上げ */
.pc-stack { display: flex; flex-direction: column; gap: 4px; }
.pc-stack:empty { display: none; }
.pc-stack .st { display: flex; align-items: center; gap: 8px; width: 100%; text-align: left; cursor: pointer;
  border: 1px solid #DFE3E8; border-radius: 8px; background: #fff; padding: 6px 10px; font-family: inherit; }
.pc-stack .st:hover { border-color: var(--sea); }
.pc-stack .st.cur { border-color: var(--sea); background: #F2FBFF; border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
.pc-stack .pc-q { margin: -4px 0 6px; border-top-left-radius: 0; border-top-right-radius: 0; }
.pc-stack .st .l { flex: 0 0 64px; font: 600 10px/1.3 "Noto Sans JP", sans-serif; color: #888; letter-spacing: 1px; }
.pc-stack .st .v { flex: 1 1 0; font: 600 13px/1.4 "Noto Sans JP", sans-serif; }
.pc-stack .st .y { flex: 0 0 auto; font: 500 11px/1.4 "Noto Sans JP", sans-serif; color: var(--sea); }
/* 質問コーナー */
.pc-q { background: var(--ryo-pale); border-radius: 12px; padding: 16px 18px; display: flex; flex-direction: column; gap: 12px; min-height: 180px; }
.pc-q .q-title { font: 700 16px/1.4 "Noto Sans JP", sans-serif; letter-spacing: 1px; display: flex; flex-direction: column; gap: 2px; }
.pc-q .q-title small { font: 400 11px/1.5 "Noto Sans JP", sans-serif; color: #666; letter-spacing: 0; }
.pc-q .q-title.q-done { color: var(--ryo); }
.pc-q .q-keep { align-self: flex-start; height: 30px; padding: 0 12px; border: 1px solid var(--sea); border-radius: 999px;
  background: #fff; color: var(--sea); cursor: pointer; font: 600 11px/1 "Noto Sans JP", sans-serif; margin-top: -4px; }
.pc-q .q-opts { display: flex; flex-wrap: wrap; gap: 8px; }
.pc-q .q-opts label { position: relative; display: inline-flex; flex-direction: column; gap: 1px; padding: 8px 12px; min-width: 110px;
  border: 2px solid #fff; border-radius: 10px; cursor: pointer; background: #fff; }
.pc-q .q-opts label:hover { border-color: #B6E3FF; }
.pc-q .q-opts label:has(input:checked) { border-color: var(--sea); background: #F2FBFF; }
.pc-q .q-opts input { position: absolute; opacity: 0; pointer-events: none; }
.pc-q .q-opts b { font: 600 14px/1.4 "Noto Sans JP", sans-serif; }
.pc-q .q-opts small { font: 400 11px/1.4 "Noto Sans JP", sans-serif; color: #666; }
.pc-q .q-opts .yen { font: 500 11px/1.4 "Noto Sans JP", sans-serif; color: var(--sea); min-height: 1.4em; }
.pc-q .q-inline { display: flex; align-items: center; gap: 8px; font: 400 13px/1.4 "Noto Sans JP", sans-serif; }
.pc-q .q-inline[hidden] { display: none; }
.pc-q .q-inline .q-next { height: 38px; padding: 0 16px; border: 0; border-radius: 10px; background: var(--sea); color: #fff; cursor: pointer; font: 600 13px/1 "Noto Sans JP", sans-serif; }
.pc-q .q-inline input { width: 80px; height: 38px; border: 2px solid var(--sea); border-radius: 10px; padding: 0 10px; font: 400 16px/1.4 "Noto Sans JP", sans-serif; }
.pc-q .q-text { margin: 0; font: 500 13px/1.8 "Noto Sans JP", sans-serif; }
.pc-q .q-fee { font: 500 13px/1.4 "Noto Sans JP", sans-serif; }
.pc-q .q-fee b { font-size: 18px; margin-left: 4px; }
.pc-q .q-fee small { color: #666; margin-left: 6px; }
.pc-q .q-memo label { display: block; font: 600 11px/1.4 "Noto Sans JP", sans-serif; color: #666; margin-bottom: 4px; }
.pc-q .q-memo textarea { width: 100%; min-height: 56px; border: 2px solid #fff; border-radius: 10px; padding: 8px 10px;
  font: 400 13px/1.6 "Noto Sans JP", sans-serif; resize: vertical; }
.pc-q .q-hint { margin: 0; font: 400 11px/1.5 "Noto Sans JP", sans-serif; color: #888; }
.pc-total { border-top: 2px solid var(--sea); border-bottom: 2px solid var(--sea); padding: 6px 0; }
.pc-total .r { display: flex; gap: 20px; padding: 8px 0; }
.pc-total .r > :first-child { flex: 1 1 0; font: 600 14px/1.4 "Noto Sans JP", sans-serif; color: var(--sea); }
.pc-total .r > :last-child { text-align: right; font: 400 14px/1.4 "Noto Sans JP", sans-serif; }
.pc-total .r.big > :last-child { font-weight: 600; font-size: 18px; }
.pc-nav { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.pc-nav .btn { max-width: 500px; height: 56px; font-size: 16px; }
.pc-nav .back { font: 600 13px/1.4 "Noto Sans JP", sans-serif; letter-spacing: 2px; }
.pc-warn { color: var(--no); font: 500 12px/1.6 "Noto Sans JP", sans-serif; text-align: center; margin: 0; }
@media (min-width: 850px) {
  .pc-grid { grid-template-columns: 260px 1fr; align-items: start; }
  .pc-fig { position: sticky; top: 10px; }
}
@media (max-width: 499.98px) {
  .pc-head { padding: 10px 12px; } .pc-unit { padding: 12px 10px 16px; }
  .pc-q .q-opts label { min-width: calc(50% - 4px); }
}

/* ---- 注文確認（order_confirm.html から写した分） ---- */
.cf { --pale: #B6E3FF; --gray: #8A8A8A; --link: #86C9F3;
      max-width: 900px; margin: 50px auto 0; padding: 0 0 50px;
      display: flex; flex-direction: column; gap: 50px; align-items: center; }
.cf-lead { margin: 0; text-align: center; color: var(--sea); font: 600 16px/1.4 "Noto Sans JP", sans-serif; }
.cf-flow { display: flex; flex-direction: column; gap: 50px; align-items: center; width: 100%; }
.cf-note { margin: 0; width: 600px; max-width: 100%; text-align: left; font: 500 15px/2 "Noto Sans JP", sans-serif; letter-spacing: 2px; }
.cf-title { text-align: center; margin-top: 30px; }
.cf-title .logo { display: block; width: 500px; max-width: 100%; height: 49px; object-fit: contain; margin: 0 auto 10px; }
.cf-title .s { display: block; font: 500 28px/1.4 "Noto Sans JP", sans-serif; letter-spacing: 8px; }
.cf-title .l { display: block; font: 500 38px/1.4 "Noto Sans JP", sans-serif; letter-spacing: 8px; }
.cf-h { display: flex; align-items: center; gap: 30px; margin: 0; border: 0; padding: 0;
        font: 500 30px/1.4 "Noto Sans JP", sans-serif; letter-spacing: 10px; }
.cf-h::before { content: ""; width: 25px; height: 25px; border-radius: 50%; background: var(--pale); flex: 0 0 25px; }
.cf-cards { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.cf-card { width: 240px; height: 231px; border: 5px solid var(--sea); border-radius: 20px; display: flex;
           flex-direction: column; gap: 20px; align-items: center; justify-content: center; text-align: center; }
.cf-card span { font: 700 18px/1.5 "Noto Sans JP", sans-serif; letter-spacing: 5px; white-space: pre-line; }
.cf-steps { display: flex; flex-direction: column; gap: 20px; width: 100%; max-width: 500px; }
.cf-steps .cf-h { margin: 50px 0; }
.cf-step { display: flex; gap: 20px; }
.cf-step .no { display: flex; flex-direction: column; gap: 8px; align-items: center; flex: 0 0 auto; }
.cf-step .no i { display: block; width: 3px; height: 50px; background: var(--pale); }
.cf-step .no b { font: 800 32px/1.4 "Noto Sans JP", sans-serif; margin: -5px 0 5px; }
.cf-step .tx { display: flex; flex-direction: column; gap: 8px; flex: 1 1 0; min-width: 0; }
.cf-step .tx b { font: 500 24px/1.4 "Noto Sans JP", sans-serif; letter-spacing: 5px; }
.cf-step .tx span { font: 500 15px/2 "Noto Sans JP", sans-serif; letter-spacing: 2px; }
.cf-amount { width: 100%; max-width: 800px; border: 3px solid var(--pale); border-radius: 40px; padding: 50px;
             display: flex; flex-direction: column; }
.cf-amount > div + div { margin-top: 60px; }
.cf-amount h2 + .v { margin-top: 20px; }
.cf-amount h2 { margin: 0; border: 0; padding: 0; text-align: center; color: var(--sea);
                font: 700 18px/1.4 "Noto Sans JP", sans-serif; letter-spacing: 2px; }
.cf-amount .v { margin: 0; font: 400 40px/1.4 "Noto Sans JP", sans-serif; letter-spacing: 3px; text-align: center; }
.cf-when .v { font-size: 24px; }
.cf-when .note { margin: 12px 0 0; text-align: center; font: 400 12px/1.8 "Noto Sans JP", sans-serif; color: #666; }
.cf-agree { display: flex; gap: 4px; align-items: flex-start; margin-top: 60px; justify-content: center; position: relative;
            font: 500 12px/17px "Noto Sans JP", sans-serif; color: var(--gray); cursor: pointer; }
.cf-agree .sentence { display: block; width: 300px; }
.cf-agree input { position: absolute; opacity: 0; pointer-events: none; }
.cf-agree .cb { flex: 0 0 20px; width: 20px; height: 20px; }
.cf-agree .cb rect { fill: none; stroke: currentColor; stroke-width: 1.8; }
.cf-agree .cb .tick { fill: none; stroke: currentColor; stroke-width: 2.2; opacity: 0; }
.cf-agree input:checked + .cb .tick { opacity: 1; }
.cf-agree a { color: var(--link); }
.cf-buttons { width: 100%; max-width: 800px; display: flex; flex-direction: column; gap: 50px; align-items: center; }
.cf-buttons .btn { height: 64px; border-radius: 10px; color: var(--fg); font: 600 24px/1.4 "Noto Sans JP", sans-serif;
                   letter-spacing: 3px; background: #E6E6E6; pointer-events: none; }
.cf:has(.cf-agree input:checked) .cf-buttons .btn { background: #F6F668; pointer-events: auto; }
.cf-back { display: flex; align-items: center; justify-content: center; width: 192px; height: 44px; color: var(--fg);
           font: 600 14px/1.4 "Noto Sans JP", sans-serif; letter-spacing: 2px; }
.cf-fish { width: 250px; max-width: 250px; }
/* 見本で足した: 支払い方法・加工の指定・お届け先 */
.cf-box { width: 100%; max-width: 800px; border: 3px solid var(--pale); border-radius: 40px; padding: 40px 50px;
          display: flex; flex-direction: column; gap: 20px; }
.cf-box h2 { margin: 0; border: 0; padding: 0; text-align: center; color: var(--sea);
             font: 700 18px/1.4 "Noto Sans JP", sans-serif; letter-spacing: 2px; }
.cf-pay { display: flex; gap: 14px; }
.cf-pay label { flex: 1 1 0; display: flex; flex-direction: column; gap: 4px; padding: 16px 18px; position: relative;
                border: 2px solid #DFE3E8; border-radius: 14px; cursor: pointer; }
.cf-pay label:has(input:checked) { border-color: var(--sea); background: #F2FBFF; }
.cf-pay input { position: absolute; opacity: 0; pointer-events: none; }
.cf-pay b { font: 600 16px/1.4 "Noto Sans JP", sans-serif; letter-spacing: 1px; }
.cf-pay small { font: 400 12px/1.7 "Noto Sans JP", sans-serif; color: #666; }
.cf-list { display: flex; flex-direction: column; gap: 10px; }
.cf-list .row { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-top: 1px solid var(--line); }
.cf-list .row:first-child { border-top: 0; }
.cf-list .dot { margin-top: 5px; }
.cf-list .nm { flex: 0 0 200px; font: 600 14px/1.6 "Noto Sans JP", sans-serif; }
.cf-list .nm small { display: block; font: 400 12px/1.5 "Noto Sans JP", sans-serif; color: #666; }
.cf-list .tx { flex: 1 1 0; font: 400 14px/1.7 "Noto Sans JP", sans-serif; }
.cf-list .yen { flex: 0 0 auto; font: 600 14px/1.7 "Noto Sans JP", sans-serif; }
.cf-addr { font: 400 15px/1.9 "Noto Sans JP", sans-serif; text-align: center; }
.cf-pop { position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 50; display: flex; flex-direction: column;
          align-items: center; justify-content: flex-start; padding: 50px 20px; overflow: auto; }
.cf-pop[hidden] { display: none; }
.cf-pop .box { background: #fff; border-radius: 10px; padding: 20px; width: 100%; max-width: 400px; }
.cf-pop .box .a { margin: 0 0 10px; font: 600 16px/1.4 "Noto Sans JP", sans-serif; color: var(--sea); }
.cf-pop .box .b { margin: 0 0 20px; font-size: 12px; line-height: 1.8; white-space: pre-line; }
.cf-pop .stripe { border: 2px dashed #C8CFD8; border-radius: 10px; padding: 30px 20px; text-align: center;
                  font: 500 13px/1.8 "Noto Sans JP", sans-serif; color: #666; margin-bottom: 20px; }
.cf-pop .cancel { margin-top: 30px; background: none; border: 0; width: auto; font: 600 16px/1.4 "Noto Sans JP", sans-serif;
                  color: #fff; cursor: pointer; height: auto; letter-spacing: normal; }
@media (max-width: 499.98px) {
  .cf-title .logo { width: calc(100% - 40px); max-width: 350px; }
  .cf-title .s { font-size: 18px; letter-spacing: 5px; }
  .cf-title .l { font-size: 24px; letter-spacing: 5px; }
  .cf-h { font-size: 20px; letter-spacing: 5px; gap: 15px; }
  .cf-h::before { width: 18px; height: 18px; flex: 0 0 18px; }
  .cf-card span { font-size: 16px; }
  .cf-step .no b { font-size: 24px; }
  .cf-step .tx b { font-size: 18px; letter-spacing: 3px; }
  .cf-step .tx span { font-size: 13px; }
  .cf-note { font-size: 13px; }
  .cf-amount, .cf-box { padding: 30px 20px; border-radius: 24px; }
  .cf-amount > div + div { margin-top: 40px; }
  .cf-amount h2 { font-size: 15px; }
  .cf-amount .v { font-size: 28px; }
  .cf-buttons .btn { height: 56px; font-size: 18px; }
  .cf-pay { flex-direction: column; }
  .cf-list .row { flex-wrap: wrap; } .cf-list .nm { flex-basis: 100%; }
}

/* ---- 完了 ---- */
.done { max-width: 700px; margin: 80px auto; text-align: center; display: flex; flex-direction: column; gap: 30px; align-items: center; }
.done h1 { margin: 0; font: 700 28px/1.4 "Noto Sans JP", sans-serif; letter-spacing: 4px; color: var(--sea); }
.done p { margin: 0; font: 500 15px/2 "Noto Sans JP", sans-serif; }
.done .btn { max-width: 320px; }
