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

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

就職フェア 登録画面(job_html_a.php)

--------------------------------------*/
/*全枠*/
#register_in{
	/*width:560px;*/
	width:640px;
	margin:62px auto 0 auto;
	text-align:left;
}
/*コンテンツ幅調整*/
.itemtitle,
.inputdiv,
.comment,
.error,
#agree_exp{
	width:560px;
	margin:0 auto;
}

/*-------------------
事前エントリーフォーム (見出し)
-------------------*/
#register_in h2{
	/*margin-top:60px;*/
	font-size:34px;
	font-weight:bold;
	text-align:center;
}
/*確認画面*/
#register_in .formtitle{
	background-color: #4CD8E5;
	width: 560px;
	text-align: center;
	color:#fff;
	letter-spacing:3px;
	font-size:36px;
	margin:50px auto 0 auto;
	padding:25px 0 22px 0;
	font-weight:normal;
}
/*-------------------
フォーム
-------------------*/
#register_in .itemtitle{
	margin:30px auto 0 auto;
	font-size:28px;
	font-weight:bold;
}
/*ログイン時の氏名、メールアドレス、学校名*/
#register_in .itemval{
	margin:20px 0 0 50px;
	font-size:28px;
}
#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,
.norequired textarea{
	background-color:#fff;
	font-size:28px;
}
/*必須フォームをクリックした際、フォーム内の背景色変更*/
.required input:focus,
.required select:focus{
	/*background-color:#FEF9E7;*/
	background-color:#fff;
}

/*1カラムフォーム*/
.form_txt1{
	width:590px;
	font-size:22px;
	margin: 50px auto 20px auto;
	background-color:#fff;
	text-align:left;
	line-height: 25px;
	}
.one input{
	width:530px;
}
.one textarea{
	width:530px;
	height:250px;
}
/*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:44px;
}
.itemcheck label.nankai_btn{
	display:inline-block;
	text-align: justify;
	margin-bottom:44px;
	font-size:30px;
	margin-right:30px;
	width:400px;
	margin-left:20px;
}

.itemcheck label{
	/*display:inline-block;
	text-align: justify;*/
	float:left;
	margin-bottom:44px;
	font-size:30px;
	margin-right:30px;
	width:200px;
	margin-left:20px;
}
.itemcheck label:nth-child(2n){
	float:left;
	width:220px;
	margin-right:0;
	margin-left:50px;
}
/*チェックボックス*/
.itemcheck_one{
	width:560px;
	background-color:#E8FCFF;
	margin-top:15px;
	/*padding:26px 23px;*/
	padding-top:44px;
}
.itemcheck_one label{
	/*display:inline-block;
	text-align: justify;*/
	float:left;
	margin-bottom:44px;
	/*font-size:28px;
	margin-right:30px;
	width:450px;
	margin-left:20px;*/
	font-size:24px;
	margin-right:10px;
	width:500px;
	margin-left:10px;
}
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:5px;
	cursor: pointer;
	padding-left:51px;
}
.checkbox:after {
	background-color:#fff;
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 3px;
	display: block;
	margin-top: -13px;
	width: 33px;
	height: 33px;
	border: 2px solid #999999;
	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: 15px;
	height: 19px;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	border-right:5px solid #333333;
	border-bottom:5px solid #333333;
	z-index:999;
}
input[type=checkbox]:checked + .checkbox:before {
	opacity: 1;
}
/*ラジオボタン*/
input[type=radio] {
	display: none;
}
.radio {
	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:0px;
	cursor: pointer;
	padding-left:64px;
}
.radio: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: 40px;
	height: 40px;
	border: 2px solid #999999;
	border-radius: 40px;
	content: '';
}
.radio:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 11px;
	left: 18px;
	display: block;
	margin-top: -11px;
	width: 18px;
	height: 18px;
	background-color:#FE4958;
	border-radius:18px;
	content: '';
	opacity: 0;
	z-index:999;
}
input[type=radio]:checked + .radio:before {
	opacity: 1;
}
/*ほいコレコンシェルジュ希望 ボタン*/
label.concierge_btn{
	width:220px;
	margin-bottom:64px;
}
label.concierge_btn:nth-child(2n){
	width:220px;
	margin-right:0;
	margin-left:20px;
}
/*ほいコレコンシェルジュ希望 時間*/
label.concierge_time{
	width:220px;
	margin-left:0;
	padding:0;
}
label.concierge_time:nth-child(2n){
	width:270px;
	margin-right:0;
	margin-left:20px;
}
/*フォーム下の注釈文(メールアドレス/パスワード)*/
.comment{
	margin-top:20px;
	font-size:26px;
}
/*エラー文*/
.error{
	font-size:26px;
	color:#f00;
	margin-top:20px;
}
/*オファーメールを受け取る*/
.offer_mail_div{
	width:537px;
	background-color:#FEECEE;
	padding:32px 0 32px 23px;
	font-size:26px;
	line-height:1.1;
}
/*同意文*/
#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 90px 0;
	text-align:center;
}
.check_wrap .check_btn{
	width:488px;
	height:75px;
	background-color:#12C2FF;
	cursor:pointer;
	color:#fff;
	font-size:33px;
	border-radius:5px;
	box-shadow:0 5px #0A799F;
}
.check_wrap .check_btn span{
	font-size:26px;
	margin-right:30px;
}

/*--------------------------------------
ほいコレナビ2018にも登録する
--------------------------------------*/
.student_form{
	width:560px;
	padding:30px 0;
}
.student_form span.title{
	float:left;
	margin-top:8px;
	margin-left:20px;
	font-size:30px;
	line-height:1.5;
}
.student_form span.check{
	float:right;
	width:244px;
	background-color:#FEECEE;
	padding:32px 0;
	text-align:center;
	font-size:26px;
	line-height:1.2;
}
.student_form span.checkbox{
	font-size:20px;
	font-weight:bold;
}
.register_backcolor{
	background-color:#FCB4BA;
	margin-top:50px;
	padding-top:30px;
}
.register_backcolor p.comment{
	font-size:20px;
	padding-bottom:20px;
}
/*--------------------------------------
フッター
--------------------------------------*/
footer{
	text-align:center;
	height:90px;
	background-color:#E6E5E5;
}
footer small{
	line-height:4.8;
	color:#333333;
	font-size:20px;
}

.policy_box{
	background: #fff;
	text-align: left;
	padding: 30px 20px;
	border: 1px solid #ddd;
    padding: 30px 20px;
    height: 400px;
    overflow: auto;
	margin: 40px 0;
	width: 600px;
    margin: 0 auto 30px auto;
	box-sizing: border-box;
}

.policy_box .policy__title{
	text-align: center;
	font-weight: bold;
	font-size: 17px;
	margin-bottom: 40px;
}

.policy_box ul{
	list-style:none;
	padding-left: 30px;
	line-height: 1.4em;
}

.policy_box ul li:not(:last-child){
	margin-bottom: 20px;	
}

.policy_box .policy__label{
	font-weight: bold;
	text-indent: -27px;
	margin-bottom: 15px;
}
	
.policy_box table{
	border-collapse: collapse;
}
	
.policy_box table td, .policy_box table th{
	border: 1px solid #ddd;
	padding: 10px 10px;
}
	
.policy_box table th{
    background: #eee;
    width: 110px;
    font-weight: normal;
    color: #000;
}