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

body {
	margin:0;
	padding:0;
	color:#393939;
	font-size:14px;
	font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	background-color: #efefef;
}
a {
	color:#5784c6;
	text-decoration:none;
	font-size:14px;
}
a:hover {
	text-decoration:underline;
}
body:after {/*擬似要素をつくる*/
	position: fixed;/*固定配置*/
	top: 0; left: 0;/*左上に固定*/
	width: 100%; height: 100%;/*画面全体を覆う*/
	content: "";
	z-index:-10;
}








#header {
	padding:5px 0px 0;
	width:calc(100%);
	height:40px;
	background-color: rgba(255,255,255,0.95);
	position:fixed;
	z-index:999;
	
	box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 3px 6px rgba(0,0,0,0.2);
}
#header_in {
	max-width:calc(1400px);
	margin:0 auto;
	position:relative;
}
#header #h_logo {
	display:inline-block;
	vertical-align:top;
	padding:5px 0 0 20px;
}
#header #h_logo a {
	font-size:20px;
	font-weight:bold;
	text-decoration:none;
	line-height:20px;
}
#header #h_logo img {
	height:35px;
	margin:10px 5px 0 10px;
}

#header #h_box1 {
	display:inline-block;
	margin:5px 0 0 25px;
	vertical-align:top;
}
#header #h_box2 {
	display:inline-block;
	margin:2px 0 0 30px;
	vertical-align:top;
	width: calc(100% - 250px);
}
#header #h_box2 * {
	margin:0;
	padding:0;
	font-size:95%;
}
#header #h_box3 {
	display:inline-block;
	margin:0px 0 0 30px;
	vertical-align:top;
}

#header #h_right {
	position:absolute;
	top:3px;
	right:20px;
}
#header #h_right a {
	text-decoration:none;
	display:inline-block;
	margin-left:20px;
}
#header_navi {
	border-top:solid 1px #DADCE0;
	border-bottom:solid 1px #DADCE0;
	background-color:#ededed;
	width:100%;
	height:30px;
	position:absolute;
	bottom:0;
}
#header_navi_in {
	width:1000px;
	margin:0 auto;
}
#header_navi_in .ul01 {
	display:block;
	list-style:none;
}
#header_navi_in .ul01 li {
	display:inline-block;
}
#header_navi_in .ul01 li a {
	display:inline-block;
	line-height:20px;
	padding:0 7px;
	margin:5px 5px 5px 0;
	text-decoration:none;
	color:#5784c5;
	font-size:12px;
	border-radius:20px;
}
#header_navi_in .ul01 li a:hover,
#header_navi_in .ul01 li a.current {
	background-color:#5784c6;
	color:#FFF;
}

#contents {
	padding-top:50px;
	/*max-width:1400px;
	min-width:900px;
	min-height:calc(100vh - 120px);*/
	width:1000px;
	margin:0 auto;
	position:relative;
}
#contents.check_page {
	width:95%;
	min-width:1000px;
}

#sidenavi {
	display:none;
	position:fixed;
	width:180px;
	padding:10px 10px;
	top:50px;
	margin-left:10px;
	background-color: rgba(255,255,255,0.95);
	border-radius:5px;
}

#sidenavi ul {
	display:block;
	list-style:none;
	padding:15px 0;
}
#sidenavi ul li {
	padding-bottom:10px;
}
#sidenavi ul li:last-child {
	padding-bottom:0;
}
#sidenavi ul li a {
	text-decoration:none;
}
#sidenavi ul li a i {
	margin-right:5px;
}

#main {
	background-color: rgba(255,255,255,0.95);
	min-height:calc(100vh - 120px);
	
	padding:10px 10px;
	border-radius:5px;
	/*margin:0px 10px 0px 220px;*/
	margin:0px 0px;
}


#footer {
	margin-top:10px;
	padding:20px 10px 20px;
	width:calc(100% - 20px);
	min-width: calc(900px - 20px);
	height:30px;
	background-color: rgba(255,255,255,0.95);
	text-align:center;
}

#footer #f_copy {
	display:inline-block;
	font-size:80%;
	padding:50px 10px 20px;
}

#footer .a_icon {
	font-size:70%;
	margin:0 20px;
}
#footer a {
	font-size: 12px;
}


#center_contents {
	position: absolute;
    top: 50%;
    left: 50%;
    width: 480px;
    max-width: 90%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
	background-color: rgba(255,255,255,0.95);
	border-radius:10px;
}
#center_contents_in {
	padding:25px 20px;
}

#center_contents input[type="text"]
,#center_contents input[type="password"] {
	width:calc(100% - 12px);
}
#center_contents dl {
	display:block;
	padding:10px 0 20px;
}
#center_contents dl dt {
	padding-top:10px;
}
#center_contents .l_box {
	width:70%;
	float:left;
	margin-top:10px;
	font-size:11px;
}
#center_contents .l_box a {
}
#center_contents .r_box {
	width:30%;
	float:right;
	text-align:right;
}
@media print, screen and (max-width: 500px){
	#center_contents .l_box {
		width:100%;
		float:none;
	}
	#center_contents .r_box {
		width:100%;
		float:none;
	}
}



#ovray_hanyou1_out {
	position:fixed;
	width:100%;
	height:100%;
	background-color:rgba(255,255,255,0.6);
	top:0;
	left:0;
	z-index:999;
	display:none;
}
#ovray_hanyou1 {
	position:absolute;
	width:85%;
	height:85%;
	max-width:950px;
	max-height:850px;
	background-color:#FFF;
	top:50%;
	left: 50%;
	border:solid 1px #CCCCCC;
	border-radius:3px;
	box-shadow:0 0 5px rgba(0,0,0,0.3);
	
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
#ovray_hanyou1_in {
	margin:20px 15px;
	height:calc(100% - 40px);
	overflow-y:scroll;
	background-image:url(../img/loading.gif);
	background-repeat:no-repeat;
	background-position:center;
}
#ovray_hanyou1_in img {
	max-width:100%;
}

#ovray_hanyou1 a.close {
	position:absolute;
	top:3px;
	right:20px;
}



.srch_box {
	padding:10px 0;
}