/* ===== Price Guide（料金ページ専用） ===== */
.price-guide {
    --pg-bg-strong: #F3EDE4;
    --pg-muted: #3E3A39;
    --pg-line: #E2D9CA;
    --pg-panel: #FFFFFF;
    --pg-radius-lg: 18px;
    --pg-radius-md: 12px;
    --pg-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);

    padding: 32px 0 80px;
}

/* 導入 */
.pg-header {
    margin: 24px 0 28px;
}

.pg-intro {
    margin: 0 0 10px;
    font-size: 16px;
    color: var(--pg-muted);
    line-height: 1.9;
}

.pg-pillRow {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.pg-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid rgba(129, 207, 199, 0.22);
    background: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    color: var(--pg-muted);
}

.pg-pillDot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    opacity: .7;
}

.pg-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: var(--pg-radius-lg);
    background: var(--pg-bg-strong);
    border: 1px dashed rgba(226, 217, 202, 0.9);
}

.pg-note-basic {
    font-size: 20px;
}

.pg-note strong {
    font-weight: 700;
}

/* セクション */
.pg-section {
    margin-top: 40px;
}

.pg-sectionHead {
    margin-bottom: 16px;
}

.pg-sectionNo {
    font-size: 12px;
    font-weight: 700;
    color: var(--pg-muted);
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.pg-h2 {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pg-h2::before {
    content: "";
    width: 6px;
    height: 24px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), #B5E3DC);
}

.pg-desc {
    font-size: 16px;
    color: var(--pg-muted);
    margin: 0;
}

.pg-h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 24px 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pg-h3::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 2px solid var(--accent);
    background: #FFFDF8;
}

/* テーブル */
.pg-table {
    overflow: auto;
    border-radius: var(--pg-radius-lg);
    border: 1px solid var(--pg-line);
    background: var(--pg-panel);
    box-shadow: var(--pg-shadow);
}

.pg-table--mt {
    margin-top: 14px;
}

.pg-table__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
    background: var(--pg-panel);
}

.pg-table__table th,
.pg-table__table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--pg-line);
    vertical-align: top;
    font-size: 14px;
    text-align: left;
}

.pg-table__table th {
    background: #F9F4EA;
    font-size: 12px;
    color: var(--pg-muted);
    font-weight: 600;
}

.pg-table__table td strong {
    font-weight: 800;
}

/* SPカード */
.pg-cards {
    display: none;
    gap: 14px;
    margin-top: 8px;
}

.pg-card {
    background: var(--pg-panel);
    border-radius: var(--pg-radius-lg);
    border: 1px solid rgba(226, 217, 202, 0.9);
    padding: 14px 14px 13px;
    box-shadow: var(--pg-shadow);
}

.pg-cardHead {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: flex-end;
    margin-bottom: 6px;
}

.pg-cardTitle {
    font-weight: 800;
    font-size: 14px;
}

.pg-cardSub {
    font-size: 13px;
    color: var(--pg-muted);
    min-width: 0;
    flex: 1 1 auto;
}

.pg-plainPrice {
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    flex: 0 0 auto;
}

/* このカードだけ2行（縦積み） */
.pg-cardHead--stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .6rem;
}

/* 下の文言は少し小さめ＆落ち着いた色に（好みで） */
.pg-cardHead--stack .pg-plainPrice {
    font-size: 1.3rem;
    font-weight: normal;
    white-space: normal;
    line-height: 1.4;
}



/* SP：基本料金 + 時間外加算 2列 */
.pg-cardPrices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.pg-pricePill {
    border: 1px solid rgba(226, 217, 202, 0.9);
    border-radius: 12px;
    padding: 10px 10px 9px;
    background: linear-gradient(180deg, #fff, #fffdfb);
}

.pg-pricePill--accent {
    border-color: rgba(129, 207, 199, 0.45);
    background: linear-gradient(180deg, rgba(129, 207, 199, 0.10), rgba(255, 255, 255, 0.95));
}

.pg-priceLabel {
    font-size: 11px;
    color: var(--pg-muted);
    letter-spacing: .06em;
    margin-bottom: 2px;
}

.pg-priceValue {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
}

.pg-priceValue span {
    font-size: 11px;
    font-weight: 700;
    color: var(--pg-muted);
    margin-left: 2px;
}

.pg-priceNote {
    margin-top: 6px;
    font-size: 12px;
    color: var(--pg-muted);
    line-height: 1.5;
}

/* 例（カード風） */
.pg-exampleGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 12px;
}

.pg-exampleBox {
    border: none;
    border-radius: 18px;
    padding: 16px 16px 14px;
    background: linear-gradient(135deg, rgba(129, 207, 199, 0.18), rgba(255, 253, 248, 1));
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
}

.pg-exampleHeading {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .04em;
}

.pg-exampleTitle {
    font-weight: 900;
}

.pg-exampleLead {
    font-size: 13px;
    color: var(--text);
    opacity: .92;
    margin: 0 0 8px;
}

.pg-exampleList {
    margin: 6px 0 0;
    padding-left: 18px;
    font-size: 13px;
}

.pg-exampleList li {
    margin: 4px 0;
}

.pg-exampleTotal {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px dashed rgba(226, 217, 202, 0.9);
    font-weight: 900;
    font-size: 14px;
}

/* リスト */
.pg-list {
    margin: 6px 0 0;
    font-size: 14px;
}

.pg-list li {
    margin: 4px 0;
}

/* KPI */
.pg-grid2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.pg-kpi {
    background: var(--pg-panel);
    border-radius: var(--pg-radius-md);
    border: 1px solid var(--pg-line);
    padding: 10px 12px;
    box-shadow: var(--pg-shadow);
}

.pg-kpiLabel {
    font-size: 12px;
    color: var(--pg-muted);
}

.pg-kpiValue {
    font-size: 18px;
    font-weight: 800;
    margin-top: 2px;
}

/* details / summary */
.pg-details {
    border-radius: var(--pg-radius-lg);
    border: 1px solid rgba(226, 217, 202, 0.9);
    background: var(--pg-panel);
    padding: 10px 12px;
    margin: 10px 0;
    box-shadow: var(--pg-shadow);
}

.pg-summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
}

.pg-summary::-webkit-details-marker {
    display: none;
}

.pg-chev {
    font-size: 12px;
    color: var(--pg-muted);
    transition: transform .2s ease;
}

/* ✅ “そのdetails直下のsummary”だけ回転 */
.pg-details[open]>.pg-summary .pg-chev {
    transform: rotate(180deg);
}

.pg-detailsBody {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px dashed var(--pg-line);
    font-size: 14px;
}

/* CTA */
.pg-cta {
    margin-top: 40px;
    padding: 16px 18px;
    border-radius: var(--pg-radius-lg);
    background: linear-gradient(135deg, #81CFC7, #B5E3DC);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}

.pg-ctaTitle {
    font-weight: 800;
    font-size: 18px;
}

.pg-ctaText {
    font-size: 14px;
    opacity: 0.9;
}

.pg-ctaBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: #fff;
    color: var(--text);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    min-width: 160px;
}

.pg-ctaBtn::after {
    content: "▶";
    font-size: 11px;
    margin-left: 6px;
}

/* SP最適化 */
@media(max-width:767px) {
    .price-guide {
        padding: 24px 0 56px;
    }

    .pg-h2 {
        font-size: 20px;
    }

    .pg-h3 {
        font-size: 17px;
    }

    .pg-table {
        display: none;
    }

    .pg-cards {
        display: grid;
    }

    .pg-grid2 {
        grid-template-columns: 1fr;
    }

    .pg-exampleGrid {
        grid-template-columns: 1fr;
    }

    .pg-cta {
        align-items: flex-start;
    }
}