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

/*ヘッダー*/

.p-menu-wrap {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	
	align-items: center;
}

@media screen and (min-width:961px) { /*PC*/
	.p-menu-wrap {
		height: 80px;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-menu-wrap {
		height: 60px;
	}
}

.p-menu-left {
	display: flex;
	justify-content: flex-start;
	gap:24px;
}

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

.p-logo {
	width: 200px;
}

@media screen and (min-width:961px) { /*PC*/
	.p-header-inner {
		width:100%;
		height: 80px;
	}
	.nav{
		width:100%;
		max-width: 1100px;
		margin:0 auto;
		display: block!important;
	}
	.nav ul {
		display: flex;
		justify-content: space-between;
	}
	.nav ul li {
		width: 120px;
		box-sizing: border-box;
		border-left:1px solid rgba(255,255,255,0.2);
	}
	.nav ul li:last-child {
		border-right:1px solid rgba(255,255,255,0.2);
	}
	.nav ul li a {
		display: block;
		width:100px;
		height: 80px;
		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:#cb4354;
		transition: all 0.3s;
	}
	.nav ul li a:hover:after {
		width:100%;
		left:0;
	}
	.p-menu-01 a {background:url("../img/menu_01.webp") center top no-repeat;}
	.p-menu-02 a {background:url("../img/menu_02.webp") center top no-repeat;}
	.p-menu-03 a {background:url("../img/menu_03.webp") center top no-repeat;}
	.p-menu-04 a {background:url("../img/menu_04.webp") center top no-repeat;}
	.p-menu-05 a {background:url("../img/menu_05.webp") center 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(0,0,0,0.4);
		z-index:1000;
	}

	.p-header-inner{
		width: 100%;
		height: 60px;
		position:fixed;
		top: 0;
		left: 0;
		z-index: 1000;
		/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#6d0290+0,4b1c87+100 */
		background: linear-gradient(to bottom,  #6d0290 0%,#4b1c87 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	}
	.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: linear-gradient(to bottom,  #6d0290 0%,#4b1c87 100%);
		border-bottom: 1px solid #949494;
		text-align: left;
		text-indent: 12px;
	}
	.nav a{
		color: #fff;
		display: block;
		height: 50px;
		line-height: 50px;
		font-size:2rem;
		font-family: 'M PLUS Rounded 1c', sans-serif;
		transform: rotate(0.03deg);
		font-weight: 700!important;
	}
	.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;
		/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#6d0290+0,4b1c87+100 */
		background: linear-gradient(to bottom,  #6d0290 0%,#4b1c87 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	}
	.p-header-sp-nav:before {
		content: "";
		display: block;
		width:50px;
		height:60px;
		/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#6d0290+0,4b1c87+100 */
		background: linear-gradient(to bottom,  #6d0290 0%,#4b1c87 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		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-mainvisual {
	width: 100%;
	max-width: 1100px;
	aspect-ratio:11 / 6;
	border-radius: 10px;
	overflow: hidden;
	margin: 0 auto;
	background-color: #fff;
	border: 3px solid #6d0290;
	box-sizing: border-box;
}

/*トピックス*/

ul.p-topics {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap:25px;
	flex-wrap: wrap;
}

ul.p-topics li {
	border-radius: 5px;
	overflow: hidden;
	background-color: #000000;
	box-sizing: border-box;
	border: 3px solid #6d0290;
}

@media screen and (min-width:729px) { /*PC*/
	ul.p-topics li {
		width: calc((100% - 25px) / 2);
	}
}
@media screen and (max-width:728px) { /*MB*/
	ul.p-topics li {
		width: 100%;
	}
}

/*バナーエリア*/

ul.p-banner {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap:20px;
	flex-wrap: wrap;
}

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



/*プロダクトリスト*/



@media screen and (min-width:961px) { /*PC*/
	.p-head {
		width: 100%;
		margin: 0 auto 60px;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-head {
		width: 100%;
		margin: 0 auto 32px;
	}
}

.p-product-wrap {
	display: flex;
	justify-content: flex-start;
	gap:24px;
	flex-wrap: wrap;
}

.p-product-box {
	box-sizing: border-box;
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	
}

@media screen and (min-width:961px) { /*PC*/
	.p-product-box {
		width: calc((100% - 24px) / 2);
		padding: 24px;
		gap:24px;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-product-box {
		width: 100%;
		padding: 16px;
		gap:12px;
	}
}

.p-poison {
	background-color: #601986;
}

.p-ex {
	background-color: #E05DA6;
}

.p-product-left {
	width: calc((100% - 24px) / 2);
}

.p-product-right {
	width: calc((100% - 24px) / 2);
	text-align: left;
	position: relative;
}

@media screen and (min-width:961px) { /*PC*/
	.p-product-left {
		width: calc((100% - 24px) / 2);
	}

	.p-product-right {
		width: calc((100% - 24px) / 2);
		text-align: left;
		position: relative;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-product-left {
		width: 100%;
	}
	.p-product-left img {
		width: 75%;
	}

	.p-product-right {
		width: 100%;
		text-align: left;
		position: relative;
	}
}

.p-p-bland {
	background: #000;
	color: #fff;
	box-sizing: border-box;
	padding: 4px;
	font-size: 1.5rem;
	margin-bottom: 12px;
}

.p-p-bland p {
	font-weight: 700;
}

.p-p-title {
	margin-bottom: 36px;
}

.p-p-title p {
	color: #fff;
	font-size: 2rem;
	line-height: 1.4;
	font-weight: 700;
}

@media screen and (min-width:961px) { /*PC*/
	.p-p-title p {
		margin-bottom: 12px;
	}
}
@media screen and (max-width:960px) { /*MB*/
}

.p-p-link ul {
	display: flex;
	justify-content: flex-start;
	gap:8px;
	flex-wrap: wrap;
}

.p-p-link ul li {
	width: 100%;
	position: relative;
}

.p-p-link ul li a {
	display: flex;
	width: 100%;
	color: #fff;
	box-sizing: border-box;
	padding: 8px;
	font-size: 1.5rem;
	font-weight: 900;
	transition: all 0.3s;
	position: relative;
}

.p-p-link ul li a:before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 17px solid #ffffff;
	border-right: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto 0;
	transition: all 0.3s;
}

.p-p-link01 a {background-color: #223d59;}
.p-p-link02 a {background-color: #00a0e9;}
.p-p-link03 a {background-color: #22ac38;}

.p-p-link ul li a:hover {
	text-decoration: none;
	background-color: red;
}

/*ファンサイト*/

.p-fansite {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	background-color: #fff;
}

/*フッター*/

.p-foot-img {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap:24px;
	margin-bottom: 60px;
}

.p-foot-copyright {
	font-family: "Noto Serif JP", serif;  font-optical-sizing: auto;  font-weight: 400;  font-style: normal;font-size: 1.4rem;
	color:#fff;
	line-height: 1.7;
}

/*音楽配信*/

.p-music-wrap {
	margin:0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap:32px;
}

.p-musicbox {
	background:#E05DA6;
	border-radius: 15px;
	padding:20px;
	box-sizing: border-box;
	position: relative;
}

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

.p-musicbox a {
	display: flex;
	gap:24px;
	text-decoration: none;
	color:#ffffff;
	transition: all 0.3s;
}

.p-musicbox a:hover {
	opacity: 0.6;
	text-decoration: none;
}

.p-m-img {
	width:50%;
	max-width:200px;
	position: relative;
}

.p-m-img img {
	width:100%;
}

.p-m-title {
	max-width: 50%;
	display: flex;
	justify-content: left;
	align-items: left;
	align-items: center;
	font-style: normal;
	font-weight: 800;
	font-size:2rem;
	text-align: left;
	line-height: 2;
}

.p-contact-area {
	background:#262626;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 24px;
	display: flex;
	gap:36px;
	flex-direction: column;
}

.p-contact-area h3 {
	font-size: 2.8rem;
	font-weight: 900;
	font-family: "Noto Serif JP", serif; 
	font-optical-sizing: auto;
	transform: rotate(0.03deg);
	background-color: #601986;
	box-sizing: border-box;
	padding: 8px;
	border-radius: 5px;
	color: #fff;
}

.p-contact-area h4 {
	font-size: 2rem;
	font-weight: 700;
	font-family: "Noto Serif JP", serif; 
	font-optical-sizing: auto;
	transform: rotate(0.03deg);
	background-color: #818181;
	box-sizing: border-box;
	padding: 8px;
	border-bottom: 1px solid #fff;
	color: #fff;
}

.p-contact-area p {
	color: #fff;
	font-size: 1.7rem;
	line-height: 1.7;
	text-align: left;
}

.p-contact-area a {
	width: 80%;
	margin: 0 auto;
	font-size: 2.8rem;
	font-weight: 700;
	font-family: "Noto Serif JP", serif; 
	font-optical-sizing: auto;
	line-height: 1.7;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,e5e5e5+100;White+3D */
	background: linear-gradient(to bottom,  #ffffff 0%,#e5e5e5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	border-radius: 10px;
	box-sizing: border-box;
	padding: 12px;
	color: #601986;
	border: 1px solid #fff;
	box-shadow: 0 0 0 5px #B5B5B5;
	transition: all 0.3s;
}

.p-contact-area a:hover {
	opacity: 0.6;
	text-decoration: none;
}