.contact_title_box {
    width: 100%;
    padding-top: calc(13px + 5rem);
    padding-bottom: calc(18px + 4rem);
    background-color: #EEEEEE;
}

.contact_title {
    max-width: 1480px;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.contact_main_box {
    width: 100%;
    padding-top: calc(25px + 5rem);
    padding-bottom: calc(6px + 10rem);
}

.contact_main {
    max-width: 1480px;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-around;
}

.contact_info_item .contact_info_item_icon {
    width: calc(8px + 2rem);
}

.contact_info_item .contact_info_item_icon img {
    width: 100%;
}

.contact_info_item .p1 {
    font-family: Century Gothic;
    font-weight: bold;
    font-size: calc(4px + 1rem);
    color: #98B8AC;
    line-height: 1;
    margin-top: calc(4px + 1.5rem);
}

.contact_info_item .p2 {
    font-family: Futura Bk BT;
    font-weight: normal;
    font-size: calc(2px + 1rem);
    color: #808080;
    line-height: calc(10px + 1.5rem);
    margin-top: calc(10px + 1rem);
}

.contact_ewm {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: calc(30px + 5rem);
    gap: calc(2px + 1.5rem);
}

.contact_ewm_item {
    font-family: Futura Bk BT;
    font-weight: normal;
    font-size: calc(8px + 0.5rem);
    color: #2B2B2B;
    line-height: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: calc(3px + 0.25rem);
}

.contact_ewm_item img {
    width: calc(10px + 0.5rem);
}

.to_msg {
    width: calc(100px + 5rem);
    height: calc(20px + 2rem);
    background: #FFFFFF;
    border-radius: calc(10px + 1rem);
    border: 1px solid #98B8AC;
    margin-top: calc(20px + 4rem);
}

.to_msg a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(6px + 0.5rem);
    color: #98B8AC;
}

.contact_map {
    max-width: 1480px;
    width: 85%;
    height: calc(60px + 20rem);
    margin: auto;
    margin-top: calc(2px + 4rem);
    position: relative;
}

.contact_map .contact_map_img {
    width: 100%;
    height: 100%;
}

.contact_map .dw {
    width: calc(9px + 4rem);
    position: absolute;
    top: calc(50px + 5rem);
    left: calc(160px + 30rem);
    animation: 1.3s move2 linear infinite;
}

@keyframes move2 {
    0% {
        top: calc(50px + 5rem);
    }

    50% {
        top: calc(35px + 5rem);
    }

    100% {
        top: calc(50px + 5rem);
    }
}

.map_name {
    width: calc(70px + 15rem);
    height: calc(10px + 5rem);
    background: #98B8AC;
    border-radius: calc(1px + 0.25rem);
    position: absolute;
    top: calc(11px + 4rem);
    right: calc(71px + 10rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: calc(4px + 0.5rem);
    font-family: Century Gothic;
    font-weight: 400;
    font-size: calc(8px + 0.5rem);
    color: #FEFEFE;
    line-height: 1;
}

@media (max-width: 1100px) {
    .contact_title {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: calc(10px + 3rem);
    }

    .contact_main {
        flex-wrap: wrap;
        row-gap: calc(10px + 5rem);
    }

    .contact_info_item:nth-of-type(1) {
        width: 50%;
    }

    .contact_info_item:nth-of-type(2) {
        width: 50%;
    }

    .contact_info_item .contact_info_item_icon {
        width: calc(15px + 2rem);
    }

    .contact_info_item .p1 {
        font-size: calc(12px + 1rem);
    }

    .contact_info_item .p2 {
        font-size: calc(10px + 1rem);
        line-height: 1.5 !important;
    }

    .contact_info_item:nth-of-type(3) {
        width: 100% !important;
    }

    .contact_ewm_item {
        width: 100%;
        font-size: calc(10px + 1rem);
    }

    .contact_ewm_item img {
        width: calc(15px + 0.5rem);
    }

    .contact_ewm {
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 2rem);
        margin-top: calc(20px + 1rem);
    }

    .to_msg {
        width: calc(138px + 5rem)
    }

    .to_msg a {
        font-size: calc(10px + 1rem);
    }
}