
.pageDetail{
	margin:40px 0;
	padding:40px;
	background:#fff;
	line-height:1.7;
	font-size:16px;
}
h1{
	margin:0;
}
h1 span{
	color:#C00000;
}
.red{
	color:#FF0000;
}
.bold{
	font-weight:bold;
}
.center{
	text-align:center;
}
a{
	color:#1d3994;
	text-decoration:none;
}
a:hover{
	text-decoration:underline;
}

table.notice{
	border-collapse:collapse;
	font-size:16px;
	margin-bottom:40px;
}
table.notice tr,table.notice td{
	border:solid 1px #BFBFBF;
	padding:20px;
}
table.notice td.right{
	background:#F2F2F2;
	width:100px;
	text-align:center;
}

/*応募フォーﾑ*/
ul.form {
	padding:0;
	margin:0 auto;
	width:540px;
}
ul.form li{
	list-style-type:none;
	margin:20px 0;
}
ul.form li label.def{
	margin-right:10px;
	display:inline-block;
	width:120px;
	padding:10px 0 0;
	text-align:center;
	vertical-align:top;
	line-height:1.2;
}
textarea{
	vertical-align:bottom;
}
input[type="text"]{
	font-size:16px;
}
#name,#kana,#email{
	height:42px;
	border:solid 1px #BBBBBB;
	width:380px;
	padding:0 10px;
	font-size:16px;
	font-family: "メイリオ","Hiragino Kaku Gothic Pro",Meiryo,"ヒラギノ角ゴ Pro W3","MS PGothic","MS UI Gothic",Helvetica,Arial,sans-serif !important;
}
#comment{
	height:160px;
	width:380px;
	border:solid 1px #BBBBBB;
	margin:0;
	padding:10px 10px;
	font-size:16px;
	font-family: "メイリオ","Hiragino Kaku Gothic Pro",Meiryo,"ヒラギノ角ゴ Pro W3","MS PGothic","MS UI Gothic",Helvetica,Arial,sans-serif !important;
}

/*チェックボタンの装飾*/
input[type="checkbox"]{
	display:none;
}
label.consent{
	position:relative;
	padding: 0 0 0 42px;
	font-weight:bold;
	margin:30px 0 30px 30px;
	font-size:17px;
}

label.consent:hover:after{
	border-color: #0171bd;
}
label.consent:after,  label.consent:before{
	position: absolute;	
	content: "";
	display: block;
	top: 40%;
}
label.consent:after {
	left: 8px; 
	top:0px;
	width: 20px;
	height: 20px;
	border: 2px solid #1D399E;
}
label.consent:before {
	left: 15px;			/* 左から配置の基準位置を決める */ 
	margin-top: -9px;	/* チェックマークの位置 */
	width: 7px;			/* ボックスの横幅を指定する */
	height: 14px;		/* ボックスの高さを指定する */
	border-right: 3px solid #1D399E;	/* 境界線（右）のスタイルを指定する */
	border-bottom: 3px solid #1D399E;	/* 境界線（下）のスタイルを指定する */
	transform: rotate(45deg);	/* 要素を回転させる */
	opacity: 0;			/* 要素を透過指定する */
}
input[type="checkbox"]:checked + label.consent:before {
	opacity: 1;		/* 要素を表示する */
}

/*応募ボタン*/
.submit{
	display:block;
	font-size:18px;
	font-weight:bold;
	text-decoration:none;
	color:#FFFFFF;
	background:#1D399E;
	padding:15px 20px;
	width:350px;
	border-style:none;
	margin:40px auto;
	cursor:pointer;
}

.submit:hover{
	opacity:0.6
}

/*応募ボタン - 押せないとき */
.submit[disabled]{
background: #ccc;
cursor: default;
}
.submit[disabled]:hover{
	opacity:1.0;
}

