﻿/*---------
料金
----------*/

/*----共通ブロック ----*/

/*----コンテンツブロック ----*/

.fees_title {
    font-size: calc(48px / 2);
    padding-bottom: calc(20px / 2);
    margin-bottom: calc(40px / 2);
    border-bottom: 1px solid #333333;
}

.fee-item_label {
    background: #0089D4;
    width: 100%;
    height: calc(80px / 2);
    display: flex;
    align-items: center;
    padding-left: calc(30px / 2);
    font-size: calc(32px / 2);
    font-weight: 500;
    color: var(--sub-text-color);
}

.fee-item_value {
    font-size: calc(40px / 2);
    font-weight: bold;
    color: var(--main-color);
    padding: 15px 0 0 25px;
}

.fee-item_tax {
    font-size: calc(28px / 2);
    font-weight: 400;
    color: var(--text-color);
    line-height: calc(20 / 14);
}

/*-- 登録諸費用 --*/

.registration-fees {
    width: calc(100% - 40px);
    margin: 0 auto 30px;
}

.registration-fees_items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/*-- 月額リース料金 --*/

.lease-fees .fees_title {
    width: calc(100% - 40px);
    margin: 0 auto 20px;
}

.lease-fee_list {
    margin-bottom: calc(80px / 2);
}

.lease-fee_item {
    padding-top: calc(80px / 2);
}

.lease-fee_item:first-child {
    padding-top: 0;
    padding-bottom: calc(80px / 2);
}

.lease-fee_item:nth-child(even) {
    background: url("../images/common/content_bg_plaid-pattern.jpg") center / cover no-repeat;
    padding: 40px 0;
}

.picture_block {
    margin-bottom: calc(20px / 2);
}

.lease_picture img {
    width: 100%;
    object-fit: cover;
}

.fee-item_title {
    font-size: calc(40px / 2);
    font-weight: 400;
    color: var(--text-color);
    text-align: center;
    margin-bottom: calc(50px / 2);
}

.note_block {
    width: calc(100% - 40px);
    margin: 0 auto;
}

.note_title {
    font-size: calc(40px / 2);
    font-weight: 500;
    color: var(--text-color);
    text-align: center;
    padding-bottom: calc(20px / 2);
    margin-bottom: calc(30px / 2);
    border-bottom: 1px solid #333333;
}

.note_text {
    font-size: calc(32px / 2);
    font-weight: 400;
    color: #000;
    line-height: calc(28 / 16);
}

@media (min-width:768px) {

    /*-- 共通 --*/

    .fees_title {
        font-size: 30px;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }

    /*-- 登録諸費用 --*/

    .registration-fees {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto 80px;
    }

    .registration-fees_items {
        gap: 30px;
    }

    .registration-fees_items .fee-item {
        display: flex;
        align-items: center;
    }

    .registration-fees_items .fee-item_label {
        font-size: 18px;
        padding-left: 30px;
        max-width: 253px;
        height: 80px;
    }

    .registration-fees_items .fee-item_value {
        font-size: 30px;
        padding: 0 0 0 50px;
    }

    .registration-fees_items .fee-item_tax {
        font-size: 20px;
        margin-left: 3px;
    }


    /*-- 月額リース料金 --*/

    .lease-fees {
        max-width: 1200px;
        margin: 0 auto;
    }

    .lease-fees .fees_title {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto 60px;
    }

    .lease-fees .fee-item_label {
        justify-content: center;
        padding: 0;
    }

    .lease-fees .fee-item_value {
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0 0;
    }

    .lease-fees .fee-item_tax {
        font-size: 16px;
        margin-left: 10px;
    }

    .lease-fee_list {
        display: grid;
        grid-template-columns: repeat(auto-fit, 376px);
        justify-content: center;
        gap: 35px;
        margin-bottom: 40px;
    }

    .lease-fee_item {
        flex: 1 1 50%;
        max-width: 376px;
    }

    .lease-fee_item,
    .lease-fee_item:first-child,
    .lease-fee_item:nth-child(even) {
        padding: 0;
    }

    .lease-fee_item:nth-child(even) {
        background: none;
    }

    .lease_picture img {
        border-radius: 10px;
        aspect-ratio: 376 / 257;
    }

    .fee-item_title {
        margin-bottom: 40px;
    }

    .note_block {
        width: 100%;
    }

    .note_title {
        font-size: 18px;
        text-align: left;
        margin-bottom: 10px;
        padding-bottom: 0;
        border-bottom: none;
    }

    .note_text {
        font-size: 16px;
    }

}