@charset "utf-8";
/* ------------------------------
 フォームイントロ（PC）
------------------------------ */
/* h2 */
.contentsTop h2 {
	padding-bottom: 30px;
	border-bottom: 2px solid #1f1f1f;
	font-size: 2.8rem;
	line-height: 1;
	font-weight: 700;
	line-clamp: 0;
}
.contentsTop h2::after {
	content: none;
}
/* ステップ */
.formStep {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: 114px;
	grid-column-gap: 36px;
}
.formStep p {
	display: grid;
	justify-content: center;
	align-items: center;
	position: relative;
	background-color: #ebeef1;
	font-size: 1.8rem;
	font-weight: bold;
}
.formStep p.on {
	background-color: #00a0e9;
	color: #fff;
}
.formStep p:not(:last-child)::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 47px;
	right: -23px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 0 10px 10px;
	border-color: transparent transparent transparent #00a0e9;
}
@media print, screen and (min-width: 768px) {
	.cms_text {
		width: 960px;
		margin-left: auto;
		margin-right: auto;
	}
	/* ステップ */
	.formStep {

	}
}
/* ------------------------------
 フォームイントロ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.contentsTop h2 {
		padding-bottom: 20px;
		font-size: 2.2rem;
	}
	/* ステップ */
	.formStep {
		display: grid;
		grid-template-rows: 78px;
		grid-column-gap: 24px;
	}
	.formStep p {
		font-size: 1.6rem;
	}
	.formStep p:not(:last-child)::after {
		top: 29px;
		right: -18px;
	}
}
/* ------------------------------
 フォーム（PC）
------------------------------ */
.req,
.any {
	display: inline-block;
	width: 50px;
	height: 24px;
	margin: 0 8px 4px 0;
	border-radius: 12px;
	color: #fff;
	font-size: 1.3rem;
	line-height: 24px;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
}
.req {
	background-color: #d20032;
}
.any {
	background-color: #8997a9;
}
.w7em {
	display: inline-block;
	width: 7em;
}
@media print, screen and (min-width: 768px) {
	.cms_block.formBlock {
		width: 860px;
		margin-left: auto;
		margin-right: auto;
	}
	span.w38 {
		display: block;
		margin-left: 38px;
	}
}
/* フォーム */
label {
	display: inline-block;
	position: relative;
	cursor: pointer;
}
textarea::placeholder,
input::placeholder {
	color: #9ca8b7;
}
input[type='text'],
input[type='number'],
input[type='tel'],
input[type='email'],
input[type='password'],
textarea {
	-webkit-appearance: none;
	width: 100%;
	padding: 24px 30px 23px;
	background: #ebeef1;
	color: #000;
	font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, Arial, sans-serif;
	font-size: 1.6rem;
	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: 2px solid #000;
	/* box-shadow: 0 0 3px 3px #e0e0e0 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"].w200 {
	width: 200px;
}
textarea {
	height: 270px;
}
@media print, screen and (min-width: 768px) {
	.mailform input[type='text'],
	.mailform textarea {
		width: 75%;
	}
	input[type='text'].w420 {
		width: 420px;
	}
	input[type='text'].w420 + input[type='text'].w420 {
		margin-left: 20px;
	}
}
/* ラジオボタン */
input[type=radio] {
	position: absolute;
	top: 8px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type=radio] + span {
	display: inline-block;
	position: relative;
	top: 3px;
	width: 19px;
	height: 19px;
	margin-right: 6px;
	border: solid 1px #b0bac6;
	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: 11px;
	height: 11px;
	border-radius: 100%;
	background-color: transparent;
	margin: auto;
}
input[type=radio]:checked + span:before {
	background: #00a0e9;
}
input[type=radio]:focus {
	outline: 0;
}
input[type=radio]:focus + span {
	outline: 1px solid #000;
	/* box-shadow: 0 0 2px 2px #e0e0e0;  */
}
/* チェックボックス */
input[type=checkbox] {
	position: absolute;
	top: 2px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type=checkbox] + span {
	display: inline-block;
	position: relative;
	top: 2px;
	width: 15px;
	height: 15px;
	margin-right: 5px;
	border: solid 1px #b0bac6;
	background-color: #fff;
}
input[type=checkbox] + span:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 15px;
	height: 15px;
	margin: auto;
}
input[type=checkbox]:checked + span {
	border: none;
}
input[type=checkbox]:checked + span:before {
	background: url(../img/icon_check.svg) no-repeat 0 0 / cover;
}
input[type=checkbox]:focus {
	outline: 0;
}
input[type=checkbox]:focus + span {
	outline: 1px solid #000;
	/* box-shadow: 0 0 2px 2px #e0e0e0; */
}
input[type=checkbox]#checklist + span {
	margin-bottom: 2px;
}
/* プルダウン */
/* select {
	-webkit-appearance: none;
	position: relative;
	width: auto;
	padding: 3px 29px 3px 9px;
	border: solid 1px #969696;
	border-radius: 2px;
	background: #fff url("/static/shared/img/select.svg") no-repeat right 9px center / 9px 8px;
	color: #000;
	font-family: "游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	line-height: 1.5;
	font-weight: 500;
}
select:focus {
	outline: 0;
	box-shadow: 0 0 2px 2px #e0e0e0;
}
select.w8em {
	width: 8em;
}
select.w12em {
	width: 12em;
} */
/* ボタン基本 */
.contentsTop button {
	background-color: transparent;
	cursor: pointer;
}
.contentsTop button span {
	display: inline-block;
	position: relative;
	width: 270px;
	padding: 24px 55px 24px 45px;
	border-radius: 40px;
	background-color: #1f1f1f;
	color: #00a0e9;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	transition: opacity .3s ease-in-out;
}
.contentsTop button span::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 36px;
	right: 23px;
	width: 27px;
	height: 8px;
	background: url(../img/icon_arrow.svg) no-repeat 0 0 / cover;
}
/* 戻るボタン */
.contentsTop button.back {
	float: left;
}
.contentsTop button.back span {
	padding: 24px 45px 24px 55px;
	background-color: #8997a9;
	color: #fff;
}
.contentsTop button.back span::after {
	left: 23px;
	background: url(../img/icon_arrow_white.svg) no-repeat 0 0 / cover;
	transform: scaleX(-1);
}
.check-boxes {
	margin-bottom: 30px;
}
.contentsTop button:disabled {
	pointer-events: none;
}
.contentsTop button:disabled span {
	background-color: #8997a9;
	color: #fff;
}
.contentsTop button:disabled span::after {
	background: url(../img/icon_arrow_white.svg) no-repeat 0 0 / cover;
}
.contentsTop button:hover,
.contentsTop button:focus {
	outline: 0;
}
@media print, screen and (min-width: 768px) {
	.contentsTop button {
		transition: .3s ease-in-out;
	}
	.contentsTop button:hover,
	.contentsTop button:focus {
		opacity: .7;
	}
	.contentsTop button.back span {
		width: 200px;
		margin-right: -200px;
	}
}
/* ------------------------------
 フォーム（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.req,
	.any {
		width: 44px;
		height: 22px;
		margin: 0 7px 3px 0;
		border-radius: 11px;
		font-size: 1.2rem;
		line-height: 22px;
	}
	.w7em {
		display: block;
	}
	/* フォーム */
	label {
		display: block;
		padding-left: 1.4em;
		text-indent: -1.4em;
	}
	input[type='text'],
	input[type='number'],
	input[type='tel'],
	input[type='email'],
	input[type='password'],
	textarea {
		padding: 12px 18px;
		font-size: medium;
	}
	/* ラジオボタン・チェックボックス横並び */
	.cms_block.formBlock label + label {
		margin-top: 10px;
	}
	/* プルダウン */
	/* select {
		font-size: medium;
	}
	select.sp_w100p {
		width: 100%;
	} */
	/* ボタン基本 */
	.contentsTop button {
		float: right;
		width: 60%;
	}
	.contentsTop .check-boxes + button {
		float: none;
	}
	.contentsTop button span {
		width: 100%;
		padding: 19px 45px 19px 40px;
		border-radius: 33px;
		font-size: 1.6rem;
	}
	.contentsTop button span::after {
		top: 29px;
		right: 19px;
		width: 21px;
		height: 8px;
		background: url(../img/icon_arrow_sp.svg) no-repeat 0 0 / cover;
	}
	.contentsTop button:disabled span::after {
		background: url(../img/icon_arrow_white_sp.svg) no-repeat 0 0 / cover;
	}
	/* 戻るボタン */
	.contentsTop button.back {
		width: 35%;
	}
	.contentsTop button.back span {
		width: 100%;
		padding: 19px 20px 19px 45px;
	}
	.contentsTop button.back span::after {
		left: 19px;
		background: url(../img/icon_arrow_white_sp.svg) no-repeat 0 0 / cover;
		transform: scaleX(-1);
	}
}