/* ===== サンプル購入案内ページ ===== */
.sample-page {
    color: #2f3437;
    line-height: 1.75;
    padding: 16px 0 40px;
    margin: 0;
}

@media (min-width: 992px) {
    .sample-page {
        margin: 0 auto;
        max-width: 1120px;
    }
}

.sample-page__inner {
    margin: 0 20px;
}

.sample-page__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2933;
    margin: 0 0 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #d8dee4;
    text-align: left;
}

.sample-page__lead {
    color: #46515a;
    padding: 0;
    margin: 0 0 16px;
    font-size: 1rem;
    line-height: 1.8;
}

.sample-page__actions {
    display: flex;
    justify-content: flex-end;
    margin: 0 0 28px;
}

.sample-page__back-link {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #c5ced6;
    border-radius: 4px;
    color: #375a7f;
    text-decoration: none;
    font-size: 0.95rem;
    background: #fff;
}

.sample-page__back-link:hover {
    background: #f5f7f9;
    text-decoration: none;
    color: #1f2933;
}

.sample-page__section {
    margin: 0 0 36px;
}

.sample-page__section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2933;
    margin: 0 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #3498db;
}

.sample-page__text {
    margin: 0 0 12px;
    color: #46515a;
}

.sample-page__list,
.sample-page__olist {
    margin: 0 0 12px;
    padding-left: 1.4em;
    color: #46515a;
}

.sample-page__list li,
.sample-page__olist li {
    margin-bottom: 6px;
}

.sample-page__list strong {
    font-weight: 700;
    color: #1f2933;
}

.sample-page__olist a {
    color: #375a7f;
    text-decoration: underline;
}

.sample-page__olist a:hover {
    color: #1f2933;
}

/* 決済別テーブル：狭い幅は縦積み、広い幅は3列固定（2列折り返しを避ける） */
.sample-page__tables {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 16px 0 8px;
}

@media (min-width: 960px) {
    .sample-page__tables {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: start;
        gap: 10px;
    }
}

.sample-page__table-wrap {
    min-width: 0;
}

.sample-page__table {
    width: 100%;
    table-layout: auto;
    border-collapse: collapse;
    background: #fff;
    font-size: 12px;
}

.sample-page__table th,
.sample-page__table td {
    border: 1px solid #d8dee4;
    padding: 7px 8px;
    vertical-align: middle;
}

.sample-page__table thead th {
    background: #f0f4f7;
    text-align: center;
    font-weight: 700;
    color: #1f2933;
    line-height: 1.3;
    word-break: keep-all;
    overflow-wrap: normal;
}

.sample-page__table tbody th {
    text-align: left;
    font-weight: 600;
    background: #fafbfc;
    line-height: 1.3;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
}

.sample-page__table td {
    text-align: right;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.sample-page__table tr.is-total th,
.sample-page__table tr.is-total td {
    background: #eef6fb;
    font-weight: 700;
}

.sample-page__inquiry {
    margin-top: 8px;
    color: #7a8791;
    font-size: 0.95rem;
}
