@charset "utf-8";

/* ------------------------------
 フォーム（PC）
------------------------------ */
table.res {
	margin-bottom: 70px;
}
table.res th span.req,
table.res th span.any {
	display: inline-block;
	width: 44px;
	height: 20px;
	margin: 0 10px 4px 0;
	border-radius: 10px;
	color: #fff;
	font-size: 1.2rem;
	line-height: 19px;
	font-weight: 700;
	text-align: center;
	vertical-align: middle;
}
.req {
	background-color: #ef804f;
}
.any {
	background-color: #a1a7ac;
}
@media print, screen and (min-width: 768px) {
	.contents table th {
		width: 20%;
		border-bottom: none;
		border-top: 1px solid #000;
	}
	.contents table th.vat {
		vertical-align: top;
	}
	.contents table td {
		padding: 33px 0 33px 80px;
		border-bottom: none;
		border-top: 1px solid #e6e7e9;
	}
}
/* フォーム */
label {
	display: inline-block;
	position: relative;
	cursor: pointer;
}
table td label {
	margin-right: 1.75em;
}
textarea::placeholder,
input::placeholder {
	color: #9b9b9b;
}
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: 3px 12px;
	border-radius: 4px;
	background: #f2f3f4;
	color: #000;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 400;
	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: 2px solid #000;
	outline-offset: -2px;
}
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'].w150 {
	width: 150px;
}
/* ラジオボタン */
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: 1px;
	width: 14px;
	height: 14px;
	margin-right: .5em;
	border: 1px solid #979ca1;
	border-radius: 50%;
	background-color: #fff;
}
input[type=radio] + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background-color: transparent;
	margin: auto;
}
input[type=radio]:checked + span:before {
	background-color: #ef804f;
}
input[type=radio]:focus {
	outline: 0;
}
input[type=radio]:focus + span {
	outline: 2px solid #000;
	outline-offset: -2px;
}
/* チェックボックス */
input[type=checkbox] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: absolute;
	top: 8px;
}
input[type=checkbox] + span {
	display: inline-block;
	position: relative;
	top: 3px;
	width: 16px;
	height: 16px;
	margin-right: .5em;
	border: 1px solid #a1a7ac;
	border-radius: 4px;
}
input[type=checkbox]:checked + span {
	border: none;
	background-color: #ef804f;
}
input[type=checkbox] + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	left: 3px;
	width: 8px;
	height: 5px;
	margin: auto;
	border-left: 2px solid transparent;
	border-bottom: 2px solid transparent;
	transform: rotate(-45deg);
}
input[type=checkbox]:checked + span::before {
	width: 8px;
	height: 5px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
}
input[type=checkbox]:focus {
	outline: 0;
}
input[type=checkbox]:focus + span {
	outline: 2px solid #000;
	outline-offset: -2px;
}
/* プルダウン */
select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	width: auto;
	padding: 3px 28px 3px 10px;
	background: #f2f2f2 url(../img/select.svg) no-repeat right 10px center / 10px 7px;
	color: #1a1a1a;
	font-family: "游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	font-weight: 500;
}
select:focus {
	outline: 2px solid #333;
	outline-offset: -2px;
}
/* ボタン基本 */
.contents button {
	display: inline-block;
	position: relative;
	min-width: 300px;
	padding: 16px 0;
	box-sizing: border-box;
	border-radius: 32px;
	background: #ea7813;
	background: linear-gradient(90deg,rgba(234,120,19,1) 0%, rgba(237,110,55,1) 50%, rgba(234,84,74,1) 100%);
	text-align: left;
	text-decoration: none;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 700;
	text-align: center;
	transition: opacity .3s ease-in-out;
	cursor: pointer;
}
.contents button::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	width: 8px;
	height: 8px;
	margin: auto 0;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg);
}
/* 戻るボタン */
.contents button.back,
.contents button:disabled {
	padding: 15px 0;
	border: 1px solid #000;
	background: transparent;
	color: #000;
}
.contents button.back::after {
	left: 20px;
	right: auto;
	border-top: solid 2px #000;
	border-left: solid 2px #000;
	border-right: none;
	transform: rotate(-45deg);
}
.contents button:disabled::after {
	border-top: solid 2px #000;
	border-right: solid 2px #000;
}
@media print, screen and (min-width: 768px) {
	/* ボタン基本 */
	.contents button:hover {
		opacity: .7;
	}
	/* 戻るボタン */
	.contents button.back {
		float: left;
		min-width: 200px;
		margin-right:  -200px;
	}
}
/* ------------------------------
 フォーム（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.contents > #form_box > .inBlock {
		width: 90%;
		margin: 0 auto 60px;
	}
	.contents .res {
		margin-bottom: 50px;
	}
	.contents table.res th {
		border-top: 1px solid #e6e7e9;
	}
	.contents table.res td {
		border-bottom: none;
	}
	/* フォーム */
	input[type='text'],
	input[type='number'],
	input[type='tel'],
	input[type='email'],
	input[type='password'],
	textarea {
		border-radius: 0;
		font-size: medium;
		padding: 3px 8px;
	}
	textarea {
		padding: 9px 8px;
	}
	input[type='text'].w150 {
		width: 120px;
	}
	/* プルダウン */
	select {
		width: 100%;
		font-size: medium;
	}
	.ymd {
		display: inline-block;
		margin: 0 .5em 0 .25em;
	}
	/* ボタン基本 */
	.contents button {
		min-width: 88%;
	}
	/* 戻るボタン */
	.contents button.back {
		margin-top: 20px;
	}
}