@charset "utf-8";

* {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	/* border: 1px solid white; */
}

/* ------------------------------------------- */
/* Common */
/* ------------------------------------------- */
html {
	width: 100%;
	color: black;
	background-color: white;
}

body {
	position:relative;
	font-family: "hiragino-kaku-gothic-pron", "HiraginoSans-W3", "A+mfCv-AXIS Font ベーシック R ProN", "AXIS Std", "AXIS Std Local", sans-serif;
	/* font-family: "A+mfCv-AXIS Font ベーシック R ProN", "AXIS Std", "AXIS Std Local", sans-serif; */
	/* font-family: "AXIS Latin Pro", "A+mfCv-AXIS Font ベーシック R ProN", "AXIS Std Local", sans-serif; */
	line-break: strict;
	margin-left: auto;
	margin-right: auto;
	font-size: 11pt;
	line-height: 2em;
}

main {
	width: 100%;
	max-width: 1400px;
	margin: auto;
}

section {
	width: 100%;
	padding: 0px 0px;
	margin: auto;
}

[data-mu-scrollfader] {
	opacity: 0;
}

/* Invert rogo images */
.invert {
	filter: invert(100);
}

a,
a:hover,
a:visited {
	color: inherit;
	cursor: pointer;
	transition: opacity 0.3s;
}
a:hover {
	opacity: 0.8;
}
a.highlight {
	display: inline-block;
	text-decoration: underline;
	text-decoration-color: gray;
}

h2, h3 {
	font-size: inherit;
	font-weight: normal;
}

/* Title Divide Line Controls */
.divline {
	position: relative;
	overflow: hidden;
}

.divline > hr {
	display: inline-block;
	position: absolute;
	top: 50%;
	margin-left: 20px;
	width: 100%;
	border: 0px;
	border-top: 1px solid gray;
}

/* Qutation Adjust */
.quote {
	letter-spacing: -0.6em
}

.vertical-line {
	display: inline-block;
	vertical-align:text-bottom;
	width: 1px;
	height: 1em;
	margin-left: 0.2em;
	margin-right: 0.2em;
	border-left: 0.09em solid white;
}

/* Title Divide Line Controls */
.pc-only {
	display: inherit;
}

.mobile-only {
	display: none;
}

/* Font size */
.em075 {
	font-size: 0.75em;
	line-height: 1.5em;
}

.em10 {
	font-size: 1.0em;
	line-height: 1.0em;
}

.em12 {
	font-size: 1.2em;
	line-height: 1.2em;
}

.em15 {
	font-size: 1.5em;
	line-height: 1.5em;
}

/* ------------------------------------------- */
/* Menu and Language */
/* ------------------------------------------- */
/* Humberger Menu */
#menu-icon {
	position: fixed;
	display: flex;
	flex-direction: column;
	right: 30px;
	top: 30px;
	width: 30px;
	height: 20px;
	z-index: 9999;
	cursor: pointer;
}

#language {
	position: fixed;
	right: 30px;
	top: 60px;
	width: 30px;
	text-align: center;
	transition: all 0.3s;
	z-index: 8888;
	cursor: pointer;
}

#language:hover {
	color: orange;
}

/* ------------------------------------------- */
/* Menu List */
/* ------------------------------------------- */
#nav-contents {
	position: fixed;
	min-width: 400px;
	width: 30%;
	right: 0px;
	top: -100%;
	z-index: 9999;
	padding: 100px 0px;
    transition: all 0.3s ease-in-out;
	color: rgb(20,20,20);
	background-color: white;
	/* background-color: rgb(20,20,20); */
	/* border: 1px solid red; */
}

#nav-contents.active {
	top: 0px;
}

#nav-contents > li {
	display: block;
	width: 100%;
	margin: auto;
	cursor: pointer;
    transition: all 0.1s ease-in-out;
}

#nav-contents > li:hover {
	/* background-color: rgb(40,40,40); */
	background-color: rgb(220,220,220);
}

#nav-contents > li > span {
	display: block;
	width: 80%;
	margin: auto auto;
	padding: 20px 0px;
	text-align: left;
    transition: all 0.1s ease-in-out;
	border-bottom: 1px solid rgb(93,93,93);
}

#nav-ticket {
	position: fixed;
	width: 300px;
	text-align: center;
	right: 0px;
	bottom: 0px;
	/* background-color: rgba(60,60,60); */
	background-color: rgb(93,93,93);
	color: white;
	z-index: 9999;
	opacity: 0;	/* MUScrollIndicator will show it when scrolling. */
}

#nav-ticket a {
	display: inline-block;
	width: 100%;
	height: 100%;
	padding: 10px;
	transition: color 0.3s ease-in-out;
}

#nav-ticket a:hover {
	color: orange;
}

/* ------------------------------------------- */
/* Title */
/* ------------------------------------------- */
header {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 30px;
}

header h1 {
	display: inline-block;
	width: 400px;
	height: 70px;
	vertical-align: text-top;
}

header h2 {
	display: inline-block;
	height: 70px;
	vertical-align: text-top;
}
header h1 img,
header h2 img {
	display: inline-block;
	height: 100%;
}

/* ------------------------------------------- */
/* Catalogue */
/* ------------------------------------------- */
main > section {
	padding: 0px 60px;
	margin-bottom: 150px;
}

/* Catalogue Image */
#catalogue_cover {
	display: flex;
	justify-content: center;
	align-items: start;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 50px;
}
#catalogue_cover figure {
	width: 600px;
	text-align: center;
}
#catalogue_cover figure img {
	width: 100%;
	object-fit: contain;
}
#catalogue_cover figcaption {
	width: 100%;
	text-align: right;
	font-size: 0.75em;
	line-height: 0.75em;
	color: gray;
}

/* Catalogue Info */
#catalogue_info {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 50px;
}
#catalogue_info > h2,
#catalogue_info > div {
	display: inline-block;
	width: 49%;
}
#catalogue_info h2 {
	display: inline-block;
}

/* Catalogue Description */
#catalogue_description {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 50px;
}
#catalogue_description > div {
	display: inline-block;
	width: 49%;
}
#catalogue_description > div:nth-of-type(1) > p {
	width: 95%;
}
#catalogue_description > div:nth-of-type(2) {
	font-size: 0.75em;
	line-height: 1.75em;
}

/* Catalogue Index  */
#catalogue_contents {
	display: inline-block;
	width: 50%;
	padding: 20px;
}

/* Catalogue Images  */
#catalogue_images {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 80px;
}
#catalogue_images img {
	width: 31%;
	border: 1px solid #AAAAAA;
}

/* ------------------------------------------- */
/* Goods */
/* ------------------------------------------- */
#goods {
	display: flex;
	justify-content: start;
	align-items: flex-start;
	margin-bottom: 50px;
}
#goods > h2 {
	width: 20%;
	font-size: 1.5em;
	font-weight: 400;
}
#goods > h2 > hr {
	width: 80%;
	margin-bottom: 10px;
}
#goods > div {
	width: 80%;
}
#goods figure {
	margin-bottom: 80px;
}
#goods figure:nth-of-type(1) img {
	width: 50%;
}
#goods figure:nth-of-type(2) img {
	width: 100%;
}
#goods figure figcaption {
	display: flex;
	justify-content: start;
	align-items: start;
	margin-top: 10px;
	line-height: 1.5em;
}
#goods figure figcaption > div:nth-of-type(1) {
	min-width: 200px;
	margin-right: 20px;
}
#goods figure figcaption > div:nth-of-type(1) > span:nth-of-type(2) {
	font-size: 0.75em;
}
a.storelink {
	text-decoration: underline;
}
a.storelink:hover {
	opacity: 0.5;
}

/* ------------------------------------------- */
/* shop */
/* ------------------------------------------- */
#shop {
	display: flex;
	justify-content: space-between;
	align-items: center;

	/* width: 1300px; */
	width: 100%;
	/* max-width: 1200px; */
	background-color:#EAEAEA;
	margin: auto;
	padding: 0px;
	margin-bottom: 50px;
}
#shop > div {
	width: 50%;
}
#shop > div:nth-child(1) img {
	width: 100%;
}
#shop > div:nth-child(2) > p {
	padding: 10px 80px;
	width: 100%;
	margin: auto;
	line-height: 1.7em;
	font-size: 0.85em;
}

#shop > div:nth-child(2) > p > a {
	text-decoration:underline;
}

/* ------------------------------------------- */
/* Footer */
/* ------------------------------------------- */
footer {
	position: relative;
	padding-top: 0px;
	/* background-color:#EAEAEA; */
}
footer img:hover {
	opacity: 0.7;
}

footer #sns img {
	height: 30px;
	margin-right: 30px;
	vertical-align: bottom;
	transition: opacity 0.3s;
}

footer #sns {
	position: absolute;
	right: 0px;
	bottom: 120px;
	padding: 30px 40px;
}

footer #artizone {
	font-size: 0.5em;
	line-height: 3em;
	padding: 30px 40px;
	padding-bottom: 0px;
}
footer #artizone img {
	width: 200px;
	transition: opacity 0.3s;
}

footer #notice {
	font-size: 0.8em;
	line-height: 1.8em;
	padding: 30px 40px;
}


