@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap&subset=japanese');

@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap" rel="stylesheet');

h1 {
	width: 95px;
  	z-index: 18000;
	position: fixed;
	top: 15px;
	left: 2px;
	margin: 0;
}

.hamburger {
  	display: block;
  	width: 100px;
  	height: 35px;
  	position: fixed;
  	top: 100px;
	left: 0;
  	z-index: 18000;
  	-moz-box-sizing: border-box;
  	-webkit-box-sizing: border-box;
  	box-sizing: border-box;
  	-webkit-tap-highlight-color: transparent;
  	-webkit-tap-highlight-color: transparent;
  	-ms-touch-action: manipulation;
  	touch-action: manipulation;
	padding-left: 30px;
}

.hamburger__icon {
  position: relative;
  margin-top: 13px;
  margin-bottom: 11px;
}

.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  width: 40px;
  height: 1px;
  background-color: #d3eaf0;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

.hamburger__icon:before, .hamburger__icon:after {
  position: absolute;
  content: "";
}
.hamburger__icon:before {
  top: -11px;
        }
.hamburger__icon:after {
  top: 11px;
}

.hamburger__icon_color,.hamburger__icon_color:before,.hamburger__icon_color:after {
	background-color: #444;
}

.hamburger.active .hamburger__icon {
  background-color: transparent;
}
.hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
  background-color: #fff;
}
.hamburger.active .hamburger__icon:before {
  -moz-transform: translateY(11px) rotate(45deg);
  -ms-transform: translateY(11px) rotate(45deg);
  -webkit-transform: translateY(11px) rotate(45deg);
  transform: translateY(11px) rotate(45deg);
}
.hamburger.active .hamburger__icon:after {
  -moz-transform: translateY(-11px) rotate(-45deg);
  -ms-transform: translateY(-11px) rotate(-45deg);
  -webkit-transform: translateY(-11px) rotate(-45deg);
  transform: translateY(-11px) rotate(-45deg);
}

.fat-nav {
  top: 0;
  left: 0;
  z-index: 9999;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: #000;
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.fat-nav__wrapper {
  	width: 100%;
  	height: 100vh;
  	display: flex;
  	flex-direction: column;
  	justify-content: center;
  	align-items: center;
}

.fat-nav.active {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.full-menu {
	display: flex;
 	flex-wrap: wrap;
 	justify-content: space-between;
	width: 1000px;
}

.logo_area {
	width: 45%;
	text-align: left;
	margin: 0;
}

.menu-area {
	display: flex;
 	flex-direction: column;
 	justify-content: center;
	width: 50%;
	margin-right: auto;
	margin-left: auto;
}

.menu-area ul {
  	width: 100%;
	margin: 0;
	padding: 0;
	border-top: 1px solid #333;
}


.menu-area li {
	font-size: 1.1em;
	line-height: 1.8em;
  	list-style-type: none;
  	padding: 15px 5px;
	width: 100%;
	border-bottom: 1px solid #333;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.menu-img {
	width: 30px;
	vertical-align: middle;
	margin-right: 20px;
}

.menu_sns {
	font-size: 1em;
	color: #666;
	margin-right: 25px;
	margin-left: 5px;
}

.menu-area li .en {
	width: 45%;
	text-align: left;
	color: #ccc;
}

.menu-area li .ja {
	width: 55%;
	text-align: right;
    font-size: 0.7em;
}

.menu-area li a {
  display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.menu-area li, .menu-area li a {
  color: #f3f3ff;
}

.menu-area li a {
  text-decoration: none;
}

.menu-area li a:hover {
	background-color: rgba(255,255,255,0.1028541);
}

.ticket_sp {
	width: 160px;
}

.color_noLink {
	color: #666 !important;
}


@media screen and (max-width: 1000px) {
.full-menu {
	width: 95%;
}

.logo_area {
	width: 95%;
	text-align: center;
	margin: 0 auto;
}

.logo_area img {
	width: 250px;
	margin-bottom: 40px;
}

.menu-area {
	display: flex;
 	flex-direction: column;
 	justify-content: center;
	width: 80%;
	margin-right: auto;
	margin-left: auto;
}	
}





@media screen and (max-width: 640px) {
h1 {
	width: 320px;
	position: relative;
	top: 34px;
	left: 56%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.hamburger {
    display: block;
    width: 56px;
    height: 55px;
    position: fixed;
    top: 5px;
	left: -5px;
    z-index: 18000;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-tap-highlight-color: transparent;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
	background-color: #000;
    padding-left: 17.5px;
	padding-top: 14px;
	border-radius: 50%; /* CSS3草案 */  
	-webkit-border-radius: 50%; /* Safari,Google Chrome用 */  
	-moz-border-radius: 50%; /* Firefox用 */
}

.hamburger__icon:before {
  top: -8px;
        }
.hamburger__icon:after {
  top: 8px;
}

.hamburger.active .hamburger__icon:before {
  -moz-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .hamburger__icon:after {
  -moz-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  -webkit-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  width: 23px;
  height: 1px;
  background-color: #d3eaf0;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}



.fat-nav__wrapper {
	margin-top: 30px;
}

.logo_area {
	display: none;
}

.menu-img {
	display: none;
}

.menu_sns {
	display: none !important;
}

}
