@charset "utf-8";

body {
	background: #F3F3F3;
}

.sec_ttl_h2::before {
    margin-left: 0px !important;
}
#h_area h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.43;
    letter-spacing: 0.06em;
    max-height: 100%;
    color: #1F2D49;
}
#h_area h1::before {
	font-family: "copperplate", serif;
    display: block;
    content: attr(data-txt) "";
    font-size: 7.0rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #1F2D49;
    /* margin-bottom: 18px; */
    max-height: 100%;
}

/*------------ フォーム用テキスト表示制御 ------------*/
.preview_txt {
    display: none;
}

.mw_wp_form_confirm .input_txt {
    display: none !important;
}

.mw_wp_form_confirm .preview_txt {
    display: block !important;
    text-align: center;
}

.mw_wp_form_complete .input_txt,
.mw_wp_form_complete .preview_txt {
    display: none !important;
}

/*-------------------------------------
	共通
--------------------------------------*/
.req {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #F44336;
    padding: 0 6px;
    margin: 0 5px;
    background: #FBD8D6;
    border-radius: 5px;
}

/*-------------------------------------
	content_area
--------------------------------------*/
/* 
.inner {
    max-width: 1040px;
} */

.inner>.input_txt:first-child .sec_ttl_h2 {
    text-align: left;
    margin-top: 0;
}

/*------------ form ------------*/
.form_wrap {
    margin-bottom: 50px;
}

.form_head {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin: 45px 0 10px;
    display: flex;
    align-items: center;
}

select,
.form_txt,
textarea {
    display: block;
    width: 100%;
    font-family: var(--font_noto_sans);
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    border: none;
    background-color: #FFFFFF !important;
    padding: 10px 15px;
    box-sizing: border-box;
}

.p-postal-code {
    margin-bottom: 10px;
    width: auto;
    display: inline-block;
}

textarea {
    min-height: 234px;
    resize: vertical;
    overflow: auto;
}

/*------------ btn ------------*/

#form_btn {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 60px 0 0;
}

.button_wrap {
    max-width: 100%;
}

.form_btn_single.submit {
    display: block;
    width: 300px;
    max-width: 100%;
    height: auto;
    background: #1F2D49;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;

}

.form_btn_single.submit .submit_btn {
    display: block;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    color: #fff !important;
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 15px 35px 15px 15px;
    margin: auto;
    cursor: pointer;
    position: relative;
}

.form_btn_single.submit:hover {
    background: #c70010;
}

.form_btn_single.submit::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background: url(../img/arrow_white.svg) center center/100% auto no-repeat;
    transform: translateY(-50%);
    top: 50%;
    right: 27px;
    pointer-events: none;
}

.form_btn_single.goback {
    max-width: 180px;
    width: 100%;
    position: relative;
    margin: 0 20px 0 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
	
}

.form_btn_single.goback .back_btn {
    font-family: var(--font_noto_sans);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 61px;
    color: #7f7f7f;
    max-width: 180px;
    width: 100%;
    background: #e6e6e6;
    padding: 0 20px;
    transition: all .3s ease;
	border: none;
}

.form_btn_single.goback .back_btn:hover {
    background: #fff;
    cursor: pointer;
}

span.tel {
    display: inline-block;
    font-size: 2.6rem;
    letter-spacing: 1px;
}


#doi {
    margin: 30px 0 0;
    text-align: center;
}


@media screen and (max-width: 767px) {
	#h_area h1 {
		font-size: 1.3rem;
	}
	
	#h_area h1::before  {
        font-size: 4.0rem;
        margin-bottom: 0;
    }
	
	
	
    /*------------ フォーム用テキスト表示制御 ------------*/

    .mw_wp_form_confirm .preview_txt {
        margin-bottom: 25px;
    }

    /*-------------------------------------
        共通
    --------------------------------------*/

    /*-------------------------------------
        content_area
    --------------------------------------*/

    /*------------ form ------------*/
    .form_wrap {
        margin-bottom: 35px;
    }

    .form_head {
        font-size: 1.6rem;
        margin: 25px 0 10px;
    }

    .form_txt,
    textarea {
        padding: 10px 15px;
        font-size: 1.4rem;
    }

    textarea {
        min-height: 160px;
    }

    /*------------ btn ------------*/

    #form_btn {
        max-width: none;
        align-items: center;
        margin: 35px 0 0;
    }

    .form_btn_single.goback {
        max-width: 40%;
        margin: 0 3% 0 0;
    }

    .button_wrap {
        max-width: 57%;
    }

    .form_btn_single.submit::after {
        right: 17px;
    }

    .form_btn_single.goback .back_btn {
        font-size: 1.5rem;
        line-height: 56px;
        width: 200px;
        max-width: 100%;
    }

    .form_btn_single.submit .submit_btn {
        font-size: 1.5rem;
        line-height: 58px;
        padding: 0 20px;
    }

    span.tel {
        font-size: 2.2rem;
    }
}