/* 顧客向け予約サイト — スマホファースト・プレミアムトーン */
body.customer { background: #fbfaf7; }

/* ヘッダー */
.c-head { position: sticky; top: 0; z-index: 100; background: rgba(10,22,40,.92); backdrop-filter: blur(10px); color: #fff; }
.c-head-inner { display: flex; align-items: center; justify-content: space-between; height: 56px; max-width: 1080px; margin: 0 auto; padding: 0 16px; }
.c-head .brand { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14px; color: #fff; }
.c-head .brand .logo { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg, var(--gold), #a8853e); display: grid; place-items: center; font-size: 14px; }
.c-head .brand small { display: block; font-size: 9.5px; color: var(--gold-light); letter-spacing: .14em; font-weight: 600; }
.c-head nav { display: flex; gap: 4px; align-items: center; }
.c-head nav a { color: #d6dde8; font-size: 12.5px; font-weight: 700; padding: 7px 11px; border-radius: 8px; }
.c-head nav a:hover, .c-head nav a.active { color: #fff; background: rgba(255,255,255,.1); }
.c-head nav a.cta { background: var(--gold); color: var(--navy-900); }

/* 言語スイッチャー */
.lang-sw { display: inline-flex; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); border-radius: 99px; padding: 2px; gap: 2px; }
.lang-sw button { border: 0; background: transparent; color: #c4cedd; font-size: 11px; font-weight: 800; padding: 5px 10px; border-radius: 99px; cursor: pointer; font-family: inherit; white-space: nowrap; }
.lang-sw button.on { background: var(--gold); color: var(--navy-900); }

/* ヒーロー（3枚フレーム＋ヘリ CSSアニメーションバナー） */
.hero { background: linear-gradient(180deg, #fff 0%, #fbfaf7 100%); position: relative; overflow: hidden; }
.hero-inner { max-width: 1160px; margin: 0 auto; padding: 48px 20px 40px; position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 28px; align-items: center; }
.hero-copy { animation: hero-copy-in .9s cubic-bezier(.22,.75,.3,1) both; }
.hero .eyebrow { color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .22em; }
.hero h1 { font-size: clamp(26px, 4.2vw, 44px); font-weight: 800; line-height: 1.3; margin: 12px 0 14px; letter-spacing: .01em; color: var(--navy-900); }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p.lead { color: var(--ink-2); font-size: 14.5px; max-width: 520px; }
.hero .hero-cta { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.btn-hero-plans { background: #aab3bf; color: #fff; border: 1px solid #aab3bf; }
.btn-hero-plans:hover { background: #97a1af; border-color: #97a1af; color: #fff; }
.hero-stats { display: flex; gap: 0; margin-top: 36px; border-top: 1px solid var(--line); padding-top: 20px; max-width: 560px; }
.hero-stats div { flex: 1; }
.hero-stats .v { font-size: 22px; font-weight: 800; color: var(--gold); }
.hero-stats .k { font-size: 11px; color: var(--ink-3); font-weight: 600; }

/* 右カラム：スキューフレーム3枚＋ヘリ */
.hero-visual { position: relative; width: 100%; max-width: 600px; aspect-ratio: 608 / 820; justify-self: end; }
.hv-frame { position: absolute; width: 31.5%; height: auto; opacity: 0; filter: drop-shadow(0 20px 38px rgba(10,22,40,.28)); will-change: transform, opacity; }
.hv-f1 { left: 0;     top: 6%;  animation: hv-frame-down 1.1s cubic-bezier(.22,.75,.3,1) .15s forwards; }
.hv-f2 { left: 34.25%; top: 12%; animation: hv-frame-up   1.1s cubic-bezier(.22,.75,.3,1) .40s forwards; }
.hv-f3 { left: 68.5%;  top: 0;   animation: hv-frame-down 1.1s cubic-bezier(.22,.75,.3,1) .65s forwards; }
.hv-heli { position: absolute; left: -9%; top: 23%; width: 90%; opacity: 0; animation: hv-heli-in 1.4s cubic-bezier(.16,.8,.3,1) .95s forwards; will-change: transform, opacity; }
.hv-heli img { display: block; width: 100%; height: auto; filter: drop-shadow(0 30px 34px rgba(10,22,40,.3)); animation: hv-heli-hover 4.5s ease-in-out 2.35s infinite; }

/* フレーム：上下からフェードイン */
@keyframes hv-frame-down { from { opacity: 0; transform: translateY(-64px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hv-frame-up   { from { opacity: 0; transform: translateY(64px); }  to { opacity: 1; transform: translateY(0); } }
/* ヘリ：下から上昇して登場 → ゆるやかにホバリング */
@keyframes hv-heli-in { from { opacity: 0; transform: translateY(120px) scale(.94); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes hv-heli-hover { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-14px) rotate(-1.4deg); } }
@keyframes hero-copy-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 8px; }
  .hero-visual { justify-self: center; max-width: 420px; margin-top: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy, .hv-frame, .hv-heli, .hv-heli img { animation: none; opacity: 1; }
}

/* セクション */
.sec { max-width: 1080px; margin: 0 auto; padding: 52px 20px 8px; }
.sec .sec-eyebrow { color: var(--gold); font-size: 11px; font-weight: 800; letter-spacing: .2em; }
.sec h2 { font-size: clamp(20px, 4vw, 27px); font-weight: 800; margin: 6px 0 8px; }
.sec p.sec-lead { color: var(--ink-2); font-size: 13.5px; max-width: 640px; }

/* プランカード */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 26px; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px 24px; box-shadow: var(--shadow-1); position: relative; display: flex; flex-direction: column; }
.plan.featured { border: 2px solid var(--gold); box-shadow: 0 8px 30px rgba(201,169,97,.22); }
.plan .tag { position: absolute; top: -11px; left: 22px; background: var(--gold); color: var(--navy-900); font-size: 10.5px; font-weight: 800; padding: 3px 12px; border-radius: 99px; letter-spacing: .06em; }
.plan h3 { font-size: 16px; font-weight: 800; }
.plan .desc { font-size: 12.5px; color: var(--ink-2); margin-top: 4px; min-height: 38px; }
.plan .price { margin: 14px 0 4px; }
.plan .price b { font-size: 30px; font-weight: 800; color: var(--navy-800); letter-spacing: -.02em; }
.plan .price span { font-size: 12px; color: var(--ink-3); font-weight: 600; }
.plan ul { list-style: none; margin: 12px 0 18px; flex: 1; }
.plan li { font-size: 12.5px; color: var(--ink-2); padding: 5px 0 5px 22px; position: relative; border-bottom: 1px dashed #eef1f5; }
.plan li::before { content: "✓"; position: absolute; left: 2px; color: var(--gold); font-weight: 800; }

/* ルート図 */
.route-card { background: var(--navy-900); border-radius: 18px; color: #fff; padding: 30px 26px; margin-top: 26px; }
.route-line { display: flex; align-items: center; gap: 10px; }
.route-pt { text-align: center; }
.route-pt .nm { font-weight: 800; font-size: 15px; }
.route-pt .en { font-size: 10px; color: #93a3b8; letter-spacing: .1em; }
.route-track { flex: 1; position: relative; height: 2px; background: linear-gradient(90deg, var(--gold), #6b7f9e); border-radius: 2px; }
.route-track .heli { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-size: 18px; }
.route-track .min { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); font-size: 11px; color: var(--gold-light); font-weight: 700; white-space: nowrap; }
.route-notes { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-top: 30px; }
.route-notes div { background: rgba(255,255,255,.06); border-radius: 12px; padding: 12px 14px; font-size: 11.5px; color: #c4cedd; }
.route-notes b { display: block; color: #fff; font-size: 12.5px; margin-bottom: 2px; }

/* 情報グリッド・FAQ */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: 24px; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.info-card .ico { font-size: 22px; }
.info-card h4 { font-size: 13.5px; font-weight: 800; margin: 8px 0 4px; }
.info-card p { font-size: 12px; color: var(--ink-2); }
details.faq { background: #fff; border: 1px solid var(--line); border-radius: 12px; margin-top: 10px; overflow: hidden; }
details.faq summary { padding: 14px 18px; font-size: 13.5px; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details.faq summary::after { content: "+"; color: var(--gold); font-size: 18px; font-weight: 800; }
details.faq[open] summary::after { content: "−"; }
details.faq .a { padding: 0 18px 14px; font-size: 12.5px; color: var(--ink-2); }

/* 日付から選ぶ（クイック検索） */
.bydate-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-2); padding: 22px; margin-top: 24px; }
.bydate-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr auto; gap: 12px; align-items: end; }
.bydate-grid .btn { height: 46px; }
.date-strip { display: flex; gap: 8px; overflow-x: auto; padding: 4px 2px 8px; margin-top: 12px; }
.date-chip { flex-shrink: 0; border: 2px solid var(--line); background: #fff; border-radius: 12px; padding: 8px 14px; text-align: center; cursor: pointer; transition: .15s; min-width: 86px; }
.date-chip:hover { border-color: var(--ink-3); }
.date-chip.on { border-color: var(--gold); background: #fdfaf3; box-shadow: 0 0 0 3px rgba(201,169,97,.16); }
.date-chip .dw { font-size: 10.5px; font-weight: 700; color: var(--ink-3); }
.date-chip .dd { font-size: 16px; font-weight: 800; }
.date-chip .av { font-size: 10px; font-weight: 800; margin-top: 2px; }
.date-chip .av.ok { color: var(--green); } .date-chip .av.few { color: var(--amber); } .date-chip .av.full { color: var(--red); }
.preview-times { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.time-pill { border: 1.5px solid var(--line); background: #fff; border-radius: 99px; padding: 7px 14px; font-size: 12.5px; font-weight: 800; cursor: pointer; transition: .15s; }
.time-pill:hover { border-color: var(--navy-600); color: var(--navy-800); }
.time-pill.full { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.time-pill .st { font-size: 10px; font-weight: 700; margin-left: 5px; }
.time-pill .st.ok { color: var(--green); } .time-pill .st.few { color: var(--amber); }
@media (max-width: 760px) { .bydate-grid { grid-template-columns: 1fr 1fr; } .bydate-grid .btn { grid-column: 1 / -1; } }

/* CTAバンド */
.cta-band { background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); border-radius: 20px; margin: 48px auto 0; max-width: 1040px; padding: 38px 26px; text-align: center; color: #fff; }
.cta-band h2 { font-size: clamp(18px, 4vw, 24px); font-weight: 800; }
.cta-band p { color: #c4cedd; font-size: 13px; margin: 8px 0 18px; }

/* 予約フロー */
.book-wrap { max-width: 720px; margin: 0 auto; padding: 18px 14px 80px; }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 12px; }
.section-head h2 { min-width: 0; }
.field-label { display: flex !important; align-items: center; justify-content: space-between; gap: 8px; }
.field-label > span { min-width: 0; }
.booking-card { overflow: visible; }
.plan-grid { align-items: stretch; }
.choice-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.select-mark { width: 26px; height: 26px; border-radius: 50%; display: inline-grid; place-items: center; flex: none; color: var(--gold); background: #fff8e5; border: 1px solid rgba(201,169,97,.35); }
.select-mark .ic { font-size: 15px; }
.state-chips { display: flex; gap: 7px; flex-wrap: wrap; }
.state-chips span { display: inline-flex; align-items: center; gap: 5px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink-2); padding: 4px 9px; font-size: 11px; font-weight: 800; }
.state-chips .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-4); }
.state-chips .dot.ready { background: var(--green); }
.state-chips .dot.selected { background: var(--gold); }
.state-chips .dot.disabled { background: var(--ink-4); }
.booking-actions { position: sticky; bottom: 12px; z-index: 70; margin-top: 20px; padding: 10px; border: 1px solid rgba(226,232,240,.86); border-radius: 16px; background: rgba(255,255,255,.94); box-shadow: 0 12px 32px rgba(10,22,40,.16); backdrop-filter: blur(10px); }
.booking-actions .flex { align-items: stretch; }
.booking-actions .action-hint { margin-top: 7px; text-align: center; font-size: 11.5px; color: var(--ink-3); line-height: 1.45; }
.cal-open { display: inline-flex; align-items: center; gap: 8px; }
.flight-list { display: flex; flex-direction: column; gap: 9px; margin-top: 10px; }
.flight-list[aria-busy="true"] { opacity: .72; cursor: progress; }
.flight-opt { display: flex; align-items: center; gap: 12px; background: #fff; border: 2px solid var(--line); border-radius: 14px; padding: 13px 16px; cursor: pointer; transition: .15s; outline: none; }
.flight-opt:hover { border-color: var(--ink-3); }
.flight-opt:focus-visible { box-shadow: var(--focus); }
.flight-opt.ready:hover { border-color: var(--navy-600); }
.flight-opt.on { border-color: var(--gold); background: #fdfaf3; box-shadow: 0 0 0 3px rgba(201,169,97,.16); }
.flight-opt.off { opacity: .5; cursor: not-allowed; }
.flight-opt.off .select-mark { color: var(--ink-4); background: #eef1f5; border-color: #d8dee8; }
.flight-opt .tm { font-size: 17px; font-weight: 800; min-width: 56px; }
.flight-opt .inf { flex: 1; font-size: 11.5px; color: var(--ink-2); }
.flight-opt .seats { font-size: 11px; font-weight: 700; }
.hold-timer { position: sticky; top: 56px; z-index: 90; background: var(--navy-900); color: #fff; border-radius: 12px; padding: 10px 16px; display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; margin-bottom: 14px; box-shadow: var(--shadow-2); }
.hold-timer b { color: var(--gold); font-size: 15px; font-variant-numeric: tabular-nums; }
.pax-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px; margin-bottom: 12px; }
.pax-card h4 { font-size: 13px; font-weight: 800; color: var(--navy-800); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.pax-card h4 .no { background: var(--navy-800); color: #fff; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 11px; }
.sum-row { display: flex; justify-content: space-between; font-size: 13px; padding: 7px 0; border-bottom: 1px dashed #eceff4; }
.sum-row.total { border-bottom: 0; padding-top: 12px; font-size: 15px; font-weight: 800; }
.sum-row.total .v { font-size: 20px; color: var(--navy-800); }
.pay-card { background: linear-gradient(135deg, #182c4c, #0f2240); border-radius: 16px; color: #fff; padding: 20px; margin: 14px 0; }
.pay-card .row { display: flex; gap: 10px; }
.pay-card input { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; border-radius: 10px; padding: 11px 13px; font-size: 14px; width: 100%; font-family: inherit; margin-top: 8px; }
.pay-card input::placeholder { color: #8fa0b8; }
.pay-card input:focus { outline: none; border-color: var(--gold); }
.done-hero { text-align: center; padding: 30px 16px 10px; }
.done-hero .mark { width: 64px; height: 64px; border-radius: 50%; background: var(--green); color: #fff; font-size: 30px; display: grid; place-items: center; margin: 0 auto 14px; animation: pop .4s ease; }
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 70% { transform: scale(1.12); } 100% { transform: scale(1); opacity: 1; } }
.ticket { background: #fff; border-radius: 18px; box-shadow: var(--shadow-2); overflow: hidden; margin-top: 18px; }
.ticket .t-head { background: var(--navy-900); color: #fff; padding: 14px 20px; display: flex; justify-content: space-between; align-items: center; }
.ticket .t-head .lbl { font-size: 10px; letter-spacing: .18em; color: var(--gold-light); font-weight: 700; }
.ticket .t-body { padding: 20px; display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.ticket .t-info { flex: 1; min-width: 200px; }
.ticket .t-route { font-size: 18px; font-weight: 800; }
.ticket dl { display: grid; grid-template-columns: auto 1fr; gap: 3px 14px; font-size: 12px; margin-top: 10px; }
.ticket dt { color: var(--ink-3); font-weight: 600; }
.ticket dd { font-weight: 700; }
.ticket .t-qr { text-align: center; }
.ticket .t-qr .cap { font-size: 10px; color: var(--ink-3); margin-top: 5px; }

/* チャットFAB＋パネル */
.chat-fab { position: fixed; right: 18px; bottom: 18px; z-index: 300; width: 56px; height: 56px; border-radius: 50%; border: 0; background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); color: #fff; font-size: 22px; cursor: pointer; box-shadow: 0 8px 24px rgba(10,22,40,.4); transition: .2s; }
.chat-fab:hover { transform: scale(1.06); }
.chat-fab .dot { position: absolute; top: 2px; right: 2px; width: 14px; height: 14px; background: var(--red); border-radius: 50%; border: 2px solid #fff; }
.chat-panel { position: fixed; right: 14px; bottom: 84px; z-index: 301; width: min(380px, calc(100vw - 28px)); height: min(540px, calc(100vh - 120px)); background: #fff; border-radius: 18px; box-shadow: 0 16px 48px rgba(10,22,40,.35); display: flex; flex-direction: column; overflow: hidden; animation: toast-in .22s ease; }
.chat-panel .ch-head { background: var(--navy-900); color: #fff; padding: 13px 16px; display: flex; justify-content: space-between; align-items: center; }
.chat-panel .ch-head .t { font-size: 13.5px; font-weight: 800; }
.chat-panel .ch-head .s { font-size: 10.5px; color: var(--gold-light); }
.chat-panel .ch-head button { background: rgba(255,255,255,.12); border: 0; color: #fff; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; }
.typing { align-self: flex-start; background: #fff; border-radius: 16px; padding: 12px 16px; box-shadow: var(--shadow-1); display: flex; gap: 4px; }
.typing i { width: 7px; height: 7px; background: var(--ink-3); border-radius: 50%; animation: blink 1.2s infinite; }
.typing i:nth-child(2) { animation-delay: .2s; } .typing i:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 60%, 100% { opacity: .25; } 30% { opacity: 1; } }

/* マイページ */
.mypage-wrap { max-width: 720px; margin: 0 auto; padding: 18px 14px 90px; }
.status-strip { border-radius: 14px; padding: 14px 18px; color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.status-strip.go { background: linear-gradient(135deg, #0f9d58, #0b7a44); }
.status-strip.hold { background: linear-gradient(135deg, #b7791f, #8f5d14); }
.status-strip.nogo { background: linear-gradient(135deg, #d23b3b, #a32626); }
.status-strip.none { background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); }
.status-strip .big { font-size: 17px; font-weight: 800; }

@media (max-width: 560px) {
  .c-head nav a:not(.cta):not(.keep) { display: none; }
  .hero-inner { padding: 44px 18px 40px; }
  .book-wrap, .mypage-wrap { max-width: 480px; padding-left: 12px; padding-right: 12px; }
  .booking-actions { bottom: 8px; margin-left: -4px; margin-right: -4px; }
  .flight-opt { align-items: flex-start; padding: 12px; gap: 9px; }
  .flight-opt .seats { align-self: center; }
  .plan-choice { padding: 14px; }
  .section-head h2 { font-size: 15px; }
}

/* 空席カレンダー */
.cal { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; }
.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 14.5px; }
.cal-nav { border: 1px solid var(--line); background: #fff; width: 34px; height: 34px; border-radius: 9px; font-size: 17px; cursor: pointer; color: var(--ink-2); font-family: inherit; }
.cal-nav:hover:not(:disabled) { border-color: var(--ink-3); }
.cal-nav:disabled { opacity: .25; cursor: default; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-dow { text-align: center; font-size: 10.5px; font-weight: 800; color: var(--ink-3); padding: 4px 0; }
.cal-dow.sun { color: var(--red); } .cal-dow.sat { color: var(--blue); }
.cal-day { position: relative; border: 1.5px solid transparent; background: #f6f8fb; border-radius: 9px; min-height: 46px; font-size: 13px; font-weight: 800; color: var(--ink); cursor: pointer; font-family: inherit; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; padding: 4px 0; transition: .12s; }
.cal-day.blank { background: transparent; min-height: 0; }
.cal-day:disabled { color: #c1c9d4; background: #fbfcfd; cursor: default; }
.cal-day.st-full:disabled { background: #fdf3f3; }
.cal-day:not(:disabled):hover { border-color: var(--ink-3); }
.cal-day.on { border-color: var(--gold); background: #fdfaf3; box-shadow: 0 0 0 2px rgba(201,169,97,.28); }
.cal-st { font-size: 9.5px; font-weight: 800; line-height: 1; }
.cal-st.ok { color: var(--green); } .cal-st.few { color: var(--amber); } .cal-st.full { color: var(--red); }
.cal-legend { display: flex; gap: 12px; margin-top: 9px; font-size: 10.5px; font-weight: 700; color: var(--ink-3); justify-content: center; flex-wrap: wrap; }
.cal-legend .ok { color: var(--green); } .cal-legend .few { color: var(--amber); } .cal-legend .full { color: var(--red); }
button.cal-open { text-align: left; cursor: pointer; font-weight: 700; font-size: 14px; }
button.cal-open:hover { border-color: var(--ink-3); }

/* ① チャット内「言語変換AI（仮）」ボタン */
.msg .msg-tr { display: inline-flex; align-items: center; gap: 4px; margin-top: 6px; padding: 3px 8px; font-size: 10.5px; font-weight: 700; border: 1px solid var(--gold); color: var(--gold); background: transparent; border-radius: 999px; cursor: pointer; line-height: 1.3; }
.msg .msg-tr:hover { background: rgba(201,169,97,.12); }
.msg .tr-note { font-size: 10px; opacity: .7; margin-top: 4px; font-style: italic; }

/* ===== 20260709 修正対応 ===== */
/* 修正メモ#2: 選択状態の凡例にタイトルを付け、何の説明かを明示 */
.state-chips .legend-title { border: none; background: transparent; padding: 4px 0; color: var(--ink-3); font-size: 11px; font-weight: 800; }

/* 修正メモ#6: スマホ版ヘッダーのレイアウトずれ（高さ固定を解除し折返しを許可） */
@media (max-width: 560px) {
  .c-head-inner { height: auto; min-height: 50px; flex-wrap: wrap; padding: 6px 10px; gap: 4px; row-gap: 4px; }
  .c-head .brand { font-size: 13px; }
  .c-head .brand small { display: none; }
  .c-head nav { flex-wrap: wrap; justify-content: flex-end; row-gap: 4px; margin-left: auto; }
  .c-head nav a { padding: 6px 9px; font-size: 12px; }
  .lang-sw button { padding: 4px 8px; }
}
