/* ===================================
   料金案内ページ専用スタイル
=================================== */

/* イントロセクション */
.price-intro {
    padding: 48px 20px;
    background: #fff;
}

.price-intro-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.price-intro-heading {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.4;
}

.price-intro-text {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.8;
}

/* 料金表セクション */
.price-list-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.price-list-container {
    max-width: 1200px;
    margin: 0 auto;
}

.price-cards {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

/* 料金カード */
.price-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.price-card-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 20px 24px;
}

.price-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.price-card-body {
    padding: 32px 24px;
}

.price-card-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.price-number {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.price-unit {
    font-size: 20px;
    font-weight: 600;
    color: #7f8c8d;
    margin-left: 4px;
}

.price-card-note {
    text-align: center;
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 24px;
}

.price-card-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.price-card-includes li {
    padding: 12px 0 12px 32px;
    font-size: 14px;
    color: #4a4a4a;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
}

.price-card-includes li:last-child {
    border-bottom: none;
}

.price-card-includes li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.price-card-link {
    display: block;
    text-align: center;
    padding: 12px 24px;
    background: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s ease;
}

.price-card-link:hover {
    background: #d5dbdb;
}

/* 浮気調査カード（時間制） */
.price-card-hourly .price-card-header {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
}

.price-card-hourly .price-card-amount {
    margin-bottom: 12px;
}

.price-card-hourly .price-number {
    color: #0066cc;
}

.price-card-hourly-info {
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 102, 204, 0.015) 2px, rgba(0, 102, 204, 0.015) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0, 102, 204, 0.015) 2px, rgba(0, 102, 204, 0.015) 4px),
        #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}

.price-card-hourly-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
    text-align: center;
}

.price-card-discount-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-card-discount-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: #fff;
    border-radius: 6px;
    font-size: 13px;
}

.discount-time {
    font-weight: 600;
    color: #2c3e50;
}

.discount-rate {
    font-weight: 700;
    color: #0066cc;
    font-size: 14px;
}

/* 料金に含まれるものセクション */
.price-includes-section {
    padding: 60px 20px;
    background: #fff;
}

.price-includes-container {
    max-width: 1200px;
    margin: 0 auto;
}

.includes-grid {
    display: grid;
    gap: 24px;
    margin-top: 40px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.includes-item {
    text-align: center;
    padding: 32px 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.includes-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius: 50%;
}

.includes-icon svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.includes-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.includes-text {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* 追加費用についての注意書き */
.includes-note {
    margin-top: 48px;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 8px;
}

.includes-note-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.includes-note-text {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.includes-note-text:last-child {
    margin-bottom: 0;
}

.includes-note-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.includes-note-list li {
    padding: 8px 0 8px 20px;
    font-size: 15px;
    color: #4a4a4a;
    position: relative;
}

.includes-note-list li::before {
    content: "・";
    position: absolute;
    left: 4px;
    color: #7f8c8d;
    font-weight: 400;
}

/* お支払い方法セクション */
.payment-section {
    padding: 60px 20px;
    background: #f8f9fa;
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
}

.payment-methods {
    display: grid;
    gap: 24px;
    margin-top: 40px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.payment-method {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.payment-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border-radius: 50%;
}

.payment-icon svg {
    width: 32px;
    height: 32px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.payment-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
}

.payment-text {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
}

.payment-note {
    margin-top: 32px;
    text-align: center;
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.8;
}

/* デスクトップ（768px以上） */
@media (min-width: 768px) {
    .price-intro {
        padding: 80px 40px;
    }

    .price-intro-heading {
        font-size: 36px;
    }

    .price-intro-text {
        font-size: 16px;
    }

    .price-list-section {
        padding: 80px 40px;
    }

    .price-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-includes-section {
        padding: 80px 40px;
    }

    .includes-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .payment-section {
        padding: 80px 40px;
    }

    .payment-methods {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 大画面デスクトップ（1024px以上） */
@media (min-width: 1024px) {
    .price-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* .mobile-viewport内では常にモバイルデザインを維持 */
.mobile-viewport .price-intro {
    padding: 48px 20px !important;
}

.mobile-viewport .price-intro-heading {
    font-size: 28px !important;
}

.mobile-viewport .price-intro-text {
    font-size: 15px !important;
}

.mobile-viewport .price-list-section {
    padding: 60px 20px !important;
}

.mobile-viewport .price-cards {
    grid-template-columns: 1fr !important;
}

.mobile-viewport .price-includes-section {
    padding: 60px 20px !important;
}

.mobile-viewport .includes-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
}

.mobile-viewport .payment-section {
    padding: 60px 20px !important;
}

.mobile-viewport .payment-methods {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
}






/* 料金に含まれるもの - ハイライト追加 */
.includes-highlight {
    margin-top: 32px;
    padding: 24px 32px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 8px;
    text-align: center;
}

.includes-highlight p {
    color: #fff;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.includes-highlight p + p {
    margin-top: 12px;
}

.includes-highlight strong {
    font-weight: 700;
    font-size: 16px;
}

/* デスクトップ（768px以上） */
@media (min-width: 768px) {
    .includes-highlight p {
        font-size: 16px;
    }
    
    .includes-highlight strong {
        font-size: 17px;
    }
}

/* .mobile-viewport内では常にモバイルデザインを維持 */
.mobile-viewport .includes-highlight {
    padding: 24px 32px !important;
}

.mobile-viewport .includes-highlight p {
    font-size: 15px !important;
}

.mobile-viewport .includes-highlight strong {
    font-size: 16px !important;
}