@charset "utf-8";
*{
	/* width指定にpaddingとborderの幅を含める */
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}
*:before, *:after{
	/* width指定にpaddingとborderの幅を含める */
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}
/* リセット(最小限) */
ul{
	margin:0;
	padding:0;
}

html{
	width: 100%;
	height:100%;
	margin:0;
	padding:0;
}

body{
	height:100%;
	margin:0;
	padding:0;
	font-size:73%;/* 1em=10px */
	font-family:"メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGOTHIC",sans-serif;
	line-height:1.5;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}
#content img{
	border:0;
	max-width:100%;
	height: auto;
}
.img_s{
	margin: 1em auto 1.5em;
	max-width: 70%;
}
.img_s img{
	box-shadow: 0 0 1.3em rgba(93, 93, 93, 0.37);

}
.img_m{
	margin:1em 0 1.5em;
}
.img_l{
	position:relative;
	margin:1em 0 1.5em;
}
.img_l:after{
	content:"";
	position:absolute;
	z-index:-1;
	top:50%;
	bottom:0;
	left:15px;
	right:15px;
	/*影を入れる*/
	-webkit-box-shadow:0 0 40px rgba(0,0,0,0.7);
	-moz-box-shadow:0 0 40px rgba(0,0,0,0.7);
	box-shadow:0 0 40px rgba(0,0,0,0.7); 
	/*角丸にする*/
	-moz-border-radius:100px / 40px;
	-o-border-radius:100px / 40px;
	border-radius:100px / 40px;
}

a{
	color:#2E1F1F;
	text-decoration:none;
	outline:none;
}
h1{
	text-align: center;
	font-size: 2.4em;
	margin: 0;
}

h2{
	width: 820px;
	margin:0 auto;
	font-size: 2em;
	line-height: 1.2em;
	text-align: left;
	padding:16px 10px 0 10px;
	clear: both;
}
h3{
	font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
	clear:both;
	margin:15px 0;
	padding:0 10px;
	font-size:1.6em;
	font-weight: 500;
}
h3 span{
	display: block;
	text-align: right;
	font-size: 0.7em;
}
h4{
	margin:10px 0;
	padding:10px 0;
	font-size: 1.3em;
	color: #444444;
	clear: both;
	font-weight: bold;
	position:relative;
	font-family: Verdana, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
h4:before,
h4:after {
	content: "";
	width: 10px;
	height: 10px;
}
h4:before{
	background: rgba(166, 166, 166, 0.5);
	display: inline-block;
	margin-right: 15px;
	vertical-align: middle;
}
h4:after {
	border: 1px solid #A6A6A6;
	position: absolute;
	left: 5px;
	top: 52%;
}
h5{
	clear:both;
	margin:15px 0 10px;
	padding-left:15px;
	color: #3F7FC0;
	font-size: 1.2em;
	font-weight: 500;
	box-shadow:inset 4px 0 #3F7FC0;
	position:relative;
}
h5:before{
	content:"";
	display:inline-block;
	width:4px;
	height:50%;
	background:#ddd;
	position:absolute;
	left: 0;
	bottom: 0;
}
h6{
	clear:both;
	margin:0 0 10px;
	padding:4px 10px 4px 11px;
	font-size:1em;
	font-weight: 500;
	border-bottom:1px dotted #ccc;
}
.btn{
	display:block;
	text-align: right;
	margin: 1em 0 0.5em;
}
.btn a{
	font-size: 0.9em;
	display:inline-block;
	padding:0.5em 1.5em;
	background: #f0f0f0;
}
.btn a:hover{
	color: #fff;
	background: #A6A6A6;
	transition: 0.1s linear;
}
/* wrapper */
#wrapper{
	width:100%;
	margin:0;
	padding:0;
	font-size:1.4em;
}
/* header */
#header{
	display: block;
	width: 820px;
	margin: 0 auto;
	background: #ffffff;
}
#header_nav ul{
	list-style: none;
}
#header_nav li a{
	font-size:0.9em;
	color: #666;
	padding: 0 16px;
	border-left: 1px solid #666;
	border-right: 1px solid #666;
}
/* main */
#main{
	width: 820px;
	display: block;
	margin: 0.9em  auto 0;
	clear:both;
}
#content,
#sub_nav{
	display: block;
	float: right;
}
#content{
	width: 580px;
	color: #645654;
	padding: 10px 10px 0 20px;
}
.text-top{
	display: table;
	margin-bottom: 2em;
	padding-bottom: 1.5em;
	border-bottom: 1px dotted #ccc;
}
.text-top .img,
.text-top .text{
	display: table-cell;
	vertical-align: middle;
}
.text-top .img{
	width: 120px;
	margin-right: 1em;
	display: block;
	position:relative;
}
.text-top .img:after {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	background: rgba(0, 0, 0, 0.1);
	left: 0;
	bottom: 0;
	margin-bottom: -4px;
	margin-left: -4px;
	width: 110px;
	height: 110px;
	border-radius: 50%;
}
.text-top .img img{
	width: 120px;
	border-radius: 50%;
	overflow: hidden;
}
/* sub_nav */
#sub_nav{
	width: 240px;
}
#sub_nav ul{
	list-style: none;
	padding: 0 10px;
}
#sub_nav ul li a{
	border-top: 1px solid #444;
	display: block;
	padding: 20px 2px 4px;
}
#sub_nav ul li:last-child a{
	border-bottom: 1px solid #444;
}
#sub_nav ul li a:hover{
	background:#f0f0f0;
}
#sub_nav ul li a.cr{
	background: #A6A6A6;
	color: #FFF;
}
#sub_nav ul .title{
	border-top: 1px solid #444;
	border-bottom: 1px solid #444;
}
#sub_nav ul .title a{
	border: none;
	background: #fff;
	color: #000;
	padding: 20px 0 4px 4px;
}
#sub_nav ul .sub_title{
	color: #0000ff;
	font-size: 1.6em;
	padding:20px 0 4px 4px;
}

.outline {
	margin: 0 0 2em;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.outline ul{
	list-style: none;
}
.outline li{
	font-size: 0.85em;
	vertical-align: middle;
	position:relative;
	border-bottom: 1px solid #f0f0f0;
}
.outline li:hover{
	background: #fafafa;
	box-shadow:inset 0 0 2px #eee;
}
.outline li a{
	display:block;
	padding: 0.5em 1em;
}
.outline li:first-letter {
	font-weight:bold;
	color: #999;
	padding-right: 10px;
	margin-right: 10px;
	border-right:1px dotted #ddd;
	font-size:1.3em;
	font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
}
.outline li.title{
	padding: 0.5em 1em;
	background: #3F548B;
	color: #fff;
}
.outline li.title span{
	font-size:0.9em;
	float: right;
	color: rgba(255, 255, 255, 0.9);
}
.outline li.title:first-letter {
	font-weight:normal;
	color:#fff;
	padding-right: 0;
	margin-right: 0;
	border-right:none;
	font-size:1em;
	font-family:"メイリオ","Meiryo","ＭＳ Ｐゴシック","MS PGOTHIC",sans-serif;

}
/* footer */

#footer{
	width: 820px;
	margin: 0.8em auto 0;
}
#breadcrumb{
	font-size: 0.85em;
	color: #645654;
	margin-bottom: 1.5em;
}
#breadcrumb span{
	padding: 0 0.5em;
}
#footer_nav{
	border-top: 1px dotted #999;
}
#footer_nav ul{
	list-style: none;
	padding-top: 10px;
}
#footer_nav li{
	display: inline-block;
	float:left;
}
#footer_nav li a{
	display: inline-block;
	padding: 4px 20px;
	border-right: 1px solid #666;
}
#footer_nav li:first-child a{
	border-left: 1px solid #666;
}
.footer_copy{
	color: #999;
	font-size: 0.7em;
	text-align: right;
	clear: both;
}
.clearfix:after{
	content:"";
	display:block;
	clear:both;
}

ul.bxslider li {
	// 指定したい幅と高さ
	width: 100%;
	height: 400px;
	position: relative;
	background:#3C3D44;
}
ul.bxslider li img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	max-width: 102%;
	max-height: 102%;
	margin: auto;
}
#bx-pager a img{
	height:58px;
	overflow:hidden;
	border: 1px solid #EBEBEB;
}
#bx-pager a.active img{
	border: 3px solid #30A1F4;
}