/* 
----------------------------------------- */

.service-ttl {
    background: var(--main-color);
    color: #fff;
    text-align: center;
    padding: 24px;
    font-size: 38px;
    line-height: 1.5;
}

.service-ttl span {
    font-size: 20px;
}

@media screen and (max-width: 767px) {
    .service-ttl {
        font-size: 20px;
    }

    .service-ttl span {
        font-size: 14px;
    }
}



/*
----------------------------------------*/


.service-box {
    border-radius: 10px;
    padding: 64px;
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    box-shadow: var(--box-shadow);
}

.service-box:nth-child(even) {
    flex-direction: row-reverse;
}


@media screen and (max-width: 767px) {
    .service-box {
        flex-direction: column;
        padding: 40px 24px;
        margin-top: 24px;
    }

    .service-box:nth-child(even) {
        flex-direction: column;
    }
}


.service-box:nth-child(even) .service-box-img {
    justify-content: flex-end;
}

.service-box:nth-child(even) .service-box-ttl {
    text-align: right;
}

.service-box-content {
    width: 75%;
}

.service-box-img {
    width: 20%;
}

@media screen and (max-width: 767px) {

    .service-box:nth-child(even) .service-box-ttl {
        text-align: left;
    }

    .service-box-content {
        width: 100%;
        order: 2;
    }

    .service-box-img {
        width: 52%;
        order: 1;
        margin: auto;
        margin-bottom: 24px;
    }
}

.service-box-ttl a {
    font-size: 32px;
    position: relative;
    padding-right: 1.5em;
}

@media screen and (max-width: 767px) {
    .service-box-ttl a {
        font-size: 20px;
    }
}

.service-box-ttl a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1em;
    height: 1em;
    background: url("../img/icon-arrow03.svg") no-repeat center / contain;
    transform: translateY(-50%);
    transition: transform .3s ease;
}

.service-box-ttl a:hover::after {
    transform: translate(4px, -50%);
}

.service-box.is-bg01 {
    background: var(--bg-color02);
}

.service-box.is-bg02 {
    background: var(--bg-color03);
}

.service-box.is-bg03 {
    background: var(--bg-color04);
}

.service-box.is-bg04 {
    background: var(--bg-color05);
}

.service-box-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .7em;
    padding: 20px;
    margin-top: 32px;
    font-weight: bold;
    background: #fff;
}

.service-box-list li {
    position: relative;
    padding-left: 1.2em;
    width: calc((100% - 24px) / 2);
}

@media screen and (max-width: 767px) {

    .service-box-list {
        gap: 0;
        padding: 16px;
    }

    .service-box-list li {
        width: 100%;
        font-size: 14px;
    }
}

.service-box-list .is-dot::before {
    content: "・";
    position: absolute;
    left: 0;

}

.service-box-list .is-check::before {
    content: "";
    background: url(../img/icon-check.svg);
    background-size: cover;
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
    top: 8px;
    margin: auto;

}

.subsidy-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.subsidy-list li {
    width: calc((100% - 16px) / 2);
    box-shadow: var(--box-shadow);
    background: #fff;
}

.subsidy-list li a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    width: 100%;
    height: 100%;
    color: var(--main-color);
    font-size: min(4.5vw, 20px);
    line-height: 1.4;
    font-weight: bold;
    text-decoration: none;
}

.subsidy-list li .text-small {
    font-size: 16px;
}

.icon-subsidy-top {
    width: 48px;
}

@media screen and (max-width: 767px) {

    .subsidy-list {
        margin-top: 24px;
    }

    .subsidy-list li {
        width: 100%;
        font-size: 16px;
        gap: 8px;
    }

    .subsidy-list li .text-small {
        font-size: 14px;
    }

    .icon-subsidy-top {
        width: 32px;
    }

}

/*
----------------------------------------*/

.feature-solution .sec-ttl {
    color: var(--main-color);
}

.feature-solution-row {
    display: flex;
    align-items: center;
    gap: 64px;
    margin-top: 64px;
}

.feature-solution-row.is-reverse {
    flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
    .feature-solution-row {
        flex-direction: column;
        gap: 10px;
        margin-top: 32px;
        margin-bottom: 48px;
    }

    .feature-solution-row.is-reverse {
        flex-direction: column;
    }

    .feature-solution-row:last-child {
        margin-bottom: 0;
    }

}

.feature-solution-num {
    font-size: 48px;
    font-weight: bold;
    color: var(--main-color);
}

.feature-solution-ttl {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
.feature-solution-num {
    font-size: 32px;
}

.feature-solution-ttl {
    font-size: min(5vw, 20px);
}
}

.feature-solution-img {
    max-width: 300px;

}

@media screen and (max-width: 767px) {
    .feature-solution-img {
        order: 0;
        width: 60%;
        margin: auto;
    }

    .feature-solution-content {
        order: 1;
    }
}


/*
----------------------------------------*/



.feature-reason-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}


.feature-reason-row:last-child {
    margin-bottom: 0;
}

.feature-reason-row.is-reverse {
    flex-direction: row-reverse;
}

@media screen and (max-width: 1080px) {
    .feature-reason-row {
        flex-direction: column;
        gap: 0;
        margin-top: 32px;
        margin-bottom: 48px;
    }

    .feature-reason-row.is-reverse {
        flex-direction: column;
    }


}

.feature-reason-ttl {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
    color: var(--main-color);
}

.feature-reason-content {
    width: 50%;
}

.feature-reason-img {
    max-width: 520px;

}

@media screen and (max-width: 1080px) {

    .feature-reason-ttl {
        font-size: 20px;
    }

    .feature-reason-img {
        order: 0;
        width: 100%;
        max-width: 100%;
        margin-bottom: 1em;
    }

    .feature-reason-content {
        width: 100%;
        order: 1;
    }
}


/*
----------------------------------------*/

.flow-bg {
    background: var(--bg-flow);
}



.flow-list {
    display: flex;
    margin-top: 60px;
}

.flow-listitem {
    width: calc((100% - 80px)/ 5);
    margin-right: 20px;
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 16px 0;
    padding-top: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}





.flow-listitem:nth-child(5n) {
    margin-right: 0;
}

.flow-listitem .item-step {
    font-weight: bold;
    position: absolute;
    top: -19px;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: center;
    color: var(--flow-color);
    font-size: 38px;
    padding: 0;
    line-height: 1;
}

.flow-text p {
    color: var(--main-color);
    line-height: 1.4;
    font-weight: bold;
}

.flow-img {
    position: relative;
    max-width: 80px;
    margin-bottom: 16px;
}

.flow-listitem::after {
    position: absolute;
    content: "";
    background: url(../img/icon-arrow01.svg);
    background-size: cover;
    height: 32px;
    width: 32px;
    left: calc(100% - 6px);
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 9;
}

.flow-listitem:last-child::after {
    content: none;
}


@media (max-width: 1024px) {

    .flow-list {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 37px;
        gap: 37px;
    }

    .flow-listitem {
        width: 100%;
        max-width: 350px;
        margin-right: 0;
        margin-bottom: 0;
        flex-direction: unset;
        gap: 16px;
        padding: 16px;
        justify-content: flex-start;
        align-items: center;
        text-align: left;
    }

    .flow-listitem::after {
        position: absolute;
        content: "";
        background: url(../img/icon-arrow01.svg);
        background-size: cover;
        height: 24px;
        width: 24px;
        left: 0;
        right: 0;
        top: calc(100% - 12px);
        bottom: unset;
        margin: auto;
        z-index: 9;
        transform: rotate(90deg);
    }

    .flow-listitem .item-step {
        font-size: 32px;
        top: -16px;
    }


    .flow-img {
        width: 100%;
        max-width: 48px;
        margin-bottom: 0;
    }

    .flow-text {
        width: 80%;
    }

    .flow-text h3 {
        font-size: 14px;
        text-align: left;
        margin-top: 1em;
    }
}


/*
----------------------------------------*/

.trial-flow-bg {
    background: var(--bg-color06);
}

.trial-flow-list {
    display: flex;
}

.trial-flow-listitem {
    width: calc((100% - 180px)/ 3);
    margin-right: 90px;
    position: relative;
    text-align: center;
}





.trial-flow-listitem:nth-child(3n) {
    margin-right: 0;
}


.trial-flow-listitem .item-step {
    font-weight: bold;
    color: #fff;
    background: var(--main-color);
    font-size: 24px;
    padding: 10px;
    line-height: 1;
    border-radius: 50%;
    display: inline-block;
    width: 48px;
    height: 48px;
    top: 24px;
    position: relative;
    z-index: 3;
}

.trial-flow-text h3 {
    font-size: 20px;
    color: var(--main-color);
    font-weight: bold;
    text-align: center;
    margin: .7em 0;
    line-height: 1.4;
}

.trial-flow-text p {
    text-align: left;
}

.trial-flow-text span {
    font-size: 14px;
}

.trial-flow-img {
    position: relative;
}

.trial-flow-img::after {
    position: absolute;
    content: "";
    background: url(../img/icon-arrow01.svg);
    background-size: cover;
    height: 32px;
    width: 32px;
    left: calc(100% + 29px);
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 9;
}

.trial-flow-listitem:last-child .trial-flow-img::after {
    content: none;
}


@media (max-width: 1024px) {

    .trial-flow-img::after {
        display: none;
    }

    .trial-flow-listitem {
        width: 100%;
        margin-right: 0;

        justify-content: space-between;
        align-items: flex-start;
    }

    /* .trial-flow-img {
        width: 38%;
    }

    .trial-flow-text {
        width: 60%;
    } */

    /* .trial-flow-text h3 {
        font-size: 14px;
        text-align: left;
        margin-top: 1em;
    } */
}


/* swiper
----------------------------------------- */

@media screen and (min-width: 1025px) {
    .trial-flow-swiper .swiper-slide {
        width: calc((100% - 180px)/ 3);
        margin-right: 90px;
        flex-shrink: initial !important;
    }


}

@media screen and (max-width: 1024px) {


    .trial-flow-swiper .swiper-pagination {
        position: static !important;
        margin-top: 16px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 32px !important;
        height: 32px !important;
        background-size: cover;
        background-repeat: no-repeat;
        background: url(../img/icon-arrow01.svg);
        top: 40vw !important;
    }

    /* .swiper-button-prev {
        left: 30px;
    }

    .swiper-button-next {
        right: 30px;
    } */

}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

/* 
----------------------------------------- */

.check-list {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.check-list li {
    position: relative;
    padding: 0;
    padding-left: 5px;
    margin-left: 25px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.check-list li:before {
    content: "";
    position: absolute;
    left: -25px;
    width: 24px;
    height: 24px;
    background: url(../img/icon-check02.svg) no-repeat;
    background-size: cover;
    padding-left: 5px;

}

@media only screen and (max-width: 1024px) {

    .check-list {
        width: 100%;
        text-align: left;
        padding-left: 0;
    }

    .check-list li {
        font-size: 14px;
        padding-left: 0;
        align-items: flex-start;

    }

    .check-list li:before {
        top: 5px;
        width: 16px;
        height: 16px;
    }
}


/*
----------------------------------------*/

.consultation-info-lead {
    max-width: 632px;
    width: 100%;
}

@media (max-width: 767px) {}

.consultation-info-box {
    background: #fafafa;
    padding: 48px;
    margin-top: 40px;
    position: relative;
}

@media (max-width: 767px) {
    .consultation-info-box {
        padding: 40px 24px;
        text-align: center;
    }
}

.consultation-info-img {
    position: absolute;
    max-width: 300px;
    top: -84px;
    left: 65%;
}

@media (max-width: 767px) {
    .consultation-info-img {
        position: unset;
        max-width: 200px;
        order: 0;
        margin: auto;
    }
}


.consultation-info-ttl {
    color: var(--main-color);
    font-size: 24px;
    margin-bottom: .7em;
}

@media (max-width: 767px) {
    .consultation-info-ttl {
        font-size: 20px;
    }

}

.consultation-info-list {
    font-weight: bold;

}

.consultation-info-list span {
    color: var(--main-color);
}


/*
----------------------------------------*/
/*
----------------------------------------*/

/* .usage-sec-ttl {
    margin-bottom: .5em;
}

.usage-sec-subttl {
    margin-bottom: 5px;
    margin-top: 1em;
}

.usage-desc {
    text-align: center;
}

.usage-sec-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.usage-sec-content {
    width: 55%;
}

.usage-sec-img {
    width: 40%;
    margin-bottom: 1em;
}

@media (max-width: 767px) {
    .usage-sec-content {
        width: 100%;
        order: 1;
    }

    .usage-sec-img {
        width: 100%;
        text-align: right;
        order: 0;
    }
}




.usage-sec-listitem {
    border: solid 2px #eee;
    padding: 24px;
    margin-top: 24px;
}

@media (max-width: 767px) {
    .usage-sec-listitem {
        padding: 16px;
    }
}

.usage-sec-list-ttl {
    margin-bottom: 5px;
}

.usage-sec .contact-btn-flex {
    gap: 16px;
}

.usage-sec .contact-tel-ttl {
    font-size: 16px;
} */

/*
----------------------------------------*/

/* .insurance-sec-ttl {
    text-align: center;
    margin-bottom: .5em;
}

.insurance-sec-subttl {
    background: #eee;
    border-left: 4px solid var(--main-color);
    padding: 14px;
    padding-left: 28px;
    margin-bottom: 24px;
}

.insurance-sec-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
}

@media (max-width: 767px) {
    .insurance-sec-list {
        gap: 16px;
    }
}

.insurance-sec-listitem {
    width: calc((100% - 96px)/ 4);
    text-align: center;
    font-weight: bold;
}

@media (max-width: 767px) {
    .insurance-sec-listitem {
        width: calc((100% - 16px)/ 2);
        text-align: center;
        font-weight: bold;
    }
}

.insurance-sec-listitem-sub {
    width: calc((100% - 32px)/ 2);
    text-align: left;
    border: solid 1px #eee;
    padding: 24px;
}

@media (max-width: 767px) {
    .insurance-sec-listitem-sub {
        width: 100%;
        padding: 24px;
    }

}

.insurance-sec-list h4 {
    font-weight: bold;
}


.insurance-sec-desc {
    margin-bottom: 1em;
    margin-left: 28px;
}

.insurance-btn-flex {
    display: flex;
    justify-content: space-between;
    margin: 48px 0;
}

@media (max-width: 767px) {
    .insurance-btn-flex {
        flex-direction: column;
        gap: 8px;
        margin: 32px 0;
    }
}

.table-wrap {
    overflow: auto;
    white-space: nowrap;
}

.pr0002 .type01 {
    border-collapse: collapse;
    width: 100%;
    text-align: center;
    table-layout: fixed;
    border-collapse: collapse;
}

.pr0002-ttl {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}



.pr0002 th {
    padding: 1em;
    border: solid 1px #111111;
    width: 190px;
    text-align: center;
    background: #eee;
    vertical-align: middle;
}

.pr0002 td {
    padding: 1em 2em;
    width: 190px;
    border: solid 1px #111111;
    vertical-align: middle;
}

@media (max-width: 767px) {
    .pr0002 th {
        width: 100px;
    }

    .pr0002 td {
        width: 110px;
    }
}

.pr0002 td.small {
    font-size: 14px;
    font-weight: normal;
    padding: 1em;
}

.pr0002 th.empty {
    border: none;
} */

/* .pr0002 th:nth-child(1) {}


.pr0002 th:nth-child(2) {
    background: #EEEEEE;
}

.pr0002 th:nth-child(3n) {
    background: #DEDEDE;
}

.pr0002 th:nth-child(4n) {
    background: #FAFAFA;
}*/


.type01 th:not(:last-child) {
    height: auto;
}

.custom-th {
    position: relative;
    padding: 0;
}

.fake-height {
    position: absolute;
    bottom: 0;
    left: -8px;
    right: -8px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: solid 8px var(--accent-color);
    border-left: solid 8px var(--accent-color);
    border-right: solid 8px var(--accent-color);
    background: #eee;
}


.type01 th:last-child {
    border-left: solid 8px var(--accent-color);
    border-right: solid 8px var(--accent-color);
    border-top: none;

}

.type01 td:last-child {
    border-left: solid 8px var(--accent-color);
    border-right: solid 8px var(--accent-color);
    border-top: none;

}

.type01 tr:last-child td:last-child {
    border-bottom: solid 8px var(--accent-color);
}

.insurance-plan-ttl {
    background: #F7F4F0;
    text-align: center;
    padding: 24px;
    font-size: min(5.3vw, 20px);
}

.insurance-exclusion-ttl {
    text-align: center;
    margin-bottom: .5em;
}

.insurance-exclusion-desc {
    text-align: center;
}

.insurance-exclusion-subttl {
    margin-bottom: 1em;
}

.insurance-exclusion-list {
    background: #FAFAFA;
    padding: 48px 100px;
    border-radius: 9px;
    margin-top: 40px;
    margin-bottom: 48px;
}

@media only screen and (max-width: 767px) {
    .insurance-exclusion-list {
        padding: 24px;
        border-radius: 9px;
        margin-top: 24px;
        margin-bottom: 40px;
    }
}

.insurance-sec-list-exclusion {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.insurance-sec-listitem-exclusion {
    width: 100%;
    border: solid 1px #eee;
    padding: 24px;
}

@media only screen and (max-width: 767px) {}

/*
----------------------------------------*/
.kei-car-fig {
    width: 54px;
    margin-right: 16px;
}

@media only screen and (max-width: 767px) {
    .kei-car-fig {
        width: 41px;
    }
}

.kei-car-ttl {
    margin-bottom: .5em;
    display: flex;
    align-items: center;
}


.kei-car-card-ttl {
    margin-bottom: 1em;
}

@media only screen and (max-width: 767px) {
    .kei-car-card-ttl {
        font-size: 20px;
    }
}

.kei-car-card {
    border-bottom: solid 1px #eee;
    padding: 40px 0;
}

@media only screen and (max-width: 767px) {
    .kei-car-card {
        padding: 24px 0;
    }
}

.kei-car-card:first-of-type {
    border-top: solid 1px#eee;
    margin-top: 40px;
}

@media only screen and (max-width: 767px) {
    .kei-car-card:first-of-type {
        margin-top: 24px;
    }
}

.kei-car-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.kei-car-img {
    width: 32%;
}

.kei-car-content {
    width: 65%;
}

@media only screen and (max-width: 767px) {
    .kei-car-img {
        width: 100%;
        margin-bottom: 15px;
    }

    .kei-car-content {
        width: 100%;
    }
}

.car-tag-list {
    margin: 1em 0;
}

.car-tag {
    background: var(--main-color);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border-radius: 18px;
    padding: 0 1em;
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
}


.type02 {
    border-collapse: collapse;
    width: 100%;
    background: #fff;
    text-align: center;
    font-weight: bold;
}

.type02 th {
    padding: 1em;
    border: solid 1px #eee;
    background: #fff;
    text-align: center;
    vertical-align: middle;
    line-height: 1.4;
}

.type02 .th-color01 {
    background: var(--main-color);
    color: #fff;
}

.type02 td {
    padding: 1em;
    border: solid 1px #EEE;
    width: calc(100%/ 6);
    vertical-align: middle;
}

.type02 td:first-child {
    background: #F9F2DD;
}

.type02-note {
    font-weight: normal;
    margin-top: 1em;
}

@media only screen and (max-width: 767px) {

    .type02 {
        writing-mode: vertical-lr;
    }

    .type02 th span, .type02 td span {
        writing-mode: horizontal-tb;
        white-space: pre;

    }

    .type02 th, .type02 td {
        /* writing-mode: horizontal-tb; */
        height: 54px;
        width: 40%;
        padding: 0;
    }
}


/*
----------------------------------------*/

/* .recommend {
    background: #F7F4F0;
    padding-top: 80px;
    padding-bottom: 140px;
}

@media only screen and (max-width: 767px) {
    .recommend {
        padding-top: 40px;
        padding-bottom: 100px;
    }
}

.recommend-ttl {
    margin-bottom: 24px;
    text-align: center;
}

.recommend-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: -100px;
    margin-bottom: 64px;
}

@media only screen and (max-width: 767px) {
    .recommend-list {
        gap: 40px;
        margin-bottom: 0;
    }
}

.recommend-list.-mb0 {
    margin-bottom: 0;
}

.recommend-list.-mt0 {
    margin-top: 0;
    margin-bottom: 40px;
}

.recommend-listitem {
    width: calc((100% - 60px)/ 3);
}

@media only screen and (max-width: 767px) {
    .recommend-listitem {
        width: 100%;
    }

}


.recommend-listitem img {
    aspect-ratio: 300/200;
    width: 100%;
    height: auto;
}

.recommend-listitem h3 {
    margin: 14px 0;
    text-align: center;
}

.customer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    width: 100%;
    max-width: 640px;
    margin: auto;
    margin-bottom: 16px;
}

.customer-img {
    width: 130px;
    text-align: center;
}

.customer-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.customer-textarea {
    position: relative;
    margin-right: auto;
} */



/* .customer-text span {
    position: relative;
    background: #fff;
    padding: .7em 1.5em;
    border-radius: 4px;
    font-size: 18px;
    line-height: 1.7;
    font-weight: bold;
    display: inline-block;
}

@media only screen and (max-width: 767px) {
    .customer-text span {
        font-size: 16px;
    }
}

.customer-text span:before {
    content: "";
    position: absolute;
    top: 33px;
    left: -20px;
    margin-top: -15px;
    border: 10px solid transparent;
    border-right: 10px solid #fff;
}


.customer-textarea2 {
    margin-left: auto;
}

.customer-text2 span {
    background: #fff;
    padding: .7em 1.5em;
    border-radius: 4px;
    position: relative;
    font-size: 18px;
    line-height: 1.7;
    font-weight: bold;
    display: inline-block;
}

.customer-text2 span:before {
    content: "";
    position: absolute;
    top: 33px;
    right: -20px;
    margin-top: -15px;
    border: 10px solid transparent;
    border-left: 10px solid #fff;
}

@media only screen and (max-width: 767px) {

    .customer h3 {
        font-size: 14px;
    }

    .customer-flex {
        padding: 0;
        margin-bottom: 8px;
    }

    .customer-img {
        margin-bottom: 5%;
    }

    .customer-img img {
        width: 12vh;
        height: 12vh;
    }

    .customer-textarea {
        width: 73%;
        position: relative;
        margin-left: auto;
    }

    .customer-text {
        width: 100%;
        position: relative;
        font-size: 14px;
    } */


/* }

.car-type {
    margin-top: 40px;
}

.car-type-ttl {
    border-top: solid 1px #707070;
    border-bottom: solid 1px #707070;
    font-size: 24px;
    padding: 14px;
    margin-bottom: 16px;
}

@media only screen and (max-width: 767px) {

    .car-type-ttl {
        font-size: 20px;
    }
} */


/*
----------------------------------------*/

/* .features-sec-ttl {
    text-align: center;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

@media only screen and (max-width: 767px) {
    .features-list {
        gap: 32px 15px;
    }
}

.features-list li {
    width: calc((100% - 120px)/ 5);
    text-align: center;
    font-weight: bold;
}

@media only screen and (max-width: 767px) {
    .features-list li {
        width: calc((100% - 15px)/ 2);
    }

}

.features-list li img {
    margin-bottom: 8px;
} */

/*
----------------------------------------*/