@charset "utf-8";
label{
	font-weight: bold;
}
/*----------------------------------------------
*
* 【SPレイアウト】
*
 ---------------------------------------------*/
.label_agreement_content{
	width: 22rem;
	font-weight: bold;
}
.agreement_content{
	border: 1px solid #888;
	border-radius: 4px;
	box-sizing: border-box;
	height: 20rem;
	overflow-y: scroll;
	padding: 8px;
	font-size: 1.4rem;
}
.checkbox_agreement{
	width: 12rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
  margin-right: auto;
	margin-bottom: 48px;
}
.checkbox_position_agreement{
	display:block;
	margin-left: auto;
  margin-right: auto;
	margin-bottom: 48px;
}
.checkbox_position_agreement input{
	display: none;
}
.checkbox_format_agreement {
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	padding: 2px 0 0 30px;
	position: relative;
	width: 10rem;
	margin-left: auto;
	margin-right: auto;
}
.checkbox_format_agreement::before {
	background: #fff;
	border: 1px solid #888;
	border-radius: 4px;
	content: '';
	display: block;
	height: 20px;
	left: 0px;
	margin-top: -8px;
	position: absolute;
	top: 40%;
	width: 20px;
}
.checkbox_format_agreement::after {
	border-right: 4px solid #333;
	border-bottom: 4px solid #333;
	content: '';
	display: block;
	height: 10px;
	left: 6px;
	margin-top: -15px;
	opacity: 0;
	position: absolute;
	top: 66%;
	transform: rotate(45deg);
	width: 6px;
}
.checkbox_error_agreement{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 28rem;
	color: #D8424D;
	opacity: 0;
}
input[type=checkbox]:checked + .checkbox_format_agreement::before {
	border-color: #888;
}
input[type=checkbox]:checked ~ .checkbox_format_agreement::after {
	opacity: 1;
}
input[type=checkbox]:invalid ~ .checkbox_error_agreement {
	opacity: 1;
}
/*----------------------------------------------
*
* 【PCレイアウト】
*
 ---------------------------------------------*/
 
 @media screen and (min-width:768px) { 
}