/*************************************************

CONTENTS

****************************************************/

#home #main {
    padding: 142px 0 0;
}

#home .wrap__list {
    gap: 54px;
    align-items: flex-end;
    margin-bottom: 105px;
}

#home .wrap__list .logo_search {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40rem;
}

#home .wrap__list .img1 {
    width: 196px;
    flex: 1;
}

#home .wrap__list .img2 {
    width: 336px;
}

#home .wrap__list .img3 {
    width: 192px;
    flex: 1;
}

.cta {
    justify-content: center;
    gap: 23px;
    background-color: #F1F2F3;
    padding: 35px 0;
    margin-top: 58px;
}

.cta .tel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta .tel a {
    font-size: 2.6rem;
    font-weight: bold;
    line-height: calc(32/ 26);
    text-decoration: none;
}

.cta .tel span {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: calc(22 / 14);
}

.cta .tel a span {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 2;
}

/* Responsive
*********************************************************/

/* Smartphone side + Tablet Vertical */
@media screen and (max-width:1200px) {

    .cta {
        flex-direction: column;
        align-items: center;
        gap: 23px;
        background-color: #F1F2F3;
        padding: 35px 0;
        margin-top: 58px;
    }
}

@media screen and (max-width:828px) {
    #home .wrap__list .logo_search {
        width: 30rem;
    }

    #home .wrap__list .img2 {
        width: 100%;
    }
}

/* Smartphone Vertical */
@media screen and (max-width:450px) {

    #home #main {
        padding: 80px 0 0;
    }

    #home .wrap__list {
        flex-wrap: wrap;
        gap: 35px;
    }

    #home .wrap__list .img1 {
        order: 1;
        width: 50%;
    }

    #home .wrap__list .img3 {
        order: 2;
        width: 50%;
    }

    #home .wrap__list .logo_search {
        order: 3;
        width: 80%;
        margin: 2rem auto 0;
    }
}