@charset "UTF-8";
/* CSS Document */
.wrapper{
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}
.introduction{
    text-align: center;
    padding-bottom: 50px;
}
.tel_wrapper{
    margin-bottom: 80px;
}
.tel_inner{
    width: 80%;
    max-width: 600px;
    background-color: #fdf9ee;
    padding: 40px 20px;
    border-radius: 10px;
    margin: 0 auto;
    text-align: center;
}
.tel_inner h3{
    font-size: 20px;
    padding-bottom: 10px;
    font-weight: 500;
}
.tel_inner .tel_number a{
    color: #1dc765;
    font-size: 40px;
    line-height: 1em;
    font-family: 'Century Gothic', 'Avenir-Light', 'Montserrat', sans-serif;
    font-weight: 600;
    transition: .35s;
    position: relative;
    padding-left: 30px;
}
.tel_inner .tel_number a:hover{
    opacity: .7;
}
.tel_inner .tel_number a::before{
    content: '';
    width: 22px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 12px;
    background: url("../img/contact/tel_icon.png") left center / 22px auto no-repeat;
}
.form_wrapper{
    margin-bottom: 140px;
}
.form_wrapper h3{
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}
.form_wrapper h3 span{
    color: #1dc765;
}
.form_inner{
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.form_inner dl{
    border-bottom: solid 1px #dddddd;
    padding: 20px;
    display: flex;
}
.form_inner dl:first-of-type{
    border-top: solid 1px #dddddd;
}
.form_inner dl dt{
    width: 30%;
    font-weight: 500;
    margin-top: 10px;
}
.form_inner dl dd{
    width: 70%;
}
.required{
    font-size: 13px;
    color: #fff;
    border: solid 1px #3ccb9c;
    background-color: #3ccb9c;
    display: inline-block;
    padding: 2px 8px 3px;
    border-radius: 4px;
    line-height: 1em;
    margin-right: 12px;
    vertical-align: text-bottom;
}
.optional{
    font-size: 13px;
    color: #3ccb9c;
    border: solid 1px #3ccb9c;
    background-color: #fff;
    display: inline-block;
    padding: 2px 8px 3px;
    border-radius: 4px;
    line-height: 1em;
    margin-right: 12px;
    vertical-align: text-bottom;
}
.form_inner dd input[type="text"], .form_inner dd input[type="tel"], .form_inner dd input[type="email"], textarea{
    width: 100%;
    background-color: #e7f8ee;
    border: solid 2px #e7f8ee;
    font-size: 16px;
    padding: 14px 12px;
    border-radius: 4px;
}
.form_inner dd textarea{
    min-height: 220px;
    resize: vertical;
}
.form_inner dd input[type="text"]:focus, .form_inner dd input[type="tel"]:focus, .form_inner dd input[type="email"]:focus, textarea:focus{
    outline: none;
    border: solid 2px #3ccb9c;
}
.address>div{
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}
.address>div:last-of-type{
    margin-bottom: 0;
}
.address>div span{
    display: inline-block;
    width: 110px;
}
.postal_code input{
    width: 210px!important;
}
.postal_code .number{
    width: 30px!important;
}
.postal_code .note{
    width: auto;
    font-size: 14px;
    display: inline-block;
    padding-left: 12px;
    line-height: 1.4em;
}
.submit_btn_wrapper{
    margin-top: 25px;
}
.submit_btn{
    width: 340px;
    color: #fff;
    font-weight: 500;
    font-family: YakuHanJP_Noto, 'Noto Sans JP', Hiragino Sans, "ヒラギノ角ゴ ProN W3", Yu Gothic Medium, "游ゴシック", "ヒラギノ角ゴ ProN W3", "ＭＳ Ｐゴシック", sans-serif;
    font-size: 18px;
    background-color: #1dc765;
    margin: 0 auto;
    display: block;
    padding: 15px 0;
    border-radius: 4px!important;
    border: none;
    border: solid 2px #1dc765;
    transition: .35s;
}
.submit_btn:hover{
    background-color: #f6f6f6;
    color: #1dc765;
}
.field-invalid::before {
	content: "※入力必須項目です。";
    font-family: Hiragino Sans,"ヒラギノ角ゴ ProN W3",Yu Gothic Medium,"游ゴシック","ヒラギノ角ゴ ProN W3",sans-serif;
    font-weight: 500;
	display: block;
	color: red;
}
.form_inner dd input[type="text"].field-required,
.form_inner dd input[type="tel"].field-required,
.form_inner dd input[type="email"].field-required,
.form_inner dd textarea.field-required,{
	border: 2px solid red;
}


/*---------------------------------

  入力内容確認

---------------------------------*/
.conf_wrapper{
    width: 80%;
    max-width: 770px;
    margin: 0 auto;
    margin-bottom: 140px;
}
.conf_wrapper h3{
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6em;
    margin-bottom: 30px;
    text-align: center;
}
.conf_wrapper h3 span{
    color: #1dc765;
}
.conf_wrapper .introduction{
    padding-bottom: 30px;
}
.conf_wrapper .formTable{
    width: 100%;
}
.conf_wrapper .formTable th, .conf_wrapper .formTable td{
    font-size: 15px;
    line-height: 1.4em;
    padding: 22px;
    border-bottom: solid 1px #dddddd;
}
.conf_wrapper .formTable tr:first-of-type th, .conf_wrapper .formTable tr:first-of-type td{
    border-top: solid 1px #dddddd;
}
.conf_wrapper .formTable th{
    width: 25%;
    background-color: #f8f8f8;
    font-weight: 500;
}
.conf_wrapper .formTable td{
    width: 75%;
}
.conf_send_button{
    display: flex;
    justify-content: center;
    margin-top: 25px;
}
.conf_send_button .button{
    display: block;
    padding: 20px 24px;
    width: 240px;
    color: #fff;
    font-weight: 500;
    line-height: 1em;
    background-color: #1dc765;
    border: solid 1px #1dc765;
    border-radius: 4px;
    transition: .35s;
    font-family: YakuHanJP_Noto, 'Noto Sans JP', Hiragino Sans, "ヒラギノ角ゴ ProN W3", Yu Gothic Medium, "游ゴシック", "ヒラギノ角ゴ ProN W3", "ＭＳ Ｐゴシック", sans-serif;
    font-size: 18px;
    margin: 0 10px;
}
.conf_send_button .button.back{
    background-color: #aaa;
    border: solid 1px #aaa;
}
.conf_send_button .send:hover{
    background-color: #f6f6f6;
    color: #1dc765;
}
.conf_send_button .button.back:hover{
    opacity: .7;
}


/*---------------------------------

  送信完了

---------------------------------*/
.thanks_wrapper{
    width: 80%;
    max-width: 770px;
    margin: 0 auto;
    margin-bottom: 140px;
}
.thanks_wrapper h3{
    font-size: 24px;
    font-weight: 500;
    line-height: 1.6em;
    margin-bottom: 30px;
    text-align: center;
}
.thanks_wrapper .text{
    text-align: center;
    margin-bottom: 40px;
}
.thanks_wrapper .tel_inner h3{
    font-size: 20px;
    padding-bottom: 10px;
    font-weight: 500;
    margin-bottom: 0;
}


@media print, screen and (max-width: 750px) {
    .wrapper {
        width: 100%;
        max-width: 500px;
        padding: 0 20px;
    }
    .introduction {
        text-align: left;
        padding-bottom: 20px;
    }
    .tel_wrapper {
        margin-bottom: 45px;
    }
    .tel_inner {
        width: 100%;
        max-width: 500px;
        padding: 25px 10px;
    }
    .tel_inner h3 {
        font-size: 16px;
        padding-bottom: 10px;
        line-height: 1em;
    }
    .tel_inner .tel_number a {
        font-size: 36px;
        padding-left: 24px;
    }
    .tel_inner .tel_number a::before {
        content: '';
        width: 18px;
        height: 26px;
        position: absolute;
        left: 0;
        top: 11px;
        background: url(../img/contact/tel_icon.png) left center / 18px auto no-repeat;
    }
    .form_wrapper h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .form_inner dl {
        padding: 15px 0;
        display: block;
    }
    .form_inner dl dt {
        width: 100%;
        margin-top: 0px;
        margin-bottom: 5px;
    }
    .form_inner dl dd {
        width: 100%;
    }
    .postal_code .note{
        line-height: 1.4em;
    }
    .submit_btn {
        width: 100%;
    }
    .form_wrapper {
        margin-bottom: 80px;
    }


/*---------------------------------

  入力内容確認

---------------------------------*/
    .conf_wrapper {
        width: 100%;
        max-width: 600px;
        padding: 0 20px;
        margin-bottom: 80px;
    }
    .conf_wrapper h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .conf_wrapper .introduction {
        padding-bottom: 20px;
    }
    .conf_wrapper .formTable th, .conf_wrapper .formTable td {
        padding: 15px 10px;
    }
    .conf_wrapper .formTable th {
        width: 100%;
        display: block;
        text-align: left;
        font-weight: 600;
    }
    .conf_wrapper .formTable td {
        width: 100%;
        display: block;
    }
    .conf_wrapper .formTable tr:first-of-type td {
        border-top: none;
    }
    .conf_send_button .button{
        margin: 0 5px;
    }


/*---------------------------------

  送信完了

---------------------------------*/
    .thanks_wrapper {
        width: 100%;
        max-width: 500px;
        padding: 0 20px;
        margin-bottom: 80px;
    }
    .thanks_wrapper h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .thanks_wrapper .text {
        text-align: left;
        margin-bottom: 25px;
    }
    .thanks_wrapper .text br{
        display: none;
    }
    .thanks_wrapper .tel_inner h3{
        font-size: 16px;
        padding-bottom: 10px;
        line-height: 1em;
        margin-bottom: 0;
    }






}

