@charset "UTF-8";

/* 料金ページ Voice埋め込み（リンクなし・データ表示／/voice風 左右交互レイアウト） */
.price-voices {
    margin: 0 auto;
    padding: 14vw 5vw 4vw;
}

.price-voices .midashi01 {
    text-align: center;
    margin-bottom: 2vw;
}

.price-voices-lead {
    text-align: center;
    font-size: 3.4vw;
    color: #65606b;
    line-height: 1.8;
    margin-bottom: 10vw;
}

.price-voices-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 画像は全幅表示・テキストはその下 */
.price-voices-card {
    margin-bottom: 12vw;
}

.price-voices-card:last-child {
    margin-bottom: 0;
}

.price-voices-img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.price-voices-body {
    padding: 5vw 1vw 0;
}

.price-voices-title {
    font-size: 4.4vw;
    font-weight: bold;
    color: #4a3f35;
    line-height: 1.5;
    margin: 0 0 4vw;
}

.price-voices-data {
    background: #f7f3ee;
    border-radius: 8px;
    padding: 4vw 4.5vw;
    margin-bottom: 4vw;
}

.price-voices-data-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 3.6vw;
    color: #65606b;
    padding: 1.5vw 0;
}

.price-voices-data-row + .price-voices-data-row {
    border-top: 1px dashed #d8cdbd;
}

.price-voices-data .pv-label {
    font-size: 3.2vw;
    color: #a89880;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.price-voices-data .pv-value {
    font-weight: 600;
}

.price-voices-data .pv-value small {
    font-size: 70%;
    font-weight: normal;
}

.price-voices-data .pv-value strong {
    color: #da9e71;
    font-size: 115%;
}

.price-voices-data .pv-arrow {
    color: #c9bba6;
    margin: 0 0.3em;
}

.price-voices-text {
    font-size: 3.4vw;
    line-height: 2;
    color: #65606b;
    margin: 0 0 5vw;
}

/* 体験談を読むボタン（ミニマル・プライマリーカラー） */
.price-voices-btn {
    text-align: center;
}

.price-voices-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 2.8vw 7vw;
    background: #da9e71;
    color: #fff;
    font-size: 3.2vw;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s;
}

.price-voices-link::after {
    content: "→";
    font-size: 0.95em;
}

.price-voices-link:hover {
    opacity: 0.85;
    color: #fff;
}

/* PC：画像とテキストを左右に。偶数番は左右反転（/voice風の交互配置） */
@media screen and (min-width: 736px) {
    .price-voices {
        padding: 100px 50px 40px;
        max-width: 1000px;
    }

    .price-voices .midashi01 {
        margin-bottom: 16px;
    }

    .price-voices-lead {
        font-size: 16px;
        margin-bottom: 60px;
    }

    .price-voices-card {
        display: flex;
        align-items: center;
        gap: 50px;
        margin-bottom: 70px;
    }

    .price-voices-card:nth-child(even) {
        flex-direction: row-reverse;
    }

    .price-voices-img {
        flex: 0 0 48%;
        width: 48%;
    }

    .price-voices-body {
        flex: 1;
        padding: 0;
    }

    .price-voices-title {
        font-size: 20px;
        margin-bottom: 18px;
    }

    .price-voices-data {
        padding: 16px 20px;
        margin-bottom: 18px;
    }

    .price-voices-data-row {
        font-size: 15px;
        padding: 6px 0;
    }

    .price-voices-data .pv-label {
        font-size: 13px;
    }

    .price-voices-text {
        font-size: 15px;
        margin-bottom: 24px;
    }

    /* PC時は左揃え（左右交互レイアウトに合わせる） */
    .price-voices-btn {
        text-align: left;
    }

    .price-voices-card:nth-child(even) .price-voices-btn {
        text-align: right;
    }

    .price-voices-link {
        padding: 12px 32px;
        font-size: 14px;
        border-radius: 4px;
    }
}
