@charset "utf-8";

main {
	max-width: 1200px;
	margin: 0 auto;
	padding: 36px 0;
}
main .content {
	padding: 0 10px;
	font-size: 18px;
}
main h2 {
	margin:20px 0 30px;
	text-align: center;
	font-size:26px;
}
h3 {
	font-size:1.2em;
	color: red;
}
.content_header {
	display: flex;
	justify-content:space-between;
	margin-bottom:30px;
	align-items: center;
}
.content_header p {
	line-height:1.5;
}
.ch_left {
	width:48%;
}
.ch_left span {
	font-size: 0.9em;
}
.ch_right {
	width: 48%;
	text-align:right;
}
.ch_right input {
	height: 22px;
}
.ch_right p {
	line-height:2;
	font-weight:600;
}
.table_wrap {
	display:flex;
	justify-content: space-between;
}
.table_wrap > div {
	width: 48%;
}
table,tbody {
	width 100%;
}
table,th,td {
	border-collapse: collapse;
    border:1px solid #333;
	font-weight: 400;
}
th,td {
	padding: 10px 5px;
	text-align:left;
}
th {
	width: 25%;
	text-align: center;
}
td .div{
	width:40%;
}
.table_title th,.table_title td{
	text-align: center;
	background:#ffff80;
	font-weight: 600;
}
.table_title td.tb_vote {
	background:#ffbf80;
	width:20%;
}
td.tb_vote p {
	text-align: center;
}
td .wpcf7-list-item {
	margin: 0 40%;
}
.wpcf7-list-item-label {
	display:none;
}
.submit {
	margin: 30px auto;
	display:flex;
	align-items: center;
	justify-content: center;
}
.submit p {
	margin: 0 20px;
}

.submit .wpcf7-submit {
	font-size:2em;
	padding: 5px 20px;
	border-radius: 15px;
	background:#ffbf80;
	transition: 0.5s;
}
.submit .wpcf7-submit:hover {
	opacity: 0.7;
}

.check_num {
	display: flex;
	margin: 60px auto;
	font-size: 20px;
	align-items: center;
	justify-content:center;
}
.check_num p {
	margin: 0 30px;
}
.check_num input {
	font-size:20px;
}
.wpcf7 form.sent .wpcf7-response-output{
	font-size:2em;
	text-align: center;
	border: solid 5px;
	padding: 30px 1em;
	position:fixed;
	width: 90%;
	background: #eeffee;
	top:10%;
	left:0;
	right:0;
}
@media screen and (max-width: 900px) {
	main {
		width: 100%;
	}
	.content_header {
		flex-flow: column-reverse;
	}
	.content_header div {
		width: 100%;
	}
	.table_wrap {
		flex-flow: column;
	}
	.table_wrap > div {
		width: 100%;
	}
}