@charset "utf-8";
/* CSS Document */
/*------------------------------
	navi
------------------------------ */
nav{
	font-weight: 500;
}
.gloval-nav {
	position: fixed;
    top: 0;
    left: 0;
	right: 0;
	bottom: 0;
    width: 100%;
    z-index: 98;
    transition: all 0.8s;  
	background: rgba(255,255,255,0.9);
	/*background: -moz-linear-gradient(90deg, rgba(247,177,225,0.9) 0%, rgba(174,166,230,0.9) 25%, rgba(59,199,232,0.9) 75%, rgba(82,224,189,0.9) 100%);
	background: -webkit-linear-gradient(90deg, rgba(247,177,225,0.9) 0%, rgba(174,166,230,0.9) 25%, rgba(59,199,232,0.9) 75%, rgba(82,224,189,0.9) 100%);
	background: linear-gradient(90deg, rgba(247,177,225,0.9) 0%, rgba(174,166,230,0.9) 25%, rgba(59,199,232,0.9) 75%, rgba(82,224,189,0.9) 100%);*/
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f7b1e1",endColorstr="#52e0bd",GradientType=1);
	text-align: center;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	-js-display: flex;
	visibility: hidden;
	flex-direction: column;
	justify-content: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	font-size: 1.4rem;
	opacity: 0;
	transition: opacity .6s ease, visibility .6s ease;
}
.gloval-nav a img{
	height: 17.5px;
}

.gloval-nav a {
	display: block;
	padding: 10px 0;
	width: 100%;
	color: #707070;
	text-decoration: none;
    text-align: center;
	transition: color .6s ease;
	font-size: 1.6rem;
    font-weight: 500;
}
.gloval-nav ul {
  list-style: none;
}
.gloval-nav ul li {
  opacity: 0;
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  transition: opacity .2s ease, -webkit-transform .6s ease;
  transition: transform .6s ease, opacity .2s ease;
  transition: transform .6s ease, opacity .2s ease, -webkit-transform .6s ease;
}
.gloval-nav ul li:nth-child(2) {
  transition-delay: .15s;
}
.gloval-nav ul li:nth-child(3) {
  transition-delay: .3s;
}
.gloval-nav ul li:nth-child(4) {
  transition-delay: .45s;
}
.gloval-nav ul li:nth-child(5) {
  transition-delay: .6s;
}
.navi-logo {
    max-width: 228px;
    height: 35px;
}
.nav .LeftArea{
	min-width: 281px;
}
.nav a {
    height: 35px;
    line-height: 35px;
}
.nav a img {
    height: 35px;
}
.LeftArea{
	display: block;
}
.RightArea {
    margin-right: 0;
    display: block;
    min-width: inherit;
    text-align: center;
}
.RightArea ul{
	list-style: none;
}
.RightArea li{
	display: block;
}
.RightArea a{
    display: block;
}
.nav-toggle {
    display: block;
    position: fixed;
    right: 10px;
    top: 10px;
    width: 57px;
    height: 57px;
	background: url(../images/navi_button.png) center 0 no-repeat;
	background-size: 57px 57px;
	text-indent:100%;
	white-space:nowrap;
	overflow:hidden;
	text-align: center;
    cursor: pointer;
    z-index: 99;
}

/* active */
.active {
  overflow: hidden;
}
.active.gloval-nav {
  visibility: visible;
  opacity: 1;
}
.active.gloval-nav li {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition: opacity .9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity .9s ease;
  transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
}
.active.nav-toggle {
	background: url(../images/navi-close_button.png) center 0 no-repeat;
	background-size: 57px 57px;
	transition: 0.4s;
}

/* anime
------------------------------ */
.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}
@media screen and (min-width: 769px) {
/*------------------------------
	navi
------------------------------ */
.nav-toggle{
	display: none;
}
.gloval-nav { 
	margin: 0 auto;
	display: table;
	width: 100%;
	height: 80px;
	background: #fff;
	visibility: visible;
	opacity: 1;
}

.navArea {
	display: block;
	max-width: 800px; 
	height: 80px;
	background: transparent;
	overflow: hidden;
	font-size: 1.2rem;
}
.LeftArea{
	display: table-cell;
	min-width: 180px;
	height: 80px;
    line-height: 80px;
	text-align: center;
}
.LeftArea a{
	display: block;
	padding: 0 16px;
}
.LeftArea a:hover{
	opacity: 1;
}
.gloval-nav a img{
	max-width: 228px;
    height: 21px;
}
.RightArea{
	display: table-cell;
	/*min-width: 602px;*/
	height: inherit;
	text-align: right;
}
.gloval-nav ul li {
	opacity: 1;
	-webkit-transform: translateX(0px);
	        transform: translateX(0px);
}
.RightArea li{
	display: inline-block;
	height: 72px;
	line-height: 72px;
}
.RightArea a{
	padding: 0 16px;
    transition: background 1s linear;
	-webkit-transition: background 1s linear;
	-moz-transition: background 1s linear;
	-ms-transition: background 1s linear;
	-o-transition: background 1s linear;
}
.RightArea a:hover{
    content: '';
	background:rgb(241, 196, 78);
	/*background: -moz-linear-gradient(90deg, rgba(15,140,187,1) 0%, rgba(32,215,164,1) 100%);
	background: -webkit-linear-gradient(90deg, rgba(15,140,187,1) 0%, rgba(32,215,164,1) 100%);
	background: linear-gradient(90deg, rgba(15,140,187,1) 0%, rgba(32,215,164,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0f8cbb",endColorstr="#20d7a4",GradientType=1);*/
	opacity: 1;
}

.RightArea a::before{
    content: '';
	width: 8px;
	height: 12px;
    margin-right: 4px;
	display: inline-block;
	background: url(../images/navi-icon.png) 0 center no-repeat;
}
.RightArea a:hover::before{
    content: '';
	background: url(../images/navi-icon_on.png) 0 center no-repeat;
}
.gloval-nav a{ 
	height: 80px;
	width: inherit !important;
	line-height: 80px;
    color: #707070;
    text-align: left;
}
.gloval-nav .navArea, .gloval-nav .RightArea a{
    transform: translateY(0%);
}
.gloval-nav.active,  .gloval-nav.active .navArea, .gloval-nav.active .RightArea a {
    transform: translateY(0%);
}	
}
