@charset "utf-8";

/*=====================================================
COMMON-LAYOUT
======================================================*/


div.container{
	max-width:820px;
	margin:0 auto;
	padding:40px 20px 20px;
	box-sizing: content-box;
	font-size: 16px;
}


.container h2 {
	font-size: 22px;
	color: #705300;
}

.red {
	color: #b60005;
}


.form {
	width: 100%;
	border-top: solid 1px #000;
	border-left: solid 1px #000;
	border-collapse: collapse;
}
.form td.txt,
.form td.in{
	border-bottom: solid 1px #000;
	border-right: solid 1px #000;
}
.form td.txt{
	width: 26%;
	background: #e0e0e1;
	vertical-align: middle;
	text-align: center;
}
.form td.in {
	/*width: 74%;*/
	padding: 5px;
	background: #f9f6ee;
}

.form .box {
	border:1px solid #000;
	padding:8px;
	width: 100%;
	background: #fff;
	line-height: 1;
}


.form input, .form textarea {
	font-size:16px;
	border:1px solid #000;
	padding:8px;
	width: 100%;
	margin: 0;
}
.form textarea {
	display: block;
}

.form input[type="checkbox"] {
	width: auto;
	margin-right: 5px;
}
.form input[type="radio"] {
	width: auto;
	margin-right: 5px;
}

.form label {
	display: inline-block;
	margin-left: 20px;
}
.form label:first-child {
	margin-left: 0;
}

.form .ex1 {
	display: flex;
}
.form .ex1 .inp {
	width: 60%;
}
.form .ex1 .box {
	width: 40%;
	border-left: none;
}

.form input.ex{
	font-size:14px;
	border:1px solid #000;
	padding:2px;
	width:40px;
	margin: 0;
}


.form1 {
	width: 100%;
	border-top: solid 1px #000;
	border-left: solid 1px #000;
	border-collapse: collapse;
}
.form1 td {
	border-bottom: solid 1px #000;
	border-right: solid 1px #000;
}
.form1 td:first-child{
	width: 22%;
	background: #000;
	color: #fff;
	vertical-align: middle;
	text-align: center;
}
.form1 td:nth-child(2) {
	/*width: 74%;*/
	background: #fff;
	padding: 5px;
}



#submit_button {
	margin: 0 auto;
	background: #705300;
	padding: 10px 20px;
	color: #fff;
	font-size: 20px;
	border: none;
	cursor: pointer;
	transition: all 0.5s ease-in-out 0s;
	-webkit-appearance: none;
}
#submit_button:hover {
	opacity: 0.6;
}
.submit {
	display: inline-block;
	position: relative;
}
.submit::after {
	content: "";
	position: absolute;
	top:3px;
	left:3px;
	width: calc(100% - 6px);
	height: calc(100% - 6px);
	border: solid 1px #fff;
	pointer-events: none;
}




@media screen and (max-width: 767px){

div.container{
	padding:30px 20px 20px;
	font-size: 12px;
}


.container h2 {
		font-size: 16px;
		font-feature-settings: "palt";
	}


	.form td.txt,
	.form td.in{
		display: block;
	}
	.form td.txt{
		width: 100%;
	}

	.form label {
		margin-left: 10px;
	}
	.form label:first-child {
		margin-left: 0;
	}
	
	.form .ex1 {
		display: block;
	}
	.form .ex1 .inp {
		width: 100%;
	}
	.form .ex1 .box {
		width: 100%;
		border-left: solid 1px #000;
		border-top: none;
		text-align: center;
	}

	.form1 td {
		display: block;
	}
	.form1 td:first-child{
		width: 100%;
	}
	.form1 td:nth-child(2) {
		text-align: center;
	}
	
	#submit_button {
		padding: 8px 25px;
		font-size: 16px;
	}
	
	.mt {
		margin-top: 10px;
	}
	
	.ta_c_sp {
		text-align: center;
	}
	
}


@media screen and (max-width: 600px){

	
}