@charset "UTF-8";
/*====================================
	common set
	Date of 2015.01.16
====================================*/
/*--------------------------------------

CSS RESET

--------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;

}

html {
	font-size: 62.5%;
}


ol, ul {
	list-style: none;

}

table {
	border-collapse: collapse;
	border-spacing: 0;

}

caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;

}

q, blockquote {
	quotes: none;

}
q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;

}

a img {
	border: none;

}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;

}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;

}
.mb5{
	margin-bottom: 5px;
}
.mb10{
	margin-bottom: 10px;
}
.mb15{
	margin-bottom: 15px;
}
.mb20{
	margin-bottom: 20px;
}
.mb30{
	margin-bottom: 30px;
}
.mb60{
	margin-bottom: 60px;
}
.mb80{
	margin-bottom: 80px;
}
/*--------------------------------------

container

--------------------------------------*/
body {
	font-family: "Lucida Grande", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, sans-serif;
	-webkit-text-size-adjust: none;
	color:#333333;
	font-size: 1.5rem;
	line-height: 1.8;
}

@media screen and (max-width: 768px){
	body{
		font-size: 1.4rem;
	}
}
/*#container {
	width: 960px;
	margin: 0 auto;
}*/
#contents{
	width:960px;
	margin:0 auto;
}
.centerBox {
	width: 960px;
	margin: 0 auto;
	position: relative;
}
.spOnly{
		display: block;
}
.pcOnly{
	display: none;
}
@media screen and (max-width: 960px){
	#contents{
		width:95%;
		margin: 0 auto;
	}
}
/* スマホだけに適用するCSS */
@media screen and (max-width: 767px){

	.centerBox{
		width:100%;
		margin: 0 auto;
	}

	.spOnly{
		display: none;
	}
	.pcOnly{
		display: block;
	}
}

.clearfix {
	zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */

}
.clearfix:before, .clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;

}
img{
	width: 100%;
}
/*--------------------------------------

header

--------------------------------------*/
#header{
	background:rgba(255,255,255,0.6);
	z-index:2;
	position:relative;
}

#headLogoWrap{
	width:960px;
	height:90px;
	margin:0 auto;
	padding:10px 0;
	position:relative;
	display: flex;
	align-items: center;
	box-sizing: border-box;
}

#headLogo{
	width: 250px;
}

@media screen and (max-width: 767px){
	#headLogoWrap{
		width:100%;
		height:85px;
		position:relative;
		padding: 10px 15px;
	}
}

@media screen and (max-width: 480px){
	#headLogo{
		width: 60%;
	}
}

#toggle{
	display:none;
}
@media screen and (max-width: 767px){
#toggle{
	width:44px;
	height:44px;
	display:block;
	position:absolute;
	top:25px;
	right:20px;
}
#toggle a{
	width:44px;
	height:44px;
	display:block;
	overflow:hidden;
	text-indent:-9999px;
	line-height:0;
	background:url(../images/toggle.png) center center no-repeat;
	background-size:44px 44px;

}
}
#headMenuBg{
	z-index:99;
	position:relative;
}
#headMenu{
	width:960px;
	margin:0 auto 3px;
	display: flex;
	flex-direction: row;
	border-left:1px solid #222;

}
#headMenu li{
	flex: 1;
	font-size:1.4rem;
	line-height:1.5;
	text-align:center;
	border-right:1px solid #222;
	box-sizing:border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#headMenu li a{
	padding:10px 0;
	display:block;
	overflow:hidden;
	color:#222222;
	text-decoration:none;
}
#headMenu li a:hover{
	color:#07265A;
}
#headMenu li a:hover::before,
#headMenu li a:hover::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
#headMenu li a:hover,
#headMenu li a:hover::before,
#headMenu li a:hover::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.pcNone{
	display:none;
}
#headPrimaryMenu{
	width:300px;
	position:absolute;
	top:0;
	right:0;
	background:#07265a;
}
#headPrimaryMenu li{
	width:100px;
	float:left;
	border-right:1px solid #fff;
	box-sizing:border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#headPrimaryMenu li:last-child{
	border-right:none;
}
#headPrimaryMenu li a{
	font-size:1.2rem;
	line-height:1.5;
	color:#fff;
	text-align:center;
	text-decoration:none;
	display:block;
	overflow:hidden;
	padding:3px 0;
}
#headPrimaryMenu li a:hover{
	background:#9E9E9E;
}

#headPrimaryMenu li a:hover::before,
#headPrimaryMenu li a:hover::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
#headPrimaryMenu li a:hover,
#headPrimaryMenu li a:hover::before,
#headPrimaryMenu li a:hover::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
@media screen and (max-width: 767px){
#headMenu{
	width:100%;
	height:auto;
	margin:0 0 10px;
	border:none;
	display: flex;
	flex-direction: column;

}
#headMenu li{
	width:100%;
	border:none;
	border-bottom:1px solid #666;
}
#headMenu li a{
	width:100%;
	text-align:left;
	padding:20px 0 20px;
	display:block;
	overflow:hidden;
	background:#EEEEEE;
}
#headMenu li a:hover{
	color:#fff;
	background:#07265A;
}
#headMenu li a span{
	display:block;
	overflow:hidden;
	padding-left:10px;
}
#headPrimaryMenu{
	display:none;
}
.pcNone{
	display:block;
}
}


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

headImg

--------------------------------------*/
#headImgWrap{
	height:150px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	padding-left: 15px;
	background: url(../images/head_img_bg.gif) repeat;
}
@media screen and (max-width: 767px){
	#headImgWrap{
		height:70px;
	}
}
.headImg{
	width: 960px;
	margin: 0 auto;
}
.headImg h2 {
	font-size: 2.5rem;
	line-height: 1.5;
	color: #fff;
	font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}
@media screen and (max-width: 767px){
	.headImg h2 {
		font-size: 2.0rem;
		margin:0 20px;
	}
}

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

mainWrapper

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

@media screen and (max-width: 767px){
#mainWrapper{
	padding:0 10px;
}
}

#bread{
	margin: 0 0 25px 5px;
}
#bread li{
	font-size: 1.4rem;
	line-height: 1.5;
	float:left;
}
#bread li a {
	color: #444;
	text-decoration: none;
}
#bread li a:hover {
	color:#07265A;
}
#bread li span {
	font-weight: 600;
	color:#07265A;
}
#bread li:first-child:before{
	content: "\f015";
  font-family: FontAwesome;
	display:inline-block;
	margin-right:5px;
}
#bread li:after{
	content:"　>　";
}
#bread li:last-child:after{
	content:"";
}
.cBox01{
	margin-bottom:80px;
}
.cBox02{
	margin-left:30px;
}
.cBox03{
	margin-left:30px;
}
.spBox{
	margin-bottom:25px;
}
.cTitle {
	font-size: 1.6rem;
	line-height: 1.7;
	margin-bottom:20px;
	color:#444;
	border-bottom:1px solid #666;

}
.cTitle span{
	font-size: 2.5rem;
	font-family:"ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
	display:inline-block;
	margin-right:15px;
	font-weight:600;
}
.pageIndex{
	font-size: 1.8rem;
	line-height: 1.7em;
	margin-bottom:16px;
	color:#07265A;
	font-weight:600;
}
.subIndex{
	font-size: 1.8rem;
	font-weight:600;
	color:#444;
	margin-bottom:15px;
	padding-left:30px;
	background:url(../images/subindex_bg.gif) left center no-repeat;
}

@media screen and (max-width: 767px){
.cBox02{
	margin-left:0;
}
.cBox03{
	margin-left:0;
}

.cTitle {
	font-size: 1.4rem;
	margin-bottom:20px;
	color:#444;
	border-bottom:1px solid #666;

}
.cTitle span{
	font-size: 2.2rem;
	font-family:"ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
	display:inline-block;
	margin-right:15px;
	font-weight:600;
}
}


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

footer

--------------------------------------*/
#footer {
	margin: 50px 0 0 0;
	padding:30px 0 10px;
	background:#07265A;
}
#footrBox{
	width:960px;
	margin:0 auto 50px;
}
#footLogoWrap{
	width:300px;
	float:left;
}
#footLogo{
	width:180px;
	height:31px;
	margin:0 0 10px;
}
#footLogo a{
	width:180px;
	height:31px;

}
.footAdd{
	font-size: 1.4rem;
	line-height:1.5;
	color:#fff;
}
#footMenu{
	width:300px;
	float:right;
}
#footMenu ul{
	width:150px;
	float:left;
}
#footMenu li{
	margin-bottom:5px;
}
#footMenu li a{
	font-size: 1.4rem;
	line-height:1.5;
	color:#fff;
	text-decoration:none;
}
#footMenu li a:hover{
	text-decoration:underline;
}
.pagetop {
	display: none;
	position: fixed;
	bottom: 40px;
	right: 30px;
	z-index:100;
}
.pagetop a{
	width:60px;
	height:60px;
	display:block;
	overflow:hidden;
	text-indent:-9999px;
	line-height:0;
	background:url(../images/pagetop.png) 0 0 no-repeat;
	background-size:60px 120px;
}
.pagetop a:hover{
	background-position:0 -60px;
}

@media screen and (max-width: 960px){
	#footer {
		padding:20px 15px;
	}
	#footrBox{
		width:100%;
	}
}

@media screen and (max-width: 767px){

#footrBox{
	width:100%;
	margin:0 auto 50px;
}
#footLogoWrap{
	float:none;
}
.footAdd{
	margin-bottom:15px;
}
#footMenu{
	float:none;
}
#footMenu ul{
	width:150px;
	float:left;
}
#footMenu li{
	margin-bottom:5px;
}
#footMenu li a{
	color:#fff;
	text-decoration:none;
}
#footMenu li a:hover{
	text-decoration:underline;
}

}
.copyright{
	font-size: 1.3rem;
	color:#fff;
	text-align:center;
}
