﻿@charset "utf-8";
table.form_tbl{
	width:100%;
	margin:0 auto;
    font-size: 14px;
}
table.form_tbl tr{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
table.form_tbl th,
table.form_tbl td{
    display: block;
}
table.form_tbl th{
	width:200px;
    vertical-align: middle;
    padding-top: 13px;
    position: relative;
    line-height: 160%;
}
table.form_tbl th p{
    position: absolute;
    right: 0;
    top: 13px;
    background: #aaa;
    color: #FFF;
    padding: 4px 10px;
    line-height: 100%;
    font-size: 13px;
}
table.form_tbl td{
    width: calc(100% - 210px);
}

table.form_tbl .mini{
	font-size:77%;
	font-weight:normal;
	display:inline-block;
}
table.form_tbl td p{
	margin-top:5px;
}
table.form_tbl td input,
table.form_tbl td textarea{
	padding:15px;
	color:#000;
	border:#B5B5B5 1px solid;
	box-sizing:border-box;
	background:#FFF;
    width: 100%;
}
table.form_tbl td input:focus,
table.form_tbl td textarea:focus {
    border:solid 1px #EEA34A;
	background:#FFF;
	overflow : hidden;
    outline : none;
}
table.form_tbl td input.pt2{
    width: 200px;
}
table.form_tbl td input.radio,
div.footconts input.radio{
	margin:16px 3px 16px;
    width: 30px;
}




.custom-select {
	overflow: hidden;
	width: 400px;
	text-align: center;
}
.custom-select select {
	width: 100%;
	padding-right: 1em;
	cursor: pointer;
	text-indent: 0.01px;
	text-overflow: ellipsis;
	border: none;
	outline: none;
	background: transparent;
	background-image: none;
	box-shadow: none;
	-webkit-appearance: none;
	appearance: none;
    font-size: 15px;
}
.custom-select select::-ms-expand {
    display: none;
}
.custom-select {
	position: relative;
	border: 1px solid #bbbbbb;
	border-radius: 2px;
	background: #ffffff;
}
.custom-select::before {
	position: absolute;
	top: 1.3em;
	right: 0.9em;
	width: 0;
	height: 0;
	padding: 0;
	content: '';
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #666666;
	pointer-events: none;
}
.custom-select select {
	padding: 14px 38px 14px 8px;
	color: #111;
}







input[type="submit"] {
    -webkit-appearance: none;
    height: 75px;
    background: #000;
    color: #FFF;
    font-size: 15px;
    display: block;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 100%;
    border: none;
}
input[type="button"] {
    -webkit-appearance: none;
    height: 50px;
    background: #CCC;
    color: #111;
    font-size: 15px;
    display: block;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 100%;
    border: none;
}
table.form_tbl.comfirm tr {
    border-bottom: 1px solid #CCC;
    margin-bottom: 20px;
    padding-bottom: 36px
}
table.form_tbl.comfirm td{
    padding-top: 13px;
}
.txt1{
    margin-bottom: 50px;
    text-align: center;
    font-weight: bold;
}
.txt_thanks{
    margin-bottom: 0px;
    text-align: center;
}
/*
table.form_tbl.comfirm tr:first-child th,
table.form_tbl.comfirm tr:first-child td{
    display: none;
}
*/
@media screen and (max-width:800px) {
    table.form_tbl{
        font-size: 3vw;
		width: 100%;
    }
    table.form_tbl tr{
        display: block;
        margin-bottom: 8vw;
    }
    table.form_tbl th{
        width:100%;
        padding-top: 0px;
        margin-bottom: 3vw;
        display: flex;
        align-items: center;
    }
    table.form_tbl th p{
        position: static;
        right: 0;
        top: 0px;
        padding: 4px 10px;
        font-size: 2.7vw;
        width: 7vw;
        text-align: center;
        margin-left: 3vw;
    }
    table.form_tbl td{
        /*width: calc(100% - 0px);*/
		width: 100%;
    }
    table.form_tbl td input,
    table.form_tbl td textarea{
        border-radius: 0;
    }
    table.form_tbl td input,
    table.form_tbl td textarea{
        -webkit-appearance: none;
    }
    table.form_tbl td input.radio{
        margin: 0px 3px 0px;
        border-radius: 50%;
        vertical-align: middle;
        -webkit-appearance:auto; 
    }
    table.form_tbl td input.radio:checked{
        background: #ccc;
    }
    table.form_tbl td label {
        margin-right: 4vw;
        vertical-align: middle;
    }
	.custom-select{
		width: 100%;
	}
	.custom-select select {
		font-size: 3vw;
		box-sizing: border-box;
	}
    input[type="submit"] {
        height: 20vw;
        font-size: 3.5vw;
        margin-top: 14vw;
    }
    table.form_tbl.comfirm tr {
        padding-bottom: 20px;
    }
    .txt1{
        margin-bottom: 10vw;
        text-align: left;
    }
    .txt_thanks{
        margin-bottom: 10vw;
        text-align: left;
    }
    .custom-select::before {
        top: 1.8em;
    }
}