/*NAVIGATION*/
nav {
  width: 100%;
  background: #000;
  color: #fff;
  opacity: 1;
  padding: 30px 15px;
  font-size: 12px;
  line-height: 1;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  letter-spacing: -0.4em;
  text-align: center;
}
nav ul li {
  display: inline-block;
  padding: 0 15px;
  margin: 0 0 0 0;
  width: auto;
  vertical-align: middle;
  /* text-align: center; */
}
nav ul li a {
  display: block;
  /* padding: 5px 10px 5px 13.75px; */
  color: #fff;
  padding: 10px 0;
  transition: 0.2s linear;
  position: relative;
}
nav ul li a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #e60012;
  position: absolute;
  bottom: 50%;
  right: 0;
  transform: translateY(50%);
  transition: 0.2s;
}
nav ul li a:hover::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #e60012;
  position: absolute;
  bottom: 50%;
  right: 0;
  transform: translateY(50%);
}
nav li a img {
  max-width: inherit;
  width: auto !important;
  height: 12px !important;
}
nav li a img.__ja {
  max-width: inherit;
  width: auto !important;
  height: 14px !important;
}

@media screen and (max-width: 768px) {
  /*HUMBUGER MENU*/
  /*nav-sp {
		display: block;
		width: 100%;
		height: 48px;
		background: rgba(160,193,210,1.0);
		position: fixed;
		top: 0;
		left: 0;
		z-index: 899;
	}*/
  .menu-trigger {
    display: block;
    cursor: pointer;
    position: fixed;
    width: 30px;
    height: 27px;
    top: 10px;
    right: 10px;
    z-index: 900;
  }
  .menu-trigger,
  .menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #e60012;
    border-radius: 4px;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 0;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 12px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .menu-trigger.active {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  .menu-trigger.active span {
    background-color: #fff;
  }
  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(12px) rotate(-45deg);
    transform: translateY(12px) rotate(-45deg);
  }
  .menu-trigger.active span:nth-of-type(2) {
    -webkit-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
  }
  .menu-trigger.active span:nth-of-type(3) {
    opacity: 0;
  }

  nav {
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    left: -100%;
    top: 0;
    transform: none;
    z-index: 30;
    text-align: center;
    padding: 50px 15px 30px;
    overflow-y: auto;
    transition: 0.2s all;
    opacity: 1;
  }
  nav.__open {
    left: 0;
  }
  nav ul {
    text-align: center;
    /*font-size: 1rem;*/
  }
  nav ul li {
    width: calc(100% / 1);
    max-width: calc(100% / 1);
    padding: 0 0.75% 1.5%;
    margin-bottom: 5px;
    letter-spacing: normal;
  }
}


/**/
.__top-nav {
  width: 37%;
  position: absolute;
  top: 62%;
  right: 10%;
  opacity: 0;
  border-radius: 3px;
  text-align: center;
  transition: 0.15s linear;
  font-family: "Passion One", cursive;
  font-size: 1.33rem;
  font-weight: 700;
}

.__top-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  letter-spacing: -0.4em;
  text-align: center;
}
.__top-nav ul li {
  width: calc(100% / 3);
  display: inline-block;
  padding: 0 0.5%;
  margin: 0 0 0 0;
  text-align: center;
  transition: 0.2s linear;
  letter-spacing: 0.25em;
}
.__top-nav li a span {
  display: block;
  transition: 0.2s linear;
}
.__top-nav ul li a {
  display: block;
  padding: 5px 10px 5px 13.75px;
  color: #fff;
  text-decoration: none;
  background: #e60012;
  border-radius: 2px;
  transition: 0.2s linear;
}
.__top-nav ul li a:hover {
  color: rgba(255, 255, 255, 1);
  background: #000;
}
.__top-nav ul li a:visited,
.__top-nav ul li a:active,
.__top-nav ul li a:focus {
  color: rgba(255, 255, 255, 1);
}
@media screen and (max-width: 768px) {
  .__top-nav {
    width: 75%;
    position: inherit;
    bottom: inherit;
    right: inherit;
    transform: none;
    z-index: 10;
    font-size: 1.33rem;
    margin: 0 auto 40px;
  }
  .__top-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    letter-spacing: -0.4em;
    text-align: center;
  }
  .__top-nav ul li {
    width: calc(100% / 1);
    display: inline-block;
    padding: 0 0.5%;
    margin: 0 0 10px 0;
    text-align: center;
    transition: 0.2s;
    letter-spacing: 0.25em;
  }
}