/******************

inner

*******************/

.contact-inner {
    display: flex;
    padding-bottom: 80px;
    justify-content: space-between;
}

.contact-items {
    width: 45%;
}

.contact-form {
    width: 50%;
}

.contact-items__box {
    background-color: #ECEDF0;
    border-radius: 6px;
}

.contact-items__content {
    padding: 40px;
}

.contact-items__content dl {
    display: flex;
    column-gap: 16px;
    margin-top: 8px;
}

.contact-items__content dl dt span {
    background-color: #5C5C5C;
    color: #ffffff;
    font-size: 12px;
    padding: 2px 4px 4px 4px;
    border-radius: 2px;
}

.contact-items__content dl dd {
    font-size: 14px;
}

.contact-items__thumb {
    display: block;
    position: relative;
    margin-top: 40px;
    height: 160px;
    width: 100%;
}

.contact-items__thumb img {
    border-radius: 6px;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.contact-items__txt {
    top: 48px;
    left: 16px;
    position: absolute;
}

.contact-items__txt p {
    color: #ffffff;
}

.contact-items__txt h4 {
    color: #ffffff;
}

@media screen and (max-width: 880px) {
    .contact-inner {
        flex-direction: column;
    }
    .contact-items {
        width: 100%;
    }
    .contact-form {
        width: 100%;
    }
}

@media screen and (max-width: 680px) {
    .contact-items__content {
        padding: 4.8vw;
    }
    .contact-inner {
        margin-top: 8vw;
    }  
    .contact-items__thumb {
        height: 40vw;
        margin: 8vw 0;
    }  
    .contact-items__txt p {
        font-size: 3.2vw;
    }
    .contact-items__txt h4 {
        font-size: 5.8vw;
    }
}