@charset "utf-8";



#global-header {
	position: fixed;
	width: 100%;
	height: 70px;
	z-index: 2000;
	background: #fff;
}
#global-header .inner {
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 0 32px 0 50px;
}

#menu {
}
#menu .lang {
	position: fixed;
	right: 32px;
	top: 23px;
	z-index: 2010;
}
#menu .lang ul {
	display: flex;
}
#menu .lang li {
	position: relative;
}
#menu .lang li + li {
	margin-left: 20px;
}
#menu .lang li + li::before {
	position: absolute;
	content: "";
	display: block;
	width: 2px;
	height: 16px;
	left: -10px;
	top: calc(50% - 7px);
	background: #d9d9d9;
}
#menu .lang a {
	font-size: 1rem;
	font-weight: 700;
	font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #d9d9d9;
	transition: all 300ms ease-out;
}
html.jp #menu .lang .jp a,
html.en #menu .lang .en a,
html.cn #menu .lang .zh a {
	color: #000;
}
#menu .lang a:hover {
	color: #000;
}



#global-footer {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 250px;
	z-index: 1000;
	text-align: center;
	background: #d9d9d9;
}
#global-footer .logo {
	width: 230px;
}
#global-footer .logo img {
	width: 100%;
	height: auto;
}
#global-footer .copyright {
	margin: 24px 0 0;
	font-size: 1rem;
}


#menu-button {
	display: none;
}



main {
	position: relative;
	z-index: 900;
}



#kv {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
}
#kv .bg {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
}

#kv .bg img,
#kv .bg video {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
	object-position: center center;
}
#kv .bg iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
html[data-view-mode="wide"] #kv .bg iframe {
	width: calc(100vw + 2px);
	height: calc(56.25vw + 2px);
}
html[data-view-mode="tall"] #kv .bg iframe {
	width: calc(178vh + 2px);
	height: calc(100vh + 2px);
}

#overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 50;
	background: #000;
	pointer-events: none;
	opacity: 0;
}


#intro {
	position: relative;
	height: 100vh;
	min-height: 460px;
	/*
	max-height: 64.285vw;
	*/
	z-index: 100;
}
#intro .title {
	position: absolute;
	width: 496px;
	height: 120px;
	left: 62px;
	bottom: 72px;
	z-index: 50;
	background: #fff;
}
html.en #intro .title {
	width: 499px;
}
#intro h1 {
}
#intro .title img {
	width: 100%;
	height: auto;
}


#content {
	position: relative;
	z-index: 100;
	padding-top: calc(100vh + 50px);
	padding-bottom: 300px;
}
#content .lead {
	width: 542px;
	margin: 0 auto;
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 2;
	color: #fff;
}
html.ja #content .lead {
	text-align: justify;
	font-feature-settings: "palt" 1;
}
html.en #content .lead {
	width: 645px;
}


#comingsoon {
	position: sticky;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	left: 0;
	top: 0;
	z-index: 100;
}
#comingsoon p {
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 2;
	text-align: center;
	color: #fff;
}

#sns {
	margin: 70px auto 0;
	text-align: center;
}
#sns dt {
	font-size: 1.125rem;
	font-weight: 600;
	font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	letter-spacing: 0.02em;
	color: #fff;
}
#sns dd {
	margin: 50px 0 0;
}
#sns ul {
	display: flex;
	justify-content: center;
}
#sns li {
	width: 46px;
	height: 46px;
}
#sns li img {
	width: 100%;
	height: 100%;
	transition: all 300ms ease-out;
}
#sns li + li {
	margin-left: 44px;
}
#sns li a {
	display: block;
	cursor: pointer;
}
#sns li a:hover img {
	opacity: 0.7;
}



#image-list {
	margin: 90px 0 0;
	padding: 175px 0;
	background: #333;
}
#image-list ul {
	max-width: 1200px;
	margin: 0 auto;
}
#image-list li {
	position: relative;
}
#image-list li + li {
	margin-top: 50px;
}
#image-list img {
	width: 100%;
	height: auto;
}



