/*----------------------------------
form
----------------------------------*/
.form_table {
	padding: 3rem 0;
	width: 90%;
	margin: 0 auto;
}

	.form_table .input_form {
		border: 1px solid #008035;
		border: 1px solid #008035;
	}

		.form_table .input_form .table_head {
			display: table;
			width: 100%;
			background-color: #f1fff1;
		}

			.form_table .input_form .table_head dt {
				display: table-cell;
				padding: 1rem 0;
			}

			.form_table .input_form .table_head dd {
				display: table-cell;
			}

		.form_table .input_form .table_row {
			display: table;
			width: 100%;
			border-top: 1px dotted #008035;
		}

			.form_table .input_form .table_row dt {
				background-color: #f1fff1;
				display: table-cell;
				padding: 1rem;
			}

			.form_table .input_form .table_row dd {
				display: table-cell;
				padding: 1rem;
			}

		.form_table .input_form .table_row {
			width: 100%;
			border-top: 1px solid #008035;
		}

			.form_table .input_form .table_row:first-child {
				border-top: 0;
			}

			.form_table .input_form .table_row dt {
				width: 15%;
				background-color: #f1fff1;
			}

			.form_table .input_form .table_row dd {
				width: 85%;
				padding-left: 2rem;
			}

.inside-2row {
	width: 95%;
	padding: 1rem 0;
}

	.inside-2row:first-child {
		border-bottom: 1px dashed #008035;
	}

.enter_area {
	margin: 2rem auto;
	width: fit-content;
	width: -moz-fit-content;
	text-align: center;
	display: block;
}

	.enter_area a, .enter_area label {
		padding: 1rem 3rem;
		background-color: #008035;
		color: #fff;
		border-radius: 4px;
		margin: 1rem;
		box-shadow: 0 2px 0 #004D20;
		display: inline-block;
		text-decoration: none;
	}

		.enter_area a:active, .enter_area label:active {
			box-shadow: none;
			transform: translate3d(0, 2px, 0);
			box-shadow: 0 1px 0 #888888;
		}

		.enter_area a:focus, .enter_area label:focus {
			outline: none;
		}

		.enter_area a:hover, .enter_area label:hover {
			opacity: 0.5;
		}

input[type="radio"] {
	display: none;
}

	input[type="radio"] + label {
		display: inline-block;
		padding-left: 3rem;
		margin-right: 2rem;
		width: fit-content;
		width: -moz-fit-content;
		position: relative;
	}

		input[type="radio"] + label:before {
			content: "";
			display: block;
			position: absolute;
			top: 3px;
			left: 0;
			width: 16px;
			height: 16px;
			border: 1px solid #008035;
		}

		input[type="radio"] + label::before {
			border-radius: 50%;
		}

	input[type="radio"]:checked + label::after {
		content: "";
		display: block;
		position: absolute;
		top: 6px;
		left: 3px;
		width: 12px;
		height: 12px;
		background-color: #008035;
		border-radius: 50%;
	}

input[type="checkbox"] + label {
	display: inline-block;
	padding-left: 3rem;
	margin-right: 2rem;
	width: fit-content;
	width: -moz-fit-content;
	position: relative;
}

	input[type="checkbox"] + label:before {
		content: "";
		display: block;
		position: absolute;
		top: 3px;
		left: 0;
		width: 16px;
		height: 16px;
		border: 1px solid #008035;
	}

input[type="checkbox"]:checked + label::after {
	content: '';
	display: block;
	position: absolute;
	top: 7px;
	left: 3px;
	width: 11px;
	height: 5px;
	border-left: 2px solid #008035;
	border-bottom: 2px solid #008035;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

select {
	font-size: 14px;
	border-radius: 4px;
	border: 1px solid #008035;
	padding: 5px 40px 5px 10px;
	background-color: #fff;
	position: relative;
	display: inline-block;
	background-image: url(../img/select_arrow.png);
	background-repeat: no-repeat;
	background-position: 90% 50%;
}

span {
	margin-right: 1rem;
}

#week2, #week2 + span {
	display: none;
}

input[name="market"] + label {
	width: 90px;
}

/*----------------------------------
modal
----------------------------------*/
.m-message {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 500;
}

	.m-message .m-message-bg {
		position: absolute;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.5);
	}

	.m-message .m-message-wrap {
		-moz-box-shadow: rgba(0, 0, 0, 0.2) 0 0 8px 4px;
		-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0 0 8px 4px;
		box-shadow: rgba(0, 0, 0, 0.2) 0 0 8px 4px;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 360px;
		margin-left: -180px;
		padding: 20px;
		text-align: center;
		background: #fff;
		border-width: 20px 2px 2px 2px;
		border-style: solid;
		border-color: #cc0000;
		z-index: 501;
	}

		.m-message .m-message-wrap .m-message-wrap-message {
			font-size: 14px;
		}

		.m-message .m-message-wrap .m-message-wrap-commnad {
			margin-top: 30px;
		}

		.m-message .m-message-wrap .m-message-wrap-commnad {
			text-align: center;
		}

			.m-message .m-message-wrap .m-message-wrap-commnad li:first-child {
				margin-left: 0;
			}

			.m-message .m-message-wrap .m-message-wrap-commnad li {
				margin-left: 10px;
				display: inline-block;
			}

.btn_red {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-moz-box-shadow: rgba(100, 0, 0, 0.8) 0 2px;
	-webkit-box-shadow: rgba(100, 0, 0, 0.8) 0 2px;
	box-shadow: rgba(100, 0, 0, 0.8) 0 2px;
	display: inline-block;
	width: 100px;
	height: 40px;
	line-height: 40px;
	margin-bottom: 4px;
	border: none;
	background: #cc0000;
	text-align: center;
	text-decoration: none;
	color: #fff;
	cursor: pointer;
}

/*----------------------------------
result page
----------------------------------*/
.result img {
	border: 1px solid #ccc;
}

.tableWrap {
	margin: 0 auto;
	overflow-x: auto;
}

.result_table {
	min-width: 60rem;
}

	.result_table table {
		margin: 0 auto;
		font-size: 0;
		border: 1px solid #008035;
		border-spacing: 0;
		/* border-collapse: collapse; */
		border-collapse: separate;
	}

		.result_table table tr {
			width: 100%;
		}

			.result_table table tr:nth-child(2n) {
				background-color: #f1fff1;
			}

			.result_table table tr th, .result_table table tr td {
				font-size: 1rem;
				padding: 0 1rem;
				vertical-align: middle;
			}

			.result_table table tr td {
				text-align: right;
			}

				.result_table table tr td:first-child {
					text-align: center;
				}

			.result_table table tr:nth-child(2n) {
				background-color: #fff;
			}

			.result_table table tr:nth-child(2n+1) {
				background-color: #f1fff1;
			}

			.result_table table tr th {
				min-width: 9rem;
			}

			.result_table table tr th, .result_table table tr td {
				width: 12rem;
				padding: 0 1rem;
				height: 3rem;
			}

		.result_table table .table_date_head, .result_table table .table_date_head th, .result_table table .table_date_head td {
			background-color: #32b16c;
			color: #fff;
			font-weight: bold;
		}

.result_input {
	width: 100%;
	font-size: 1.4rem;
	word-break: keep-all;
	margin: 1rem 0;
}

	.result_input::after {
		display: block;
		content: "";
		clear: both;
	}

	.result_input .table_row {
		/* width: fit-content; */
		float: left;
		margin-right: 3rem;
		display: table;
	}

		.result_input .table_row dt {
			font-weight: bold;
			padding: 0 1rem;
			display: table-cell;
		}

		.result_input .table_row dd {
			border-left: 0;
			padding: 0;
			display: table-cell;
		}

/*----------------------------------
result error page
----------------------------------*/
.result_error > p {
	font-size: 2rem;
	color: #cc0000;
	margin: 10rem auto;
	text-align: center;
}

/*----------------------------------
detail page
----------------------------------*/
.day_top td {
	border-top: 1px solid #008035;
}

	.day_top td:first-of-type {
		background-color: #fff;
		border-right: 1px dotted #008035;
	}

	.day_top td:nth-of-type(2) {
		text-align: center;
	}

/*----------------------------------
contact page
----------------------------------*/
.contact .input_form .table_row dt {
	width: 30%;
	vertical-align: middle;
}

	.contact .input_form .table_row dt span {
		display: inline-block;
		color: #cc0000;
		margin-left: 1rem;
	}

.contact .input_form .table_row dd {
	width: 70%;
	border-left: 0;
	padding: 2rem;
}

	.contact .input_form .table_row dd input[type="text"], .contact .input_form .table_row dd textarea {
		width: 100%;
		height: 4rem;
		display: block;
		border: 1px solid #008035;
		font-size: 2.4rem;
		padding: 1rem;
		cursor: text;
	}

		.contact .input_form .table_row dd input[type="text"]:focus, .contact .input_form .table_row dd textarea:focus {
			-moz-box-shadow: #008035 0 0px 1px 0px;
			-webkit-box-shadow: #008035 0 0px 1px 0px;
			box-shadow: #008035 0 0px 1px 0px;
		}

	.contact .input_form .table_row dd textarea {
		height: 20rem;
		width: 100%;
		font-size: 1.6rem;
		resize: vertical;
	}

.contact_done {
	text-align: center;
}

	.contact_done h1 {
		margin: 5rem 0 3rem 0;
	}

	.contact_done p {
		font-size: 1.6rem;
	}

	.contact_done a {
		display: block;
		margin-top: 10rem;
	}

@media screen and (max-width: 768px) {
	.form_table {
		margin: 0 auto;
		width: 100%;
	}

		.form_table .input_form .table_row dt {
			display: block;
			padding: 1rem;
			width: 100%;
		}

		.form_table .input_form .table_row dd {
			display: block;
			border-left: 0;
			padding: 1rem;
			width: 100%;
		}

	.inside-2row {
		width: 100%;
	}

	.enter_area a, .enter_area label {
		padding: 1rem 2rem;
		margin: 0.4rem;
	}

	select {
		font-size: 16px;
		padding: 5px 30px 5px 5px;
		transform: scale(0.936);
	}

	.result_input .table_row dt {
		padding: 0;
	}

	.result_input .table_row dd {
		padding: 0;
		padding-left: 1rem;
		word-break: break-all;
	}

	.contact .input_form .table_row dd {
		padding: 1rem;
	}

		.contact .input_form .table_row dd input, .contact .input_form .table_row dd textarea {
			width: 100%;
		}
}

/*# sourceMappingURL=form.css.map */
