@charset "utf-8";
body,div,dl,dt,dd,ul,ol,li,p,h1,h2,h3,h4,h5,h6,th,td,pre,code,blockquote,form,fieldset,legend,input,textarea,figcaption,figure{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{font-size:100%}legend{color:#FFF}hr{display:none}img{vertical-align:bottom}select,input,button,textarea{font-size:99%}table{font-size:inherit;font:100%;border-collapse:collapse;border-spacing:0}pre,code,kbd,samp,tt{font-family:monospace;font-size:108%;line-height:100%}.hd{display:block;width:0;height:0;overflow:hidden}.cf:before,.cf:after{content:"";display:table}.cf:after{clear:both}.cf{zoom:1}article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section,main{display:block}*{margin:0;padding:0;box-sizing:border-box;max-height:999999px;outline:none;}*:focus{outline: none;}button{background-color:transparent;border:none;cursor:pointer;outline:none;padding:0;}
/*-----------------------------------------------
 * Bace
 * Modal
 * Header
 * Parts
-------------------------------------------------*/
:root{
	/* font */
	--main-font-family: 'Noto Sans JP', "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;

	/* SIZE */
	--vw-min: 1200;

	/* COLOR */
	--THEME-COLOR: #000;
	--TEXT-COLOR: #fff;

	/* EASING */
	--easing-outquart: cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width:768px){
	:root{
		--vw-min: 750;
	}
}


/*-----------------------------------------------
 * Bace
-------------------------------------------------*/
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 100;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 200;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 300;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 400;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Bold");
	font-weight: bold;
}
body{
	-webkit-text-size-adjust: 100%;
	background-color: var(--THEME-COLOR);
	color: var(--TEXT-COLOR);
	font-family: var(--main-font-family);
	font-feature-settings: "palt";
	font-size: min(calc(16 / var(--vw-min) * 100vw), 16px);
	font-weight: normal;
	letter-spacing: 0.07em;
	line-height: 1.8;
	word-wrap: break-word;
}
.pc{ display: block; }
.sp{ display: none; }
a{ color: var(--TEXT-COLOR); }
a:hover{ text-decoration: none; }
.ah { transition: opacity .3s ease; }
.ah:hover { opacity: .7; }
::selection{
	background: #6ccfee;
	color: #fff;
}
::-moz-selection{
	background: #6ccfee;
	color:#fff;
}
@media screen and (max-width:768px){ 
	html{ 
		font-size: 62.5%;
	}
	body{
		font-size: 10px; 
		font-size: 1rem;
		font-size: calc(24 / var(--vw-min) * 100vw);
		min-width: 320px;
	}
	.sp{ display: block; }
	.pc{ display: none; }
	.ah:hover { opacity: 1; }
}

#fullWrap{
	width: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	position: relative;
	display: flex;
	flex-direction: column;
}

.l-main{
	width: 100%;
	position: relative;
}

.l-mainContents{
	width: 100%;
	padding: 0;
	margin: 0 auto;
	position: relative;
}


/*-----------------------------------------------
 * Modal
-------------------------------------------------*/
/**
 * modalBox
 * 基盤のモーダル
 */
.modalBox{
	-webkit-overflow-scrolling: touch;
	background: rgba(0,0,0,100%);
	display: none;
	width: 100%;
	height: 100%;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.oneModal{
	display: none;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

/* oneModalIn */
.oneModalIn{
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	width: 100%;
	min-height: 100%;
	margin: 0 auto;
	position: relative;
}
.oneModalIn__cont{
	padding: 50px 0;
}
@media screen and (max-width:768px){
	.oneModalIn{
		min-width: 100%;
	}
	.oneModalIn__cont{
		width: 100%;
		padding: 30px 0;
	}
}

/**
 * closeBtn
 */
.closeBtn{
	position: fixed;
	top: 0;
	right: 0;
	display: block;
	width: min(calc(50 / var(--vw-min) * 100vw), 50px);
	height: min(calc(25 / var(--vw-min) * 100vw), 25px);
	margin-top: min(calc(30 / var(--vw-min) * 100vw), 30px);
	margin-right: min(calc(30 / var(--vw-min) * 100vw), 30px);
	z-index: 2;
}
.closeBtn a{
	display: block;
	background: url(../img/common/close-l.svg) no-repeat center / contain;
	width: 100%;
	height: 100%;
}
@media screen and (hover:hover) and (pointer: fine){
	.closeBtn a:before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 96%;
		height: 92%;
		margin: auto;
		background: url(../img/common/close.svg) no-repeat center / contain;
		opacity: 0;
		transition: opacity .3s ease;
	}
	.closeBtn a:hover::before{
		opacity: 1;
	}
}

/**
 * iframe
 */
/* common */
.commonIframe{
	width: 100%;
	height: 100%;
	display: block;
}

/* youtube */
.youtubeIframeWrap {
	width: 70%;
	max-width: 159.993vh;
	position: relative;
}
@media screen and (max-width:768px){
	.youtubeIframeWrap {
		width: 100%;
		max-width: 100%;
	}
}
.youtubeIframeWrap:before{
	content: "";
	display: block;
	padding-top: 56.25%;
	z-index: 0;
}
.youtubeIframe{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}


/*-----------------------------------------------
 * Header
-------------------------------------------------*/
.l-header {
	width: 100%;
	position: sticky;
	top: 0;
	z-index: 999;
}
.l-header__content {
	width: 100%;
	padding: min(calc(36 / var(--vw-min) * 100vw), 36px) calc(40 / var(--vw-min) * 100vw);
	margin: 0 auto;
	display: flex;
	align-items: center;
	position: relative;
	background-color: rgba(0,0,0,35%);
}
.l-header__content:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	z-index: -1;
}
@media screen and (max-width:768px){
	.l-header {
		top: 0;
	}
	.l-header__content{
		flex-direction: column;
		background-color: transparent;
	}
}

.l-header__logo {
	width: min(calc(228 / var(--vw-min) * 100vw), 228px);
	flex-shrink: 0;
}
.l-header__logo--link {
	width: 100%;
	display: block;
	text-decoration: none;
}
.l-header__logo img {
	width: 100%;
}
@media screen and (hover:hover) and (pointer: fine){
	.l-header__logo--link{
		transition: transform .25s ease;
	}
	.l-header__logo--link:hover{
		transform: scale(104%);
	}
}

@media screen and (max-width:768px){
	.l-header {
		background-color: transparent;
	}
	.l-header__content {
		padding: calc(24 / var(--vw-min) * 100vw) 0;
	}
	.l-header__logo {
		width: calc(232 / var(--vw-min) * 100vw);
		filter: drop-shadow(0 0 2px #000) drop-shadow(0 0 16px #000);
		position: relative;
		z-index: 2;
	}
}



/* inner */
@media screen and (min-width:769px){
	.l-header__inner{
		max-width: 100%;
		position: relative;
		margin-left: auto;
		padding-left: min(calc(80 / var(--vw-min) * 100vw), 80px);
	}
}
@media screen and (max-width:768px){
	.l-header__inner {
		-webkit-overflow-scrolling: touch;
		width: 100%;
		min-height: 100vh;
		/* min-height: 100dvh; */
		overflow: auto;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		opacity: 0;
		pointer-events: none;
		z-index: 1;
		transition: opacity .5s ease-in-out;
		overflow: auto;
		overscroll-behavior: contain;
	}
	.l-header__innerWrap{
		width: 100%;
		min-height: 100vh;
		display: flex;
		flex-direction: column;
		position: relative;
		padding: calc(136 / var(--vw-min) * 100vw) calc(64 / var(--vw-min) * 100vw);
	}
	.l-header.is-active .l-header__inner {
		opacity: 1;
		pointer-events: auto;
	}

	.l-header__innerWrap:before {
		content: "";
		background: rgba(0,0,0,100%);
		position: fixed;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		z-index: 0;
	}
}

/**
 * l-headerNav
 */
.l-headerNav {
	position: relative;
	z-index: 1;
}
.l-headerNavLists{
	display: flex;
	flex-wrap: wrap;
	row-gap: min(calc(20 / var(--vw-min) * 100vw), 20px);
	column-gap: min(calc(30 / var(--vw-min) * 100vw), 30px);
}
.l-headerNavList{
	height: min(calc(19 / var(--vw-min) * 100vw), 19px);
	line-height: 1;
}
.l-headerNavList__link {
	display: inline-block;
	height: 100%;
	text-decoration: none;
	position: relative;
	padding: min(calc(2 / var(--vw-min) * 100vw), 2px);
}
.l-headerNavList__link:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(#FFF, #FFF) right bottom / 0 100% no-repeat;
	transition: background-size 0.4s ease;
}
.l-headerNavList__img{
	display: inline-block;
	height: 100%;
	position: relative;
}
.l-headerNavList__img img{
	display: block;
	height: 100%;
}
.l-headerNavList__link[data-nav] .l-headerNavList__img:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	background: linear-gradient(#000, #000) right bottom / 0 100% no-repeat;
	transition: background-size 0.4s ease;
}

@media screen and (max-width:768px){
	.l-headerNavLists{
		flex-direction: column;
		gap: calc(32 / var(--vw-min) * 100vw);
	}
	.l-headerNavList{
		height: calc(72 / var(--vw-min) * 100vw);
	}
	.l-headerNavList__link {
		padding: calc(2 / var(--vw-min) * 100vw);
	}
}


.l-headerNavList__link[data-nav="news"] .l-headerNavList__img:after{
	-webkit-mask-image: url(../img/common/nav/nav_news.svg);
	mask-image: url(../img/common/nav/nav_news.svg);
}
.l-headerNavList__link[data-nav="introduction"] .l-headerNavList__img:after{
	-webkit-mask-image: url(../img/common/nav/nav_introduction.svg);
	mask-image: url(../img/common/nav/nav_introduction.svg);
}

.l-headerNavList__link[data-nav="goods"] .l-headerNavList__img:after{
	-webkit-mask-image: url(../img/common/nav/nav_goods.svg);
	mask-image: url(../img/common/nav/nav_goods.svg);
}
.l-headerNavList__link[data-nav="comics"] .l-headerNavList__img:after{
	-webkit-mask-image: url(../img/common/nav/nav_comics.svg);
	mask-image: url(../img/common/nav/nav_comics.svg);
}
.l-headerNavList__link[data-nav="movie"] .l-headerNavList__img:after{
	-webkit-mask-image: url(../img/common/nav/nav_movie.svg);
	mask-image: url(../img/common/nav/nav_movie.svg);
}
.l-headerNavList__link[data-nav="x"] .l-headerNavList__img:after{
	-webkit-mask-image: url(../img/common/nav/nav_x.svg);
	mask-image: url(../img/common/nav/nav_x.svg);
}
.l-headerNavList__link[data-nav="portaltop"] .l-headerNavList__img:after{
	-webkit-mask-image: url(../img/common/nav/nav_portaltop.svg);
	mask-image: url(../img/common/nav/nav_portaltop.svg);
}

.l-headerNavList__link[data-nav="top"] .l-headerNavList__img:after{
	-webkit-mask-image: url(../img/common/nav/nav_top.svg);
	mask-image: url(../img/common/nav/nav_top.svg);
}
@media screen and (hover:hover) and (pointer: fine){
	.l-headerNavList__link:hover::before,
	.l-headerNavList__link:hover .l-headerNavList__img:after{
		background-size: 100% 100%;
		background-position: left bottom;
	}
}
.l-headerNavList__link.--is-current:before,
.l-headerNavList__link.--is-current .l-headerNavList__img:after{
	background-size: 100% 100%;
	background-position: left bottom;
}


/**
 * sp_headerShare
 */
.sp_l-header__shareListsWrap{
	padding-top: calc(48 / var(--vw-min) * 100vw);
	margin-top: auto;
	position: relative;
}
.sp_l-header__shareListsWrap .shareLists{
	justify-content: flex-start;
}

@media screen and (min-width:769px){
	.sp_l-header__shareListsWrap{
		display: none;
	}
}



/**
 * navBtn
 */
@media screen and (max-width:768px){
	.header__navBtnWrap {
		width: calc(64 / var(--vw-min) * 100vw);
		height: calc(32 / var(--vw-min) * 100vw);
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		margin-top: auto;
		margin-right: calc(24 / var(--vw-min) * 100vw);
		margin-bottom: auto;
		z-index: 2;
		filter: drop-shadow(0 0 12px #000) drop-shadow(0 0 16px #000);
	}
	.header__navBtn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		position: relative;
	}
	.header__navBtn__lineWrap {
		width: calc(48 / var(--vw-min) * 100vw);
		height: calc(12 / var(--vw-min) * 100vw);
		position: relative;
	}
	.header__navBtn--line {
		background-color: #fff;
		display: block;
		width: 100%;
		height: 1px;
		margin: auto;
		position: absolute;
		transition: .3s ease;
	}
	.header__navBtn--line:nth-child(1) {
		top: 0;
		bottom: calc(100% - 1px);
	}
	.header__navBtn--line:nth-child(2) {
		top: calc(50% - 1px);
		bottom: calc(50% - 1px);
	}
	.header__navBtn--line:nth-child(3) {
		top: calc(100% - 1px);
		bottom: 0;
	}

	.header__navBtn.is-active .header__navBtn--line:nth-child(1) {
		top: calc(50% - 1px);
		bottom: calc(50% - 1px);
		transform: rotate(15deg);
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(2) {
		opacity: 0;
		transform: translateX(50%);
	}
	.header__navBtn.is-active .header__navBtn--line:nth-child(3) {
		top: calc(50% - 1px);
		bottom: calc(50% - 1px);
		transform: rotate(-15deg);
	}
}


/*-----------------------------------------------
 * Parts
-------------------------------------------------*/

/**
 * shareLists
 */
.shareLists {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: min(calc(20 / var(--vw-min) * 100vw), 20px);
}
.shareLists__dt{
	width: min(calc(40 / var(--vw-min) * 100vw), 40px);
	line-height: 0;
}
.shareLists__dt img{
	width: 100%;
}
@media screen and (max-width:768px){
	.shareLists {
		gap: calc(36 / var(--vw-min) * 100vw);
	}
	.shareLists__dt{
		width: calc(48 / var(--vw-min) * 100vw);
	}
}

/* item */
.shareLists__item {
	width: min(calc(20 / var(--vw-min) * 100vw), 20px);
	height: min(calc(20 / var(--vw-min) * 100vw), 20px);
}
@media screen and (max-width:768px){
	.shareLists__item {
		width: calc(32 / var(--vw-min) * 100vw);
		height: calc(32 / var(--vw-min) * 100vw);
	}
}

/* link */
.shareLists__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
	text-decoration: none;
}
.shareLists__link:before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #FFF;
	display: block;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100%;
	mask-size: 100%;
}
@media screen and (hover:hover) and (pointer: fine){
	.shareLists__link{
		transition: transform .3s ease, opacity .3s ease;
	}
	.shareLists__link:hover {
		transform: scale(125%);
		opacity: 80%;
	}	
}


/* 各SNSパーツ */
.shareLists__item.is-twitter .shareLists__link:before {
	-webkit-mask-image: url(../img/common/icon_tw.svg);
	mask-image: url(../img/common/icon_tw.svg);
}
.shareLists__item.is-facebook .shareLists__link:before {
	-webkit-mask-image: url(../img/common/icon_fb.svg);
	mask-image: url(../img/common/icon_fb.svg);
}
.shareLists__item.is-line .shareLists__link:before {
	-webkit-mask-image: url(../img/common/icon_line.svg);
	mask-image: url(../img/common/icon_line.svg);
}




/**
 * contentBg
**/
.l-contentBg{
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--THEME-COLOR);
}
.l-contentBg__dots{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.l-contentBg__dots:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url(../img/common/bg/bg_dots.svg);
}

/**
 * ndImg
 **/
 .-ndlimg{
	-webkit-touch-callout: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-moz-touch-callout: none;
	touch-callout: none;
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	user-drag: none;
}



/*-----------------------------------------------
 * Footer
-------------------------------------------------*/
.l-footer{
	width: 100%;
	position: relative;
}
.l-footer__content{
	width: 100%;
	padding: min(calc(60 / var(--vw-min) * 100vw), 60px) calc(40 / var(--vw-min) * 100vw);
	margin: 0 auto;
	position: relative;
}


.l-footer__contatct--txt{
	color: #666;
	font-size: min(calc(12 / var(--vw-min) * 100vw), 12px);
	line-height: 1.6667;
	text-align: center;
}
.l-footer__contatct--linkBox{
	margin-top: min(calc(20 / var(--vw-min) * 100vw), 20px);
	text-align: center;
	font-size: min(calc(12 / var(--vw-min) * 100vw), 12px);
	line-height: 1;
}
.l-footer__contatct--link{
	display: inline-block;
	line-height: 1;
	text-decoration: none;
	position: relative;
	padding: min(calc(10 / var(--vw-min) * 100vw), 10px) min(calc(48 / var(--vw-min) * 100vw), 48px);
	min-width: min(calc(176 / var(--vw-min) * 100vw), 176px);
	text-align: center;
	color: #666;
	background-color: #000;
}
.l-footer__contatct--link_txt{
	position: relative;
}
.l-footer__contatct--link:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid #333;
}
@media screen and (hover:hover) and (pointer: fine){
	.l-footer__contatct--link:before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(#FFF, #FFF) right bottom / 0 100% no-repeat;
		transition: background-size 0.4s ease;
	}
	.l-footer__contatct--link:hover::before{
		background-size: 100% 100%;
		background-position: left bottom;
	}
}


.l-footer__bannerLists{
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: min(calc(24 / var(--vw-min) * 100vw), 24px);
}
.l-footer__bannerList{
	width: min(calc(200 / var(--vw-min) * 100vw), 200px);
}
.l-footer__bannerList--link{
	display: block;
	text-decoration: none;
}
.l-footer__bannerList img{
	width: 100%;
}

.l-footer__shareListsWrap{
	margin-top: min(calc(40 / var(--vw-min) * 100vw), 40px);
}

@media screen and (hover:hover) and (pointer: fine){
	.l-footer__bannerList--link{
		transition: transform .25s ease;
	}
	.l-footer__bannerList--link:hover{
		transform: scale(105%);
	}
}

.l-footer__copyright{
	margin-top: min(calc(40 / var(--vw-min) * 100vw), 40px);
	font-size: min(calc(10 / var(--vw-min) * 100vw), 10px);
	line-height: 1;
	text-align: center;
}

@media screen and (max-width:768px){
	.l-footer__content{
		padding: calc(80 / var(--vw-min) * 100vw) calc(24 / var(--vw-min) * 100vw);
	}
	.l-footer__contatct--txt{
		font-size: calc(18 / var(--vw-min) * 100vw);
	}
	.l-footer__contatct--linkBox{
		margin-top: calc(40 / var(--vw-min) * 100vw);
	}
	.l-footer__contatct--link{
		padding: calc(20 / var(--vw-min) * 100vw) calc(48 / var(--vw-min) * 100vw);
		min-width: calc(424 / var(--vw-min) * 100vw);
	}

	.l-footer__bannerLists{
		margin-top: calc(48 / var(--vw-min) * 100vw);
	}
	.l-footer__bannerLists{
		gap: calc(14 / var(--vw-min) * 100vw);
	}
	.l-footer__bannerList{
		width: calc(320 / var(--vw-min) * 100vw);
	}

	.l-footer__shareListsWrap{
		margin-top: calc(48 / var(--vw-min) * 100vw);
	}
	.l-footer__copyright{
		margin-top: calc(64 / var(--vw-min) * 100vw);
		font-size: calc(18 / var(--vw-min) * 100vw);
	}
}