/* terms */
.wire h2 {
    padding: 0.75em;
    margin-bottom: 20px;
    background: #333;
    border-radius: 3px;
    font-size: 1.25em;
    font-weight: bold;
    line-height: 1.3;
    color: #fff;
}
.wrap_terms {
	margin-top: 30px;
	line-height: 1.5;
}
.wrap_form + .wrap_terms{
	padding-bottom: 30px;
	border-bottom: 2px solid #ccc;
}
.wrap_terms .form-check-inline{
	width: 90%;
	margin: 0 auto;
	display: block;
}
.terms li {
	margin-bottom: 5px;
}
.terms li li {
	margin-bottom: 0;
}
.terms li:last-child {
	margin-bottom: 0;
}
.terms ol > li {
	margin-left: 1.5em;
	list-style: decimal;
}
.terms ul > li {
	padding-left: 1em;
	text-indent: -1em;
}
.terms {
	height: 250px;
	margin: 0 auto;
	overflow: hidden;
	border: solid 2px #CCC;
	padding: 15px;
	box-sizing: border-box;
	overflow-y: scroll;
	font-size: 0.875rem;
}
.terms p + ol,
.terms p + ul,
.terms ol + p,
.terms ul + p{
  margin-top: 1em;
}
.terms_ttl {
  margin-bottom: 0.5em;
  font-size: 1.25em;
  text-align: center;
  font-weight: bold;
}
.indent_none li {
	padding-left: 0;
	text-indent: 0;
}
.terms_attention {
	margin: 1em 0;
	text-align: center;
}
label.personal {
	padding: 0.5em;
	text-align: center;
	margin: 1rem auto;
	display: block;
}
input:disabled,
.disabled {
	opacity: 0.2 !important;
}
.ta_center {
    text-align: center !important;
}
.form-item {
    width: 100%;
}
.form-check, .form-check-inline {
    padding: 0.5em;
    margin: 0.25em 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    word-break: break-all;
}
.wrap_terms .form-item .form-check-inline {
    margin: 0 auto !important;
}
.wrap_terms .form-check-inline {
    width: 90%;
    margin: 0 auto;
    display: block;
}
.fs_s {
    font-size: 0.875em !important;
}
.d_ib {
    display: inline-block !important;
}
@media screen and (min-width:640px) {
	.form-check-inline {
		font-size: 15px !important;
	}
	.wrap_terms .form-check-inline {
		width: auto;
		display: inline-block;
		padding-left: 1.25em;
		padding-right: 1em;
	}
}
/* CHECKBOX */
.wrap_terms .form-check input[type="checkbox"]:checked + span::before,
.wrap_terms .form-check-inline input[type="checkbox"]:checked + span::before{
	background-color: #ff6666;
}
.wrap_terms input[type="checkbox"] {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	display: none;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
.wrap_terms .form-item .form-check-inline {
	margin-right: 5px !important;
}
.wrap_terms .form-item .form-check-inline {
	margin: 0 auto !important;
}
.wrap_terms .form-check,
.wrap_terms .form-check-inline{
	padding: 0.5em;
	margin: 0.25em 0;
	background: linear-gradient(to top , rgba(0,0,0,0.05) 0%, rgba(0,0,0,0) 100%);
	border: 1px solid #ccc;
	border-radius: 3px;
	box-sizing: border-box;
	position: relative;
	cursor: pointer;
	font-size: 16px;
	word-break: break-all;
}
.wrap_terms .form-check input[type="checkbox"] + span,
.wrap_terms .form-check-inline input[type="checkbox"] + span {
  position: relative;
  padding: 0 0.5em 0 1.75em;
}
.wrap_terms .form-check input[type="checkbox"] + span::before,
.wrap_terms .form-check input[type="checkbox"] + span::after,
.wrap_terms .form-check-inline input[type="checkbox"] + span::before,
.wrap_terms .form-check-inline input[type="checkbox"] + span::after{
	content: '';
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 0;
}
.wrap_terms .form-check input[type="checkbox"] + span::before,
.wrap_terms .form-check-inline input[type="checkbox"] + span::before{
	width: 1.25em;
	height: 1.25em;
	margin-top: -0.625em;
	background-color: #fff;
	border: 1px solid #808080;
	border-radius: 3px;
	z-index: 0;
	transition: .2s;
}
.wrap_terms .form-check input[type="checkbox"] + span::after,
.wrap_terms .form-check-inline input[type="checkbox"] + span::after{
	width: 0.5em;
	height: 0.75em;
	margin-top: -0.5em;
	margin-left: 0.35em;
	-webkit-transform: scale(0) rotate(45deg);
	-ms-transform: scale(0) rotate(45deg);
	transform: scale(0) rotate(45deg);
	z-index: 1;
}
.wrap_terms .form-check input[type="checkbox"]:checked + span::before,
.wrap_terms .form-check-inline input[type="checkbox"]:checked + span::before{
	border: none;
}
.wrap_terms .form-check input[type="checkbox"]:checked + span::after,
.wrap_terms .form-check-inline input[type="checkbox"]:checked + span::after{
	border: 0.1875em solid #fff;
	border-width: 0 0.1875em 0.1875em 0;
	-webkit-transform: scale(1) rotate(45deg);
	-ms-transform: scale(1) rotate(45deg);
	transform: scale(1) rotate(45deg);
}