/* fv */
.fv {
    margin-top: 100px;
}

.fv_title {
    font-size: 80px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    color: #333;
}

@media screen and (max-width: 1024px) {
    .fv_title {
        font-size: 80px;
    }
}

@media screen and (max-width: 768px) {
    .fv_title {
        font-size: 48px;
    }
}

.fv_subtitle {
    font-size: 14px;
    width: fit-content;
    line-height: 30px;
    height: 30px;
}
.fv_subtitle_h2 {
    font-size: 28px;
    padding: 40px 0;
    width: 96%;
    margin-left: auto;
}

/* commerce */
.commerce {
    padding-bottom: 130px;
}

@media screen and (max-width: 768px) {
    .commerce {
        padding-bottom: 70px;
    }
}

.commerce_text {
    margin: 40px 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.8rem;
}

@media screen and (max-width: 768px) {
    .commerce_text {
        font-size: 16px;
        margin-top: 50px;
    }
}

/* .commerce_container {
    margin-top: 20px;
    line-height: 2.1rem;
    padding: 20px;
} */
.commerce_container {
    width: 96%;
    /* margin-top: 50px; */
    margin-left: auto;
}
.commerce_container h2 {
    font-size: 24px;
    font-weight: 400;
    padding: 30px 0 10px 0;
}


@media screen and (max-width: 768px) {
    .commerce_container {
        margin-top: 50px;
    }
}
@media screen and (max-width: 1024px) {
    .commerce_container {
        width: 100%;
    }
}

.commerce_form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media screen and (max-width: 768px) {
    .commerce_form {
        gap: 30px;
    }
}


.commerce_item {
    display: flex;
    justify-content: space-between;
}

.commerce_item_text {
    line-height: 160%;
}

.commerce_item_label {
    width: 30%;
    border-bottom: 2px solid #ACACAC;
    padding-block: 32px;
}

@media screen and (max-width: 768px) {
    .commerce_item_label {
        width: 40%;
    }
}

.commerce_item_value {
    text-align: left;
    width: 80%;
    border-bottom: 2px solid #DDDDDD;
    padding-block: 32px;
    padding-left: 10px;
}


