@charset "utf-8";

/*--------------------------------------------------------------
レイアウト設定
---------------------------------------------------------------*/
/**
 * 目次
 *
 * 01. 全体ラップ
 * 02. ヘッダーステージ
 * 03. ナビステージ　
 * 04. センターステージ（メインステージ）
 * 05. フッターコンタクトステージ
 * 06. フッターステージ
 * 07. ページ上部移動

 *
 *（PC-1100px SP-768px以下）
 *（★の箇所は未使用）
 */

a[href^="tel"]{ color:inherit; text-decoration:none; }

/*****************************************************************
 01. 全体ラップ 　※オープニングに合わせてフェードインさせる
*****************************************************************/
#container {
	position: relative;
	clear:both;
	width: 100%;
	min-width: 1024px;
	margin: 0px auto;
	-moz-animation: fdi 1.5s ease 0s 1;
	-ms-animation: fdi 1.5s ease 0s 1;
	-webkit-animation: fdi 1.5s ease 0s 1;
	animation: fdi 1.5s ease 0s 1;
}

/* ◎全体ラップ=レスポンシブ対応
------------------------------------*/
/***---- ▼SP-896px以下----***/
@media screen and (max-width:896px){



}
/***---- ▲SP-896px以下----***/

/*------------------------------------
◎キーフレーム設定
------------------------------------*/
@-moz-keyframes fdi  {
	0% {
		opacity:0;}
	50% {
		opacity:0;}
	100% {
		opacity:1;} }

@-webkit-keyframes fdi  {
	0% {
		opacity:0;}
	50% {
		opacity:0;}
	100% {
		opacity:1;} }

@keyframes fdi  {
	0% {
		opacity:0;}
	50% {
		opacity:0;}
	100% {
		opacity:1; }}

/*------------------------------------
◎アニメーション解説
animation: fadeIn① 2s② ease③ 0s④ 1⑤ normal⑥;
① animation-name　キーフレームアニメーション名を指定。
② animation-duration　1回のアニメーションにかかる時間を指定。
③ animation-timing-function　アニメーションの変化率を指定。
　　　　　　　　　　　　　　　　他に ease、linear、ease-out、ease-in-out や
　　　　　　　　　　　　　　　　オリジナルの変化率を指定できる。
④ animation-delay　アニメーションの開始をいくら遅らせるかを指定。
⑤ animation-iteration-count　アニメーションを何回繰り返すかを指定。
⑥ animation-direction　繰り返し時、往復処理をするかを指定。
------------------------------------*/	

/***---- ▼SP-896px以下----***/
@media screen and (max-width:896px){

#container {
	min-width: 100%;
}

}
/***---- ▲SP-896px以下----***/


/*****************************************************************
 02. ヘッダーステージ 
*****************************************************************/
/* ●ヘッダーステージ基本
=================================================*/
#header_stage{
	position: absolute;
	width: 100%;
	top: 0px;
	left: 0;
	z-index: 100;
}


/*****************************************************************
 03. ナビステージ　
*****************************************************************/
/* ●ナビステージ基本
=================================================*/
#navigation_stage{
	position: relative;
	width: 100%;
	z-index: 10;
	background-color: #80a8ff;
	margin: 0px auto 0px auto;
}

.navi_icon_SP {
	display: none;
}


/***---- ▼SP-896px以下----***/
@media screen and (max-width:896px){

#navigation_stage{
	display: none;
}

}
/***---- ▲SP-896px以下----***/


/* ●グローバルナビ　※トグル サイドなびは『HK-Drawer.css』
=================================================*/
.GL_Navi_FIELD {
	position: relative;
	width:100%;
	border-bottom: 2px solid #fff;
	box-shadow: -1px 4px 2px -1px rgba(0,0,0,0.3);
	-webkit-box-shadow: -1px 4px 2px -1px rgba(0,0,0,0.3);
	-moz-box-shadow: -1px 4px 2px -1px rgba(0,0,0,0.3);
	margin: 0px auto 0px auto;
}

.GL_navi {
	float:left;
	width:100%;
	list-style-type: none;
	text-align: center;
	margin: 0px auto 0px auto;
}

.GL_navi > li.navi_level1 {
	float:left;
	position: relative;
	width:16.666%;
	height: 100px;
	font-size: 16px;
	line-height:0.8;
	border-left: 1px solid #fff;
	transition: 0.5s ;
	padding-top: 20px;
}
.GL_navi li.navi_level1:first-child {
	border-left: none;
}

.GL_navi li.navi_level1 {
	color: #fff;
	
}
.GL_navi li.navi_level1 a {
	display: block;
	color: #fff;
	height:100px;
	padding: 0px 15px 0px 15px;
	text-decoration: none;
	line-height:0.8;
	transition: 0.5s ;
}

.GL_navi li.navi_level1:hover{
	background: #0000a4;
}
.GL_navi li.navi_level1 a:hover{
	color: #fff;
	text-shadow: 
	0 0 5px #fff, 
	0 0 5px #fff, 
	0 0 0.5px #fff;
}

.GL_navi li.navi_level1 img.GL_icon,
.GL_navi li.navi_level1 a img.GL_icon {
	width:35px;
	margin-bottom: 10px;
}

/*------------------------------------
子ナビ
------------------------------------*/
li.navi_level1 ul.navi_level2{
	position: absolute;
	top: 100px;
	left: 30px;
	width: 100%;
	border-left: 1px solid #0000a4;
	background-color:rgba(255,255,255,0.9);
	filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr=#E6ffffff,EndColorStr=#E6ffffff);
  -webkit-transition: all .2s ease;
	transition: all .2s ease;
	visibility: hidden;
	opacity: 0;
	z-index: 1;
}

li.navi_level1:hover ul.navi_level2 {
	top: 100px;
	left: 50px;
	visibility: visible;
	opacity: 1;
	border-left: 4px solid #0000a4;
}

li.navi_level1 ul.navi_level2 li {
	position: relative;
	height:auto;
}
li.navi_level1 ul.navi_level2 li a {
	color: #20264c;
	text-align: left;
	height:auto;
	border-bottom: 1px solid #0000a4;
	padding: 20px 0px 20px 30px;
}

li.navi_level1 ul.navi_level2 li:hover {
  background: #80a8ff;
}
li.navi_level1 ul.navi_level2 li:hover a {
	color: #fff;
}


/* ◎グローバルナビ=レスポンシブ対応
------------------------------------*/
/***---- ▼SP-1400px以上----***/
@media screen and (min-width:1400px){


}
/***---- ▲SP-1400px以上----***/

/***---- ▼SP-896px以下----***/
@media screen and (max-width:896px){



}
/***---- ▲SP-896px以下----***/

/***---- ▼SP-480px以下----***/
@media screen and (max-width:480px){



}
/***---- ▲SP-480px以下----***/



/*****************************************************************
 04. センターステージ（メインステージ）
*****************************************************************/
#center_stage {
	clear:both;
	padding: 0px 0px 80px 0px;
	margin: 0px auto 0px auto;
}

#center_stage_PAGE {
	clear:both;
	background-image: url(../images/bg_01.jpg);
	background-size: 2000px auto;
	background-position: top center;
	padding: 30px 0px 0px 0px;
	margin: 0px auto 0px auto;
}


/* ◎センターステージ-レスポンシブ対応
------------------------------------*/
/***---- ▼SP-896px以下----***/
@media screen and (max-width:896px){

#center_stage {
	padding: 0px 0px 50px 0px;
}

}
/***---- ▲SP-896px以下----***/


/*****************************************************************
 05. フッターコンタクトステージ
*****************************************************************/
#footer_contact_wrapper {
	position: relative;
	float:left;
	width: 100%;
	background-image: url(../images/bg_01.jpg);
	background-size: 2000px auto;
	background-position: center center;
	border-top:8px solid #fff;
}

#footer_contact_stage {
	position: relative;
	float:left;
	width: 100%;
}

#footer_contact_bg_electric_L {
	position: relative;
	background-image: url(../images/bg_electric_L.png);
	background-repeat: no-repeat;
	background-size: auto 590px;
	background-position: left -80px top -40px;
}

#footer_contact_bg_electric_R {
	position: relative;
	background-image: url(../images/bg_electric_R.png);
	background-repeat: no-repeat;
	background-size: auto 590px;
	background-position: right -80px top 50px;
	padding: 80px 0px 80px 0px;
}

#footer_contact_FIELD{
	position: relative;
	padding: 0px 0px 70px 0px;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-o-border-radius: 15px;
	-ms-border-radius: 15px;
	background-color: #fff;
}

#fcF_icon_AREA{
	position: relative;
	width: 100%;
	text-align:center;
	margin: 0px auto 50px auto;
}
#fcF_icon_AREA a {
	width: 70px;
	display: inline-block;
	vertical-align: top;
	margin: -35px 1% 0px 1%;
}

#fcF_contact_AREA{
	position: relative;
	width: 100%;
	text-align:center;
	margin: 0px auto 0px auto;
}

#fcF_contact_AREA .fcF_title_BOX,
#fcF_contact_AREA .fcF_tel_BOX,
#fcF_contact_AREA .fcF_mail_BOX {
	width: 309px;
	display: inline-block;
	vertical-align: top;
	margin: 0px 10px 0px 10px;
}

.fcF_title_BOX {
	line-height:0;
	border-bottom:1px solid #000;
	padding: 0px 0px 8px 0px;
}

.fcF_mail_BOX {
	width: 309px;
	line-height:0;
	text-align:center;
	border:1px solid #000;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	padding: 5px 5px 6px 5px;
	margin: 0px auto 0px auto;
}

/***---- ▼SP-1080px以下----***/
@media screen and (max-width:1080px){

#footer_contact_FIELD{
	padding: 0px 0px 40px 0px;
}

#fcF_icon_AREA{
	margin: 0px auto 30px auto;
}

#fcF_contact_AREA .fcF_title_BOX,
#fcF_contact_AREA .fcF_tel_BOX,
#fcF_contact_AREA .fcF_mail_BOX {
	width: 30%;
	margin: 0px 1% 0px 1%;
}

.fcF_title_BOX img,
.fcF_tel_BOX img,
.fcF_mail_BOX img{
	width: 90%;
}

}
/***---- ▲SP-1080px以下----***/

/***---- ▼SP-640px以下----***/
@media screen and (max-width:640px){

#footer_contact_FIELD{
	padding: 0px 0px 20px 0px;
}

#fcF_contact_AREA .fcF_title_BOX,
#fcF_contact_AREA .fcF_tel_BOX,
#fcF_contact_AREA .fcF_mail_BOX {
	width: 80%;
	margin: 0px 0% 20px 0%;
}

}
/***---- ▲SP-640px以下----***/



/*****************************************************************
 06. フッターステージ
*****************************************************************/
/* ●フッターステージ基本
=================================================*/
#footer_stage {
	clear:both;
	position: relative;
	width: 100%;
	color: #fff;
	background:#80a8ff;
	background-image: url(../images/footer_bg.png);
	background-repeat: no-repeat;
	background-size: auto 330px;
	background-position: right -20px top 0px;
	margin: 0px auto 0px auto;
	padding: 80px 0px 0px 0px;
}

#footer_inner {
	position: relative;
	width: 100%;
	margin: 0px auto 0px auto;
	padding: 0px 0px 20px 0px;
}

/* ◎フッターステージ基本=レスポンシブ対応
---------------------------------------------------*/
/***---- ▼SP-896px以下----***/
@media screen and (max-width:896px){

#footer_stage {
	background-size:auto 100%;
}

#footer_stage_BG  {
	padding: 30px 0px 100px 0px;
}

}
/***---- ▲SP-896px以下----***/


/* ●ロゴ
=================================================*/
#footer_logo_BOX {
	float: left;
	width: 100%;
}

/***---- ▼SP-480px以下----***/
@media screen and (max-width:480px){

#footer_logo_BOX img {
	width: 60%;
}

}
/***---- ▲SP-480px以下----***/

/***---- ▼SP-360px以下----***/
@media screen and (max-width:360px){

#footer_logo_BOX img {
	width: 60%;
}

}
/***---- ▲SP-360px以下----***/

/* ●住所
=================================================*/
#footer_adr_BOX {
	float: left;
	width: 100%;
	font-size:13px;
	line-height:1.4;
	margin: 10px 0px 0px 0px;
}

/***---- ▼SP-480px以下----***/
@media screen and (max-width:480px){

#footer_adr_BOX {
	font-size:12px;
}

}
/***---- ▲SP-480px以下----***/


/* ●　フッターナビゲーション
=================================================*/
#footer_navi_BOX {
	clear:both;
	width: 75%;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	margin: 20px 0px 0px 0px;
	padding: 15px 0px 15px 0px;
}

#footer_navi_BOX li {
	float:left;
	line-height:1.6;
	transition: 0.5s ;
}

#footer_navi_BOX li a {
	color: #fff;
	font-size: 15px;
	text-decoration: none;
	padding: 0px 20px 0px 0px;
	transition: 0.5s ;
}

#footer_navi_BOX li a:hover {
	text-decoration: underline;
}

/***---- ▼SP-896px以下----***/
@media screen and (max-width:896px){

#footer_navi_BOX {
	width: 100%;
}

#footer_navi_BOX li {
	line-height:1.3;
}

#footer_navi_BOX li a {
	font-size: 13px;
}

}
/***---- ▲SP-896px以下----***/

/* ●　コピーライト・環境
=================================================*/
#footer_etc_BOX {
	width: 100%;
	background:#1c2088;
	padding: 15px 0px 25px 0px;
	margin: 60px 0px 0px 0px;
}

p.copyright {
	clear:both;
	font-size: 13px;
	line-height: 1.2;
	margin: 4px 0px 0px 0px;
}

p.operating {
	clear:both;
	font-size: 13px;
	line-height: 1.5;
	color: #fff;
	margin: 5px 0px 0px 0px;
}

/***---- ▼SP-896px以下----***/
@media screen and (max-width:896px){

p.copyright {
	font-size: 11px;
}

p.operating {
	font-size: 10px;
}

}
/***---- ▲SP-896px以下----***/



/*****************************************************************
 07. ページ上部移動
*****************************************************************/
#page-top {
	position:fixed;
	bottom:30px;
	right:30px;
	z-index: 999999;
	text-align:center;
	filter:alpha(opacity=80);
	-moz-opacity: 0.8;
	opacity: 0.8;
}

#page-top:hover {
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

#page-top a {
	float:left;
}

img.page-top-SP {
	display:none;
}

/***---- ▼SP-896px以下----***/
@media screen and (max-width:896px){

#page-top {
	bottom:20px;
	right:10px;
}

img.page-top-PC {
	display:none;
}
img.page-top-SP {
	display:block;
}

}
/***---- ▲SP-896px以下----***/

/***---- ▼SP-640px以下----***/
@media screen and (max-width:640px){

#page-top {
	bottom:20px;
}

}
/***---- ▲SP-640px以下----***/



