@charset "utf-8";

/* ------------------------------
 フォーム（PC）
------------------------------ */
table.res tr th span.req,
table.res tr th span.any {
	display: inline-block;
	width: 40px;
	height: 20px;
	margin: 0 0 4px 10px;
	color: #fff;
	font-weight: bold;
	font-size: 1.2rem;
	line-height: 20px;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
}
.req {
	background-color: #e60012;
}
.any {
	background-color: #97a0a8;
}
@media print, screen and (min-width: 768px) {
	.contents #form_box table.res th {
		width: 33%;
	}
	.contents #form_box table.res th,
	.contents #form_box table.res td {
		padding: 1.5em 0 1.5em 1em;
	}
	.contents #form_box table.res th {
		width: 33%;
		vertical-align: middle;
	}
	.contents #form_box table.res th.vat {
		vertical-align: top;
	}
	.contents #form_box table.res td {
		padding-right: 1em;
	}
}
/* フォーム */
label {
	display: inline-block;
	position: relative;
	cursor: pointer;
}
textarea::placeholder,
input::placeholder {
	color: #b0b0b0;
}
input[type='text'],
input[type='number'],
input[type='tel'],
input[type='email'],
input[type='password'],
textarea {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 100%;
	padding: 5px 10px;
	border: 1px solid #c8c8c8;
	background: #fff;
	color: #000;
	font-family: "游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	line-height: 1.75;
	font-weight: 500;
	text-align: left;
	vertical-align: middle;
}
input[type='text']:focus,
input[type='number']:focus,
input[type='tel']:focus,
input[type='email']:focus,
textarea:focus {
	outline: 0;
	box-shadow: 0 0 2px 2px #cbcfd3 inset;
}
input[type='text']:disabled,
input[type='number']:disabled,
input[type='tel']:disabled,
input[type='email']:disabled,
textarea:disabled {
	background-color: #ddd;
	cursor: default;
}
input[type='text'].w270 {
	width: 270px;
}
/* ラジオボタン */
input[type=radio] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: absolute;
	top: 8px;
}
input[type=radio] + span {
	display: inline-block;
	position: relative;
	top: 3px;
	width: 14px;
	height: 14px;
	margin: 0 .5em 2px 0;
	border: 1px solid #c8c8c8;
	border-radius: 50%;
	background-color: #fff;
	vertical-align: baseline;
}
input[type=radio] + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background-color: transparent;
	margin: auto;
}
input[type=radio]:checked + span:before {
	background: #e60012;
}
input[type=radio]:focus {
	outline: 0;
}
input[type=radio]:focus + span {
	outline: 0;
	box-shadow: 0 0 2px 2px #cbcfd3;
}
/* チェックボックス */
input[type=checkbox] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: absolute;
	top: 3px;
}
input[type=checkbox] + span {
	display: inline-block;
	position: relative;
	top: 3px;
	width: 14px;
	height: 14px;
	margin: 0 .5em 2px 0;
	border: 1px solid #c8c8c8;
	background-color: #fff;
}
input[type=checkbox] + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 6px;
	height: 6px;
	background-color: transparent;
	margin: auto;
}
input[type=checkbox]:checked + span::before {
	background: #e60012;
}
input[type=checkbox]:focus {
	outline: 0;
}
input[type=checkbox]:focus + span {
	outline: 0;
	box-shadow: 0 0 2px 2px #cbcfd3;
}
/* プルダウン */
select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	width: auto;
	padding: 5px 28px 5px 10px;
	background: #fff url(../img/select.svg) no-repeat right 10px center / 8px 6px;
	color: #000;
	font-family: "游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	line-height: 1.75;
	font-weight: 500;
}
select:focus {
	outline: 0;
	box-shadow: 0 0 2px 2px #cbcfd3;
}
/* ボタン基本 */
.contents button.btn {
	display: inline-block;
	min-width: 300px;
	padding: 16px 30px;
	border-radius: 32px;
	background-color: #000;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
}
/* 戻るボタン */
.contents button.btn.back {
	background-color: #97a0a8;
}
@media print, screen and (min-width: 768px) {
	input[type='text'],
	textarea {
		width: 500px;
	}
	textarea.w110p{
		width: 100%;
	}
	/* ボタン基本 */
	.contents button.btn {
		transition: .3s ease-in-out;
	}
	.contents button.btn:hover {
		opacity: .7;
	}
	/* 戻るボタン */
	.contents button.btn.back {
		float: left;
		min-width: 180px;
		margin-right: -180px;
	}
}
/* ------------------------------
 フォーム（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.contents #form_box table.res th {
		padding: .8em 0 .4em;
	}
	.contents #form_box table.res.sp_spread td {
		padding: 0 0 1em;
	}
	/* フォーム */
	input[type='text'],
	input[type='number'],
	input[type='tel'],
	input[type='email'],
	input[type='password'],
	textarea {
		border-radius: 0;
		font-size: medium;
	}
	/* プルダウン */
	select {
		font-size: medium;
		vertical-align: top;
	}
	/* ボタン基本 */
	.contents button.btn {
		min-width: 240px;
		max-width: 300px;
	}
	/* 戻るボタン */
	.contents button.btn.back {
		margin-top: 15px;
	}
}