/* ===== 料金案内ページ専用CSS ===== */

/* KVビジュアル */
.kv-visual {
    margin-top: 93px;
    height: 45vh;
    min-height: 350px;
    background: linear-gradient(135deg, rgba(15, 26, 61, 0.95) 0%, rgba(30, 58, 138, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.kv-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pricing-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.kv-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.kv-content h1 {
    font-family: 'Georgia', serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.kv-content p {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* パンくずリスト */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 1rem 3rem;
    border-bottom: 1px solid #e8e8e8;
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    list-style: none;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    padding: 0;
}

.breadcrumb-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: #1e3a8a;
}

/* 料金セクション */
.pricing-section {
    padding: 80px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.pricing-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-section:nth-child(even) {
    background: #f8f9fa;
}

.pricing-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-label {
    margin-bottom: 1rem;
}

.section-label .en {
    font-family: 'Georgia', serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: #1e3a8a;
    text-transform: uppercase;
}

.section-label .jp {
    font-family: 'Noto Serif JP', serif;
    font-size: 1rem;
    color: #666;
    margin-left: 0.8rem;
}

.section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #1e3a8a;
}

.pricing-intro {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* サブセクション */
.sub-section {
    margin-bottom: 2.5rem;
}

.sub-section-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 4px solid #1e3a8a;
}

/* 料金テーブル */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    background: white;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.pricing-table th {
    background: #1e3a8a;
    color: white;
    font-weight: 500;
    white-space: nowrap;
}

.pricing-table th:first-child {
    width: 40%;
}

.pricing-table td {
    color: #333;
}

.pricing-table td.price {
    color: #1e3a8a;
    font-weight: 500;
}

.pricing-table tr:nth-child(even) td {
    background: #f8f9fa;
}

.pricing-table tr:hover td {
    background: #e8f0fe;
}

/* 注意事項 */
.pricing-note {
    background: #fffbeb;
    border-left: 4px solid #d97706;
    padding: 1.2rem 1.5rem;
    margin-top: 1.5rem;
}

.pricing-note p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
    margin-bottom: 0.3rem;
}

.pricing-note p:last-child {
    margin-bottom: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .kv-visual {
        margin-top: 70px;
        height: 35vh;
        min-height: 280px;
    }

    .kv-content h1 {
        font-size: 2rem;
        letter-spacing: 0.15em;
    }

    .kv-content p {
        font-size: 0.95rem;
    }

    .breadcrumb {
        padding: 0.8rem 1.5rem;
    }

    .pricing-section {
        padding: 50px 0;
    }

    .pricing-container {
        padding: 0 1.5rem;
    }

    .section-label .en {
        font-size: 0.75rem;
        display: block;
        margin-bottom: 0.3rem;
    }

    .section-label .jp {
        margin-left: 0;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .pricing-intro {
        font-size: 0.9rem;
    }

    .sub-section-title {
        font-size: 1.1rem;
    }

    .pricing-table {
        display: block;
        overflow-x: auto;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .pricing-note p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .pricing-table th:first-child {
        width: 35%;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.7rem 0.8rem;
        font-size: 0.8rem;
    }
}