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

@media screen and (min-width:961px) { /*PC*/
	.mbonly {
		display: none;
		visibility: hidden;
		opacity: 0;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.pconly {
		display: none;
		visibility: hidden;
		opacity: 0;
	}
}

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

.p-mv-header {
	background-color:rgba(255,255,255,0.7);
	width: 100%;
	height: 40px;
	position: absolute;
	left:0;
	top:0;
	z-index: 50;
}

.p-mv-header-wrap {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

@media screen and (min-width:961px) { /*PC*/
	.p-mv-header-title {
		background:url("../img/header.png") left center no-repeat;
		width: 361px;
		height: 40px;
	}
}

.p-mv-header-sns {
	width: 200px;
	display: flex;
	justify-content: flex-end;
	gap:20px;
	box-sizing: border-box;
	padding:10px 0;
}

@media screen and (min-width:961px) { /*PC*/
	.p-mainvisual {
		background:url("../img/mainvisual.png") center top no-repeat;
		box-sizing: border-box;
		background-size: cover;
		width: 100%;
		max-width: 1440px;
		aspect-ratio:4 / 3;
		margin: 0 auto;
		box-shadow: 0 0 30px rgba(255,255,255,0.8);
		position: relative;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-mainvisual {
		background:url("../img/mainvisual_mobile.png") center top no-repeat;
		aspect-ratio: 9 / 16;
		box-sizing: border-box;
		background-size: cover;
		width: 100%;
		margin: 0 auto;
		box-shadow: 0 0 30px rgba(255,255,255,0.8);
		position: relative;
	}
}



.p-mv-catch {
	background:url("../img/catch.png") center top no-repeat;
	background-size: cover;
	width: 100%;
	max-width: 742px;
	aspect-ratio:742 / 50;
	
}
@media screen and (min-width:742px) { /*PC*/
	.p-mv-catch {
		position: absolute;
		left:50%;
		margin-left:-371px;
		top:60px;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-mv-catch {
		position: absolute;
		left:0;
		top:60px;
	}
}

.p-mv-logo {
	background:url("../img/main_title.png") center top no-repeat;
	background-size: cover;
	width: 100%;
	max-width: 561px;
	aspect-ratio:561 / 340;
	
}

@media screen and (min-width:742px) { /*PC*/
	.p-mv-logo {
		position: absolute;
		left:50%;
		margin-left:-280px;
		bottom:40px;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-mv-logo {
		position: absolute;
		left:0;
		right:0;
		margin:0 auto;
		bottom:40px;
	}
}

/*コンテンツ*/

.p-head {
	margin:0 auto 60px;
}

/*メニュー*/

@media screen and (min-width:961px) { /*PC*/
	.p-header-inner {
		background:url("../img/menu_bg.png") left top repeat;
		width:100%;
		height: 100px;
	}
	.nav{
		width:100%;
		max-width: 1200px;
		margin:0 auto;
		display: block!important;
	}
	.nav ul {
		display: flex;
		justify-content: space-between;
	}
	.nav ul li {
		width: calc(100% / 8);
		box-sizing: border-box;
		display: flex;
		justify-content: space-between;
	}
	.nav ul li:before {
		content: "";
		display: block;
		width: 1px;
		height: 100px;
		background-color:#fff;
	}
	.nav ul li:last-child:after {
		content: "";
		display: block;
		width: 1px;
		height: 100px;
		background-color:#fff;
	}
	.nav ul li a {
		display: block;
		width:120px;
		height: 100px;
		text-indent: -9999px;
		overflow: hidden;
		position: relative;
		margin:0 auto;
	}
	.nav ul li a:after {
		content: "";
		display: block;
		width:0;
		position: absolute;
		left:50%;
		bottom:0px;
		height: 4px;
		background-color:yellow;
		transition: all 0.3s;
	}
	.nav ul li a:hover:after {
		width:100%;
		left:0;
	}
	.p-menu-01 a {background:url("../img/menu01.png") left top no-repeat;}
	.p-menu-02 a {background:url("../img/menu02.png") left top no-repeat;}
	.p-menu-03 a {background:url("../img/menu03.png") left top no-repeat;}
	.p-menu-04 a {background:url("../img/menu04.png") left top no-repeat;}
	.p-menu-05 a {background:url("../img/menu05.png") left top no-repeat;}
	.p-menu-06 a {background:url("../img/menu06.png") left top no-repeat;}
	.p-menu-07 a {background:url("../img/menu07.png") left top no-repeat;}
	.p-menu-08 a {background:url("../img/menu08.png") left top no-repeat;}
}
@media screen and (max-width:960px) { /*MB*/
	
/*外側クローズ用*/
	.p-main{
	}
	.p-main-cover{
		position: fixed;
		width: 100%;
		visibility: hidden;
		z-index: -1;  
		-webkit-transition: .3s;
		transition: .3s;
	}
	.p-main-cover.active{
		height:100%;
		visibility: visible;
		background:rgba(255,255,255,0.4);
		z-index:1000;
	}

	.p-header-inner{
		width: 100%;
		height: 60px;
		position:fixed;
		top: 0;
		left: 0;
		z-index: 1000;
		background:#f87ea7;
	}
	.p-header-wrap{
		position:relative;
		width: 100%;
		height: 60px;
	}
	/*nav=====*/
	.nav{
		display: none;
		position: relative;
		width: 100%;
		text-align: center;
		top: 0;
		left: 0;
		z-index: 950;
		padding-top:60px;
	}
	.nav li{
		background: rgba(248,126,167,0.8);
		border-bottom: 1px solid #F8ADC6;
		text-align: left;
		text-indent: 12px;
	}
	.nav a{
		color: #fff;
		display: block;
		height: 50px;
		line-height: 50px;
		font-size:2rem;
		font-family: 'Noto Serif JP', serif;
		transform: rotate(0.03deg);
		font-weight: 700!important;
	}
	.nav a em {
		font-style: normal;
		font-size: 80%;
	}
	.nav a:hover{
		text-decoration: none;
	}
	/*ナビボタン*/
	.p-header-sp-nav{
		width: 30px;
		height: 26px;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 10px;
		margin:auto;
		cursor: pointer;
		z-index: 1000;
		background:#f87ea7;
	}
	.p-header-sp-nav:before {
		content: "";
		display: block;
		width:50px;
		height:60px;
		background-color:#f87ea7;
		z-index: -1;
		position: absolute;
		right:-10px;
		top:-17px;
	}
	.p-header-sp-nav span {
		display: block;
		position: absolute;
		width: 30px;
		height: 2px;
		background: #fff;
		-webkit-transition: .3s;
		transition: .3s;
	}
	.p-header-sp-nav span:first-of-type {
		top: 0;
		bottom: auto;
		margin-bottom: 10px;
	}
	.p-header-sp-nav span:nth-of-type(2) {
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	.p-header-sp-nav span:last-of-type {
		bottom: 0;
		top: auto;
	}
	.p-header-sp-nav.active{
	}
	.p-header-sp-nav.active span:nth-of-type(2) {
		right: -60px;
		opacity: 0;
		visibility: hidden;
	}
	.p-header-sp-nav.active span:first-of-type{
		top: 0;
		bottom: 0;
		margin: auto;
		transform:rotate(45deg);
	}
	.p-header-sp-nav.active span:last-of-type{
		top: 0;
		bottom: 0;
		margin: auto;
		transform:rotate(-45deg);
	}
	
}

/*スペシャル*/

.p-topics {
	margin: 0 auto;
	position: relative;
}

.p-topics ul {
	display: flex;
	justify-content:center;
	flex-wrap: wrap;
	gap:24px;
	position: relative;
	width: 100%;
}

.p-topics ul li {
	background-color: #fff;
	box-shadow:0 0 15px rgba(235,109,154,0.3);
}

@media screen and (min-width:1104px) { /*PC*/
	a.p-topics-main {
		display: block;
		background: url("../topics/topics_large.png") left top no-repeat;
		width: 1104px;
		height: 180px;
	}
	a.p-topics-main2 {
		display: block;
		background: url("../topics/topics_large2.png") left top no-repeat;
		width: 1104px;
		height: 180px;
	}
	a.p-topics-main3 {
		display: block;
		background: url("../topics/topics_large3.png") left top no-repeat;
		width: 1104px;
		height: 180px;
	}
}
@media screen and (max-width:1103px) { /*MB*/
	.p-topics-large {
		width: 100%;
		max-width: 540px;
		background:#000;
	}
	a.p-topics-main {
		display: block;
		background: url("../topics/topics_short.png") left top no-repeat;
		background-size: cover;
		width: 100%;
		aspect-ratio : 54 / 18;
	}
	a.p-topics-main2 {
		display: block;
		background: url("../topics/topics_short2.png") left top no-repeat;
		background-size: cover;
		width: 100%;
		aspect-ratio : 54 / 18;
	}
	a.p-topics-main3 {
		display: block;
		background: url("../topics/topics_short3.png") left top no-repeat;
		background-size: cover;
		width: 100%;
		aspect-ratio : 54 / 18;
	}
}



/*アバウト*/

.p-about-wrap {
	margin:0 auto 60px;
}

.p-main-catch {
	margin:0 auto 60px;
}

.p-about-01 {
	margin:0 auto 40px;
}

.p-about-02 {
	margin:0 auto 40px;
}

.p-about-03 {
}

@media screen and (min-width:961px) { /*PC*/
	.p-about-intro {
		background:url("../img/introduction_body.png") center top no-repeat;
		width: 960px;
		height: 680px;
		margin:0 auto;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-about-intro {
		background:url("../img/introduction_body_mobile.png") center top no-repeat;
		width: 100%;
		aspect-ratio : 2 / 3;
		background-size: cover;
		margin:0 auto;
	}
}

/*キャラクター*/

.p-character-wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}

.p-character01 {
	display: flex;
	align-items: flex-end;
}

.p-character02 {
	display: flex;
	align-items: flex-end;
}
@media screen and (min-width:1921px) { /*PC*/
	.p-character01 {
		background:url("../img/character01.png") right top no-repeat;
		background-size: contain;
		width: 50%;
		height: 1300px;
		justify-content: flex-end;
	}
	.p-character02 {
		background:url("../img/character02.png") left top no-repeat;
		background-size: contain;
		width: 50%;
		height: 1300px;
		justify-content: flex-start;
	}
}
@media screen and (max-width:1920px) { /*PC*/
	.p-character01 {
		background:url("../img/character01.png") right top no-repeat;
		background-size: cover;
		width: 50%;
		height: 1300px;
		justify-content: flex-end;
	}
	.p-character02 {
		background:url("../img/character02.png") left top no-repeat;
		background-size: cover;
		width: 50%;
		height: 1300px;
		justify-content: flex-start;
	}
}
@media screen and (max-width:1024px) { /*MB*/
	.p-character01 {
		background:url("../img/character01.png") right top no-repeat;
		background-size: cover;
		width: 100%;
		height: auto!important;
		aspect-ratio:55 / 130;
		justify-content: center;
		margin-bottom:60px;
	}
	.p-character02 {
		background:url("../img/character02.png") left top no-repeat;
		background-size: cover;
		width: 100%;
		height: auto!important;
		aspect-ratio:55 / 130;
		justify-content: center;
	}
}

.p-chara-exp {
	width: 100%;
	
	box-sizing: border-box;
	
}
@media screen and (min-width:1025px) { /*PC*/
	.p-chara-exp {
		max-width: 550px;
		padding: 0 32px;
	}
}
@media screen and (max-width:1024px) { /*MB*/
	.p-chara-exp {
		padding:0 3%;
	}
}

.p-chara-exp ul {
	display: flex;
	justify-content: space-between;
}

@media screen and (max-width:1024px) { /*MB*/
	.p-chara-exp ul {
		padding:0 3%;
		gap:24px;
	}
}

/*キャスト*/



@media screen and (min-width:961px) { /*PC*/
	.p-cast-body {
		background:url("../img/cast_body.png") center center no-repeat;
		width: 989px;
		height:458px;
		margin:0 auto;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-cast-body {
		background:url("../img/cast_body_mobile.png") center center no-repeat;
		background-size:cover;
		width: 100%;
		aspect-ratio:1 / 1;
		margin:0 auto;
	}
}

/*ストーリー*/



@media screen and (min-width:961px) { /*PC*/
	.p-story-large {
		background:url("../img/story_large.png") center top no-repeat;
		width: 1042px;
		height: 128px;
		margin:0 auto 60px;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-story-large {
		background:url("../img/story_large_mobile.png") center top no-repeat;
		background-size: cover;
		width: 100%;
		aspect-ratio:960 / 338;
		margin:0 auto 60px;
	}
}

.p-story-main {
	background:url("../img/story_main.png") center top no-repeat;
	width: 100%;
	max-width: 700px;
	aspect-ratio:700 / 667 ;
	background-size: cover;
	margin:0 auto;
}

/*ワールドビュー*/

.p-worldview-wrap {
	margin:0 auto;
	width: 100%;
}

.p-worldview-wrap ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:32px;
}

@media screen and (min-width:961px) { /*PC*/
}
@media screen and (max-width:960px) { /*MB*/
	.p-worldview-wrap ul li {
		width:calc((100% - 32px) / 2);
	}
}

/*アウトライン*/

.p-outline-large {
	margin:0 auto 72px;
}

.p-outline-large ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:48px 48px;
}

@media screen and (min-width:961px) { /*PC*/
	.p-outline-large ul li {
		width: 35%;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-outline-large ul li {
		width: 100%;
	}
}

.p-outline-large ul li span {
	font-size: 1.6rem;
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 700;
	color:#3d3c68;
	margin-bottom: 12px;
	display: block;
}

.p-outline-large ul li p {
	font-size: 3.6rem;
	color:#68174a;
	font-weight: 700;
}

.p-outline-small {
	margin:0 auto 72px;
	width: 100%;
	max-width: 960px;
	display: flex;
	flex-direction: column;
	gap:20px;
}

.p-outline-small dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

@media screen and (max-width:960px) { /*MB*/
	.p-outline-small dl {
		flex-direction: column;
	}
}


.p-outline-small dl dt {
	font-size: 1.6rem;
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 700;
	color:#3d3c68;
	width: 150px;
	text-align: left;
	padding-bottom:18px;
}

.p-outline-small dl dd {
	color:#68174a;
	text-align: left;
	font-size: 1.6rem;
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 400;
	border-bottom: 1px dashed #C575A8;
	padding-bottom:18px;
}
@media screen and (min-width:961px) { /*PC*/
	.p-outline-small dl dd {
		width: calc(100% - 150px);
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-outline-small dl dd {
		width: 100%;
	}
}

.p-tracklist-head {
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 700;
	font-size: 2.5rem;
	color:#3d3c68;
	margin:0 auto 60px;
	border:2px solid #2e3f18;
	border-radius: 10px;
	width: 100%;
	max-width: 640px;
	box-sizing: border-box;
	padding:8px;
}

.p-tracklist {
	width: 100%;
	max-width: 960px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:24px;
	position: relative;
	margin:0 auto 60px;
}



.p-tracklist-list {
	
	text-align: left;
	display: flex;
	flex-direction: column;
	gap:12px;
}

@media screen and (min-width:961px) { /*PC*/
	.p-tracklist-jacket {
		width: 50%;
		max-width: 480px;
	}
	.p-tracklist-list {
		width: calc(50% - 24px);
		max-width: 480px;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-tracklist-jacket {
		width: 100%;
		margin-bottom: 24px;
	}
	.p-tracklist-list {
		width: 100%;
	}
}

.p-tracklist-list dl dt {
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 700;
	font-size: 1.5rem;
	color:#3d3c68;
	padding-bottom: 8px;
}

.p-tracklist-list dl dd {
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 400;
	font-size: 1.6rem;
	color:#68174a;
	border-bottom: 1px dashed #C575A8;
	padding-bottom: 8px;
}


/*フッター*/

.p-foot-logo {
	width: 100%;
	max-width: 250px;
	margin:0 auto 32px;
}

.p-foot-copyright {
	color: #68174a;
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 400;
	font-size: 1.5rem;
	margin-bottom:32px;
}

.p-foot-copyright p {
	font-weight: 700;
}

.p-foot-policy {
	color: #68174a;
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 1.6;
}

.p-shop-head {
	background-color: #68174a;
	color:#fff;
	width: 100%;
	max-width: 720px;
	border-radius: 10px;
	box-sizing: border-box;
	padding:8px;
	margin: 0 auto 32px;
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.6;
}

.p-shop-list ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	justify-content: center;
	gap:24px;
}

.p-shop-list ul li {
	width: 300px;
	position: relative;
}

.p-shop-list ul li a {
	display: block;
	border: 5px solid #68174a;
	background-color: #fff;
	color: #68174a;
	border-radius: 15px;
	font-size: 1.8rem;
	font-family: 'Noto Serif JP', serif;
	transform: rotate(0.03deg);
	font-weight: 700;
	box-sizing: border-box;
	padding: 16px 8px;
	transition: all 0.3s;
}

.p-shop-list ul li a:hover {
	text-decoration: none;
	border: 5px solid #68174a;
	background-color: #2e3f18;
	color: #ffffff;
}