/* ============================================================
   shopping-lp.css
   btc-lp__ prefixed styles for shopping-lp.html（購入手続きLPフォーム）
   参考: design-original.html / design-original.css
        （btc-shopping-nonmember_input__ の配色・フォント・余白を踏襲）
   対象: 商品選択・ログイン・お客様情報・お届け先・同意・送信ボタンなど
        常時表示される主要セクション（SP専用）
   注意: js-* クラス、c-*error* 系クラス（validate-error-message含む）、
        c-password-textbox 関連（JSの表示/非表示トグルに使用）は
        意図的に変更していません。
   ============================================================ */

/* --- ページ全体・パンくず・見出し --- */
.btc-lp__page {
    background-color: #f5f5f0;
}
.btc-lp__breadcrumb-container {
    position: relative;
    padding: 0 5px 20px;
}
.btc-lp__breadcrumbs {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    font-size: 10px;
    letter-spacing: 0.05em;
    overflow-x: auto;
    white-space: nowrap;
}
.btc-lp__breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin: 0 10px;
    color: #ccc;
}
.btc-lp__breadcrumbs a {
    text-decoration: none;
    color: #2d2d2d;
    opacity: 0.5;
}
.btc-lp__page-header {
    padding: 50px 0 25px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}
.btc-lp__page-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 1.375rem;
    letter-spacing: 0.1rem;
    margin: 0;
    color: #1a2a40;
    line-height: 1.6;
}
.btc-lp__page-title span {
    display: block;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3em;
    margin-top: 10px;
    opacity: 0.6;
}

/* --- セクション --- */
.btc-lp__section {
    padding: 20px 20px 24px;
    margin-bottom: 16px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(26, 42, 64, 0.08);
}
.btc-lp__section--shaded {
    background-color: #eef7fd;
    margin: 40px 0;
}
.btc-lp__section-title {
    position: relative;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1a2a40;
    margin: 0 0 25px;
    padding-left: 12px;
    line-height: 1.5;
}
.btc-lp__section-title::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 0;
    width: 4px;
    border-radius: 2px;
    background-color: #008075;
}
/* --- 見出し（下線アンダーライン型）：左アクセントバーの代わりに短い下線を添える --- */
.btc-lp__section-title--underline {
    padding-left: 0;
    margin: 0 0 14px;
}
.btc-lp__section-title--underline::before {
    content: none;
}
.btc-lp__section-title--underline::after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin-top: 6px;
    border-radius: 2px;
    background-color: #008075;
}
.btc-lp__section-paragraph {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #2d2d2d;
}
.btc-lp__section-column + .btc-lp__section-column {
    margin-top: 30px;
}

/* --- フィールドグループ --- */
.btc-lp__field-groups {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.btc-lp__field-groups--column {
    flex-direction: column;
    gap: 15px;
}
.btc-lp__field-group {
    position: relative;
}
.btc-lp__field-group--row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.btc-lp__field-groups--row > .btc-lp__field-group--row {
    flex: 1;
    min-width: 0;
}

/* --- ラベル・注釈 --- */
.btc-lp__label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #2d2d2d;
}
.btc-lp__required-tag {
    color: #cc3333;
    font-weight: 500;
    font-size: 13px;
    margin-left: 8px;
}
.btc-lp__label-optional {
    color: #888;
    font-weight: 500;
    font-size: 13px;
    margin-left: 8px;
}
.btc-lp__label-note {
    display: inline-block;
    font-size: 12px;
    font-weight: normal;
    color: #888;
    margin-left: 8px;
}
/* 生年月日の入力例のような長い注釈のみ改行（p要素のみを対象、郵便番号・電話番号・パスワード等のspanは見出しと同じ行のまま） */
p.btc-lp__label-note {
    flex-basis: 100%;
}
.btc-lp__label-note--highlight {
    display: block;
    background-color: #fff9d8;
    color: #666666;
    padding: 12px;
    font-size: 13px;
    line-height: 1.5;
    border-radius: 4px;
    margin: 8px 0 0;
}

/* --- 入力欄 --- */
.btc-lp__form-input {
    width: 100%;
    height: 58px;
    background-color: #ffffff;
    border: 1px solid #a0a1a1;
    box-sizing: border-box;
    padding: 0 15px;
    font-size: 16px;
    color: #2d2d2d;
    border-radius: 6px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.btc-lp__form-input::placeholder {
    color: #a0a1a1;
    font-size: 14px;
}
.btc-lp__form-input--narrow {
    max-width: 200px;
}
select.btc-lp__form-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232d2d2d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 20px;
    padding-right: 28px;
}

/* 「カートに入れる」ボタン押下時、リピスト側のJSがこの商品選択欄までスクロール／
   ページ内遷移させる。そのままだと本欄がビューポート最上部にぴったり合ってしまい、
   上にある.c-contents-header（見出し・ステップ表示）が見えなくなるため、
   scroll-margin-topでスクロール停止位置に余白を確保し、ヘッダーが隠れないようにする。
   （scroll-margin-topはネイティブのアンカー遷移／Element.scrollIntoView()の
   両方に効くため、遷移先JSを直接編集できなくてもこちら側の指定だけで調整できる。
   ※ただし遷移JSがscrollIntoViewや#hash遷移ではなく、window.scrollTo()等で
   座標を独自計算している場合は効果がない点に注意。実機で要確認・要微調整） */
.product_id {
    scroll-margin-top: 260px;
}
@media screen and (min-width: 600px) {
    .product_id {
        scroll-margin-top: 300px;
    }
}

.btc-lp__select-wrap {
    position: relative;
}
.btc-lp__select-wrap--narrow {
    max-width: 190px;
}
.btc-lp__select-wrap > i {
    display: none;
}

.btc-lp__zip-link {
    border: none;
    background: none;
    display: inline-block;
    color: #189bbc;
    text-decoration: underline;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

/* --- お客様情報テーブル（見た目は積み上げ型のフィールドグループとして表示） --- */
.btc-lp__table table {
    width: 100%;
    border-collapse: collapse;
}
.btc-lp__table tr {
    display: block;
    margin-bottom: 28px;
}
.btc-lp__table tr:last-child {
    margin-bottom: 0;
}
.btc-lp__table th,
.btc-lp__table td {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0;
    border: none;
    font-weight: normal;
}
.btc-lp__table th {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin-bottom: 8px;
    font-weight: 600;
}
.btc-lp__table th label,
.btc-lp__table th .btc-lp__label {
    margin-bottom: 0;
}

/* --- ラジオボタン・チェックボックス --- */
.btc-lp__radio-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
    flex-wrap: wrap;
}
.btc-lp__radio-option {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
}
.btc-lp__radio-option input {
    width: 18px;
    height: 18px;
}
.btc-lp__radio-option label {
    cursor: pointer;
}

.btc-lp__checkbox {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
}
.btc-lp__checkbox input {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.btc-lp__checkbox label {
    cursor: pointer;
}

/* --- リンク・強調テキスト --- */
.btc-lp__link {
    color: #2d2d2d;
    text-decoration: underline;
}
.btc-lp__highlight {
    color: #666666;
    font-size: 12px;
}

/* --- ボタン --- */
.btc-lp__button-group {
    padding: 0 10px;
    margin-top: 20px;
}
.btc-lp__button {
    width: 100%;
    max-width: 320px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
    box-sizing: border-box;
    border-radius: 30px;
}
.btc-lp__button:hover {
    opacity: 0.8;
}
.btc-lp__button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.btc-lp__button--primary {
    background-color: #1a2a40;
    color: #ffffff;
}
.btc-lp__button--secondary {
    background-color: #1a2a40;
    color: #ffffff;
    border: 1px solid #ffffff;
}

/* --- ご注文内容のご確認：サブ見出しブロックの余白（下線アンダーライン型見出し用、カード枠なし） --- */
.btc-lp__subsection {
    margin-bottom: 50px;
}
/* .btc-lp__subsection:last-child {
    margin-bottom: 0;
} */

/* --- 定期コースお申し込み内容：詳細と送料・手数料一覧の間に余白 --- */
#js-confirm-regular-detail:not(:empty) {
    margin-bottom: 24px;
}

/* --- ご注文内容確認：商品・数量・価格の一覧（商品画像＋詳細） --- */
/* demo-shopping-confirm.css の .btc-shopping-confirm__product-unit を参考にデザイン統一 */
#js-confirm-products {
    list-style: none;
    margin: 0;
    padding: 0;
}
.confirm-products__item {
    display: flex;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e0;
}
.confirm-products__item:first-child {
    padding-top: 0;
}
.confirm-products__item:last-child {
    border-bottom: none;
}
.confirm-products__details {
    flex: 1;
    font-size: 16px;
    line-height: 1.7;
    color: #2d2d2d;
}

/* --- 定期コースお申し込み内容：回数・小計・数量・コースの一覧表 --- */
/* demo-shopping-confirm.css の .btc-shopping-confirm__periodic-detail-table を参考にデザイン統一 */
.confirm-regular-detail__table {
    width: 100%;
    margin: 20px 0 0;
    border-collapse: collapse;
    border: 1px solid #e0e0e0;
    font-size: 13px;
    table-layout: fixed;
}
.confirm-regular-detail__table th {
    padding: 10px;
    border: 1px solid #e0e0e0;
    text-align: center;
    font-weight: 600;
    color: #666;
    line-height: 1.4;
    background-color: #f9f9f7;
}
.confirm-regular-detail__table td {
    padding: 12px;
    border: 1px solid #e0e0e0;
    line-height: 1.6;
    color: #2d2d2d;
    text-align: center;
    word-break: break-all;
}
.confirm-regular-detail__table th:first-child,
.confirm-regular-detail__table td:first-child {
    width: 96px;
}
.confirm-regular-detail__cell--count {
    text-align: center;
    font-weight: 600;
}
.confirm-regular-detail__cell--summary {
    text-align: left;
}
.confirm-regular-detail__product {
    margin-bottom: 4px;
}
.confirm-regular-detail__quantity {
    margin-bottom: 4px;
    color: #666;
}
.confirm-regular-detail__price {
    font-weight: 700;
    font-size: 15px;
}

/* --- 定期コースお申し込み内容：定期◯回総合計（一覧表の最下行として表示） --- */
/* JSはこの内容を別要素（.js-confirm-regular-detail__total）に差し込むため、
    別テーブルとして描画される。基本CSS側の.total-tableの余白指定を打ち消すため
    !importantで明示的にリセットし、上の.confirm-regular-detail__tableと
    隙間なく繋がって見えるようにしている。 */
.confirm-regular-detail__total .total-table {
    width: 100% !important;
    margin: 0 !important;
    border-collapse: collapse !important;
    border-top: none !important;
    border-right: 1px solid #e0e0e0 !important;
    border-bottom: 1px solid #e0e0e0 !important;
    border-left: 1px solid #e0e0e0 !important;
    font-size: 13px !important;
    table-layout: fixed !important;
}
.confirm-regular-detail__total .total-table th,
.confirm-regular-detail__total .total-table td {
    display: table-cell !important;
    padding: 12px !important;
    border: none !important;
    line-height: 1.6 !important;
}
.confirm-regular-detail__total .total-table th {
    width: 96px !important;
    border-right: 1px solid #e0e0e0 !important;
    text-align: center !important;
    font-weight: 600 !important;
    color: #666 !important;
    background-color: #f9f9f7 !important;
}
.confirm-regular-detail__total .total-table td {
    text-align: center !important;
    font-size: 15px;
    font-weight: 700 !important;
    color: #2d2d2d !important;
}

/* --- 定期コースお申し込み内容：定期コースお届け間隔の見出し --- */
.confirm-regular-detail__total .btc-lp__section-title--underline {
    margin-top: 32px;
}

/* --- 定期コースお申し込み内容：定期コース備考の見出し（.confirm-regular-detail__totalの直後） --- */
.confirm-regular-detail__total + .btc-lp__section-title--underline {
    margin-top: 32px;
}

/* --- 定期コースお申し込み内容：お届けサイクル／お届け回数（2行2列の表） --- */
/* .cycle-tableには基本CSS側の.c-table--column（th/tdをdisplay:blockでスタック表示する
    ルール）が付与されているため、明示的にtable/table-row/table-cellへ!importantで
    上書きし、横並びの2列表になるようにしている。 */
.cycle-table table {
    display: table !important;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    table-layout: fixed;
}
.cycle-table table tr {
    display: table-row !important;
}
.cycle-table table th,
.cycle-table table td {
    display: table-cell !important;
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
    box-sizing: border-box;
}
.cycle-table table th {
    width: 110px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    background-color: #f9f9f7;
}
.cycle-table table td {
    background-color: #ffffff;
}

/* --- 定期コースお申し込み内容：法定表示等の注意書きボックス --- */
/* demo-shopping-confirm.css の .btc-shopping-confirm__law-notice-box を参考にデザイン統一 */
.p-lp__confirm .confirm-regular__detail .confirm-regular-detail__important-matter {
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 8px;
    background-color: #fff9d8;
    font-size: 13px;
    line-height: 1.6;
    color: #444;
    text-align: left;
}


/* --- ご注文内容確認：お客様情報テーブル（お届け先／配送希望／お支払い） --- */
/* p-lp__address の btc-lp__table と同じデザイン（罫線・文字色）で統一。 */
#js-confirm-customer table {
    width: 100%;
    border-collapse: collapse;
    border: none;
}
#js-confirm-customer table tr {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #e5e5e0;
}
#js-confirm-customer table tr:first-child {
    padding-top: 0;
}
#js-confirm-customer table tr:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
#js-confirm-customer table th {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    width: 100%;
    margin-bottom: 8px;
    padding-left: 5px !important;
    font-size: 16px;
    font-weight: 600;
    color: #2d2d2d;
    text-align: left;
    background: none;
    border: none;
}
#js-confirm-customer table td {
    display: block;
    width: 100%;
    padding: 0;
    padding-left: 5px;
    font-size: 16px;
    line-height: 1.6;
    color: #2d2d2d;
    text-align: left;
    background: none;
    border: none;
}
#js-confirm-customer table td > div {
    margin-top: 4px;
    font-size: 12px;
    color: #888888;
}
#js-confirm-customer .confirm-change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    margin-left: auto;
    padding: 4px 16px;
    font-size: 12px;
    font-weight: 700;
    color: #008075;
    text-decoration: none;
    background-color: #ffffff;
    border: 1px solid #008075;
    border-radius: 20px;
    cursor: pointer;
}
#js-confirm-customer .confirm-change svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* --- フィールドグループ内の入力欄：横並びの列いっぱいに広げる ---
    .btc-lp__field-group--row自体がflexコンテナのため、中の.efo-form-item
    （入力欄のラッパー）にflex:1がないと内容量に応じた幅にしかならず、
    お名前・フリガナなど横並び2項目の間に不自然な余白ができていた。 */
.btc-lp__field-group--row > .efo-form-item {
    flex: 1;
    min-width: 0;
}

/* --- 商品選択：商品／数量を縦に並べて表示 --- */
.p-lp__product .btc-lp__field-group--row > .efo-form-item,
.p-lp__product .btc-lp__field-group--row > .btc-lp__select-wrap {
    flex: 1;
    min-width: 0;
}
.p-lp__product .btc-lp__field-group--row.js-product-quantity-manager .btc-lp__select-wrap {
    flex: none;
    width: 80px;
    min-width: 0;
    max-width: 80px;
}

/* --- お客様情報（ログイン済み表示）テーブル：行の区切り罫線 --- */
.p-lp__address .btc-lp__table tr {
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e5e0;
}
.p-lp__address .btc-lp__table tr:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

/* --- ご注文内容確認：商品合計・手数料・送料テーブルの罫線 --- */
.confirm-payment table {
    width: 100%;
    border-collapse: collapse;
}
.confirm-payment table tr {
    border-bottom: 1px solid #e5e5e0;
}
.confirm-payment table th,
.confirm-payment table td {
    padding: 10px 4px;
    font-size: 14px;
    font-weight: normal;
    color: #2d2d2d;
}
.confirm-payment table th {
    text-align: left;
}
.confirm-payment table td {
    text-align: right;
}
.confirm-payment table tr.confirm-payment__total {
    border-top: 2px solid #1a2a40;
    border-bottom: none;
}
.confirm-payment table tr.confirm-payment__total th,
.confirm-payment table tr.confirm-payment__total td {
    padding-top: 14px;
    font-size: 16px;
    font-weight: 700;
}

.p-lp .c-form-label-required {
    background-color: #008075;
    padding: 5px 5px 6px;
    border-radius: 10px;
    border-color: #008075;
}

/* --- お支払い方法：セキュリティコード欄（GMO決済ウィジェット）の上部余白 --- */
.gmopg_securitycode_area .c-table--borderless table tbody:first-child tr:first-child th {
    padding-top: 30px;
}

/* --- 入力未完了通知（js-efo-incomplete、JSがinline styleで挿入するため!importantで上書き） --- */
.js-efo-incomplete {
    background-color: rgba(0, 128, 117, 0.2) !important;
    border-radius: 20px;
}
.js-efo-incomplete .c-link {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 700;
    color: #008075 !important;
    text-decoration: none !important;
    background-color: #ffffff !important;
    border: 1px solid #008075 !important;
    border-radius: 20px;
    cursor: pointer;
}

/* --- ご注文内容のご確認：上部セクションとの区切りとして余白を追加 --- */
.p-lp__confirm {
    margin-top: 60px;
}

/* --- お届け先ドロップダウン（新規登録フォーム）を全幅に --- */
.delivery-check .btc-lp__field-group--row {
    display: block;
}
.delivery-check .btc-lp__select-wrap {
    width: 100%;
}

/* --- お届け先ドロップダウン（ログイン済みフォーム）：お支払い方法と同じ.c-select--whiteデザインに統一 --- */
/* 前回はbtc-lp__form-input風の細いシェブロン矢印にしてしまったが、お支払い方法欄は
    基本CSS側の.c-select（右側にティール色の四角＋白い三角矢印）のデザインで統一されているため、
    そちらに合わせて高さだけ他の入力欄（58px）に揃え、矢印ボックスの見た目は元のまま踏襲する。 */
.change-address .c-select--white {
    position: relative;
}
.change-address .c-select--white select {
    width: 100%;
    height: 45px;
    background-color: #ffffff;
    border: 1px solid #a0a1a1;
    box-sizing: border-box;
    padding: 0 46px 0 15px;
    font-size: 16px;
    color: #2d2d2d;
    border-radius: 6px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.change-address .c-select--white i {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    pointer-events: none;
    background: #008075;
    border-radius: 6px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.change-address .c-select--white i::before {
    display: block;
    width: 100%;
    height: 100%;
    margin: auto;
    content: "";
    background: url("/assets/svg/triangle.svg") center center no-repeat;
}

/* --- お届け先ドロップダウン（別のお届け先を入力する選択時に表示） --- */
#other_deliv_id {
    width: 100%;
    height: 58px;
    background-color: #ffffff;
    border: 1px solid #a0a1a1;
    box-sizing: border-box;
    padding: 0 15px;
    font-size: 16px;
    color: #2d2d2d;
    border-radius: 6px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%232d2d2d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 20px;
    padding-right: 28px;
    margin-top: 10px;
}

/* --- ステップインジケーター（丸バッジ＋コネクターライン） --- */
.btc-lp__step-wrapper {
    max-width: 800px;
    margin: 0 auto 10px;
    padding: 0 25px;
}

.btc-lp__order-step {
    display: flex;
    align-items: flex-start;
    padding: 20px 0;
    counter-reset: step-counter;
}

.btc-lp__order-step__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    counter-increment: step-counter;
}

/* バッジ間のコネクターライン */
.btc-lp__order-step__item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 19px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

/* 丸バッジ */
.btc-lp__order-step__left {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #d5d5d5;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.btc-lp__order-step__left span {
    display: none;
}

.btc-lp__order-step__left::before {
    content: counter(step-counter);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ccc;
    line-height: 1;
}

.btc-lp__order-step__left::after {
    content: 'STEP';
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    color: #ddd;
    letter-spacing: 0.08em;
    margin-top: 1px;
    line-height: 1;
}

/* ステップラベル */
.btc-lp__order-step__right {
    margin-top: 10px;
    text-align: center;
    font-size: 10px;
    color: #bbb;
    line-height: 1.6;
    padding: 0 4px;
}

.btc-lp__order-step__right span {
    display: block;
}

/* 現在ステップ */
.btc-lp__order-step__item--current .btc-lp__order-step__left {
    background: #1a2a40;
    border-color: #1a2a40;
    box-shadow: 0 3px 10px rgba(26, 42, 64, 0.25);
}

.btc-lp__order-step__item--current .btc-lp__order-step__left::before {
    color: #fff;
}

.btc-lp__order-step__item--current .btc-lp__order-step__left::after {
    color: rgba(189, 161, 107, 0.85);
}

.btc-lp__order-step__item--current .btc-lp__order-step__right span {
    color: #1a2a40;
    font-weight: 700;
    font-size: 11px;
}

/* --- 注文確定ボタンの注意書き：ボタンが押せる状態（disabledでない）ときのみ表示 --- */
.btc-lp__button-attention {
    display: none;
    margin-top: 10px;
    font-size: 12px;
    color: #666666;
    text-align: center;
}
#confirm_submit_image:not(:disabled) + .btc-lp__button-attention,
#paidy_confirm_submit_image:not(:disabled) + .btc-lp__button-attention,
#atone_confirm_submit_image:not(:disabled) + .btc-lp__button-attention {
    display: block;
}

/* --- 入力進捗バッジ（js-efo-progress）：「購入手続き」ヘッダーゾーンを過ぎたら固定表示 --- */
/* JSが「.c-contents-header」の可視状態を監視し、外れたら.js-efo-progress--pinnedを付与する。
    JS側のinline styleより優先させるため!importantで上書きしている。 */
.js-efo-progress.js-efo-progress--pinned {
    position: fixed !important;
    top: 72px !important;
    right: 12px !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    z-index: 500 !important;
}

/* ============================================================
   レスポンシブ対応（タブレット・PC幅）
   サイト全体の基準ブレークポイント（style.css）と合わせて600pxから適用。
   1カラムのフォームレイアウトはそのままに、中央寄せ＋最大幅で
   広い画面でも間延びしないようにする。
   ============================================================ */
@media screen and (min-width: 600px) {
    .btc-lp__page {
        max-width: 640px;
        margin: 0 auto;
        padding-bottom: 50px;
    }
    .btc-lp__page-header {
        padding: 60px 0 30px;
    }
    .btc-lp__page-title {
        font-size: 1.625rem;
    }
    .btc-lp__form-input {
        height: 45px !important;
    }
    .btc-lp__section {
        padding: 32px 36px 36px;
    }
    .btc-lp__section-title {
        font-size: 20px;
    }
    .btc-lp__button-group {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    .p-lp__confirm .confirm-customr {
        width: unset;
    }
    .p-lp .js-efo-progress--done {
        height: 40px !important;
        padding: 0 12px !important;
        font-size: 15px !important;
        font-weight: normal !important;
        line-height: 40px !important;
        color: var(--color__white) !important;
        background-color: #008075 !important;
        border-radius: 10px !important;
    }
    .js-efo-progress.js-efo-progress--pinned {
        right: calc(50% - 320px + 12px) !important;
    }
    .js-efo-incomplete {
        padding: 25px !important;
    }
    /* 丸バッジ */
    .btc-lp__order-step__left {
        width: 50px;
        height: 50px;
    }
    .btc-lp__order-step__left::before {
        font-size: 16px;
    }
    .btc-lp__order-step__left::after {
        font-size: 10px;
    }
    .btc-lp__order-step__item--current .btc-lp__order-step__right span,
    .btc-lp__order-step__right {
        font-size: 12px;
    }
    #js-confirm-customer table tr:first-child {
        padding-top: 16px;
    }
}

/* --- 最短お届け希望チェックボックス（参考: shopping/input_day.tpl の btc-shopping-input-day__ 系） --- */
.btc-lp__fastest-delivery-wrapper {
    position: relative;
}
.btc-lp__fastest-delivery-option {
    margin: 30px 0 0;
    padding-top: 20px;
}
.btc-lp__checkbox-label {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #1a2a40;
    cursor: pointer;
}
.btc-lp__checkbox-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    margin-right: 12px;
    cursor: pointer;
}
.btc-lp__delivery-annotation {
    margin-top: 10px;
    margin-left: 34px;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 80px;
}
.btc-lp__inline-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin: 0 1px -0.15em;
    fill: currentColor;
    flex-shrink: 0;
}
.btc-lp__char-guide-wrapper {
    position: absolute;
    right: 0;
    bottom: -80px;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}
.btc-lp__char-speech-bubble {
    background: #1a2a40;
    color: #fff;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 25px;
    margin-right: 15px;
    position: relative;
    white-space: nowrap;
}
.btc-lp__char-speech-bubble::after {
    content: "";
    position: absolute;
    right: -8px;
    bottom: 10px;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #1a2a40;
}
.btc-lp__char-image {
    width: 65px;
    height: auto;
    vertical-align: bottom;
}
