:root {
    --brand: #5fbf9a;
    --ink: #333;
    --muted: #777;
    --card-bg: #fff;
    --radius: 18px;
    --shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.price-section {
    padding: 20px 0;
    color: var(--ink);
    font-family: "Noto Sans JP", sans-serif;
}

.container {
    margin: 0 auto;
}

.price-title {
    text-align: center;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    margin-bottom: 2.5rem;
    letter-spacing: 0.1em;
    color: var(--brand);
}

/* 2列グリッド */

.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* カードスタイル */

.price-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    transition: 0.3s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
}

.price-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 0.2em;
    margin-bottom: 1rem;
}

.price-card h3 span {
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.05em;
}

.price-main {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.price-sale {
    color: var(--brand);
    font-weight: 500;
}

.price-original {
    text-decoration: line-through;
    color: #aaa;
    font-size: 0.9rem;
    margin-right: 6px;
}

.price-discount-badge {
    display: inline-block;
    background: #e25b5b;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    margin-top: 4px;
}

.example {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 25px;
}

.price-list,
.note-list {
    line-height: 25px;
}

.price-list {
    list-style: none;
}

.price-list li,
.note-list li {
    margin-bottom: 0.4em;
}

.price-list a {
    color: var(--brand);
    text-decoration: underline;
}

.review-block {
    text-align: center;
    padding-top: 3rem;
    color: var(--muted);
    font-size: 1rem;
}

/* 📱 スマホ（～768px）は1列 */

@media screen and (max-width: 768px) {
    .price-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .price-card {
        padding: 1.5rem;
    }
}

.shipping-fee {
    margin: 3rem auto;
    max-width: 800px;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
}

.shipping-fee p.size {
    font-size: 14px;
    text-align: left !important;
}

.shipping-fee h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.fee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    justify-items: center;
}

.fee-card {
    background: var(--bg);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 10px 0;
    width: 100%;
    max-width: 160px;
    transition: 0.2s ease;
}

.fee-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.fee-card span {
    display: block;
    font-size: 0.95rem;
    color: var(--ink);
}

.fee-card strong {
    display: block;
    font-size: 1.1rem;
    color: var(--brand);
    margin-top: 2px;
}

.note {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 1.5rem;
}

.note a {
    color: var(--brand);
    text-decoration: underline;
}
