@charset "UTF-8";

/* common */

*{
	margin: 0;
	padding: 0;
	border: none;
}

body,html {
	margin: 0;
	padding: 0;
}

body {
	text-align: center;
	*font-size:small;
	*font:x-small;
	height: 100%;
	width:100%;
	color:#fff;
	line-height:1.8em;
	font-weight:normal;
	letter-spacing: 2px;
	background-color: #333;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif; 
}

ul,li {
	list-style: none;
	margin: 0;
	padding: 0;
}

a {
	outline: 0;
	color:#fff;
	text-decoration: none;
	transition: all  0.3s ease;
}

a:hover {
	color:#fff;
}

/* Opera */

.for_opera {
	display: block;
	width: 1px;
	height: 1px;
}

/* image lazy */
.lazy {
     opacity: 0;
}

.show {
       opacity: 1;
       transform: translateY(40px);
       transition: opacity 1.4s, transform 0.8s;
}

/* header */
.top {
	width: 100vw;
	height: auto;
	min-height: 100vh;
}

.topText {
	width: 40%;
	height: 300px;
	word-wrap: break-word;
	-ms-writing-mode: tb-rl;
	/*writing-mode: vertical-rl;*/
	/*margin: 0 auto 41px;*/
	margin: 0 auto;
	padding-top: 25px;
	align-items: center;
	text-align: left;
	line-height:2em;
	font-size: 10pt;
	display: flex;
	align-items: center;
	text-align: justify;
}

.humb {
	position: absolute;
	z-index: 1000;
	top: 5%;
	left: 5%;
}

.humb1 {
	margin-bottom: 2px;
}

h1 {
	z-index: 1000;
	position: absolute;
	left: 50%;
	bottom: 15%;
	transform: translateX(-50%);
}

.scroll {
	width: 64px;
	height: 40px;
	z-index: 1000;
	position: absolute;
	right: 5%;
	bottom: 8%;
	text-align: center;
}

.scroll01 {
	z-index: 1000;
}

.scroll02 {
	z-index: 1000;
}

.sub_title {
	z-index: 1000;
	position: absolute;
	left: calc(50% - 62px);
	top: calc(35% - 118px);
}

/* slick slide css to fit users screen */
.slick01,.slick02 {
	display: flex;
	justify-content: center;
	align-items: center;
	/*min-height: 100vh;*/
	width: 100%;
	height: 100vh;
	overflow: hidden;	
}

.slidePc .slick01 img{
	width: 110vw;
	height: auto;
}

.slideMb .slick02 img{
	width: 160vw;
	height: auto;
	max-width: 500%;
}

.slidePc {
	display: block;
}

.slideMb {
	display: none;
}

/* when window open it gets these effects with js */
.opening {
	opacity: 0;
	background-color: #fff;
}

.openingIn {
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
	opacity: 1;
	background-color: #333;
}

/* all css for global nav */

#nav-toggle {
  position: fixed;
  top: 25px;
  left: 25px;
  height: 32px;
  cursor: pointer;
}
#nav-toggle > div {
  position: relative;
  width: 36px;
}
#nav-toggle span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #fff;
  position: absolute;
  -webkit-transition: top .5s ease, -webkit-transform .6s ease-in-out;
  transition: top .5s ease, -webkit-transform .6s ease-in-out;
  transition: transform .6s ease-in-out, top .5s ease;
  transition: transform .6s ease-in-out, top .5s ease, -webkit-transform .6s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 14px;
}
#nav-toggle span:nth-child(3) {
  top: 28px;
}
#nav-toggle:hover span:nth-child(1) {
  top: 4px;
}
#nav-toggle:hover span:nth-child(3) {
  top: 23px;
}

.open #nav-toggle span {
  background: #fff;
}
.open #nav-toggle span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* for gloval nav  */
#nav-toggle {
  z-index: 1100;
}

#container {
  z-index: 1050;
}

#gloval-nav {
  background: #000;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  text-align: center;
  display: -webkit-box;
  display: flex;
  visibility: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  font-size: 20px;
  opacity: 0;
  -webkit-transition: opacity .6s ease, visibility .6s ease;
  transition: opacity .6s ease, visibility .6s ease;
}

#gloval-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  -webkit-transition: color .6s ease;
  transition: color .6s ease;
}
#gloval-nav a:hover {
  color: #666;
}
#gloval-nav ul {
  list-style: none;
}
#gloval-nav ul li {
  opacity: 0;
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  -webkit-transition: opacity .2s ease, -webkit-transform .6s ease;
  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) {
  -webkit-transition-delay: .15s;
          transition-delay: .15s;
}
#gloval-nav ul li:nth-child(3) {
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}
#gloval-nav ul li:nth-child(4) {
  -webkit-transition-delay: .45s;
          transition-delay: .45s;
}
#gloval-nav ul li:nth-child(5) {
  -webkit-transition-delay: .6s;
          transition-delay: .6s;
}
#gloval-nav ul li:nth-child(6) {
  -webkit-transition-delay: .75s;
          transition-delay: .75s;
}
#gloval-nav ul li:nth-child(7) {
  -webkit-transition-delay: .9s;
          transition-delay: .9s;
}

/* css to open gloval nav  */
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav li {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity .9s ease, -webkit-transform 1s ease;
  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;
}

/* instagram */

.mCenter {
	margin:0px auto;
}

.insta_title {
	font-size: 22px;
	margin-top: 50px;
	font-stretch: semi-condensed;
}

.tinsta_text {
	width:560px;
	margin:76px auto 0;
}
.photo01 a:hover img {
	opacity: 0.4;
	transition: all, 0.3s, ease;
}

#img_insta {
	padding: 80px 0 150px 0;
	display:grid;
	grid-template-columns:repeat(6,1fr);
	grid-gap:1px;
}

.fr_img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* main contents */

.menu01_img img {
	width: 100%;
	height: auto;
	min-height: 40px;
}

.imgMenu {
	margin: 96px auto 54px;
}

table {
	border-collapse: collapse;
	width: 50%;
	margin: 30px auto 121px;
}

th, td {
	text-align: left;
	padding: 5px 15px;
	font-size: 12px;
}

tr {
	min-width: 450px;
}

th {
	color: #fff;
}

h2 {
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 16px;
	margin-top: 40px;
}

h3 {
	margin: 0 0 20px 0;
	font-size: 16px;
}

.menu02 {
	display: flex;
	align-items: center;
	width: 100%;
}

.menu_title {
	margin: 22px auto;
}

.menu {
	width: 50%;
	align-self: flex-start;
}

.menu01_img {
	position: relative;
	width: 100%;
	height:auto;
	min-height: 40px;
}

.menu_img img {
	width: 100%;
	height:auto;
	min-height: 40px;
	margin-bottom: 40px;
}

.menuTitle {
	width: 100px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1100;
	position: absolute;
	top: 45%;
	left: 20%;
}

.menuTitle img {
	width: 74px;
	height: 18px;
}

.half_text {
	width: 60%;
	margin: 0 auto 30px;
	font-size: 11px;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

hr {
	width: 118px;
	height: 1px;
	background-color: #fff;
	margin: 31px auto 26px;
}

.btn {
	width: 180px;
	height: 50px;
	line-height: 50px;
	border-radius: 30px;
	border: solid 1px #fff;
	margin: 10px auto;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 14px;
	background-color: #333;
}

a .btn {
	transition: all  0.3s ease-in-out;
}

a:hover .btn  {
	background-color: #555;
}

.info {
	margin: 81px auto 28px;
	font-size: 22px;
	font-stretch: semi-condensed;
	letter-spacing: 5px;
}

.infoContent {
	margin: 0 0 46px 0;
}

.mapMark {
	margin: 111px auto 65px;
}

.mapMrg {
	margin: 40px 0 74px;
}

.hourother {
	margin: 20px 0 0 0;
	font-size: 9pt;
}
/* footer */
.fBtn {
	margin: 80px auto;
	align-items: center;
	width: 80%;
}

.fBtn img {
	width: 3%;
	height: auto;
}

.copy {
	font-size: 9px;
	text-align: right;
	margin: 100px 30px 30px 0;
}

/* css for Mobile( when these get effect under width 1024) */

@media (max-width: 1024px) {
	.slideMb {
	display: block;
	}
   	.slidePc {
	display: none;
	}
	.sub_title img {
	width: calc(148px * 0.8);
	height: calc(284px * 0.8);
	}
	.sub_title {
	top: calc(35% - 94px);
	left: calc(50% - 49px);
	}
	.humb {
	top: 10%;
	}
	#nav-toggle > div {
	width: 30px;
	left: 10%;
	top: 10%;
	}
	table {
	width: 85%;
	}
   	.topText {
	width: 80%;
	height: 350px;
	padding-top: 45px;
	}
	.menuTitle {
	top: calc(50% - 17px);
	}
	.menuTitle img {
	width: calc(74px * 0.8);
	height: calc(18px * 0.8);
	}
	.menu02 {
	display: block;
	align-items: center;
	width: 100%;
	}
	.menu {
	width: 100%;
	margin-bottom: 100px;
	}
	h1 img {
	width: calc(122px * 0.8);
	height: calc(177px * 0.8);
	}
	h1 {
	left: 50%;
	bottom: 26%;
	transform: translateX(-50%);
	}
	.scroll {
	bottom: 15%;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	}
	.scroll02 {
	display: none;
	}
	h4 {
	width: 90%;
	margin: 0 auto;
	}
	.mapMark img {
	width: calc(48px * 0.8);
	height: calc(65px * 0.8);
	}
	.footer_logo img {
	width: calc(110px * 0.8);
	height: calc(160px * 0.8);
	}
	.copy {
	text-align: center;
	width: 100%;
	}
	#img_insta {
	grid-template-columns: repeat(3, 1fr);
	}
}