@charset "utf-8";
/* CSS Document */

/*共通*/

.l-wrapper {
	width:100%;
	padding:0 3%;
	max-width:calc( 1200px + 6% );
	margin:0 auto 0;
	position: relative;
	box-sizing: border-box;
}

/*メディアクエリ*/

/*二段階*/

@media screen and (min-width:961px) { /*PC*/
}
@media screen and (max-width:960px) { /*MB*/
}

/*三段階*/

@media screen and (min-width:1201px) { /*PC-LARGE*/
}
@media screen and (max-width:1200px) { /*PC-MIDDLE*/
}
@media screen and (max-width:960px) { /*MB*/
}

/*レイアウト全体*/

body {
	text-align:center;
	min-height: 100vh;
	font-size: 1.3rem;
	color:rgba(50,50,50,1.00);
	font-family: YakuHanMPs, "Noto Serif JP", serif;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	word-wrap: break-word;
	background-color:#f6f6f6;


#l-Wrap {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	position: relative;
	width:100%;
}

/*グランドフォント*/

p, a, span, em, i, h1, h2, h3, h4, h5, h6, dt, dd, blockquote {
	transform: rotate(0.03deg);
	font-weight: 400;
	font-optical-sizing: auto;
	font-style: normal;
}

a {
	text-decoration: none;
	transition: all 0.3s;
}

a:hover {
	text-decoration: underline;
}

/* 固定背景用 */

.l-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	clip-path: inset(0);
}

.l-bg01 {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	width: 100vw;
	height:100vh;
	background: url("../img/bg_spec.avif") center top no-repeat;
	background-size: cover;
	z-index: -1;
}

.l-bg02 {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	width: 100vw;
	height:100vh;
	background: url("../img/bg_gallery.avif") center top no-repeat;
	background-size: cover;
	z-index: -1;
}

.l-bg03 {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	width: 100vw;
	height:100vh;
	background: url("../img/bg_about.avif") center top no-repeat;
	background-size: cover;
	z-index: -1;
}

.l-bg04 {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	width: 100vw;
	height:100vh;
	background: url("../img/bg_grad.avif") center top no-repeat;
	background-size: cover;
	z-index: -1;
}

.l-bg05 {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	width: 100vw;
	height:100vh;
	background: url("../img/bg_story.avif") center top no-repeat;
	background-size: cover;
	z-index: -1;
}

.l-bg06 {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	width: 100vw;
	height:100vh;
	background: url("../img/bg_movie.avif") center top no-repeat;
	background-size: cover;
	z-index: -1;
}

/*ヘッダー*/

header {
	display:none;
	opacity:0;
	visibility: hidden;
}

/*メニュー*/

@media screen and (min-width:1101px) { /*PC*/
	#l-Menu {
		position: sticky;
		top:0;
		z-index:200;
		background-color:#fff;
		box-shadow: 0 0 10px rgba(0,0,0,0.5);
	}
}
@media screen and (max-width:1100px) { /*MB*/
	#l-Menu {
	}
}


/*メインビジュアル*/


#l-Mainvisual {
	width:100%;
	position: relative;
	background-size: cover;
	z-index:1;
}

@media screen and (min-width:961px) { /*PC*/
	#l-Mainvisual {
		background:url("../img/teaser_wide.avif") center top no-repeat;
		background-size:cover;
		width:100%;
		aspect-ratio:16 / 9;
	}
}
@media screen and (max-width:960px) { /*MB*/
	#l-Mainvisual {
		background:url("../img/teaser_mobile.avif") center top no-repeat;
		background-size:cover;
		width:100%;
		aspect-ratio:2 / 3;
	}
}

/* 配信 */

#l-Stream {
	position:relative;
	width:100%;
	box-sizing:border-box;
	z-index:1;
	padding:0 0 60px;
}

/* アバウト */

#l-About {
	position:relative;
	width:100%;
	box-sizing:border-box;
	z-index:1;
}

/* ムービー */

#l-Movie {
	position:relative;
	width:100%;
	box-sizing:border-box;
	z-index:1;
	padding:60px 0 60px;
}

/* ストーリー */

#l-Story {
	position:relative;
	width:100%;
	box-sizing:border-box;
	padding:60px 0;
	z-index:1;
}

/* キャラクター */

#l-Character {
	position:relative;
	width:100%;
	box-sizing:border-box;
	padding:0 0 60px;
	z-index:1;
}

/* ギャラリー */

#l-Gallery {
	position:relative;
	width:100%;
	box-sizing:border-box;
	padding:60px 0;
	z-index:1;
}

/* スペック */

#l-Spec {
	position:relative;
	width:100%;
	box-sizing:border-box;
	padding:60px 0;
	z-index:1;
}

/*フッター*/

footer {
	position:relative;
	padding:72px 0;
	background-color:#062856;
}