@charset "utf-8";
/* ------------------------------
 フォーム（PC）
------------------------------ */
.req,
.any {
	display: inline-block;
	width: 42px;
	height: 20px;
	margin: 0 8px 4px 0;
	padding-top: 2px;
	border-radius: 10px;
	color: #fff;
	font-size: 1.3rem;
	line-height: 18px;
	font-weight: 600;
	text-align: center;
	vertical-align: middle;
}
.req {
	background-color: var(--red-color);
}
.any {
	background-color: var(--gray-color);
}
.w7em {
	display: inline-block;
	width: 7em;
}
@media print, screen and (min-width: 768px) {
	.cms_block {
		width: 820px;
	}
}
/* フォーム */
label {
	display: inline-block;
	position: relative;
	cursor: pointer;
}
textarea::placeholder,
input::placeholder {
	color: var(--gray-color);
}
input[type='text'],
input[type='number'],
input[type='tel'],
input[type='email'],
input[type='password'],
textarea {
	-webkit-appearance: none;
	width: 100%;
	padding: 16px 20px;
	border-radius: 8px;
	background-color: var(--base-color);
	color: #000;
	font-family: "IBM Plex Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.6rem;
	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;
	/* 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"].w100 {
	width: 100px;
}
input[type="text"].w200 {
	width: 200px;
}
input[type="text"].w400 {
	padding: 1px 20px;
}
textarea {
	height: 250px;
}
@media print, screen and (min-width: 768px) {
	input[type="text"].w400 {
		width: 400px;
	}
}
/* ラジオボタン */
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: 17px;
	height: 17px;
	margin-right: 5px;
	border: solid 1px var(--health-color);
	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: 9px;
	height: 9px;
	border-radius: 100%;
	background-color: transparent;
	margin: auto;
}
input[type=radio]:checked + span:before {
	background-color: var(--health-color);
}
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: 17px;
	height: 17px;
	margin-right: 5px;
	border: solid 1px var(--health-color);
	border-radius: 2px;
	background-color: #fff;
}
input[type=checkbox] + span:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 9px;
	height: 9px;
	border-radius: 2px;
	background-color: transparent;
	margin: auto;
}
input[type=checkbox]:checked + span:before {
	background-color: var(--health-color);
}
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;
} */
/* ボタン基本 */
.contents button {
	display: inline-flex;
	align-items: center;
	position: relative;
	height: 84px;
	padding: 0 76px 0 30px;
	border-radius: 42px;
	background-color: var(--base-color);
	color: var(--main-font-color);
	font-size: 1.8rem;
	font-weight: 600;
	text-decoration: none;
	transition: .3s ease-in-out;
	cursor: pointer;
}
.contents button::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 23px;
	width: 38px;
	height: 38px;
	background: url(../img/icon_arrow_c_r.svg) no-repeat 0 0 / cover;
	margin: auto 0;
	transition: .3s ease-in-out;
}
/* 戻るボタン */
.contents button.back {
	float: left;
	background-color: transparent;
	padding: 0 0 0 46px;
}
.contents button.back::after {
	right: auto;
	left: 0;
	transform: scaleX(-1);
}
/* 無効 */
.contents button:disabled {
	pointer-events: none;
}
.contents button:disabled::after {
	background: url(../img/icon_arrow_c_r_d.svg) no-repeat 0 0 / cover;
}
.contents button:hover,
.contents button:focus {
	outline: 0;
}
@media print, screen and (min-width: 768px) {
	.contents button {
		width: 258px;
	}
	.contents button:hover {
		opacity: .7;
	}
	/* 戻るボタン */
	.contents button.back {
		width: 208px;
		margin-right: -208px;
	}
}
/* ------------------------------
 フォーム（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.req,
	.any {
		display: inline-block;
		width: 40px;
		height: 18px;
		border-radius: 9px;
		font-size: 1.2rem;
		line-height: 16px;
	}
	.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: 11px 15px;
		font-size: medium;
	}
	input[type="text"].w400 {
		width: calc(100% - 7em);
		padding: 1px 15px;
	}
	/* ラジオボタン・チェックボックス横並び */
	.cms_block.formBlock label + label {
		margin-top: 10px;
	}
	/* プルダウン */
	/* select {
		font-size: medium;
	}
	select.sp_w100p {
		width: 100%;
	} */
	/* ボタン基本 */
	.contents button {
		width: 60%;
		height: 76px;
		font-size: 1.7rem;
		border-radius: 38px;
		padding: 0 72px 0 25px;
	}
	.contents button::after {
		right: 19px;
	}
	/* 戻るボタン */
	.contents button.back {
		width: 35%;
		margin-right: 5%;
	}
}