@charset "utf-8";
/*=============================================================
 contents Layout
=============================================================*/
/* container
-------------------------------------------------------------*/
#container{
	overflow:hidden;
	min-width:1000px;
	padding: 70px 0 0;
}
#contents {
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	padding: 30px 0;
	box-sizing: border-box;
}
/*=============================================================
 header
=============================================================*/
#header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0;
	z-index:9999;
	background: #fff;
}
#headerInner{
	width: 100%;
	max-width: 980px;
	height: 70px;
	margin: 0 auto;
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* hdr-logo
-------------------------------------------------------------*/
#header #hdr-logo{
	width:130px;
}
#header #hdr-logo img{
	width:100%;
	height: auto;
}
/* menu
-------------------------------------------------------------*/
#header #menu{
}
/* globalNavSet
-------------------------------------------------------------*/
#globalNavSet>dt{display:none;}
/* globalNav
-------------------------------------------------------------*/
#header #globalNav{
	width: 316px;
	height: 38px;
}
#header #globalNav>li>a{
	display: block;
	width: 100%;
	height: 100%;
	transition:all 0.4s ease-out;
}
#header #globalNav>li>a:hover{
	opacity: 0.65;
}
#header #globalNav>li>a img{
	display: block;
	width: 100%;
	height: 100%;
}
/* pageNav
-------------------------------------------------------------*/
#header #pageNav{
	display: none;
}
/* btnHome
-------------------------------------------------------------*/
#header #btnHome{
	display: none;
}



/*=============================================================
 main
=============================================================*/
#index main{
	background: url("../../img/bg_index.png") repeat center top;
	background-size: 48px 48px;
}
#world main{
	background: url("../../img/bg_world.png") repeat center top;
	background-size: 48px 48px;
}
/*=============================================================
 footer
=============================================================*/
#footer{
	padding: 20px 0;
	background-color: #fff;
	color: #000;
}
/* ftr-copyrightArea
-------------------------------------------------------------*/
#ftr-copyrightArea{
	text-align: center;
	line-height: 1.75;
}
#ftr-copyrightArea p.name{
	font-size: 115%;
	font-weight: 700;
}
#ftr-copyrightArea p.copyright{
	padding: 10px 0 0;
	font-size: 13px;
}
/* ftr-pagetop
-------------------------------------------------------------*/
#ftr-pagetop{
	width: 40px;
	height: 40px;
	visibility:hidden;
	position:fixed;
	right:30px;
	bottom:30px;
	z-index:1000;
	opacity:0;
	transition:opacity .4s, visibility .4s;
}
#ftr-pagetop a{
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 100px;
}
#index #ftr-pagetop a{
	background-color:#047835;
}
#world #ftr-pagetop a{
	background-color:#262727;
}
#ftr-pagetop img{
	width: 100%;
	height: 100%;
}
#ftr-pagetop.show,
#ftr-pagetop.bottom{
	visibility:visible;
	opacity:1;
}


/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Smartphones
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media only screen and (max-width:979px){
/* container
-------------------------------------------------------------*/
#container{
	min-width:320px;
	padding-top:60px;
}
#contents {
	padding: 20px 40px 20px 20px;
}
/*=============================================================
 header
=============================================================*/
#header{

}
#headerInner{
	height: 60px;
	padding: 0 0 0 20px;
	box-sizing: border-box;
}
/* hdr-logo
-------------------------------------------------------------*/
#header #hdr-logo{
	width:100px;
}
/* menu
-------------------------------------------------------------*/
#header #menu{
	display: block;
}
/* globalNavSet
-------------------------------------------------------------*/
#globalNavSet>dt{
	display:flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	position: fixed;
	top: 0;
	right: 0;
	transition:all 0.4s ease-out;
}
#index #globalNavSet.open>dt{
	background-color:#047835;
}
#world #globalNavSet.open>dt{
	background-color:#262727;
}
#globalNavSet>dt>span.btn{
	display: block;
	width: 30px;
	height: 30px;
	position: relative;
}
#globalNavSet>dt>span.btn:before,
#globalNavSet>dt>span.btn:after{
	content: "";
	display: block;
	width:100%;
	height:4px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	transition:all 0.4s ease-out;
}
#index #globalNavSet>dt>span.btn:before,
#index #globalNavSet>dt>span.btn:after{
	background-color:#047835;
}
#world #globalNavSet>dt>span.btn:before,
#world #globalNavSet>dt>span.btn:after{
	background-color:#262727;
}
#globalNavSet>dt>span.btn span{
	content: "";
	display: block;
	width:100%;
	height:30px;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	top: 0;
	transition:all 0.4s ease-out;
}
#index #globalNavSet>dt>span.btn span{
	border-top: 4px solid #047835;
	border-bottom: 4px solid #047835;
}
#world #globalNavSet>dt>span.btn span{
	border-top: 4px solid #262727;
	border-bottom: 4px solid #262727;
}
#globalNavSet.open>dt>span.btn:before{
	background-color:#fff !important;
	transform: translateY(-50%) rotate(45deg);
}
#globalNavSet.open>dt>span.btn:after{
	background-color:#fff !important;
	transform: translateY(-50%) rotate(-45deg);
}
#globalNavSet.open>dt>span.btn span{
	opacity: 0;
}
#globalNavSet>dd{
	box-sizing:border-box;
	width:100%;
	padding:0;
	visibility:hidden;
	overflow:hidden;
	position:fixed;
	top:60px;
	bottom:100%;
	left:0;
	z-index:200;
	opacity:0;
	transition:all 0.3s ease;
}
#index #globalNavSet>dd{
	background-color:#047835;
}
#world #globalNavSet>dd{
	background-color:#262727;
}
#globalNavSet.open>dd{
	visibility:visible;
	bottom:0;
	opacity:1;
}
#globalNavSet>dd>*{visibility:hidden;}
#globalNavSet>dd>div:after{
	content:"";
  display:block;
  height:20px;
}
#globalNavSet.open>dd>*{visibility:inherit;}
html.gNavOpen,
html.gNavOpen body{
	height:100%;
	overflow:hidden;
}
html.gNavOpen #globalNavSet>dd>div{
	box-sizing:border-box;
	width:100%;
	height:100%;
	overflow:auto;
	overflow-x: hidden;
	position:relative;
	-webkit-overflow-scrolling:touch;
}
/* globalNav
-------------------------------------------------------------*/
#header #globalNav{
	width: 100%;
	height: auto;
	padding: 0 20px 20px;
	box-sizing: border-box;
}
#header #globalNav a{
	width: 100%;
	max-width: 480px;
	height: auto;
	margin: 20px auto 0;
}
/* pageNav
-------------------------------------------------------------*/
#header #pageNav{
	display: block;
}
#header #pageNav li{
	display: block;
	border-bottom: 3px dotted #fff;
}
#header #pageNav li a{
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 17px;
}
#header #pageNav li a span:first-child{
	width: 26px;
	height: 26px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border-radius: 100px;
}
#index	#header #pageNav li a span:first-child{
	color:#047835;
	background-color: #fff;
}
#header #pageNav li a span+span{
	flex: 1;
	box-sizing: border-box;
	padding: 0 0 0 10px;
}
#world	#header #pageNav li a span:first-child{
	color:#262727;
	background-color: #fff;
}
/* btnHome
-------------------------------------------------------------*/
#header #btnHome{
	display: block;
}
#header #btnHome li{
	display: block;
	border-top: 3px dotted #fff;
}
#header #btnHome li a{
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 17px;
}
	

/*=============================================================
 footer
=============================================================*/
#footer{
}
/* ftr-copyrightArea
-------------------------------------------------------------*/
#ftr-copyrightArea{
}
#ftr-copyrightArea p.name{
	font-size: 105%;
	font-weight: 700;
}
#ftr-copyrightArea p.copyright{
	padding: 5px 0 0;
	font-size: 11px;
}

/* ftr-pagetop
-------------------------------------------------------------*/
#ftr-pagetop{
	right:10px;
	bottom:10px;
}
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Smartphones (portrait)
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media only screen and (max-width:440px){
}

/*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Smartphones small (portrait)
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
@media only screen and (max-width:374px){
}
