@charset "utf-8";

.entryBlock {
	margin-bottom: 20px;
}

.entryBlock b {
	color: #0066B7;
}

/* form要素 */
input[type="text"],
textarea {
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Arial, sans-serif;
	margin: 0;
	background-color: #fff;
	border: 1px solid #ccc;
	font-size: 16px;
	width: 100%;
	box-sizing: border-box;
	padding: 1% 2%;
	border-radius: 0;
	outline: none;
	-webkit-transition: all .3s;
	transition: all .3s;
}

textarea {
	height: 120px;
}

input[type="text"]:focus,
textarea:focus {
	box-shadow: 0 0 7px #52a8ec;
	border: 1px solid #52a8ec;
}

input[type="radio"],
input[type="checkbox"] {
	margin-right: 5px;
	vertical-align: baseline;
	border-style: none;
}

label {
	margin-right: 15px;
	cursor: pointer;
}

input[type="submit"],
input[type="button"] {
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Arial, sans-serif;
	border: none;
	background-color: transparent;
	margin: 0;
	padding: 0;
	display: block;
	width: 100%;
	border-radius: 0;
	background-color: #0068B7;
	color: #fff;
	font-size: 1.4rem;
	margin: 0 auto 0;
	padding: 1em 0;
	-webkit-appearance: none;
}

.form {
	margin: 0 3%;
}

.form table {
	border: #ccc 1px solid;
	margin-bottom: 25px;
	width: 100%;
	box-sizing: border-box;
}

.form th,
.form td {
	border-bottom: #ccc 1px solid;
	padding: 10px 15px;
	display: block;

}

.form th {
	background-color: #DDF0FF;
}

.form th em {
	color: #fff;
	background-color: #0068B7;
	border-radius: 3px;
	padding: 0px 4px;
	font-size: 1rem;
	margin-left: 1em;
	font-style: normal;
	display: inline-block;
}

.form td:last-of-type {
	border-bottom: none;
}

.btn_submit {
	text-align: center;
	margin-bottom: 25px;
}

.btn_submit li {
	width: 45%;
	display: inline-block;
	margin-right: 10px;
}

.btn_submit li:last-child {
	margin-right: 0;
}

.form.thanks {
	text-align: center;
	padding-top: 20px;
	margin-bottom: 25px;
}