@charset "utf-8";

/* ------------------------------
 フォーム（PC）
------------------------------ */
.res {
	margin-bottom: 50px;
}
.res table tr th span.req,
.res table tr th span.any {
	display: inline-block;
	width: 32px;
	height: 16px;
	margin: 0 0 4px 8px;
	color: #fff;
	font-weight: bold;
	font-size: 1.1rem;
	line-height: 16px;
	text-align: center;
	vertical-align: middle;
}
.req {
	background-color: #005aab;
}
.any {
	background-color: #666;
}
@media print, screen and (min-width: 768px) {
	/* th横幅 */
	.contents table th {
		width: 425px;
	}
}
/* フォーム */
label {
	display: inline-block;
	position: relative;
	cursor: pointer;
}
textarea::placeholder,
input::placeholder {
	color: #8ba5b3;
}
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;
	background: #f1f4f6;
	color: #000;
	font-family: "游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	line-height: 2;
	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 #999;
}
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'].w200 {
	width: 200px;
}
/* ラジオボタン */
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: 18px;
	height: 18px;
	margin-right: .5em;
	border-radius: 50%;
	background-color: #e2e8ec;
}
input[type=radio] + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	background-color: transparent;
	margin: auto;
}
input[type=radio]:checked + span:before {
	background: #005aab;
}
input[type=radio]:focus {
	outline: 0;
}
input[type=radio]:focus + span {
	outline: 0;
	box-shadow: 0 0 2px 2px #999;
}
/* チェックボックス */
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: 18px;
	height: 18px;
	margin-right: .5em;
	background-color: #e2e8ec;
}
input[type=checkbox] + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 10px;
	height: 10px;
	background-color: transparent;
	margin: auto;
}
input[type=checkbox]:checked + span::before {
	background: #005aab;
}
input[type=checkbox]:focus {
	outline: 0;
}
input[type=checkbox]:focus + span {
	outline: 0;
	box-shadow: 0 0 2px 2px #999;
}
/* プルダウン */
select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	width: auto;
	padding: 5px 28px 5px 10px;
	background: #f1f4f6 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: 2;
	font-weight: 500;
}
select:focus {
	outline: 0;
	box-shadow: 0 0 2px 2px #999;
}
select.w60 {
	width: 60px;
}
select.w120 {
	width: 120px;
}
.ymd {
	display: inline-block;
	height: 42px;
	margin: 0 1em 0 .5em;
	line-height: 42px;
}
/* ボタン基本 */
.contents button.btn {
	display: inline-block;
	position: relative;
	padding: 20px 35px 19px 28px;
	background-color: #d7fa00;
	color: #000;
	font-size: 1.8rem;
	font-weight: bold;
	text-decoration: none;
	text-align: left;
}
.contents button.btn::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 28px;
	width: 6px;
	height: 6px;
	margin: auto 0;
	border: 0;
	border-top: solid 3px #000;
	border-right: solid 3px #000;
	transform: rotate(45deg);
}
/* 戻るボタン */
.contents button.btn.back {
	background-color: #c5d2d9;
	text-align: right;
}
.contents button.btn.back::after {
	right: auto;
	left: 28px;
	transform: rotate(225deg);
}
.contents button.btn:disabled {
	background-color: #c5d2d9;
	color: #808080;
	pointer-events: none;
}
.contents button.btn:disabled::after {
	border-top: solid 3px #808080;
	border-right: solid 3px #808080;
}
@media print, screen and (min-width: 768px) {
	/* ボタン基本 */
	.contents button.btn {
		width: 285px;
		transition: .3s ease-in-out;
	}
	/* 戻るボタン */
	.contents button.btn.back {
		float: left;
		width: 160px;
		margin-right: -160px;
	}
	.contents button.btn:hover,
	.contents button.btn:focus {
		outline: 0;
		opacity: .5;
	}
}
/* ------------------------------
 フォーム（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.w7em {
		display: block;
	}
	/* フォーム */
	input[type='text'],
	input[type='number'],
	input[type='tel'],
	input[type='email'],
	input[type='password'],
	textarea {
		border-radius: 0;
		font-size: medium;
	}
	textarea {
		padding: 9px 10px;
		line-height: 1.5;
	}
	/* プルダウン */
	select {
		font-size: medium;
		vertical-align: top;
	}
	select.w120 {
		width: 80px;
	}
	.ymd {
		vertical-align: bottom;
	}
	/* ボタン基本 */
	.contents button.btn {
		width: 215px;
		padding: 11px 30px 11px 20px;
		font-size: 1.5rem;
	}
	.contents button.btn::after {
		right: 20px;
		width: 4px;
		height: 4px;
	}
	/* 戻るボタン */
	.contents button.btn.back {
		margin-top: 16px;
	}
}
@media screen and (max-width: 359px) {
	/* プルダウン */
	select.w60 {
		width: 45px;
	}
	select.w120 {
		width: 60px;
	}
}

/* ------------------------------
 フォーム内の横並びリスト（PC）
------------------------------ */
.searchList {
	display: flex;
	flex-wrap: wrap;
	line-height: 2;
}
.cms_text .searchList li {
	position: static;
	padding-left: 0;
}
.cms_text .searchList li::before {
	content: none;
}
@media print, screen and (min-width: 768px) {
		/* リスト */
		.searchList {
			margin-left: 1em;
		}
		.searchList li {
			padding-right: 1em;
		}
		.searchList.div2 li {
			width: calc(100% / 2);
		}
		.searchList.div3 li {
			width: calc(100% / 3);
		}
		.searchList.div4 li {
			width: calc(100% / 4);
		}
		.searchList.div4 li.div2-4 {
			width: calc(100% / 2);
		}
		.searchList.div5 li {
			width: calc(100% / 5);
		}
		.searchList.div6 li {
			width: calc(100% / 6);
		}
		/* リストをテーブルの中に入れた場合 */
		td .searchList {
			margin-left: 0;
		}
}
/* ------------------------------
 フォーム内の横並びリスト（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	/* リスト */
	.searchList {
		margin-top: -9px;
	}
	.searchList li {
		width: 100%;
		padding: 8px 1em;
		border-bottom: 1px solid #dcdcdc;
	}
	/* リストをテーブルの中に入れた場合 */
	td .searchList li {
		padding: 0;
		border-bottom: 0;
	}
}