#contact{
    width: 90%;
    margin: auto;
    padding: 35px 0;
}

.contact-info{
    display: flex;
    padding: 25px 0;
}

.contact-info-logo{
    display: flex;
    background-color: gray;
    font-size: 36px;
    color: white;
    width: 220px;
    height: 150px;
    justify-content: center;
    align-items: center;
}

.contact-info-text{
    margin-left: 20px;
}

.contact-link{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #16e016;
    color: white;
    text-decoration: none;
    width: 65%;
    height: 85px;
    margin: auto;
}
.contact-link-text{
    font-size: 27px;
}
/* .contact-link-mark{
    font-size: 10px;
    margin: 0 20px;
}
.contact-link-img{
    background-color: white;
    width: 55px;
    height: 55px;
}
.contact-link-sp-mark{
    display: none;
} */
@media screen and (max-width:1024px) {
    .contact-link-text{
        font-size: 3vw;
    }
}

@media screen and (max-width: 480px){
    #contact{
        width: 80%;
    }
    .contact-info{
        display: block;
        margin: 0;
    }

    .contact-info-logo{
        margin: auto;
        width: 65vw;
        height: 6vh;
        font-size: 24px;
    }

    .contact-info-text{
        margin: 2vh 0;
    }

    .contact-link{
        width: 90%;
        height: auto;
        position: relative;
    }
    .contact-link-text{
        font-size: 6vw;
    }
    /* .contact-link-mark, .contact-link-img{
        display: none;
    }
    .contact-link-sp-mark{
        display: block;
        position: absolute;
        top: 5vw;
        left: 80%;
        transform: translate(-50%, -50%);
    } */
}