@charset "utf-8";
/* common */
/* ------------------------------------------- */
*,*::before,*::after { margin: 0; padding: 0; }
html,main {
	font-size:16px;
	font-family: 'Noto Serif JP', sans-serif, serif!important;
	font-optical-sizing: auto!important;
	scroll-behavior: smooth!important;
}
body { margin: 0; min-height: 100%; background: #000; }
body::before {
	content: "";
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: calc( 84px * 2.5 );
	background: url("../images/common/bg.png") repeat center top / 50px auto;
	pointer-events: none;
	z-index: -1;
}
img { width:100%; display: block; }
ul { list-style: none; }
/* SP */
/*
@media (max-width: 375px) {
	html { font-size:2.2vw; }
}
*/

/* h */
/* ------------------------------------------- */
h1 { font-size: 34px; }
h2 { font-size: 30px; font-weight: 500; }
h3 { font-size: 25px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }

/* common text */
/* ------------------------------------------- */
p.lead { margin:1.35em auto; font-size:17px; font-weight: 700; }
p.text { font-size:14px; line-height: 1.85; font-weight: 500; }

/* base layout */
/* ------------------------------------------- */
.bodyWrapper { position: relative; }
main {
	display: block;
	max-width: 440px;
	padding:0;
	margin: 0 auto;
	background: white;
}
main > section {
	padding:0 0 50px;
}
section > .inner {
	margin-left:45px;
	margin-right:45px;
}
section.side_menu {
	position: fixed;
	top: 0;
	width: calc(((100% - 440px) / 2) - 0px );
	color:#fff;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
section.side_menu .side_inner {
	padding-bottom:15vh;
}
section.left { left: 0; font-size: 3em; border-right: 1px solid white; }
section.right { right: 0; border-left: 1px solid white; }
@media (max-width: 880px) {
	section.side_menu { border: none; }
}
/* 左右のメニューは、それぞれ横幅200以下で非表示にする場合 */
/*  ex 440 + 200 x 2 = 775 */
@media (max-width: 880px) {
	.side_inner {
		display: none;
	}
}

/* anchor */
/* ------------------------------------------- */
.anchor {
	padding-top:50px;
	margin-top:-50px;
}

/* ------------------------------------------- */
/* スクロールインfade */
.fadein {
	opacity: 0;
	transition: opacity 1.6s ease, transform 1.6s ease;
	will-change: opacity, transform;
}
.fadein-top {
	transform: translateY(-20px);
}
.fadein-bottom {
	transform: translateY(20px);
}
.fadein-left {
	transform: translateX(-20px);
}
.fadein-right {
	transform: translateX(20px);
}
.fadein.show {
	opacity: 1;
	transform: translate(0, 0);
}

/* header */
/* ------------------------------------------- */
header {
	position: sticky;
	top: 0;
	background: white;
	max-width: 440px;
	display: block;
	margin: 0 auto;
	z-index: 5;
	height:50px;
}
header .inner {
	font-size:26.5px;
	text-align: center;
	display: block;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}
header .burgerMenu {
	position: absolute;
	width: 16px;
	height: 15px;
	top: 50%;
	right: 18px;
	transform: translateY(-50%);
	display: none;
	flex-direction: column;
	cursor: pointer;
	justify-content: space-between;
}
/* 左右のメニューは、それぞれ横幅200以下で非表示にする場合 */
/*  ex 375 + 200 x 2 = 775 */
@media (max-width: 880px) {
	header .burgerMenu {
		display: flex;
	}
}


header .burgerMenu span {
	width:100%;
	height:2px;
	background:#000;
	display:inline-block;
}


/* side menu */
/* ------------------------------------------- */
ul.menu {
	display: flex;
	flex-direction: column;
	justify-content: start;
	align-items: start;
	margin: 0 2em;
	gap: 25px;
}
ul.menu li {}
ul.menu li.cart{
	margin-top:15px;
}
ul.menu li.cart,
ul.menu li.mypage {
	position:relative;
	font-size:13px;
	display:flex;
	justify-content: center;
	align-items: center;
	gap:8px;
}
ul.menu li.cart::before{
	content: "";
	width: 17px;
	height: 16px;
	display: inline-block;
	background: url(../images/common/cart.png);
	background-repeat: repeat;
	background-size: auto;
	background-size: contain;
	background-repeat: no-repeat;
	margin-top: 1px;
}
ul.menu li.mypage::before {
	content: "";
	width: 17px;
	height: 16px;
	display: inline-block;
	background: url(../images/common/mypage.png);
	background-repeat: repeat;
	background-size: auto;
	background-size: contain;
	background-repeat: no-repeat;
	margin-top: 1px;
}

ul.menu li a {
	color: #fff;
	text-decoration: none;
	word-break: keep-all;
}

/* title */
/* ------------------------------------------- */
.contentTtl {
	font-family: 'Noto Serif JP', sans-serif, serif;
	margin:0em 0 3px;
	text-align:center;
	line-height: 1.3;
}
.contentTtl.left {
	text-align:left;
}
.subTtl {
	text-align:center;
}
.subTtl h5 {
	font-size:15px;
}

/* more */
/* ------------------------------------------- */
.more_btn {
	letter-spacing: 0.1em;
	font-size:15px;
	font-weight: 500;
	padding: 0 1.5em 0.25em 0.2em;
	border-bottom: 1px solid #000;
	display: inline-block;
	position:relative;
}
.more_btn::after {
	content: "";
	width: 12px;
	height: 8px;
	position: absolute;
	display: block;
	background: url(../images/common/more_arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	top: 37%;
	right: 2px;
	transform: rotate(180deg);
}
.more_btn.open::after {
	transform: rotate(0deg);
}
.more_area {
	margin:1.35em auto 40px;
	display: none;
	overflow: hidden;
}
.more_area.open {
	display: block;
}

.more_link { display: inline-block; }
.more_link a {
	letter-spacing: 0.1em;
	font-weight: 500;
	padding: 0 1.5em 0.25em 0.2em;
	border-bottom: 1px solid #000;
	display: inline-block;
	text-decoration: none;
	color: #000;
	position: relative;
}
.more_link a::after {
	content: "";
	width: 12px;
	height: 8px;
	position: absolute;
	display: block;
	background: url(../images/common/more_arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	top: 34%;
	right: 2px;
	transform: rotate(90deg);
}


/* link_btn */
/* ------------------------------------------- */
.link_btn {
	background: #000;
}
.link_btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	position: relative;
	font-size: 15px;
	color: #fff;
	font-weight: 500;
	padding: 15px 0px;
	width: 100%;
	text-align: center;
	font-family:"MS PGothic","Hiragino Sans",sans-serif;
}
.link_btn a span {
	padding-right: 20px;
}
.link_btn a::after {
	content: "";
	width: 10px;
	height: 13px;
	position: absolute;
	display: block;
	background: url(../images/common/link_arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	top: 51%;
	right: 12px;
	transform: translateY(-50%);
}


/* ul.item_list */
/* ------------------------------------------- */
ul.item_list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
}
ul.item_list > li {}
ul.item_list > li.yoko {
	grid-column: 1 / -1;
}


/* modal */
/* ------------------------------------------- */
.modal-image {
	position:relative;
	cursor:pointer;
	overflow:hidden;
}
.modal-image::after {
	content: "";
	width: 20px;
	height: 20px;
	position: absolute;
	display: block;
	background: url(../images/common/icon_zoom.png);
	background-size: contain;
	background-repeat: no-repeat;
	bottom: 0;
	right: 0;
}

.modal-image img {
	height:auto;
	transition: transform .6s ease;
	transform-origin: center center;
	transform: translateZ(0);
	backface-visibility: hidden;
}
.modal-image:hover img {
	transform: translateZ(0) scale(1.25);
}

.modal-content {
	display:none;
}

.modal-close {
	position: absolute;
	top: -30px;
	right: 2px;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

#modal {
	position: fixed;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity .5s;
	z-index: 20;
	will-change: opacity;
}
#modal.active {
	opacity: 1;
	pointer-events: auto;
}
#modal .modal-wrapper{
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	display: flex;
	justify-content: center;
	align-items: center;
}

#modal .modal-wrapper .modal-inner {
	max-width: 300px;
	width: 100%;
	margin: 0 auto;
	background: #e2e1e0;
	position:relative;
}

#modal .modal-wrapper .modal-inner .content .name {
	font-size: 12px;
	padding: 15px 15px 3px;
}
#modal .modal-wrapper .modal-inner .content .price {
	font-size: 12px;
	padding: 0 15px 0;
}
#modal .modal-wrapper .modal-inner .content .products {
	display: flex;
	flex-direction: column;
	gap: 1px;
	margin: 10px 0 15px;
}
#modal .modal-wrapper .modal-inner .content .products li {
	text-align: center;
}
#modal .modal-wrapper .modal-inner .content .products li a {
	font-size: 15px;
	text-decoration: none;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px 0;
}
#modal .modal-wrapper .modal-inner .content .products li a::after {
	content: "";
	width: 8px;
	height: 6px;
	display: inline-block;
	background: url(../images/common/more_arrow.png);
	background-size: contain;
	background-repeat: no-repeat;
	transform: rotate(90deg);
	margin-top: 3px;
	margin-left: 6px;
}


/* burger menu */
/* ------------------------------------------- */
#burgerMenuModal {
	position: fixed;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity .5s;
	z-index: 20;
	will-change: opacity;
}
#burgerMenuModal.active {
	opacity: 1;
	pointer-events: auto;
}
#burgerMenuModal .wrapper{
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	display: flex;
	justify-content: center;
}
#burgerMenuModal .wrapper .inner {
	max-width: 440px;
	width: 100%;
	margin: 0 auto;
	background: #000;
	position:relative;
}
#burgerMenuModal .wrapper .inner .close {
	width: 16px;
	height: 16px;
	cursor: pointer;
	margin: 16px 20px 60px auto;
}
#burgerMenuModal .wrapper .inner ul.menu {
	margin: 0 55px;
}

/* about */
/* ------------------------------------------- */
section.about {
	text-align: center;
}
section.about .lead {
	margin:1.35em auto;
}
section.about .image {
	margin-top: 30px;
	position: relative;
}
section.about .image .char {
	position: absolute;
	top: 0;
	left: 0;
}

/* lineup */
/* ------------------------------------------- */
section.lineup {}
section.lineup ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
}
section.lineup ul li {}
section.lineup ul li a {
	text-decoration: none;
}
section.lineup ul li a .lineup_image {
	position: relative;
	overflow: hidden;
}
section.lineup ul li a .lineup_image > img {}
section.lineup ul li a .lineup_image > .icon {}
section.lineup ul li a .lineup_image > .icon > img {
	position: absolute;
	top: 0px;
	left: 0;
}
section.lineup ul li a .text {
	background: #000;
	color: #fff;
	text-align: center;
	overflow: hidden;
	height: 60px;
}
section.lineup ul li a .text.comingsoon {
	background: #333;
}
section.lineup ul li a .text .ttl {
	font-size: 18px;
	padding: 5px 0 0 0;
}
section.lineup ul li a .text .subttl {
	font-size: 10px;
	padding: 0px 0 0 0px;
	margin-top: -2px;
}



/* new items */
/* ------------------------------------------- */
section.newitem { text-align: center; }
section.newitem .contentTtl {
	margin-left: 20px;
	/*text-align: left;*/
}
section.newitem .slide{ margin-bottom:20px; background: #fff; }
section.newitem .slide .swiper-wrapper {}
section.newitem .slide .swiper-slide {}
section.newitem .slide .swiper-slide a { display:block; }
section.newitem .slide .swiper-slide .name {
	margin: 12px 30px;
	font-size:15px;
	font-weight: 700;
	text-align: center;
}
section.newitem .slide .swiper-slide .copy {
	font-size: 12px;
}
.swiper-button-next, .swiper-button-prev {
	top: 33%;
	width: 30px;
	height: 30px;
	mix-blend-mode: exclusion;
}
.swiper-button-prev::after,
.swiper-button-next::after {
	content: "";
	position: absolute;
	background-repeat: no-repeat;
	background-size: contain;
	height: 30px;
	width: 30px;
	margin: auto;
	background-image: url(../images/common/slide_arrow.png);
}
.swiper-button-prev::after {}
.swiper-button-next::after {
	transform: rotate(180deg);
}


/* infomation */
/* ------------------------------------------- */
section.infomation {
	background: #eeeeee;
	padding-top: 50px;
}
section.infomation ul {
	margin: 20px 0 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
section.infomation ul li {
	padding-bottom: 20px;
	border-bottom: 1px solid #ccc;
}
section.infomation ul li .date {
	color: #aaaaaa;
	font-size: 12px;
	margin-bottom: 5px;
}
section.infomation ul li .text {
	font-size: 12px;
	font-weight: 500;
}
section.infomation ul li a {
	color: #000;
	text-underline-offset: 3px;
}


/* collection */
/* ------------------------------------------- */
section.collection {}
section.collection .contentTtl {}
section.collection .contentTtl h2 {
	font-size:25px;
}
section.collection .subTtl {
	margin-bottom:15px;
}


/* craft */
/* ------------------------------------------- */
section.craft {}
section.craft .contentTtl {
	margin-bottom:0;
}
section.craft .contentTtl h2 {
	font-size:25px;
}
section.craft .subTtl {
	margin-bottom:15px;
	margin-top: 5px;
}


/* season */
/* ------------------------------------------- */
.season .contentTtl {
	margin-bottom:10px;
}
.season_btn_area {
	display: flex;
	flex-direction: column;
	gap: 2px;
	width: 80%;
	margin: 0 auto;
}

.season_list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
}
.season_list li {
	background: #eeeeee;
	padding: 30px 18px;
}
.season_list li .season_ttl {
	font-size: 17px;
	font-weight: 600;
	text-align: center;
}
.season_list li .season_sub_ttl{
	font-size: 10px;
	text-align: center;
	margin-bottom: 15px;
}
.season_list li a {}


/* story */
/* ------------------------------------------- */
section.story {
	background: #000;
	color: #fff;
	padding-top: 50px;
	text-align: center;
	border-bottom: 1px solid #ccc;
}

section.story .part .inner {
	margin: 0 20px;
}

section.story p.lead {
	font-size: 20px;
	margin-top:35px;
	margin-bottom:14px;
}

section.story p.subLead {
	font-size: 10px;
}

section.story .sv {
	margin:22px auto 12px;
}

section.story p.text {
	text-align: left;
}

.separate {
	display:block;
	width:65px;
	height:1px;
	background:#ccc;
	margin:50px auto;
}


/* movie */
/* ------------------------------------------- */
section.movie {
	background: #2c2c2c;
	color: #fff;
	padding-top: 50px;
	text-align: center;
	border-bottom: 1px solid #ccc;
}

section.movie .swiper-button-next,section.movie .swiper-button-prev {
	top: 50%;
}

/* shop */
/* ------------------------------------------- */
section.shop {
	background: #000;
	padding-top: 45px;
	padding-bottom: 0px;
}
section.shop .inner {
	padding-bottom: 50px;
}
section.shop .contentTtl {
	color: #fff;
	text-align: left;
}
section.shop .contentTtl h5 { font-size: 15px; }
section.shop ul {
	margin: 25px auto 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
section.shop ul li {
	color: #fff;
	font-size: 12px;
	display: flex;
	gap: 10px;
}
section.shop ul li .date {}
section.shop ul li .text {
	font-weight: 500;
}
section.shop ul li .text a {
	color: #fff;
	text-underline-offset: 3px;
}

/* footer */
/* ------------------------------------------- */
footer {
	background: #000;
	color: #fff;
	max-width: 440px;
	margin: 0 auto;
}
footer .inner {
	border-top:1px solid #999999;
	margin-left: 45px;
	margin-right: 45px;
	padding: 30px 0;
}
footer .inner ul {
	margin: 0px auto 60px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
footer .inner ul li {
	color: #fff;
	font-size: 12px;
	display: flex;
	gap: 10px;
}
footer .inner ul li .date {}
footer .inner ul li .text {
	font-weight: 500;
}
footer .inner ul li .text a {
	color: #fff;
	text-decoration: none;
}
footer .inner .copy {
	display: flex;
	justify-content: space-between;
}
footer .inner .sns {
	width: 20px;
	height: 21px;
	padding-bottom: 6px;
}
footer .inner .c {
	font-size: 8px;
	display: flex;
	align-items: end;
}

/* 既存打ち消し */
/* ------------------------------------------- */
main.fs-l-main {
	margin: unset;
	padding: unset;
	max-width: unset;
	display: unset;
	flex-wrap: unset;
	background: unset;
}
.fs-l-pageMain {
	max-width: unset;
	width: unset;
	padding:0;
}


