@charset "UTF-8";

.contact_head {
    margin-bottom: 80px;
}

.contact_head_ttl {
    margin-bottom: 34px;
}

.contact_detail {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.contact_detail_item {
    background: #FDF2F2;
    border-radius: 10px;
    padding: 44px 50px;
    text-align: center;
    width: 100%;
}

.contact_detail_item .contact_detail_ttl {
    font-size: 24px;
}

.contact_detail_item .tel {
    color: #F58C8C;
}

.contact_detail_item .date {
    font-size: 16px;
}

/* contact_form */

.contact_form_ttl {
    font-size: 24px;
    margin-bottom: 13px;
    text-align: center;
}

.contact_form_intro {
    margin-bottom: 55px;
    text-align: center;
}

.contact_form {
    background: #F8F5EC;
    padding: 110px 0;
}

.mw_wp_form_complete {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

/* .agree {
    text-align: center;
    margin-bottom: 15px;
}

.agree input {
    all: revert;
}

.agree a {
    color: #F58C8C;
    text-decoration: underline;
}

.agree a:hover {
    text-decoration: none;
}

.send {
    width: fit-content;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.send::before {
    content: '';
    width: 25px;
    height: 26px;
    background: url(/img/cmn/icon-send.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 30px;
}

.send input {
    padding: 22px 55px;
    background: #F58C8C;
    color: #fff;
    border: solid 1px #F58C8C;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: 0.5s;
    border-radius: 3px;
}

.send input:hover {
    background: #fff;
    color: #F58C8C;
} */

@media screen and (max-width:767px) {

    .contact_head {
        margin-bottom: 40px;
    }

    .contact_detail {
        flex-flow: column;
        gap: 10px;
    }
    

    .contact_detail_item {
        padding: 20px 23px;
    }

    .contact_detail_item .date {
        font-size: 13px;
    }

    .contact_form {
        padding: 45px 0;
    }


}