@charset "utf-8";

/* ------------------------------
 フォーム（PC）
------------------------------ */
.contents .res {
	margin-bottom: 70px;
}
.contents .res table tr th span.req,
.contents .res table tr th span.any {
	display: inline-block;
	width: 40px;
	height: 20px;
	margin: 0 10px 4px 0;
	border-radius: 3px;
	color: #fff;
	font-weight: bold;
	font-size: 1.3rem;
	line-height: 20px;
	font-weight: 500;
	text-align: center;
	vertical-align: middle;
}
.req {
	background-color: #e57c7c;
}
.any {
	background-color: #a7b2c4;
}
@media print, screen and (min-width: 768px) {
	.contents h2 {
		margin-bottom: 10px;
	}
	.contents .res table th {
		width: 25%;
		vertical-align: middle;
	}
	.contents .res table th.vat {
		vertical-align: top;
	}
	.contents .res table td {
		padding: 30px 0 30px 30px;
	}
}
/* フォーム */
label {
	display: inline-block;
	position: relative;
	cursor: pointer;
}
textarea::placeholder,
input::placeholder {
	color: #b8c0cc;
}
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: 2px 12px;
	background: #eef4fc;
	color: #1a1a1a;
	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 #1a1a1a;
	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: 2px;
	width: 16px;
	height: 16px;
	margin-right: .5em;
	border-radius: 50%;
	background-color: #dceaf5;
}
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: #139b7d;
}
input[type=radio]:focus {
	outline: 0;
}
input[type=radio]:focus + span {
	outline: 2px solid #1a1a1a;
	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-radius: 4px;
	background-color: #dceaf5;
}
input[type=checkbox] + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	left: 3px;
	width: 9px;
	height: 6px;
	margin: auto;
	border-left: 2px solid transparent;
	border-bottom: 2px solid transparent;
	transform: rotate(-45deg);
}
input[type=checkbox]:checked + span::before {
	width: 9px;
	height: 6px;
	border-left: 2px solid #139b7d;
	border-bottom: 2px solid #139b7d;
}
input[type=checkbox]:focus {
	outline: 0;
}
input[type=checkbox]:focus + span {
	outline: 2px solid #1a1a1a;
	outline-offset: -2px;
}
/* プルダウン */
select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	position: relative;
	width: auto;
	padding: 2px 40px 2px 10px;
	background: #eef4fc url(../img/select.svg) no-repeat right 14px bottom 14px / 11px 7px;
	color: #1a1a1a;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 400;
}
select:focus {
	outline: 2px solid #1a1a1a;
	outline-offset: -2px;
}
.ymd {
	display: inline-block;
	height: 34px;
	margin: 0 1em 0 .5em;
	line-height: 34px;
}
/* ボタン基本 */
.contents button.btn {
	display: inline-block;
	position: relative;
	min-width: 250px;
	padding: 17px 70px 17px 28px;
	border: 2px solid #1a1a1a;
	border-radius: 35px;
	background-color: #fff;
	box-shadow: 5px 6px 0 0 #1a1a1a;
	color: #1a1a1a;
	font-weight: 700;
	text-align: left;
	transition: .3s ease-in-out;
	cursor: pointer;
}
.contents button.btn::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	width: 36px;
	height: 36px;
	margin: auto 0;
	background: url(../img/icon_circle_arrow.svg) no-repeat 0 0 / cover;
}
/* 戻るボタン */
.contents button.back {
	display: block;
	min-width: 80px;
	height: 40px;
	border-radius: 20px;
	background-color: #1a1a1a;
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}
.contents button.btn:disabled {
	opacity: .4;
}
@media print, screen and (min-width: 768px) {
	/* ボタン基本 */
	.contents button.btn:hover {
		opacity: .7;
	}
	/* 戻るボタン */
	.contents button.back {
		float: left;
		margin: 10px -80px 0 0;
	}
	.contents button.back:hover {
		opacity: .7;
	}
}
/* ------------------------------
 フォーム（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.contents .res {
		margin-bottom: 50px;
	}
	.contents .res.input table td {
		padding-top: 10px;
	}
	/* フォーム */
	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.btn {
		min-width: 200px;
		padding: 15px 60px 15px 24px;
		border-radius: 30px;
		font-size: 1.6rem;
		box-shadow: 4px 5px 0 0 #1a1a1a;
	}
	.contents button.btn::after {
		right: 18px;
		width: 30px;
		height: 30px;
	}
	/* 戻るボタン */
	.contents button.back {
		display: inline-block;
		min-width: 68px;
		height: 34px;
		margin-right: 10px;
		font-size: 1.4rem;
	}
}