@charset "utf-8";
/* CSS Document */

/*--------------------------------------

登録画面(regster_html.php)

--------------------------------------*/
/*全枠*/
#register_in{
	width:560px;
	margin:80px auto 0 auto;
	text-align:left;
}
/*-------------------
ほいコレナビに会員登録(無料)する (見出し)
-------------------*/
#register_in h2{
	/*color:#FE4958;*/
	font-size:32px;
	text-align:center;
}
/*-------------------
会員になるとこんな特典があります (見出し)
-------------------*/
#register_in h3{
	margin-top:60px;
	font-size:34px;
	font-weight:bold;
	text-align:center;
}
/*-------------------
リスト
-------------------*/
#register_in .bullet{
	/*font-size: 28px;
	line-height: 1.5;*/
	font-size: 26px;
	line-height: 1.3;
	margin: 30px 0 0 50px;
	list-style-type: decimal;
}
#register_in .bullet li{
	/*margin-top:20px;*/
	margin-top:10px;
	padding-bottom: 10px;
}
/*-------------------
会員登録フォーム (見出し)
-------------------*/
/*#register_in .formtitle{
	background-color: #4CD8E5;
	height: 25px;
	width: 560px;
	text-align: center;
	color:#fff;
	line-height:0.8;
	letter-spacing:3px;
	font-size:36px;
	margin-top:50px;
	margin-left:0;
}*/
/*確認画面*/
#register_in .formtitle{
	background-color: #4CD8E5;
	width: 560px;
	text-align: center;
	color:#fff;
	letter-spacing:3px;
	font-size:36px;
	margin-top:50px;
	margin-left:0;
	padding:25px 0 22px 0;
	font-weight:normal;
}
/*-------------------
フォーム
-------------------*/
#register_in .itemtitle{
	margin:30px 0 0 10px;
	font-size:28px;
	font-weight:bold;
}
#register_in .itemtitle span{
	margin-left:15px;
	font-size:26px;
	font-weight:bold;
	color:#fff;
	background-color:#FF0000;
	border-radius:10px;
	padding:0 10px;
	font-weight:normal;
	vertical-align:middle;
}
/*必須項目*/
.required input,
.required select{
	background-color:#FEF9E7;
	/*background-color:#fff;*/
	font-size:28px;
}
/*任意項目*/
.norequired input,
.norequired select{
	background-color:#fff;
	font-size:28px;
}
/*必須フォームをクリックした際、フォーム内の背景色変更*/
.required input:focus,
.required select:focus{
	/*background-color:#FEF9E7;*/
	background-color:#fff;
}
/*1カラムフォーム*/
.one input{
	width:530px;
}
/*2カラムフォーム*/
.two input:first-child,
.two select:first-child{
	float:left;
}
.two input:last-child,
.two select:last-child{
	float:right;
}
.two input{
	width:242px;
}
.two select{
	width:272px;
	/*width:262px;*/
}
/*3カラムフォーム*/
.three select{
	width:177px;
	margin-right:8px;
}
.three select:last-child{
	margin-right:0;
}
/*セレクトボックス*/
.inputdiv select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url(../../img/register/select_arrow.gif);
	background-repeat: no-repeat;
	background-position: right 10px center;
}
/*チェックボックス*/
.itemcheck{
	width:560px;
	background-color:#E8FCFF;
	margin-top:15px;
	/*padding:26px 23px;*/
	padding-top:35px;
}
.itemcheck label{
	/*display:inline-block;*/
	text-align: justify;
	float:left;
	margin-bottom:30px;
	font-size:30px;
	margin-right:30px;
	width:220px;
	margin-left:20px;
}
.itemcheck label:nth-child(2n){
	float:left;
	text-align: justify;
	width:200px;
	margin-right:0;
	margin-left:20px;
}
input[type=checkbox] {
	display: none;
}
.checkbox {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	border-radius: 8px;
	vertical-align: top;
	top:7px;
	cursor: pointer;
	padding-left:40px;
}
.checkbox:after {
	background-color:#fff;
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 5px;
	display: block;
	margin-top: -13px;
	width: 25px;
	height: 25px;
	border: 2px solid #bbb;
	border-radius: 6px;
	content: '';
}
.checkbox:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 11px;
	display: block;
	margin-top: -11px;
	width: 11px;
	height: 15px;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	border-right:3px solid #333333;
	border-bottom:3px solid #333333;
	z-index:999;
}
input[type=checkbox]:checked + .checkbox:before {
	opacity: 1;
}
/*フォーム下の注釈文(メールアドレス/パスワード)*/
.comment{
	margin-top:20px;
	font-size:26px;
}
/*エラー文*/
.error{
	font-size:26px;
	color:#f00;
	margin-top:20px;
}
/*オファーメール*/
.offer_mail_div{
	width:514px;
	background-color:#E8FCFF;
	margin-top:50px;
	padding:34px 23px;
	font-size:30px;
}
.offer_mail_div2{
	width:514px;
	background-color:#E8FCFF;
	margin-top:15px;
	padding:34px 23px;
	font-size:30px;
}

/*同意文*/
#agree_exp{
	margin-top:70px;
	font-size:28px;
}
#agree_exp p{
	line-height:2;
}
#agree_exp span{
	display:inline-block;
	border-bottom:2px solid #9C9A99;
	line-height:1;
	font-weight:bold;
}
/*確認画面へボタン*/
.check_wrap{
	margin:30px 0 70px 0;
	text-align:center;
}
.check_wrap .check_btn{
	width:488px;
	height:75px;
	background-color:#FE4958;
	cursor:pointer;
	color:#fff;
	font-size:33px;
	border-radius:5px;
	box-shadow:0 5px #BD3944;
}
.check_wrap .check_btn span{
	font-size:26px;
	margin-right:30px;
}
/*--------------------------------------
フッター
--------------------------------------*/
footer{
	text-align:center;
	height:90px;
	background-color:#E6E5E5;
}
footer small{
	line-height:4.8;
	color:#333333;
	font-size:20px;
}