@charset "utf-8";



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

#global-header .muji-logo {
	width: 124px;
}
#global-header .muji-logo img {
	width: 100%;
	height: auto;
}


#menu {
	position: fixed;
	width: 100%;
	height: calc(100% - 50px);
	left: 0;
	top: 50px;
	z-index: 2100;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition: all 400ms ease-out;
}
#menu .inner {
	box-sizing: border-box;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	height: 100%;
	padding-right: 64px;
	background: #fff;
}

body.opened-menu #menu {
	opacity: 1;
	visibility: visible;
}

#menu .lang {
	position: relative;
	top: -25px;
}
#menu .lang ul {
	display: flex;
}
#menu .lang li {
	position: relative;
}
#menu .lang li + li {
	margin-left: 24px;
}
#menu .lang li + li::before {
	position: absolute;
	content: "";
	display: block;
	width: 2px;
	height: 20px;
	left: -12px;
	top: calc(50% - 10px);
	background: #d9d9d9;
}
#menu .lang a {
	font-size: 20px;
	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:active {
	color: #000;
}


#menu-button {
	position: fixed;
	width: 30px;
	height: 30px;
	right: 27px;
	top: 10px;
	z-index: 2110;
}
#menu-button button {
	position: relative;
	width: 30px;
	height: 30px;
	padding: 0;
	font-size: 0;
	border: none;
	background: none;
	cursor: pointer;
}
#menu-button button i {
	position: absolute;
	display: block;
	width: 24px;
	height: 2px;
	left: 3px;
	top: calc(50% - 1px);
	background: #000;
	transition: all 200ms ease-out;
}
#menu-button button i:nth-child(1) {
	margin-top: -6px;
}
#menu-button button i:nth-child(3) {
	margin-top: 6px;
}


body.opened-menu #menu-button button i:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}
body.opened-menu #menu-button button i:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}
body.opened-menu #menu-button button i:nth-child(2) {
	opacity: 0;
}







#global-footer {
	box-sizing: border-box;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	padding: 38px 0 34px;
	text-align: center;
	background: #d9d9d9;
}
#global-footer .logo {
	width: 140px;
}
#global-footer .logo img {
	width: 100%;
	height: auto;
}
#global-footer .copyright {
	margin: 10px 0 0;
	font-size: 10px;
}



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



#kv {
	position: fixed;
	width: 100%;
	height: 100%;
	height: 100lvh;
	left: 0;
	top: 0;
	z-index: 10;
}
#kv .bg {
	position: absolute;
	width: 100%;
	height: 100%;
	height: 100lvh;
	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%;
	height: 100lvh;
	left: 0;
	top: 0;
	z-index: 50;
	background: #000;
	pointer-events: none;
	opacity: 0;
}


#intro {
	position: relative;
	height: 100vh;
	height: 100lvh;
	z-index: 100;
}
#intro .title {
	position: absolute;
	width: calc(100vw - 64px);
	max-width: 330px;
	height: auto;
	right: 0;
	bottom: 170px;
	z-index: 50;
	background: #fff;
}
#intro h1 {
}
#intro .title img {
	width: 100%;
	height: auto;
}


#content {
	position: relative;
	z-index: 100;
	padding-top: calc(50vh + 50px);
	padding-bottom: 100px;
}
#content .lead {
	width: calc(100vw - 60px);
	max-width: 300px;
	margin: 0 auto;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 2;
	color: #fff;
}


#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: 14px;
	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: 14px;
	font-weight: 600;
	font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	letter-spacing: 0.02em;
	color: #fff;
}
#sns dd {
	margin: 30px 0 0;
}
#sns ul {
	display: flex;
	justify-content: center;
}
#sns li {
	width: 40px;
	height: 40px;
}
#sns li img {
	width: 100%;
	height: 100%;
	transition: all 300ms ease-out;
}
#sns li + li {
	margin-left: 38px;
}
#sns li a {
	display: block;
	cursor: pointer;
}
#sns li a:active img {
	opacity: 0.7;
}




#image-list {
	margin: 195px 0 0;
	padding: 60px 24px 60px;
	background: #333;
}
#image-list ul {
}
#image-list li {
	position: relative;
}
#image-list li + li {
	margin-top: 15px;
}
#image-list img {
	width: 100%;
	height: auto;
}







