@charset "UTF-8";

:root {
    --lc-color-primary: rgba(240, 163, 59, 1);
    --lc-color-primary-bg: #fff7ed;
    --lc-color-text: #374151;
    --lc-color-text-light: #6b7280;
    --lc-color-border: #e5e7eb;
    --lc-color-white: #ffffff;
    --lc-color-danger: #ef4444;

    --lc-spacing-base: 16px;
    --lc-radius-md: 8px;
    --lc-radius-lg: 12px;
    --lc-font-sans: "Noto Sans JP", sans-serif;
}

/* お支払方法についてページ */
.pg-pay-container h2:not(.ec-secHeading__ja):before {
    content: none;
    margin-right: 0;
}
#page_guide_payment .pg-pay-container h2:not(.ec-secHeading__ja) {
    display: block !important;
}

/* リセットCSS（このページ内のみ適用される簡易版） */
body {
    margin: 0;
    padding: 0;
    font-family: var(--lc-font-sans);
    color: var(--lc-color-text);
    line-height: 1.6;
    background-color: var(--lc-color-white);
    -webkit-font-smoothing: antialiased;
}

/* --- レイアウトコンテナ --- */
.pg-pay-container {
    max-width: 800px;
    margin: 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

/* --- 1. ヘッダー --- */
.pg-pay-header {
    text-align: center;
    margin-bottom: 48px;
}

.pg-pay-header img {
    width: 100%;
}

/* --- 2. アイコン一覧セクション --- */
.pg-pay-icons-section {
    text-align: center;
    margin-bottom: 48px;
}
.pg-pay-icons-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}
.pg-pay-icon-box {
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-md);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1f2937;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    font-size: 14px;
}
.pg-pay-note-badge {
    display: inline-block;
    font-size: 13px;
    color: var(--lc-color-primary);
    font-weight: bold;
    background-color: var(--lc-color-primary-bg);
    padding: 6px 16px;
    border-radius: 99px;
    margin: 0;
}

/* --- 3. 比較表 --- */
.pg-pay-table-section {
    margin-bottom: 64px;
}
.pg-pay-table-scroll {
    overflow-x: auto;
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-md);
    /* スマホでのスクロールバーを隠す（任意） */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}
.pg-pay-table-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.pg-pay-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    white-space: nowrap; /* スマホで折返しさせずスクロールさせる */
}
.pg-pay-table th,
.pg-pay-table td {
    padding: 16px 24px;
    text-align: left;
    border-bottom: 1px solid #f3f4f6;
}
.pg-pay-table thead th {
    background-color: #f9fafb;
    color: var(--lc-color-text-light);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
}
/* Table Column Widths */
.pg-pay-col-method {
    min-width: 140px;
}
.pg-pay-col-fee {
    min-width: 100px;
}
.pg-pay-col-card {
    min-width: 120px;
}
.pg-pay-col-term {
    min-width: 140px;
}

.pg-pay-table tbody tr:last-child th,
.pg-pay-table tbody tr:last-child td {
    border-bottom: none;
}
.pg-pay-col-highlight {
    color: var(--lc-color-primary);
    font-weight: bold;
    background-color: var(--lc-color-primary-bg);
}
.pg-pay-text-green {
    color: #16a34a;
    font-weight: bold;
}
.pg-pay-text-muted {
    color: #9ca3af;
}
.pg-pay-scroll-hint {
    display: none; /* PCでは非表示 */
    font-size: 11px;
    color: #9ca3af;
    text-align: right;
    margin-top: 8px;
}

.pg-pay-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--lc-color-primary);
    border-radius: 50%;
    margin-right: 6px;
}

/* --- 4. 詳細カード（共通） --- */
.pg-pay-details {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 64px;
}
.pg-pay-card {
    background: #fff;
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column; /* スマホデフォルト */
    gap: 24px;
}

/* カード内の画像エリア */
.pg-pay-card-img {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pg-pay-card-img img {
    height: 75px;
}

/* カード内のテキストエリア */
.pg-pay-card-content {
    flex: 1;
}
.pg-pay-card-content .guide_ap_bnr img {
    width: 100%;
}
.pg-pay-card-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.pg-pay-card-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}
.pg-pay-badge {
    background-color: var(--lc-color-primary);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
}
.pg-pay-desc-bold {
    font-weight: bold;
    margin-bottom: 12px;
    font-size: 14px;
}
.pg-pay-card-content .pg-pay-desc li {
    list-style: disc;
}
.pg-pay-card-content .pg-pay-desc .no-disc {
    list-style: none;
}
.pg-pay-desc {
    font-size: 14px;
    color: var(--lc-color-text);
    margin-bottom: 16px;
}
.pg-pay-desc ul {
    margin: 0;
    padding-left: 20px;
    color: var(--lc-color-text-light);
}
.pg-pay-desc li {
    margin-bottom: 4px;
}
.pg-pay-note-box {
    background-color: #f9fafb;
    padding: 12px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--lc-color-text-light);
    margin-bottom: 16px;
}
.pg-pay-card-list {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    /* margin-bottom: 16px; */
    flex-wrap: wrap;
    align-items: center;
}
.pg-pay-card-icon {
    height: 50px;
    width: auto;
    display: block;
}

/* Amazon Pay カードの特別スタイル（強調） */
.pg-pay-card.highlight-card {
    border: 2px solid rgba(249, 115, 22, 0.2); /* オレンジの薄い枠線 */
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.08);
    position: relative;
    overflow: hidden;
}

/* アイコンサークル（Paidy, 銀行振込用） */
.pg-pay-icon-circle {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background-color: #f3f4f6; /* グレー背景 */
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- 5. プライバシーエリア --- */
.pg-pay-privacy-section {
    background-color: rgba(255, 247, 237, 0.6);
    border: 1px solid rgba(249, 115, 22, 0.1);
    border-radius: var(--lc-radius-lg);
    padding: 32px;
    margin-bottom: 64px;
}
.pg-pay-privacy-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.pg-pay-icon-wrapper {
    width: 24px;
    height: 24px;
    color: var(--lc-color-primary);
}
#page_guide_payment .pg-pay-privacy-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}
.pg-pay-privacy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.pg-pay-privacy-item {
    display: flex;
    gap: 16px;
}
.pg-pay-privacy-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--lc-color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.pg-pay-privacy-content h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: bold;
}
.pg-pay-privacy-content p {
    margin: 0;
    font-size: 14px;
    color: var(--lc-color-text-light);
}

/* --- 6. FAQ (アコーディオン) --- */
.pg-pay-faq-section {
    margin-bottom: 40px;
}
#page_guide_payment .pg-pay-faq-title {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 32px;
}

/* Accordion Styles */
.pg-pay-accordion-item {
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-md);
    margin-bottom: 12px;
    background-color: #fff;
    overflow: hidden;
}

.pg-pay-accordion-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--lc-color-text);
    font-family: inherit;
    transition: color 0.2s;
}
.pg-pay-accordion-btn:hover {
    color: var(--lc-color-primary);
}

.pg-pay-accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.pg-pay-accordion-item.is-open .pg-pay-accordion-icon {
    transform: rotate(180deg);
}

.pg-pay-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #f9fafb;
}
.pg-pay-accordion-inner {
    padding: 20px;
    font-size: 14px;
    color: var(--lc-color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* --- Responsive Queries --- */
@media (min-width: 768px) {
    .pg-pay-container {
        /* padding: 64px 20px; */
        padding: 2rem 1rem;
    }
    .pg-pay-header h1 {
        font-size: 30px;
    }
    .pg-pay-table {
        white-space: normal; /* PCでは折返し許可 */
    }
    .pg-pay-card {
        flex-direction: row; /* PCでは横並び */
        align-items: flex-start;
        padding: 32px;
    }
    .pg-pay-card-img {
        width: 33%;
    }
    .pg-pay-card-img img {
        width: 88px;
        height: auto;
    }
    .pg-pay-privacy-grid {
        grid-template-columns: 1fr 1fr; /* PCでは2列 */
    }
    .pg-pay-scroll-hint {
        display: none;
    }
}
@media (max-width: 767px) {
    .pg-pay-scroll-hint {
        display: block; /* スマホのみ表示 */
    }
    .pg-pay-header {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    .pg-pay-header img {
        width: 100%;
        height: auto;
    }
    #page_guide_payment .ec-layoutRole__mainWithColumn {
        padding-top: 0;
    }
}

.pg-pay-icon-circle svg,
.pg-pay-icon-circle .svg-mask-icon {
    width: 42px;
    height: 42px;
}
.ap-icon-area svg,
.ap-icon-area .svg-mask-icon {
    width: 32px;
    height: 32px;
}
.ap-flow-arrow svg,
.ap-flow-arrow .svg-mask-icon {
    width: 20px;
    height: 20px;
}
.pg-pay-privacy-icon svg,
.pg-pay-privacy-icon .svg-mask-icon {
    width: 20px;
    height: 20px;
}
.pg-pay-accordion-icon svg,
.pg-pay-accordion-icon .svg-mask-icon {
    width: 100%;
    height: 100%;
    display: block;
}
/* Icon Wrapper Size */
.pg-pay-icon-wrapper svg,
.pg-pay-icon-wrapper .svg-mask-icon {
    width: 100%;
    height: 100%;
}

#page_guide_shipping .pg-pay-summary {
    margin-bottom: 64px;
}

.pg-pay-summary {
    background-color: #f9fafb;
    padding: 24px;
    border-radius: var(--lc-radius-md);
    margin-bottom: 48px;
    border: 1px solid var(--lc-color-border);
}
#page_guide_payment .pg-pay-summary-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 12px 0;
    text-align: center;
}
.pg-pay-summary-list {
    margin: 0;
    padding-left: 20px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.8;
    list-style-type: disc;
}
.pg-pay-summary-list li {
    list-style: disc;
}
.pg-pay-recommend {
    font-size: 13px;
    font-weight: bold;
    color: #4b5563;
    margin-bottom: 16px;
}
.pg-pay-recommend.primary {
    color: var(--lc-color-primary);
}
.pg-pay-recommend-badge {
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 4px;
}
.pg-pay-recommend-badge.primary {
    background: var(--lc-color-primary-bg);
}

.pg-pay-warning-box {
    border: 2px solid #fecaca;
    background-color: #fef2f2;
    border-radius: var(--lc-radius-md);
    padding: 16px;
    margin-bottom: 20px;
}
.pg-pay-warning-title {
    font-size: 14px;
    font-weight: bold;
    color: #b91c1c;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pg-pay-warning-icon {
    font-size: 18px;
}
.pg-pay-warning-text {
    font-size: 13px;
    color: #7f1d1d;
    margin: 0;
    line-height: 1.6;
}

.pg-pay-flow-box {
    background-color: #f3f4f6;
    border-radius: var(--lc-radius-md);
    padding: 16px;
    margin-bottom: 20px;
}
.pg-pay-flow-box--clean {
    background: none;
    padding: 0;
    border: none;
    margin-bottom: 20px;
}

.pg-pay-flow-title {
    font-size: 12px;
    font-weight: bold;
    margin: 0 0 8px 0;
}

.pg-pay-card-img.fit-content {
    width: auto;
    justify-content: flex-start;
}

#page_guide_shipping .faq-title {
    text-align: center;
    display: block;
}

.ap-flow-step {
    flex: 1;
    background: #ffffff;
    border: 1px solid #fed7aa; /* 薄い枠線 */
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
/* Highlight step (Step 3) */
.ap-flow-step.highlight {
    border-color: #f97316;
    background-color: #fff7ed;
}

.ap-step-number {
    background-color: #f97316;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 8px;
    display: inline-block;
}
.ap-icon-area {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: #ea580c;
}
.ap-step-title {
    font-size: 13px;
    font-weight: bold;
    color: #374151;
    margin-bottom: 4px;
    line-height: 1.3;
}
.ap-step-desc {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}
/* 矢印（スマホ・PC共通で簡易的に表現） */
.ap-flow-arrow {
    align-self: center;
    color: #fed7aa;
    flex-shrink: 0;
}

/* 確認画面なしバッジ */
.ap-warning-badge {
    background-color: #fff1f2;
    color: #be123c;
    border: 1px solid #fecdd3;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 6px;
    display: inline-block;
}

/* Wrapper for flex flow */
.ap-flow-wrapper {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 20px;
}

.pg-pay-text-accent {
    font-size: 12px;
    color: #6366f1;
    font-weight: bold;
    margin-bottom: 16px;
}
.pg-pay-text-small {
    font-size: 12px;
    color: #6b7280;
}

.svg-mask-icon {
    display: inline-block;
    width: 100%;
    height: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: currentColor;
}

/* スマホ向け調整 */
@media (max-width: 480px) {
    .ap-flow-wrapper {
        flex-direction: column;
        gap: 12px;
    }
    .ap-flow-arrow {
        transform: rotate(90deg);
    }
    .ap-flow-step {
        width: 100%;
        flex-direction: row;
        text-align: left;
        padding: 10px;
        box-sizing: border-box;
        gap: 12px;
    }
    .ap-step-number {
        position: absolute;
        top: -6px;
        left: 10px;
        margin: 0;
    }
    .ap-icon-area {
        width: 40px;
        margin-bottom: 0;
    }
    .ap-text-area {
        flex: 1;
    }
}

/* 下部ご利用ガイドに戻るボタン */
.guide-footer-cta {
    margin-top: 64px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (min-width: 768px) {
    .guide-footer-cta {
        flex-direction: row;
        justify-content: center;
    }
}

.guide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 99px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s;
    font-size: 16px;
    cursor: pointer;
}

.guide-btn-primary {
    background-color: var(--lc-color-primary);
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(240, 163, 59, 0.3);
    border: 1px solid transparent;
}
.guide-btn-primary:hover {
    background-color: #ea580c; /* Slightly darker orange for hover */
    color: #fff;
    opacity: 0.9;
}

.guide-btn-secondary {
    background-color: #fff;
    color: var(--lc-color-text);
    border: 1px solid var(--lc-color-border);
}
.guide-btn-secondary:hover {
    background-color: #f9fafb;
    opacity: 0.9;
}

/* 送料・配送・梱包について */
#page_guide_shipping h2:not(.ec-secHeading__ja):before {
    content: none;
    margin-right: 0;
}
#page_guide_shipping h2:not(.ec-secHeading__ja) {
    /* display: block !important;  */
    /* font-size: initial; */
}

.list-disc {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}
.list-disc li {
    list-style: disc;
}

/* body style was here but typically handled by default_frame/base css. Keeping local overrides if needed but scoped or specific */
/* If we want to target the content area specifically, we can use a wrapper class. 
    Since we are inside default_frame, 'body' selector might affect the whole page globally if not scoped. 
    However, the original CSS targeted 'body'. Let's keep variables and utility classes. */

.lc-guide-container {
    font-family: var(--lc-font-sans);
    color: var(--lc-color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: border-box;
}

/* --- Layout Container --- */
.lc-guide-container {
    max-width: 800px;
    margin: 0 auto;
    /* padding: 40px 20px; */
    padding-right: 1rem;
    padding-left: 1rem;
}

/* --- Header --- */
.lc-guide-header {
    text-align: center;
    margin-bottom: 48px;
}
.lc-guide-header h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 12px 0;
    letter-spacing: 0.05em;
}
.lc-guide-header p {
    font-size: 0.95rem;
    color: var(--lc-color-text-light);
}

.lc-guide-header img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 24px;
}
/* .lc-guide-header-line {
    width: 50px;
    height: 4px;
    background-color: var(--lc-color-primary);
    margin: 0 auto 24px auto;
    border-radius: 99px;
} */

/* --- Common Section Styles --- */
.section {
    margin-bottom: 64px;
}
.other_page .section-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 24px;
    color: var(--lc-color-text);
    display: flex;
    align-items: center;
    gap: 10px;
    /* border-bottomとpadding-bottomを削除 */
}

.section-title svg {
    color: var(--lc-color-primary);
    width: 24px;
    height: 24px;
}

/* --- 3 Benefits Grid --- */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}
.benefit-item {
    text-align: center;
    padding: 24px 16px;
    background: #f9fafb; /* var(--lc-color-primary-bg) could be too much orange */
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-md);
}
.benefit-title {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    color: var(--lc-color-primary);
    font-size: 16px;
}
.benefit-desc {
    font-size: 13px;
    margin: 0;
    color: var(--lc-color-text-light);
}

/* --- Shipping Table --- */
.shipping-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-md);
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}
.shipping-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    white-space: nowrap;
}
.shipping-table th,
.shipping-table td {
    padding: 16px 24px;
    border-bottom: 1px solid #f3f4f6;
    text-align: left;
}
.shipping-table th {
    background-color: #f9fafb;
    color: var(--lc-color-text-light);
    font-weight: 600;
    width: 40%;
}
.shipping-free {
    color: var(--lc-color-danger);
    font-weight: bold;
}

/* --- Highlight Section (Inspection & Privacy) --- */
/* Mimicking .pg-pay-card or .pg-pay-privacy-section */
.highlight-section {
    background-color: var(--lc-color-primary-bg);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: var(--lc-radius-lg);
    padding: 32px;
    position: relative;
}

.highlight-badge {
    background-color: var(--lc-color-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 16px;
}

.highlight-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Inspection Grid */
.inspection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}
.inspection-card {
    background: #fff;
    padding: 20px;
    border-radius: var(--lc-radius-md);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--lc-color-border);
}
.inspection-card h3 {
    font-size: 15px;
    margin: 0 0 12px 0;
    color: var(--lc-color-text);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.check-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--lc-color-text-light);
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    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='%23f97316' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: cover;
}

/* --- Image Placeholders --- */
.img-placeholder {
    background-color: #f3f4f6;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 13px;
    border: 1px dashed #d1d5db;
    border-radius: var(--lc-radius-md);
    margin-bottom: 12px;
    text-align: center;
    padding: 20px;
}
.img-placeholder.map {
    height: 300px;
}
.img-caption {
    font-size: 12px;
    color: var(--lc-color-text-light);
    text-align: center;
    margin-bottom: 24px;
}

/* --- Privacy Steps --- */
.privacy-steps {
    display: grid;
    gap: 32px;
    margin-top: 24px;
}
.privacy-item h3 {
    font-size: 16px;
    margin: 0 0 12px 0;
    font-weight: bold;
}

/* --- Delivery Methods --- */
.delivery-methods {
    display: flex;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 12px;
}
.method-tag {
    flex: 1;
    background: #fff;
    border: 1px solid var(--lc-color-border);
    padding: 16px 12px;
    text-align: center;
    border-radius: var(--lc-radius-md);
    font-size: 14px;
    font-weight: bold;
    color: var(--lc-color-text);
}

/* --- Security --- */
.security-row {
    display: flex;
    gap: 20px;
}
.security-box {
    flex: 1;
    background: #f9fafb;
    padding: 24px;
    border-radius: var(--lc-radius-md);
    border: 1px solid var(--lc-color-border);
}
.security-box h3 {
    font-size: 16px;
    margin: 12px 0;
    color: var(--lc-color-text);
}
.security-box p {
    font-size: 14px;
    color: var(--lc-color-text-light);
    margin: 0;
}

/* --- FAQ Accordion (Ported from index5) --- */
.pg-pay-accordion {
    margin-bottom: 40px;
}
.pg-pay-accordion-item {
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-md);
    margin-bottom: 12px;
    background-color: #fff;
    overflow: hidden;
}
.pg-pay-accordion-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: var(--lc-color-text);
    font-family: inherit;
    transition: color 0.2s;
}
.pg-pay-accordion-btn:hover {
    color: var(--lc-color-primary);
}
.pg-pay-accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.pg-pay-accordion-item.is-open .pg-pay-accordion-icon {
    transform: rotate(180deg);
}
.pg-pay-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #f9fafb;
}
.pg-pay-accordion-inner {
    padding: 20px;
    font-size: 14px;
    color: var(--lc-color-text-light);
    line-height: 1.6;
}

/* --- Footer CTA --- */
.footer-cta {
    margin-top: 64px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 99px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s;
    font-size: 16px;
}
.btn-primary {
    background-color: var(--lc-color-primary);
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
}
.btn-primary:hover {
    background-color: #ea580c;
}
.btn-secondary {
    background-color: #fff;
    color: var(--lc-color-text);
    border: 1px solid var(--lc-color-border);
}
.btn-secondary:hover {
    background-color: #f9fafb;
}

/* --- Icons --- */
.icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    stroke: currentColor;
}
.icon-lg {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    color: var(--lc-color-primary);
}

/* --- Responsive --- */
@media (min-width: 768px) {
    .lc-guide-container {
        /* padding: 64px 20px; */
        padding: 2rem 1rem;
    }
    .lc-guide-header h1 {
        font-size: 30px;
    }
    .shipping-table {
        white-space: normal;
    }
    .delivery-methods {
        /* grid-template-columns: repeat(4, 1fr); */
    }
    .privacy-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .img-placeholder {
        height: 160px;
    }
    .img-placeholder.map {
        height: 350px;
    }
    .footer-cta {
        flex-direction: row;
        justify-content: center;
    }
    .footer-btn {
        width: auto;
    }
}
@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .inspection-grid {
        grid-template-columns: 1fr;
    }
    .security-row {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .lc-guide-header-image {
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    .lc-guide-header-image img {
        width: 100%;
        height: auto;
    }
    #page_guide_shipping .ec-layoutRole__mainWithColumn {
        padding-top: 0;
    }
}

/* 画像ラッパー */
.lc-image-wrapper {
    border: 1px solid var(--lc-color-border);
    border-radius: var(--lc-radius-md);
    overflow: hidden;
    background: #fff;
    margin: 20px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.lc-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.other_page .pg-pay-summary-title {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 12px 0;
    text-align: center;
}
.pg-pay-summary-list {
    margin: 0;
    padding-left: 20px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.8;
    list-style: disc;
}
.pg-pay-summary-list li {
    list-style: disc;
}

/* レコメンドバッジ */
.pg-pay-recommend {
    font-size: 13px;
    font-weight: bold;
    color: #4b5563;
    margin-bottom: 16px;
}
.pg-pay-recommend.primary {
    color: var(--lc-color-primary);
}
.pg-pay-recommend-badge {
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 4px;
}
.pg-pay-recommend-badge.primary {
    background: var(--lc-color-primary-bg);
}

/* 警告ボックス */
.pg-pay-warning-box {
    border: 2px solid #fecaca;
    background-color: #fef2f2;
    border-radius: var(--lc-radius-md);
    padding: 16px;
    margin-bottom: 20px;
}
.pg-pay-warning-title {
    font-size: 14px;
    font-weight: bold;
    color: #b91c1c;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pg-pay-warning-text {
    font-size: 13px;
    color: #7f1d1d;
    margin: 0;
    line-height: 1.6;
}

/* フローボックス */
.pg-pay-flow-box {
    background-color: #f3f4f6;
    border-radius: var(--lc-radius-md);
    padding: 16px;
    margin-bottom: 20px;
}
.pg-pay-flow-title {
    font-size: 12px;
    font-weight: bold;
    margin: 0 0 8px 0;
}
.pg-pay-flow-list {
    margin: 0;
    padding-left: 20px;
    font-size: 13px;
    color: var(--lc-color-text);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* --- SVG Mask Support --- */
.svg-mask-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}
.icon-lg.svg-mask-icon {
    width: 40px;
    height: 40px;
}
/* Color handling for section titles */
.section-title .svg-mask-icon {
    background-color: var(--lc-color-primary);
}

/* --- Utility & Refactored Styles --- */
.lc-text-small-muted {
    font-size: 13px;
    color: var(--lc-color-text-light);
}
.lc-text-small-base {
    font-size: 13px;
    color: var(--lc-color-text);
}
.lc-text-small {
    font-size: 14px;
}
.lc-text-tiny-center {
    font-size: 11px;
    color: #999;
    text-align: center;
}
.lc-info-box {
    background: #f9fafb;
    padding: 20px;
    border-radius: var(--lc-radius-md);
    border: 1px solid var(--lc-color-border);
}
.lc-warning-banner {
    background: #fff3e0;
    padding: 12px;
    border-radius: 6px;
    margin-top: 16px;
    font-size: 13px;
}
.lc-link-primary {
    color: var(--lc-color-primary);
    text-decoration: underline;
}
.lc-shipping-map-box {
    background: #f9fafb;
    padding: 24px;
    border-radius: var(--lc-radius-md);
    border: 1px solid var(--lc-color-border);
    margin: 20px 0;
}
.lc-shipping-map-title {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 16px 0;
    text-align: center;
    color: var(--lc-color-text);
}
.lc-shipping-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.lc-day-box {
    padding: 14px;
    border-radius: 6px;
    text-align: center;
}
.lc-day-box-next {
    background: #e8f5e9;
    border: 2px solid #66bb6a;
}
.lc-day-box-after {
    background: #fff3e0;
    border: 2px solid #ff9800;
}
.lc-day-box-later {
    background: #ffebee;
    border: 2px solid #ef5350;
}
.lc-day-number {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 4px;
}
.lc-day-number-next {
    color: #2e7d32;
}
.lc-day-number-after {
    color: #e65100;
}
.lc-day-number-later {
    color: #c62828;
}
.lc-day-label {
    font-size: 12px;
    color: #666;
}
.lc-heading-large {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}
.lc-quote-box {
    background: #f1f8e9;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 13px;
    border-left: 4px solid #66bb6a;
}
.lc-quote-author {
    text-align: right;
    margin-top: 8px;
    color: #666;
    font-size: 12px;
}
.lc-method-note {
    font-size: 12px;
    font-weight: normal;
    color: #666;
}
.lc-pickup-info {
    background: var(--lc-color-primary-bg);
    padding: 16px;
    border-radius: var(--lc-radius-md);
    margin-top: 20px;
    border: 1px solid rgba(249, 115, 22, 0.2);
}
.lc-pickup-title {
    font-size: 14px;
    margin: 0 0 12px 0;
    font-weight: bold;
    color: var(--lc-color-primary);
}
.highlight-section--muted {
    background-color: #fcfcfc;
    border-color: #ddd;
}
.highlight-section--white {
    background-color: #fff;
    border-color: #e5e7eb;
}
@media (max-width: 767px) {
    .lc-shipping-grid-3 {
        gap: 6px;
    }
}
