/*!
 * style.css
 */

/* # =================================================================
   # 
   # ================================================================= */


body {
  line-height: 1.5;
  font-weight: 200;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

body {
    animation: fadeIn 1.6s ease 0s 1 normal;
    -webkit-animation: fadeIn 1.6s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

body, html {
	position: relative;
	color: #333;
	font: 14px/1.8 'メイリオ', "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
	padding: 0 0 0 0;
	background-color: #f9f8f4;
}

a {
  color: #0a1e61;
  text-decoration: none;
}

a:active, 
a:hover {
  color: #0a1e61;
  text-decoration: none;
}

iframe, img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s
}

img {
    pointer-events: none;
}

.clearfix:after, .inner:after {
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden
}

.text-center {
  text-align: center
}




/* # =================================================================
   # space
   # ================================================================= */

.space6 {
	padding: 0 0 0 6px;
}

.space8 {
	padding: 0 0 0 8px;
}

.space12 {
	padding: 0 0 0 12px;
}

.space14 {
	padding: 0 0 0 14px;
}

.space16 {
	padding: 0 0 0 16px;
}

.space6r {
	padding: 0 8px 0 0;
	font-size: 0.8em;
}

.space8r {
	padding: 0 8px 0 0;
}

.space12r {
	display: inline-block;
	padding: 0 12px 0 0;
	font-size: 1em;
}

.space14r {
	padding: 0 14px 0 0;
}

.space16r {
	padding: 0 16px 0 0;
}

/* # =================================================================
   # splash
   # ================================================================= */

#splash {
    /*fixedで全面に固定*/
	position: fixed;
	z-index: 99999;
	width: 100%;
	height: 100%;
	text-align:center;
	color:#fff;
}

/* # =================================================================
   # splash
   # ================================================================= */

#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 999;
	/*background-color: #e5e5e5;*/
	background-color: #f8f8f8;
	text-align:center;
	/*color: #000;*/
	z-index: 10000;
}

#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#splash_logo svg {
	width: 640px;
	/*
	width: 90%;
	max-width: 600px;
	height: auto;
	*/
}

/*---------------------------------------------------------------------- */
/* Under 1024px Styles
------------------------------------------------------------------------ */

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

	#splash_logo svg {
		width: 640px;
	}

}

/*---------------------------------------------------------------------- */
/* Under 768px Styles
------------------------------------------------------------------------ */

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

	#splash_logo svg {
		width: 500px;
	}

}

/*---------------------------------------------------------------------- */
/* Under 667px Styles
------------------------------------------------------------------------ */

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

	#splash_logo svg {
		width: 400px;
	}

}

/*---------------------------------------------------------------------- */
/* Under 424px Styles
------------------------------------------------------------------------ */

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

	#splash_logo svg {
		width: 300px;
	}

}

#mask path {
		fill-opacity: 0;
		transition: fill-opacity 1s;
		fill: none;
		stroke: #1b6089;
		stroke-miterlimit: 5;
	}

#mask.done path {
	  fill: #1b6089;
	  fill-opacity: 1;
	  stroke: none;
	}

/*
#mask .st0 {
        fill: #0f345b;
      }
*/

#container {
	position: relative;
	padding: 0 0 100px 0;
	margin: 0 0 0 0;
	width: 100%;
	height: auto;
	overflow-x: hidden;
}

#sub_container {
	position: relative;
	padding: 0 0 100px 0;
	margin: 0 0 0 0;
	width: 100%;
	height: auto;
	overflow-x: hidden;
}

/* # =================================================================
   # header
   # ================================================================= */

#header {
	display: block;
	position:fixed;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	width: 100%;
	height: 165px;
	z-index: 10;
	top: 0;
	left: 0;
	background-color: rgba(249,248,244,0.5);
	z-index: 9999;
}

.header_inner {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 0 auto 0 auto;
	width: 95%;
	max-width: 1500px;
	height: 220px;
}


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

	#header {
		height: 165px;
	}

}



#header.UpMove {
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-100px);
  }
}

/* */

#header.DownMove {
	animation: DownAnime 1.0s forwards;
}
@keyframes DownAnime {
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}














.head_description {
	display: block;
	position: absolute;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	top: 32px;
	left: 0;
	color: #3a3a69;
	font-size: 1.2em;
	line-height: 1em;
	font-weight: 400;
	font-family: "BIZ UDPGothic", serif;
    z-index: 200;
    letter-spacing: 0.5px;
}

.head_logo {
	display: block;
	position: absolute;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	top: 64px;
	left: 0;
	width: 330px;
	height: 78px;
    z-index: 9999;
}

.head_logo a {
	display: block;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	width: 330px;
	height: 78px;
}

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

	.head_description {
		display: block;
		position: absolute;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		top: 38px;
		left: 4px;
		color: #3a3a69;
		font-size: 1em;
		line-height: 1em;
		font-weight: 400;
		font-family: "BIZ UDPGothic", serif;
	    z-index: 200;
	    letter-spacing: 0.5px;
	}

	.head_logo {
		display: block;
		position: absolute;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		top: 70px;
		left: 0;
		width: 240px;
		height: auto;
	    z-index: 9999;
	}
	
	.head_logo a {
		display: block;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		width: 240px;
		height: auto;
	}

}


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



}




/* # =================================================================
   # gnav 2025 For 
   # ================================================================= */
   
   
.g-nav {
	display: block;
	position: absolute;
	margin: 0 0 0 0;
    padding: 0 0 0 0;
    top: 86px;
    right: 100px;
    height: auto;
    min-height: 44px;
    z-index: 100;
}

.g-nav ul {
	display: block;
	position: relative;
	margin: 0 auto 0 auto;
    padding: 0 0 0 0;
	list-style: none;
	text-align: center;
}

.g-nav ul li {
	position: relative;
	display: inline-block; 
	padding: 0 3px 0 3px;
	margin: 0 12px 0 12px;
	width: auto;
	text-align: center;
	font-family: "BIZ UDPGothic", serif;
	font-weight: 700;
	font-style: normal;
}

.g-nav ul li a {
	display: block;
	color: #3a3a69;
	text-decoration: none;
    font-size: 1.4em;
    line-height: 1.1em;
}

.g-nav ul li a:hover,
.g-nav ul li a.current {
	display: block;
	padding: 0 0 4px 0;
	color: #3a3a69;
	border-bottom: 2px solid #3a3a69;
}


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

	.g-nav {
		display: none;
	}

}






/* お問い合わせBt */

.inq {
	display: block;
	position: absolute;
	margin: 0 0 0 0;
    padding: 0 0 0 0;
    top: 68px;
    right: 0;
    width: 60px;
    height: 60px;
    line-height: 62px;
    font-size: 2.2em;
    color: #fff;
    background-color: #3a3a69;
    border-radius: 30px;
    text-align: center;
    z-index: 100;
}

.inq a {
	display: block;
	margin: 0 0 0 0;
    padding: 0 0 0 0;
    width: 60px;
    height: 60px;
    line-height: 62px;
    color: #fff;
    background-color: #3a3a69;
    border-radius: 30px; 
}

.inq a:hover {
	display: block;
    width: 60px;
    height: 60px;
    color: #fff;
    background-color: #a39395;
    border-radius: 30px;
}

.inq_line {
	display: block;
	position: absolute;
	margin: 0 0 0 0;
    top: 135px;
    right: 28px;
	width: 2px;
	height: 24px;
	background-color: #3a3a69;
}

.inq_info {
	display: block;
	position: absolute;
	margin: 0 0 0 0;
    padding: 0 0 0 0;
    top: 200px;
    right: -15px;
    color: #3a3a69;
    transform: rotate(-90deg);
    font-size: 1.1em;
    line-height: 1em;
	font-weight: 700;
	font-family: "BIZ UDPGothic", serif;
}




/* お問い合わせBt〈共通〉 */

.inq_Bt {
	display: block;
	position: relative;
	margin: 80px auto 80px auto;
    padding: 0 0 0 0;
    width: 400px;
    height: 80px;
    line-height: 80px;
    border-radius: 40px;
    font-size: 1.9em;
	font-weight: 400;
	font-family: "BIZ UDPGothic", serif;
    color: #fff;
    background-color: #3a3a69;
    text-align: center;
}

.inq_Bt a {
	clear: both;
	display: block;
	position: relative;
	margin: 0 0 0 0;
    padding: 0 0 0 0;
    width: 400px;
    line-height: 80px;
    border-radius: 40px;
    color: #fff;
    background-color: #3a3a69;
    text-align: center;
    overflow: hidden;
}

.inq_Bt a:hover {
	clear: both;
	display: block;
	position: relative;
	margin: 0 0 0 0;
    padding: 0 0 0 0;
    width: 400px;
    line-height: 80px;
    border-radius: 40px;
    color: #fff;
    background-color: #a39395;
    text-align: center;
    overflow: hidden;
}


@media only screen and (max-width: 820px) {
	
	.inq_Bt {
		display: block;
		position: relative;
		margin: 80px auto 80px auto;
	    padding: 0 0 0 0;
	    width: 300px;
	    height: 70px;
	    line-height: 70px;
	    border-radius: 35px;
	    font-size: 1.6em;
		font-weight: 400;
		font-family: "BIZ UDPGothic", serif;
	    color: #fff;
	    background-color: #3a3a69;
	    text-align: center;
	}
	
	.inq_Bt a {
		clear: both;
		display: block;
		position: relative;
		margin: 0 0 0 0;
	    padding: 0 0 0 0;
	    width: 300px;
	    height: 70px;
	    line-height: 70px;
	    border-radius: 35px;
	    color: #fff;
	    background-color: #3a3a69;
	    text-align: center;
	    overflow: hidden;
	}
	
	.inq_Bt a:hover {
		clear: both;
		display: block;
		position: relative;
		margin: 0 0 0 0;
	    padding: 0 0 0 0;
	    width: 300px;
	    height: 70px;
	    line-height: 70px;
	    border-radius: 35px;
	    color: #fff;
	    background-color: #a39395;
	    text-align: center;
	    overflow: hidden;
	}	
	
}
	
	


/* # =================================================================
   # footer
   # ================================================================= */ 


#footer {
	display: block;
	position: relative;
	padding: 60px 0 10px 0;
	margin: 0 0 0 0;
	width: 100%;
	height: auto;
	background-color: #3a3a69;
	overflow: hidden;
}

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

	#footer {
		display: block;
		position: relative;
		padding: 60px 0 0 0;
		margin: 0 0 0 0;
		width: 100%;
		height: auto;
		border-left: none;
	}

}

.footer_inner {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 0 auto 0 auto;
	width: 95%;
	max-width: 1500px;
	height: auto;
}

/* footer-title */

.footer-title {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	width: 100%;
	height: 60px;
}

.footer-title-inner {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 0 auto 0 auto;
	max-width: 1800px;
	height: auto;
	min-height: 135px;
}

.footer-logo_w {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	width: 420px;
	height: auto;
	overflow: hidden;
}

.footer-logo {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	float: left;
	width: 266px;
	height: 48px;
}

.footer-logo a {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	width: 266px;
	height: 48px;
}


.footer-add {
	display: inline-block;
	position: relative;
	padding: 0 0 0 0;
	margin: 4px 0 0 22px;
	font-size: 1.16em;
	line-height: 1.4em;
	font-weight: 400;
	font-family: "BIZ UDPGothic", serif;
	color: #fff;
	float: left;
}

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

	.footer-title {
		display: block;
		position: relative;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		width: 100%;
		height: auto;
	}
	
	.footer-title-inner {
		display: block;
		position: relative;
		padding: 0 0 0 0;
		margin: 0 auto 0 auto;
		width: 90%;
		max-width: 1200px;
		height: auto;
		min-height: 80px;
	}

	.footer-logo {
		display: block;
		position: relative;
		padding: 0 0 0 0;
		margin: 10px 0 0 0;
		float: none;
		width: 266px;
		height: 48px;
	}
	
	.footer-logo img {
		display: block;
		position: relative;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		float: none;
		width: 266px;
		height: 48px;
	}
	
	.footer-add {
		display: block;
		position: relative;
		padding: 8px 0 0 0;
		margin: 0 0 0 0;
		float: none;
		text-align: left;
		font-size: 1.3em;
		line-height: 1.5em;
		font-weight: 400;
		font-family: "BIZ UDPGothic", serif;
		overflow: hidden;
	}

}

/* footer-copy */

.footer-copy {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	width: 100%;
	height: 90px;
}

.footer-copy-inner {
	display: block;
	position: relative;
	padding: 18px 0 0 0;
	margin: 0 auto 0 auto;
	max-width: 1800px;
	height: auto;
	min-height: 80px;
}

.footer-copy-inner p {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	text-align: left;
	color: #fff;
	font-size: 1.1em;
	line-height: 1.1em;
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: 0.5px;
}

.footer-copy-inner p br {
	display: none;
}

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

	.footer-copy {
		display: block;
		position: relative;
		padding: 0 0 40px 0;
		margin: 0 0 0 0;
		width: 100%;
		height: auto;
	}

	.footer-copy-inner p {
		display: block;
		position: relative;
		padding: 36px 0 48px 0;
		margin: 0 auto 0 auto;
		width: 90%;
		text-align: left;
		color: #fff;
		font-size: 1.5em;
		line-height: 1.6em;
		font-weight: 400;
		font-family: 'Open Sans', sans-serif;
		letter-spacing: 0.5px;
	}

	.footer-copy-inner p br {
		display: block;
	}

}


/*===========================================================*/
/* MENU
/*===========================================================*/

.openbtn {
	position:fixed;
	z-index: 9999; 
	top: 0;
	right: 0;
	cursor: pointer;
	width: 100px;
	height: 100px;
	color: #fff;
	background-color: #1b6089;
}

.openbtn.active {
	background-color: #1b6089;
	cursor: pointer;
}

	

@media only screen and (max-width: 1480px) {
	
	.openbtn {
		position:fixed;
		z-index: 9999; 
		top: 0;
		right: 0;
		cursor: pointer;
		width: 100px;
		height: 100px;
		color: #fff;
		background-color: #1b6089;
	}	
	
}
	

/*==================================================

===================================*/

/*
.openbtn{
	position: relative;
	background:#DBB82E;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
}
*/

/*ボタン内側*/

.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 25px;
    height: 3px;
	background-color: #fff;
  }


.openbtn span:nth-of-type(1) {
	top: 36px;	
  	width: 50%;
}

.openbtn span:nth-of-type(2) {
	top: 50px;
  	width: 30%;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
    top: 40px;
    left: 29px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
}

.openbtn.active span:nth-of-type(2) {
    top: 52px;
    left:29px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
}

.openbtn p {
	display: block;
	position: absolute;
	top: 70px;
	left: 0;
	width: 100px;
	text-align: center;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	font-size: 0.9em;
	line-height: 1.1em;
	font-weight: 600;
	font-family: "BIZ UDPGothic", sans-serif;
	letter-spacing: 0.5px;
}


/*===========================================================*/
/*
/*===========================================================*/


#g-nav {
	position:fixed;
	top: -150%;
	left: 0;
	width: 100%;
	height: 100vh; 
	background-color:rgba(255,255,255,1);
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	transition: all 0.6s;
	z-index: 5000;
}

#g-nav.panelactive {
    top: 0;
}


#g-nav #g-nav-content {
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 7px solid #1b6089;
}

.g-nav-content_inner {
	display: block;
	position: relative;
	padding: 0 0 0 0;
	margin: 0 auto 0 auto;
	width: 95%;
	max-width: 1600px;
	height: 130px;
	z-index: 50;
}


#gnavSp_area {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	border-top: 1px solid #cbcbcb;
}

@media only screen and (max-width: 1200px) {
	
	#gnavSp_area {
		border-top: none;
	}	
	
}



#gnavLeft {
	display: block;
	width: 50%;
	padding: 0 100px 62px 62px;
	margin: 24px 0 0 0;
	float: left;
}

#gnavLeft ul {
	display: block;
	width: 100%;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	list-style: none;
}

#gnavLeft ul li {
	font-size: 1.8em;
	line-height: 2em;
}



@media only screen and (max-width: 1200px) {
	
	#gnavLeft {
		display: none;
	}	
	
}




#gnavSp {
	display: block;
	width: 50%;
	padding: 0 100px 62px 62px;
	margin: 24px 0 0 50%;
	
}

@media only screen and (max-width: 1200px) {
	
	#gnavSp {
		display: block;
		width: 100%;
		padding: 0 0 62px 0;
		margin: 0 auto 0 auto;
	}
	
}	

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

	#g-nav {
		position:fixed;
		top: -150%;
		left: 0;
		width: 100%;
		height: 100vh; 
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		transition: all 0.6s;
		background-image: none;
		z-index: 200;
	}

}
*/


#gnavSp li {
	list-style: none;
}
      
#gnavSp .first {
	display: block;
	width: 100%;
	margin: 0 0 0 0;
	border-top: 1px solid #cbcbcb;
	border-bottom: 1px solid #cbcbcb;
	border-bottom: none;
}

@media only screen and (max-width: 1480px) {
	  
	#gnavSp .first {
		display: block;
		width: 100%;
		margin: 0 0 0 0;
		border-top: 1px solid #cbcbcb;
		border-bottom: 1px solid #cbcbcb;
		border-bottom: none;
	}	  
	  
}  
	
	
/*
@media screen and (max-width: 560px) {
	
	#gnavSp .first {
		display: block;
		width: 100%;
		margin: 0 0 0 0;
		border-top: 1px solid #cbcbcb;
		border-bottom: 1px solid #cbcbcb;
		border-bottom: none;
	}	  

}
*/

  
#gnavSp .first > li > a {
	display: block;
	background-color: #f4f4f4;
	padding: 0 0 0 24px;
	font-size: 1.3em;
	color: #1b6089;
	font-weight: 400;
	font-family: "BIZ UDPGothic", sans-serif;
	border-bottom: 1px solid #cbcbcb;
	text-decoration: none;
	width: 100%;
	height: 62px;
	line-height: 62px;
}

/*
#gnavSp .first > li.inqnav > a {
	display: block;
	background-color: #f7b550;
	padding: 0.8em 0.7em;
	font-size: 1.3em;
	color: #fff;
	border-bottom: 1px solid #fff;
	width: 100%;
}      
*/       
        
#gnavSp .first > li > a strong,
#gnavSp .first > li > a em {
          display: block; }
          
#gnavSp .first > li > a:hover {
          text-decoration: none; }
          
#gnavSp .first > li > a em {
          font-size: 8px;
          line-height: 1.2; }
          
          
#gnavSp .first > li.a > a {
        color: #1b6089;
        background-color: #dedede;
        border-bottom: 1px solid #fff;
}
        
        
        
        
        
        
#gnavSp .first > li.b > a {
	color: #fff;
	background-color: #928577;
	border-bottom: 1px solid #fff;
	font-style: normal; 
}
        
#gnavSp .first > li.c > a {
	color: #fff;
	background-color: #1b6089;
	border-bottom: 1px solid #cbcbcb;
}  
        
#gnavSp .first > li.d > a {
	color: #fff;
	background-color:  #397ba2;
	border-bottom: 1px solid #cbcbcb;
}  
        
#gnavSp .first > li.e > a {
	color: #fff;
	background-color: #2b3853;
	border-bottom: 1px solid #cbcbcb;
}   
        
  
        

#gnavSp .first > li.drop > a {
        background-position: right 22px center;
        background-repeat: no-repeat;
        background-image: url(../images/icon-bg-plus_02.png); }
        
#gnavSp .first > li.drop > a.active {
          background-image: url(../images/icon-bg-mainas_02.png); }
          
#gnavSp .first > li.drop li {
        border-top: 1px solid #cbcbcb; }
        
#gnavSp .first > li.drop li br {
		display: none; }
        
#gnavSp .first > li.drop li:first-child {
         border-top: 0; }
         
#gnavSp .first > li.drop li:last-child {
         border-bottom: 1px solid #cbcbcb; }
          
#gnavSp .first > li.drop li a {
					display: block;
					background-color: #f6f6f6;
					padding: 0 0 0 38px;
					font-size: 1.1em;
					font-weight: 400;
					font-family: "BIZ UDPGothic", sans-serif;
					color: #1b6089;
					text-decoration: none;
					height: 52px;
					line-height: 52px;
}
          
#gnavSp .first > li .dropList {
        display: none; }
        
        
        
        
        
        
        
#gnavSp .second {
      background-color: #fff;
      border-bottom: 1px solid #fff;
      display: table;
      width: 100%;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
              
#gnavSp .second a {
        display: table-cell;
        vertical-align: middle;
        width: 50%;
        padding: 0.8em 0.7em;
        color: #fff;
        line-height: 1.2; }
        
#gnavSp .second a:first-child {
          border-right: 1px solid #7a7a7a; }
          
#gnavSp .third {
      background-color: #11a4a7;
      padding: 1.2em; }
      
#gnavSp .fifth {
      background-color: #a9a9a9;
      padding: 1.2em; }
      
#gnavSp .third a {
        display: block;
        width: 100%;
        border-radius: 4px;
        text-align: center;
        line-height: 1.2;
        padding: 0.7em;
        font-size: 14px;
        background-color: #f6f5f5;
        border: 1px solid #d0d0d0;
        color: #11a4a7; }
        
#gnavSp .fifth a {
        display: block;
        width: 90%;
        border-radius: 4px;
        text-align: center;
        line-height: 1.2;
        padding: 0.7em 5% 0.7em 5%;
        font-size: 16px;
        background-color: #357e8b;
        border: 2px solid #fff;
        color: #fff; }   
 






#g-nav .footer-copy {
	display: block;
	position: absolute;
	padding: 0 0 0 0;
	margin: 0 auto 0 auto;
	bottom: 0;
	left: 0;
	text-align: center;
	width: 95%;
	height: auto;
	min-height: 50px;
	overflow: hidden;
}

#g-nav .footer-copy p {
	display: block;
	position: relative;
	padding: 0 0 18px 0;
	margin: 0 0 0 0;
	text-align: center;
	color: #333;
	font-size: 1.1em;
	line-height: 1.6em;
	font-weight: 400;
	font-family: "BIZ UDPGothic", sans-serif;
	letter-spacing: 0.5px;
}

#g-nav .footer-copy p br {
	display: none;
}

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

	#g-nav .footer-copy {
		display: block;
		position: absolute;
		padding: 0 0 0 0;
		margin: 0 auto 0 auto;
		bottom: 0;
		left: 0;
		width: 95%;
		height: auto;
		min-height: 80px;
	}

	#g-nav .footer-copy p {
		display: block;
		position: relative;
		padding: 0 0 0 0;
		margin: 0 0 0 0;
		text-align: left;
		color: #333;
		font-size: 1.2em;
		line-height: 1.6em;
		font-weight: 400;
		font-family: "BIZ UDPGothic", sans-serif;
		letter-spacing: 0.5px;
	}

	#g-nav .footer-copy p br {
		display: block;
	}

}

/* # =================================================================
   # page-top
   # ================================================================= */

#page-top a {
	display: block;
	width: 60px;
	height: 60px;
	color: #fff;
	transition:all 0.3s;
}

#page-top a img {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	width: 60px;
	height: 60px;
}

#page-top {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 20000;
	opacity: 0;
	transform: translateX(100px);
	
}

#page-top.LeftMove{
	animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }
  to {
    opacity: 1;
	transform: translateX(0);
  }
}

#page-top.RightMove{
	animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
  	opacity: 1;
	transform: translateX(0);
  }
  to {
  	opacity: 1;
	transform: translateX(100px);
  }
}

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

	#page-top,
	#page-top a {
		display: none;
	}

}
