/* ========================================
   料金表ページ専用スタイルシート (price.css)
   ======================================== */

/* ========================================
   ページ内タイトル
   ======================================== */
.price-title-section {
    background: #0077c3;
    padding: 64px 0;
    margin-top: 80px;
}

.price-title {
    font-weight: 900;
    font-size: 32px;
    color: #fff;
    text-align: center;
    margin: 0;
    line-height: 1.8;
}
.price-title-subtitle {
    font-size: 20px;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
    .price-title {
        font-size: 28px;
    }
    .price-title-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .price-title-section {
        padding: 50px 0;
    }
    
    .price-title {
        font-size: 24px;
    }
    .price-title-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .price-title-section {
        padding: 40px 0;
    }
    
    .price-title {
        font-size: 20px;
    }
    .price-title-subtitle {
        font-size: 14px;
    }
}

/* ========================================
   ページ内メニュー
   ======================================== */
.price-menu-section {
    padding: 64px 0;
    background: #fff;
}

.price-menu-wrapper {
    background: rgba(230, 244, 241, 0.75);
    border-radius: 8px;
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 24px;
    align-items: start;
}

.price-menu-wrapper p {
    font-weight: 700;
    color: #333333;
    margin: 0;
    white-space: nowrap;
}

.price-menu-wrapper a {
    white-space: nowrap;
    transition: color 0.3s ease;
    margin-right: 24px;
}

.price-menu-wrapper a:last-child {
    margin-right: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .price-menu-section {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .price-menu-wrapper {
        padding: 12px;
        gap: 3px;
        grid-template-columns: 1fr;
    }
    
    .price-menu-wrapper p,
    .price-menu-wrapper a {
        font-size: 13px;
    }
    
    .price-menu-wrapper a {
        margin-right: 12px;
    }
}

/* ========================================
   料金テーブルセクション
   ======================================== */
.price-table-section {
    padding: 80px 0 40px 0;
    background: #fff;
}
.price-table-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
/* レスポンシブ対応 */
@media (max-width: 1200px) {
    .price-table-content {
        gap: 35px;
    }
}
@media (max-width: 768px) {
    .price-table-section {
        padding: 60px 0;
    }
    .price-table-content {
        gap: 30px;
    }
}
@media (max-width: 480px) {
    .price-table-section {
        padding: 40px 0;
    }
    .price-table-content {
        gap: 25px;
    }
}
/* タイトル */
.price-included-title {
    font-weight: 700;
    font-size: 32px;
    color: #333333;
    text-align: center;
    margin: 0;
}
@media (max-width: 1200px) {
    .price-included-title {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .price-included-title {
        font-size: 24px;
    }
}
@media (max-width: 480px) {
    .price-included-title {
        font-size: 20px;
    }
}

/* クレジットカード画像 */
.price-credit-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-credit-img {
    aspect-ratio: 1131 / 81;
    max-width: 900px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ========================================
   お見積り注意点セクション
   ======================================== */
.price-estimate-warning-section {
    padding: 20px 0 50px;
}

.price-estimate-warning-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #cccccc;
    border-radius: 8px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-estimate-warning-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
}

.price-estimate-warning-icon {
    width: 32px;
    aspect-ratio: 1 / 1;
}

.price-estimate-warning-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.price-estimate-warning-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #333333;
    margin: 0;
}

.price-estimate-warning-content {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 2;
    color: #333333;
    text-align: center;
}

.price-estimate-warning-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.price-estimate-warning-content li {
    margin: 0 0 0.5rem 0;
    padding-left: 27px;
    position: relative;
    line-height: 1.4;
}

.price-estimate-warning-content li:last-child {
    margin-bottom: 0;
}

.price-estimate-warning-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #333333;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
    .price-estimate-warning-wrapper {
        padding: 30px;
    }
    
    .price-estimate-warning-title {
        font-size: 20px;
    }
    
    .price-estimate-warning-content {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .price-estimate-warning-wrapper {
        padding: 20px;
    }
    
    .price-estimate-warning-header {
        gap: 5px;
    }
    
    .price-estimate-warning-icon {
        width: 16px;
    }
    
    .price-estimate-warning-title {
        font-size: 14px;
    }
    
    .price-estimate-warning-content {
        font-size: 13px;
    }
}

/* ========================================
   料金セクション共通タイトル
   ======================================== */
.price-section-title {
    font-weight: 900;
    font-size: 32px;
    color: #333333;
    text-align: center;
    margin: 0;
    line-height: 1;
    padding: 40px 0;
}

/* レスポンシブ対応 */
@media (max-width: 1200px) {
    .price-section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .price-section-title {
        padding: 30px 0;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .price-section-title {
        padding: 20px 0;
        font-size: 20px;
    }
}

@media (max-width: 1200px) {
    .price-cleaning-content {
        gap: 32px;
        margin-bottom: 40px;
    }
    .price-cleaning-image {
        flex: 0 0 350px;
    }
    .price-cleaning-text p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .price-cleaning-content {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 32px;
    }
    .price-cleaning-image {
        flex: none;
        width: 100%;
        max-width: 500px;
    }
    .price-cleaning-text p {
        font-size: 14px;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .price-section-title {
        padding: 20px 0;
        font-size: 20px;
    }
    .price-cleaning-content {
        gap: 20px;
        margin-bottom: 24px;
    }
    .price-cleaning-image {
        max-width: 100%;
    }
    .price-cleaning-text p {
        font-size: 14px;
        line-height: 1.75;
    }
}

/* ========================================
   料金サービスセクション共通
   ======================================== */
.price-cleaning-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.price-cleaning-image {
    flex: 0 0 400px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
}
.price-cleaning-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.price-cleaning-text {
    flex: 1;
}
.price-cleaning-text p {
    font-size: 16px;
    color: #333333;
    line-height: 2;
    margin: 0;
}

.price-service-section {
    padding: 80px 0 40px 0;
    background: #fff;
}



