.contact-wrapper {
    background: var(--main-color);
}

.top-subtitle.contact {
    color: #FFF;
    text-align: center;
}

.top-mini-subtitle.contact {
    text-align: center;
}

.contact-contents {
    width: 80%;
    margin: 0 auto;
}

@media(max-width:992px) {
    .contact-contents {
        width: 100%;
    }
}

.top-flow-links.contact {
    width: 740px;
    margin: 30px auto;
	justify-content: center;
}

@media(max-width:992px) {
    .top-flow-links.contact {
        width: 100%;
    }
}

@media(max-width:992px) {
    .top-flow-links.contact .top-flow-link {
        width: 30%;
        height: 110px;
        align-items: center;
        justify-content: flex-start;
        font-size: 14px;
    }

    .top-flow-links.contact .top-flow-link span {
        font-size: 18px;
    }

    .top-flow-links.contact .top-flow-icon.top,
	.top-flow-links.contact .top-flow-icon.bottom{
        top: initial;
        right: initial;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.top-flow-links.contact .top-flow-link.reserve {
    background: var(--bg-color-8);
    border: 1px solid #FFF;
}

.contact-address-tel {
    color: #FFF;
    text-align: center;
    font-weight: 600;
    margin-top: 60px;
}

@media(max-width:992px) {
    .contact-address-tel {
        line-height: 24px;
        margin-bottom: 40px;
        font-size: 30px;
    }

    .contact-address-tel>span {
        text-align: left;
        display: block;
        margin: 0 auto;
        width: fit-content;
    }

    .contact-address-tel span {
        font-size: 16px;
    }
}

.conatct-form {
    width: 740px;
    margin: 60px auto;
    color: #FFF;
}

@media(max-width:992px) {
    .conatct-form {
        width: 100%;
    }
}

.conatct-form dt,
.conatct-form dd,
.conatct-form input {
    width: 100%;
}

.conatct-form dt {
    margin: 20px 0;
}

.conatct-form input {
    height: 80px;
    border-radius: 16px;
    padding: 0 15px;
    border: 1px;
}

@media(max-width:992px) {
    .conatct-form input {
        height: 60px;
    }
}

.contact-submit-btn {
    margin: 80px auto;
    display: flex;
    background: var(--bg-color-1);
    color: #FFF;
    width: 200px;
    justify-content: center;
    border: 1px;
    border-radius: 50px;
    position: relative;
    font-size: 30px;
    padding: 10px;
}

@media(max-width:992px) {
    .contact-submit-btn {
        font-size: 20px;
        margin: 40px auto;
    }
}

.contact-submit-btn::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url(../../img/common/arrow2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}