@charset "utf-8";
.contact_step{
    text-align: center;
}
.contact_step img{
    max-height: 62px;
    margin-bottom: 80px;
}
.contact_note{
    margin-bottom: 2em;
    font-size: 18px;
    letter-spacing: -1px;
}
.contact_note2{
    margin-bottom: 3em;
    font-size: 18px;
}
.must {
    display: block;
    background-color: #C00;
    border: solid 2px #C00;
    text-shadow: 0px 1px 2px #933;
    padding: 0 5px;
    font-size: 16px;
    color: #FFF;
    float: right;
    margin: 0px 5px;
    border-radius: 4px;
    box-shadow: 0px 0px 5px #CCC;
}
.contact_tbl{
	display:-webkit-box;/*--- Androidブラウザ用 ---*/
	display:-ms-flexbox;/*--- IE10 ---*/
	display: -webkit-flex; /* Safari */
	display: -webkit-box-flex; /* Safari */
	display: flex;
	-ms-flex-wrap:wrap;/*--- IE10用 ---*/
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap:         wrap;
	-ms-justify-content:space-between;/*--- IE10用 ---*/
	-webkit-justify-content: space-between; /* Safari */
	justify-content:         space-between;
    -ms-align-items:flex-start;
    -webkit-align-items:flex-start;
    align-items:flex-start;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
}
.contact_tbl dt{
    width:220px;
    padding-left: 1.5em;
    font-weight: 700;
}
.contact_tbl dd{
    width:calc(100% - 270px);
    margin-bottom: 20px;
}
.contact_tbl dd:last-child{
    margin-bottom: 40px;
}
.contact_tbl input[type="text"] ,
.contact_tbl input[type="email"],
.contact_tbl input[type="tel"],
.contact_tbl textarea{
    width: calc(90% - 1.6em);
    background: #f5f5f4;
    padding: 0.8em;
    border: solid 1px #666;
    font-size: 18px;
}
.contact_tbl input[type="text"].yubin {
    width: 50%;
}
.radio-input{
  display: none;
}
.radio-input + span{
  padding-left: 20px;
  position:relative;
  margin-right: 20px;
}
.radio-input + span::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 50%;
}
.radio-input:checked + span::after{
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 11px;
  height: 11px;
  background: #2f3026;
  border-radius: 50%;
}
.mw_wp_form_input .input-hidden{
    display: none;
}
.buttons{
    height: 60px;
    overflow: hidden;
}
.wpcf7-submit{
    margin: 0 auto;
    display: block;
    padding: 0.5em 2em;
    color: #fff;
    background-color: #88c05e;
    border: none;
    border-bottom: 5px solid #658f45;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    transition: all .3s;
    font-weight: 700;
    font-size: 20px;
}
.wpcf7-submit:hover{
    margin-top: 3px;
    color: #fff;
    background-color: #A0CD7F;
    border-bottom: 2px solid #7AAC53;
}
.contact_back_btn{
    background-image: url(../img/contact/contact_back_btn.png);
    background-color: initial;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: left top;
    width: 209px;
    height: 72px;
    margin: 0 auto;
    padding: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: none;
    cursor: pointer;
}
.contact_send_btn{
    background-image: url(../img/contact/contact_send_btn.png);
    background-color: initial;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: left top;
    width: 209px;
    height: 72px;
    margin: 0 auto;
    padding: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    border: none;
    cursor: pointer;
}
.confirm-btn{
    display: table;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 20px 0;
}
.confirm-btn li{
    display: table-cell;
}
.thanks{
    text-align: center;
}
.gotop{
    display: block;
    height: 60px;
    margin-top: 2em;
    overflow: hidden;
    text-align: center;
}
.gotop a{
    display: inline-block;
    padding: 0.5em 1em;
    margin: 0 1em;
    color: #fff;
    background-color: #88c05e;
    border: none;
    border-bottom: 5px solid #658f45;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
    transition: all .3s;
    font-weight: 700;
    font-size: 20px;
}
.gotop a:hover{
    margin-top: 3px;
    color: #fff;
    background-color: #A0CD7F;
    border-bottom: 2px solid #7AAC53;
}
@media screen and (max-width: 767px) {
    .contact_step img{
        width: 53vw;
        margin-bottom: 2em;
    }
    .contact_note{
        margin-bottom: 0;
        font-size: normal;
        letter-spacing:normal;
    }
    .contact_note2{
        margin-bottom: 2em;
        font-size: normal;
    }
    .contact_tbl{
        display: block;
        font-size: normal;
    }
    .contact_tbl dt,
    .contact_tbl dd{
        display: block;
        width: auto;
    }
    .contact_tbl dt{
        margin-bottom: 0.5em;
    }
    .contact_tbl dd:last-child{
        margin-bottom: 2em;
    }
    .contact_tbl input[type="text"] ,
    .contact_tbl input[type="email"],
    .contact_tbl textarea{
        width: 100%;
        box-sizing: border-box;
    }
    .contact_confirm{
        width: 85%;
        height: 15vw;
    }
    .confirm-btn{
        border-spacing: 2vw 0;
    }
    .contact_back_btn{
        width: 35vw;
        height: 12.5vw;
    }
    .contact_send_btn{
        width: 35vw;
        height: 12.5vw;
    }
    .must{
        display: inline-block;
        float: none;
    }
}