@charset "utf-8";
/* CSS Document */

/*reset*/

input[type="text"] {
    padding: 0;
    border: none;
    border-radius: 0;
    outline: none;
    background: none;
}

input[type="radio"] {
/*    display: none;*/
}
input[type="radio"]:checked + label {
    background: #ff0000;
}

input[type="checkbox"] {
    display: none;
}
input[type="checkbox"]:checked + label {
    background: #ff0000;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}

button,
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    background: transparent;
	border-radius:0
}

input[type="text"],
select,
textarea{
    display: block;
    width: 100%;
    border: 2px solid  var(--gray-c2);
    padding: 0.7rem 1rem;
    margin: 0.5rem 0 0 ;
    background: none;
    color: var(--font-c);
	font-size: 1rem;
	font-family: inherit;
}
/*
textarea{
    height: 300px;
}
*/


button,
input[type="submit"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    background: transparent;
	border-radius:0;
    font-size:1.1rem;
}

.must{
    display: inline;
    margin: 0 0 0 1rem;
    color: var(--accent-c);
}
.comment{
    display: inline-block;
    margin: 1rem 0 0;
}

input[type="email"]{
    width:100%;
    height:3rem;
    background:none;
    border: 2px solid  var(--gray-c2);
    font-size: 1rem;
    margin: 0.5rem 0 0;
}


input[type="submit"]{
    position: relative;
    text-align: center;
    display: block;
    color: #fff;
    padding: 1rem 3rem;
    text-decoration: none;
    cursor:pointer;
    transition: 0.3s;	
    margin: 2rem 1rem;
}

.info_btn{
    display: flex;
    justify-content: center;
}
.info_btn li:first-child input[type="submit"]{
    background: var(--accent-c);
    border: 2px solid var(--accent-c);
}

.info_btn li:last-child input[type="submit"]{
    background: var(--basic-c);
    border: 2px solid var(--basic-c);
}
.info_btn li:first-child input[type="submit"]:hover,
.info_btn li:last-child input[type="submit"]:hover{
    background:none;
    color: var(--basic-c);
}

/*-- table --*/

#contents table.table_form {
	border-top: 2px solid var(--basic-c2);
	line-height: 1.5em;
	width: 100%;
	border-collapse:collapse;
	margin-bottom: 0;
}

.table_form th {
    width: 30%;
	vertical-align: middle;
	text-align: left;
}

.table_form td,
.table_form th {	
	border-bottom: 2px solid var(--basic-c2);
	padding: 0.8rem 1rem;
}
/*

form .sele{
    position: relative;
}

form .sele:before {
    content: "";
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    width: 7px;
    height: 7px;
    border-top: 2px solid var(--accent-c);
    border-right: 2px solid var(--accent-c);
    transform: rotate(135deg);
    margin-top: -5px;
    border-radius: 2px;
}
*/

@media screen and (max-width: 767px){
    .table_form th,
    .table_form td{
        display: block;
        width: 100%;
    }
    .table_form th{
        border-bottom:none;
    	padding: 0.8rem 1rem 0;
    }
    .table_form td{
    	padding: 0 1rem 0.8rem;
    }
	
	.table_form td.radio_style {
        padding: 1rem;
    }
	.table_form td.radio_style > span {
		display: block;
    }
	
/*
    form .sele:before {
    top: 1.2rem;
    }
*/
}

.send_img{
    text-align: center;
    margin: 0 auto 2rem;
}

.table_form .mwform-tel-field input[type="text"], .mwform-zip-field input[type="text"] {
    width: 30%;
}


/*チェックボックス*/
.table_form .check_btn td{
    padding-top: 1.8rem;
}
.check_btn input[type=checkbox].check_btn_item{
display: none;
}
.check_btn label {
display: inline-block;
}
.check_btn .check_btn_item + span {
padding-left: 28px;
display: inline-block;
position: relative;
margin-bottom: 1rem;
}
.check_btn .check_btn_item + span::after,
.check_btn .check_btn_item + span::before {
content: '';
display: block;
position: absolute;
top: 0;
}
.check_btn .check_btn_item + span::before {
border: 2px solid  var(--gray-c2);
border-radius: 4px;
left: 0;
height: 20px;
width: 20px;
}
.check_btn .check_btn_item + span::after{
border: none;
border-right: 3px solid var(--accent-c);
border-bottom: 3px solid var(--accent-c);
height: 12px;
left: 6px;
opacity: 0;
top: 2px;
transform: rotate(45deg);
width: 7px;
}
.check_btn .check_btn_item:checked + span::after {
opacity: 1;
}


.mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0!important;
    margin-right: 1rem;
}


