@charset "utf-8";

*{
	margin:0;
	padding:0;
}

body{
	font: 14px/1.4 "メイリオ","Meiryo",arial,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	color:#252525;
	background-color:#f9f9f9;
}

.wrap{
	width:100%;
}

li{
	list-style:none;
}

a {
	text-decoration:none;
	color:#4060c0;
}

a:hover{
	color:#e04040;
	/*text-decoration: underline;*/
}

img{
	border:0;
}
/****************
見出し
***************/

h2{
	position:relative;
	font-weight:normal;
	font-size:16px;
	padding:8px 0 8px 20px;
	margin:25px 0 0 0;
	border:1px solid #ccc;
	border-radius:5px;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.88, #e3e2e2), color-stop(0.00, #fff));
	background: -webkit-linear-gradient(top, #fff 0%, #e3e2e2 88%);
	background: -moz-linear-gradient(top, #fff 0%, #e3e2e2 88%);
	background: -o-linear-gradient(top, #fff 0%, #e3e2e2 88%);
	background: -ms-linear-gradient(top, #fff 0%, #e3e2e2 88%);
	background: linear-gradient(to bottom, #fff 0%, #e3e2e2 88%);
}

h2:after{
	position:absolute;
	top:8px;
	left:10px;
	content:'';
	width:4px;
	height:-webkit-calc(100% - 1em);
	height:calc(100% - 1em);
	background-color:#4060c0;
	border-radius:4px;
}

h3{
	position:relative;
	font-weight:normal;
	font-size:16px;
	padding:8px 0 8px 20px;
	margin:10px 0 0 45px;
}

h3:after{
	position:absolute;
	top:8px;
	left:8px;
	content:'';
	width:4px;
	height: -webkit-calc(100% - 1em);
	height: calc(100% - 1em);
	background-color:#4060c0;
	border-radius:4px;
}
/**************
clearfix
*************/
.contents:after,
nav ul:after,
footer .inner:after{
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}

/*************
/* ヘッダー
*************/
header{
	width:100%;
	padding-bottom:2px;
	border-top:4px solid #4060c0;
	box-shadow:0px 5px 6px -2px #a1a1a1;
	-moz-box-shadow:0px 5px 6px -2px #a1a1a1;
	-webkit-box-shadow:0px 5px 6px -2px #a1a1a1;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #e1dfdf), color-stop(0.85, #fff));
	background: -webkit-linear-gradient(top, #fff 85%, #e1dfdf 100%);
	background: -moz-linear-gradient(top, #fff 85%, #e1dfdf7 100%);
	background: -o-linear-gradient(top, #fff 85%, #e1dfdf 100%);
	background: -ms-linear-gradient(top, #fff 85%, #e1dfdf 100%);
	background: linear-gradient(to bottom, #fff 85%, #e1dfdf 100%);
	position:fixed;
	top:0;
	z-index:1000;
}

header h1{
	width:950px;
	margin:0 auto;
	padding: 10px 0 0 0;
	font-size: 10px;
	font-weight: normal;
}

header h1 img{
	width:35%;
	height:auto;
}

/*************
/* トップナビゲーション
*************/

nav ul{
	*zoom: 1;
	list-style-type: none;
	width: 960px;
	margin: 5px auto 0;
	padding: 0;
}

nav ul:before, nav ul:after{
	content: "";
	display: table;
}

nav ul li{
	position: relative;
	border-left:1px solid #d0cfcf;
	width: 24.6%;
	float: left;
	margin: 0;
	padding: 0;
	text-align: center;
}

nav ul li:last-child{
	border-right:1px solid #d0cfcf;
}
nav ul li a{
	display: block;
	margin: 0;
	padding: 16px 0 12px;
	border-bottom:4px solid #4060c0;
	color: #090909;
	font-size: 15px;
	line-height: 1;
	text-decoration: none;
}

nav ul li ul{
	list-style: none;
	position: absolute;
	z-index: 9999;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0;
	width:100%;
	visibility: hidden;
	opacity: 0;
	transition: 0s;
}

nav ul li ul li{
	width: 100%;
	border-left:none;
}

nav ul li ul li:last-child{
	border-right:none;
}

nav ul li ul li a,
#active ul li ul li a{
	padding: 16px 15px;
	color:#fff;
	font-size:13px;
	border-top: 1px solid #fff;
	border-bottom:none;
	background: rgba(60,94,194,0.95);
	text-align: left;
	visibility: hidden;
	opacity: 0;
	transition: .3s;
	line-height: 1.4;
}

nav ul li ul li a:hover,
#active ul li a:hover{
	border-bottom:none;
	background: rgba(44,66,136,0.95);
	color:#fff;
}

nav ul li:hover > a,
#active > a{
	color:#000;
	border-bottom:4px solid #e03f3f;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #fff), color-stop(0.47, #e1dfdf), color-stop(0.00, #fff));
	background: -webkit-linear-gradient(top, #fff 0%, #e1dfdf 47%, #fff 100%);
	background: -moz-linear-gradient(top, #fff 0%, #e1dfdf 47%, #fff 100%);
	background: -o-linear-gradient(top, #fff 0%, #e1dfdf 47%, #fff 100%);
	background: -ms-linear-gradient(top, #fff 0%, #e1dfdf 47%, #fff 100%);
	background: linear-gradient(to bottom, #fff 0%, #e1dfdf 47%, #fff 100%);
}


nav ul li:hover ul,
nav ul li:hover ul li a{
	visibility: visible;
	opacity: 1;
}

/***************
固定メニュー
****************/

.fixed {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
	transition: .7s;
	border-top:4px solid #4060c0;
	background-color:#fff;
}

.fixed h1 {
	float:left;
	padding:0;
	margin:12px 0 8px 35px;
	width:300px;
}

.fixed h1 img{
	width:100%;
}

.fixed nav ul{
	width:600px;
	margin:20px 0 0 0;
	float:right;
}

.fixed nav ul li a{
	border-bottom:none;
}

.fixed #active > a{
	border-bottom:none;
}

.fixed nav ul li ul{
	margin:0;
}

.fixed nav ul li ul li{
	width:40%;
	float:none;
}


/***************
メインコンテンツ
*****************/
#slider{
	position:relative;
	min-height:500px;
	height:420px;
	width:100%;
	margin-top:113px;
}

.photo01{
	background-image: url(../images/top/main_p.jpg);
	background-repeat: no-repeat;
}

.photo01 img,
.photo02 img,
.photo03 img,
.photo04 img{
	position:absolute;
	top:80%;
	left:27%;
}

.photo02{
	background-image: url(../images/top/main_p2.jpg);
	background-repeat: no-repeat;
}

.photo03 {
	background-image: url(../images/top/main_p3.jpg);
	background-repeat: no-repeat;
}

.photo04{
	background-image: url(../images/top/main_p4.jpg);
	background-repeat: no-repeat;
}

.contents{
	width:910px;
	height:auto;
	margin:30px auto;
}

.contents h3{
	width:855px;
	margin:25px auto 0 auto;
}

.contents h3:after{
	background:none;
}

.message{
	width:855px;
	height:auto;
	margin:0 0 0 30px;
	padding:0px 0 20px 0;
	border:1px solid #bababa;
	background-color:#f9f7f7;
	border-radius:5px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px; 
}

.message p{
	font-size:15px;
	line-height:25px;
	width:740px;
	margin:0 auto;
	padding-top:20px;
}
.message p.sub_message{
	padding-top:40px;
	font-size:14px;
	line-height: 22px;
}

.information{
	width:855px;
	height:auto;
	margin:0 0 25px 35px;
	line-height:30px;
}

.information span {
  padding: 0.25em 0.5em;/*上下 左右の余白*/
  color: #252525;/*文字色*/
  background: transparent;/*背景透明に*/
  border-left: solid 5px #4060c0;/*左線*/
  font-weight:bold;
}


.top_contents{
	margin:30px 0 50px 0;
}

.top_contents h3{
	margin:10px auto;
	width:806px;
}

/*************
/* フッター
*************/
footer{
	padding: 0 0 10px;
	border-top: 1.5px solid #cccccc;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1.00, #fff), color-stop(0.00, #f1f1f1));
	background: -webkit-linear-gradient(#f1f1f1, #fff);
	background: -moz-linear-gradient(#f1f1f1, #fff);
	background: -o-linear-gradient(#f1f1f1, #fff);
	background: -ms-linear-gradient(#f1f1f1, #fff);
	background: linear-gradient(#f1f1f1, #fff);
}

footer .inner{
	width:910px;
	margin:0 auto;
}

header .inner{
	width:950px;
	margin:0 auto;
}

footer dl{
	float:left;
	margin:25px 50px 30px 45px;
	width:130px;
}

footer dt{
	padding-left:7px;
	border-left:3px solid #e04040;
	margin-left:-10px;
	font-weight:bold;
	color:090909;
}

footer dt:last-child{
	margin:10px 0 15px 60px;
}

footer dd{
	margin:5px 0;
	font-size:13px;
}

footer dd a{
	color:#4060c0;
}

footer dd a:hover{
	color:#e04040;
	/*text-decoration: underline;*/
}

small{
	width:100%;
	margin:0 auto;
	padding: 5px 0 5px 0;
	text-align: center;
	font-style:normal;
	font-size: 12px;
	display:inline-block;
	background-color:#4060c0;
	color:#fff;
}

/* ----- pagetop_btn ----- */

#pagetop {
	display: none;
	position: fixed;
	bottom: 30px;
	right: 15px;
}
#pagetop a {
	display: block;
	background-color: #666;
	text-align: center;
	color: #fff;
	font-size: 22px;
	font-weight:bold;
	text-decoration: none;
	padding: 10px 15px;
	filter:alpha(opacity=70);
	-moz-opacity: 0.7;
	opacity: 0.7;
	border-radius: 3px;		/* CSS3草案 */
	-webkit-border-radius: 3px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 3px;	
}
#pagetop a:hover {
	font-size: 22px;
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

@media screen and (max-width: 1240px){
.photo01 img,
.photo02 img,
.photo03 img,
.photo04 img{
	position:absolute;
	top:80%;
	left:14%;
	}
}

/******************
common use
*******************/
.fc_red{
	color:#ea2c1a;
}
.fc_blue{
	color:#3A67EE;
}

.fc_yellow{
	color:#ffd700;
}

.fc_yellow2{
	color:#daa520;
}


.fc_green{
	color:#00cc00;
}

.bold{
	font-weight:bold;
}

/*--インデント１--*/
.tx_indent{
	text-indent:-1em;
	margin-left:1em;
}

/*--画像のセンタリング等--*/
.img_center{
	margin-top:30px;
	text-align:center;
}
.img_center + p{
	margin-top:15px;
}

/*--下層h1説明用--*/
.h1_exp{
padding: 0px 0 10px 30px;	
}
