@charset "utf-8";  
/*------------------------------------------------------------ 
	デフォルトスタイル	全ページ共通css
------------------------------------------------------------*/  

/**** フォントサイズ　*************

基本を12pxに、サイズは％指定。

====偶数====　　　====奇数====
■10px = 84%      ■11px = 92%
■12px = 100%     ■13px = 109%
■14px = 117%     ■15px = 125%
■16px = 134%     ■17px = 142%
■18px = 150%     ■19px = 159%
■20px = 167%     ■21px = 175%
■22px = 184%     ■23px = 192%
■24px = 200%     ■25px = 209%
■26px = 217%     ■27px = 226%

**********************************/

html,
body { margin: 0; padding: 0;}
body {
	font-size: 76%;
	background: #fff;
	-webkit-text-size-adjust: 100%;
}

html { font-size: 100%;}

div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, 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 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	font-size: 100%;
	line-height: 1.2;
	font-weight: normal;
	vertical-align: baseline;
	background: transparent;
}  

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

blockquote,
q { quotes: none;}

a {
	text-decoration: none;
	outline: none;
}

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del { text-decoration: line-through;}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

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

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}

input,
select,
textarea {
	font-size: 100%;
	vertical-align: middle;
	font-family: 游ゴシック体, 'Yu Gothic', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

input[type=text],
input[type=tel],
input[type=password],
textarea{ -webkit-appearance:none;}

input[type=checkbox],
input[type=radio]{
	position:relative;
	top:-1px;
}

ul { list-style-type: none;}
img { vertical-align: middle;}

.img-responsive{
	width:100%;
	height:auto;
}

.opacity {
	-webkit-transition:all 0.2s ease-out;
	-moz-transition:all 0.2s ease-out;
	-o-transition:all 0.2s ease-out;
	transition:all 0.2s ease-out;
}

.opacity:hover {
	opacity: .7;
	filter: alpha(opacity=70);        /* ie lt 8 */
	-ms-filter: "alpha(opacity=70)";  /* ie 8 */
	-moz-opacity: .7;                 /* FF lt 1.5, Netscape */
	-khtml-opacity: .7;
}

.clear { clear: both;}
.clearfix { width: 100%;}
.clearfix:after {
	content: " ";
	display: block;
	clear: both;
	visibility:hidden;
	height:0.1px;
	font-size:0.1em;
	line-height:0;
}

.fl { float: left;}
.fr { float: right;}

.txtl { text-align: left;}
.txtr { text-align: right;}
.txtc { text-align: center;}

strong,
strong *,
.fwb { font-weight: bold;}

.clrr { color: #FF0000;}
.clrb { color: #333;}
.clrw { color: #fff;}

.il { display: inline;}
.bl { display: block;}
.no { display: none;}

.li2 { line-height: 2;}

/* margin */
.mt10 { margin-top: 10px;}
.mt20 { margin-top: 20px;}
.mt30 { margin-top: 30px;}

.mr10 { margin-right: 10px;}
.mr20 { margin-right: 20px;}
.mr30 { margin-right: 30px;}

.mb10 { margin-bottom: 10px;}
.mb20 { margin-bottom: 20px;}
.mb30 { margin-bottom: 30px;}

.ml10 { margin-left: 10px;}
.ml20 { margin-left: 20px;}
.ml30 { margin-left: 30px;}

/* padding */
.pt10 { padding-top: 10px;}
.pt20 { padding-top: 20px;}
.pt30 { padding-top: 30px;}

.pr10 { padding-right: 10px;}
.pr20 { padding-right: 20px;}
.pr30 { padding-right: 30px;}

.pb10 { padding-bottom: 10px;}
.pb20 { padding-bottom: 20px;}
.pb30 { padding-bottom: 30px;}

.pl10 { padding-left: 10px;}
.pl20 { padding-left: 20px;}
.pl30 { padding-left: 30px;}

/* font-size */
.font10 { font-size: 84%;}
.font11 { font-size: 92%;}
.font12 { font-size: 100%;}
.font13 { font-size: 109%;}
.font14 { font-size: 117%;}
.font15 { font-size: 125%;}
.font16 { font-size: 134%;}
.font17 { font-size: 142%;}
.font18 { font-size: 150%;}
.font19 { font-size: 159%;}
.font20 { font-size: 167%;}
.font21 { font-size: 175%;}
.font22 { font-size: 184%;}
.font23 { font-size: 192%;}
.font24 { font-size: 200%;}
.font25 { font-size: 209%;}
.font26 { font-size: 217%;}
.font27 { font-size: 226%;}



/*------------------------------------------------------------ 
    スタイル 
------------------------------------------------------------*/

.inner {
	width:auto;
	max-width: 1400px;
	margin: 0 auto;
	padding-right:10px;
	padding-left:10px;
	overflow: hidden;
}

.sp{ display:none;}

/*------------------------------------------------------------ 
    ヘッダー 
------------------------------------------------------------*/

#header{
	width:100%;
	position:fixed;
	left:0;
	top:0;
	z-index:100;
	-webkit-transition:all 0.2s ease-out;
	-moz-transition:all 0.2s ease-out;
	-o-transition:all 0.2s ease-out;
	transition:all 0.2s ease-out;
}

#header.fixed{ background:rgba(255,255,255,.8);}

#hdLogo{
	width:100%;
	max-width:304px;
	padding-top:5px;
	float:left;
}

#gNavi{ float:right;}

#gNavi li{
	width:200px;
	height:70px;
	float:left;
	margin-left:1px;
}

#gNavi a{
	display:block;
	width:100%;
	height:100%;
	text-align:center;
	line-height:70px;
	color:#fff;
	font-size:159%;
	background:rgba(120,120,120,0.5);
	-webkit-transition:all 0.2s ease-out;
	-moz-transition:all 0.2s ease-out;
	-o-transition:all 0.2s ease-out;
	transition:all 0.2s ease-out;
}

#gNavi a:hover,
#gNavi .selected{ background:rgba(47,89,159,0.5);}

/* sp */

#navBtn{
	display:none;
	width:30px;
	height:30px;
	position:absolute;
	right:20px;
	top:10px;
	z-index:100;
}

#navBtn a{
	display:block;
	width:30px;
	height:30px;
	position:relative;
}

.top-bar,
.middle-bar,
.bottom-bar{
	width: 30px;
	height: 4px;
	background-color:#000;
	-webkit-transition: -webkit-transform .1s 0s ease-in-out,top .1s .1s ease-in-out;
	-moz-transition: -moz-transform .1s 0s ease-in-out,top .1s .1s ease-in-out;
	-ms-transition: -ms-transform .1s 0s ease-in-out,top .1s .1s ease-in-out;
	-o-transition: -o-transform .1s 0s ease-in-out,top .1s .1s ease-in-out;
	transition: transform .1s 0s ease-in-out,top .1s .1s ease-in-out;
	-webkit-transform-origin: 50% 50%;
	-moz-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	position: absolute;
	top: 10px;
	left:10px;
}

.middle-bar{
	webkit-transition: opacity 0s .15s linear;
	-moz-transition: opacity 0s .15s linear;
	-ms-transition: opacity 0s .15s linear;
	-o-transition: opacity 0s .15s linear;
	transition: opacity 0s .15s linear;
	top: 17px;
}

.bottom-bar{ top: 24px;}

.open .top-bar{
	background-color:#fff;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 17px;
}

.open .middle-bar{ opacity: 0;}

.open .bottom-bar{
	background-color:#fff;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 17px;
}

/*------------------------------------------------------------ 
    コンテンツ 
------------------------------------------------------------*/ 

#detailHd{
	width:100%;
	height:450px;
	text-align:center;
	padding-top:220px;
	color:#fff;
	letter-spacing:1px;
	background-repeat:no-repeat;
	background-position:50% 50%;
	background-size:cover;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

#detailHd h2{
	font-size:40px;
	line-height:1;
	font-weight:bold;
}

#detailHd p{
	font-size:150%;
	margin-top:10px;
	font-weight:bold;
}

/*------------------------------------------------------------ 
    フッター 
------------------------------------------------------------*/  

#footer {
	width:100%;
	padding-top:10px;
	background:#2F599F;
}

#ftLogo{
	width:100%;
	max-width:440px;
	float:left;
}

#ftNavi{
	float:right;
	padding:35px 0;
}

#ftNavi li{
	float:left;
	margin-left:40px;
}

#ftNavi a{
	color:#fff;
	font-size:134%;
	line-height:2;
}

#copyright{
	clear:both;
	text-align:right;
	color:#fff;
	font-size:109%;
	position:relative;
	top:-20px;
}

/*------------------------------------------------------------ 
    MediaQuery 
------------------------------------------------------------*/  

/* PC */
@media screen and (max-width: 960px){

#gNavi li{
	width:140px;
}

}

@media screen and (min-width: 789px){

#gNavi{ display:block!important;}	

}

/* TABLET */
@media screen and (max-width: 788px){

#hdLogo{
	float:none;
	margin:0 auto;
}

#navBtn{ display:block;}

#gNavi{
	display:none;
	float:none;
	background:rgba(18,8,69,.9);
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	padding-top:50px;
	z-index:20;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

#gNavi ul{ border-top:1px solid #fff;}
#gNavi li{
	width:100%;
	height:50px;
	float:none;
	margin-left:0;
	border-bottom:1px solid #fff;
}

#gNavi a{
	text-align:left;
	line-height:50px;
	font-size:134%;
	background:none;
	text-indent:15px;
}

/* contents */

#detailHd{
	height:350px;
	padding-top:160px;
}

#detailHd h2{ font-size:32px;}

#detailHd p{ font-size:134%;}


/* footer */

#ftLogo{ max-width:220px;}

#ftNavi{ width:300px;}

#ftNavi li{
	float:left;
	margin-left:20px;
}

#ftNavi a{ font-size:117%;}

}


/* SP */
@media screen and (max-width: 560px){

.pc{ display:none;}
.sp{ display:block;}

#hdLogo{
	max-width:152px;
	padding:10px 0;
}

#navBtn{ top:5px;}


/* contents */

#detailHd{
	height:225px;
	padding-top:100px;
}

#detailHd h2{ font-size:227%;}

#detailHd p{ font-size:117%;}


/* footer */

#ftLogo{
	float:none;
	margin:0 auto;
}

#ftNavi{
	width:100%;
	text-align:center;
}

#ftNavi li{
	display:inline-block;
	float:none;
	margin:0 10px;
}

#ftNavi a{
	font-size:109%;
}


#copyright{
	text-align:center;
	font-size:92%;
	top:0;
	padding-bottom:10px;
}

}

