@charset "UTF-8";

/* ---------------------------------------- */
/* css変数 */
/* ---------------------------------------- */
/* ---------------------------------------- */
/* 下層カバー */
/* ---------------------------------------- */
.inCover {
    margin: 0 auto;
    max-width: 1920px;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.inCover-contact {
    background-image: url(../img/in_cover_contact.jpg);
}

/* ---------------------------------------- */
/* お問い合わせ */
/* ---------------------------------------- */
.contactTxtBox {
    background: url(../img/in_contact_title01.svg) no-repeat center;
    background-size: auto;
}

@media screen and (max-width: 768px) {
    .contactTxtBox {
        background-size: contain;
    }
}

#contactForm {
    background: #fff;
    box-shadow: 0px 0px 7px 1px #ebebeb;
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 50px 4%;
    border-top: 3px solid #D4A0AC;
    border-bottom: 3px solid #D4A0AC;
}

#contactForm dt {
    margin: 30px 0 0;
}

#contactForm dt:first-child {
    margin: 0;
}

#contactForm input {
    width: 100%;
    padding: 0.3em 0.5em;
    border: 1px solid #999;
    border-radius: 3px;
    line-height: 1.2em;
}

#contactForm #zip1,
#contactForm #zip2 {
    width: 80px;
}


#contactForm .form_notice1 {
    display: block;
    font-size: 13px;
}

#contactForm dd {
    margin: 20px 0 0;
    position: relative;
}

#contactForm textarea {
    width: 100%;
    height: 260px;
    padding: 0.3em 0.5em;
    border: 1px solid #999;
    border-radius: 3px;
    line-height: 1.2em;
}

.required {
    color: #f00;
}

#contactForm dt>label {
    font-weight: bold;
    font-size: 19px;
}

#contactForm .formBtn {
    width: 100%;
    display: block;
    margin: 40px auto 0;
    border: solid 1px #303030;
    background: #303030;
    color: #fff;
    padding: 20px 2%;
    cursor: pointer;
    font-family: inherit;
}

#contactForm .formBtn:hover {
    background: #fff;
    color: #303030;
}

.zipArea {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

#zip {
    max-width: 180px;
    width: 100%;
    margin: 0 0 0 0.99%;
}

.contactFromTxt {
    font-size: 14px;
    text-align: center;
    margin: 60px 0 0;
}

#contactForm .privacyCheck>input {
    width: auto;
    position: relative;
}

.privacyCheck {
    margin: 10px 0 0;
}

.zipBtn {
    max-width: 90px;
    width: 100%;
    border: solid 1px #F8C052;
    border-radius: 20px;
    background: #F8E1B3;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 4px 3px;
    margin: 0 0 0 1.8%;
    cursor: pointer;
}

.zipBtn:hover {
    background: #F8C052;
    color: #fff;
}

.ui-widget-header {
    background: #D4A0AC;
    border-color: #D4A0AC;
    color: #fff;
}

.ui-widget.ui-widget-content {
    font-family: inherit;
}

.ui-dialog .ui-dialog-buttonpane button {
    font-family: inherit;
}

/*-- エラーチェック --*/
.formError {
    top: 30px !important;
    left: 0px !important;
}

/*# sourceMappingURL=contact.css.map */
/*# sourceMappingURL=contact.css.map */

.formComplete>p {
    text-align: center;
}

.formComplete>a {
    margin: 40px auto 0;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

    /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
    /* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

    #contactForm dt>label {
        font-size: 16px;
    }

    /* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

}

/* max-width: 768px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* contactConfirm.php でtextareaを隠すためのCSS */
.textarea-contactConfirm {
    display: none;
}


/* contactConplete.php  */

.contact-complete-msg {
    text-align: center;
}

.contact-complete-msg p {
    display: inline-block;
}

.buttonContainer {
    display: flex;
    justify-content: center;
    /* margin-top: 40px; Add some spacing between the buttons and the content above */
}


.submitBtn {
    width: 200px;
    padding: 15px 5px;
    cursor: pointer;
    outline: 0;
    background: #555;
    color: #fff;
    font-size: 100%;
    border: solid 1px #303030;
    font-weight: bold;
    margin: 40px 10px 0;
    transition: .2s;
    -moz-transition: .2s;
    -webkit-transition: .2s;
}

.returnBtn {
    width: 200px;
    padding: 15px 5px;
    cursor: pointer;
    outline: 0;
    background: #ddd;
    color: #303030;
    font-size: 100%;
    border: solid 1px #bbb;
    font-weight: bold;
    margin: 40px 10px 0;
    transition: .2s;
    -moz-transition: .2s;
    -webkit-transition: .2s;
}

.submitBtn:hover {
    background: #303030;
    color: #fff;
}

.returnBtn:hover {
    background: #fff;
    color: #303030;
}