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

/* 汎用 */

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

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

.p-bonus-link {
	width:100%;
	max-width:960px;
	margin:0 auto;
}

a.p-linkbt {
	display:block;
	width:90%;
	margin:0 auto;
	box-sizing:border-box;
	border-radius:10px;
	padding:16px;
	box-shadow: 0px 0px 0px 5px #ffdddd;
	font-size:2.8rem;
	font-weight:700;
	color:#fff;
	border:3px solid #000000;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ff005a+1,ae003a+100 */
background: linear-gradient(to bottom,  #ff005a 1%,#ae003a 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

a:hover.p-linkbt {
	text-decoration:none;
}

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

@media screen and (min-width:961px) { /*PC*/
	.p-mv {
		width:100%;
		aspect-ratio:16 / 9;
		background: url("../img/mv_wide.avif") center center no-repeat;
		background-size:cover;
		z-index:1;
		}
}
@media screen and (max-width:960px) { /*MB*/
	.p-mv {
		width:100%;
		aspect-ratio:1 / 2;
		background: url("../img/mv_mobile.avif") center center no-repeat;
		background-size:cover;
		z-index:1;
		}
}

.p-bt-preorder {
	position:fixed;
	left:0;
	bottom:100px;
	z-index:50;
	width:10%;
	max-width:60px;
}

.p-bt-preorder a {
	display:block;
	width:100%;
	max-width:60px;
	aspect-ratio:60 / 240;
	background:url("../img/bt_yoyaku.avif") center top repeat;
	background-size:cover;
	z-index:50;
}

.p-bt-x {
	position:fixed;
	right:0;
	bottom:100px;
	z-index:50;
	width:10%;
	display:flex;
	justify-content: flex-end;
	max-width:61px;
}

.p-bt-x a {
	display:block;
	width:100%;
	max-width:61px;
	aspect-ratio:61 / 60;
	background:url("../img/bt_x.avif") center top repeat;
	background-size:cover;
	z-index:50;
}

.p-bt-top {
	position:fixed;
	right:0;
	bottom:180px;
	z-index:50;
	width:10%;
	display:flex;
	justify-content: flex-end;
	max-width:61px;
}

.p-bt-top a {
	display:block;
	width:100%;
	max-width:61px;
	aspect-ratio:61 / 60;
	background:url("../img/bt_up.avif") center top repeat;
	background-size:cover;
	z-index:50;
}

/*PC用メニュー*/

.p-pc-menu {
	width: 100%;
	height: 100px;
	background:url("../img/menu_bg.avif") center top repeat;
	box-shadow: 0 5px 15px rgba(0,0,0,0.25);
	position:relative;
	z-index:10;
}

.p-pc-nav {
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 1100px;
	padding: 0 20px;
	margin: 0 auto;
	height: 100px;
	align-content: center;
	align-items: center;
}

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

ul.p-mainmenu li {
	display:block;
	width:100px;
	height:100px;
	position: relative;
	overflow:hidden;
	z-index:18;
}

ul.p-mainmenu li a {
	display:block;
	width:100px;
	height:100px;
	text-indent:-9999px;
	overflow: hidden;
}

.p-menu-01 a {background:url("../img/menu01.avif") center top no-repeat;}
.p-menu-02 a {background:url("../img/menu02.avif") center top no-repeat;}
.p-menu-03 a {background:url("../img/menu03.avif") center top no-repeat;}
.p-menu-04 a {background:url("../img/menu04.avif") center top no-repeat;}
.p-menu-05 a {background:url("../img/menu05.avif") center top no-repeat;}
.p-menu-06 a {background:url("../img/menu06.avif") center top no-repeat;}
.p-menu-07 a {background:url("../img/menu07.avif") center top no-repeat;}
.p-menu-08 a {background:url("../img/menu08.avif") center top no-repeat;}

ul.p-mainmenu li a:after {
	content: "";
	display:block;
	position: absolute;
	width:100px;
	height:3px;
	bottom:5px;
	left:0;
	background-color:#ffffff;
	opacity: 0;
	transition: all 0.3s;
}



ul.p-mainmenu li a:hover:after, ul.p-mainmenu li a:hover:before {
	opacity:1;
}


/*ハンバーガーメニュー*/

/*====== 上に消えるアニメ ======*/
#header.UpMove, #HbButton.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 1;
	  transform: translateY(0);
  }
  to {
    opacity: 0;
	  transform: translateY(-100px);
  }
}

/*====== 下に消えるアニメ ======*/
#header.DownMove, #HbButton.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*外側クローズ用*/
.p-main{
}
.p-main-cover{
	position: fixed;
	width: 100%;
	visibility: hidden;
	z-index: -1;  
	-webkit-transition: .2s;
	transition: .2s;
}
.p-main-cover.active{
	width: 100%;
	height:100%;
	visibility: visible;
	background:rgba(8,26,69,0.75);
	z-index:1000;
}

.p-header-inner{
	width: 0;
	position:fixed;
	top: 0;
	right: 0;
	z-index: 1000;
	background-color: #081a45;
	-webkit-transition: .2s;
	transition: .2s;
}
.p-header-inner.active{
	width: 100%;
}
	.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-menu li{
		background: #081a45;
		border-bottom: 1px solid #BDB4A2;
		text-align: center;
	}
	.nav-menu a{
		color: #ffffff;
		display: block;
		height: 50px;
		line-height: 50px;
		font-size:2rem;
		font-weight: 700;
		font-style: normal;
	}
	.nav-menu a span{
		margin-left:12px;
		font-weight:400!important;
		font-size:80%;
	}
	.nav-menu 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:#081a45;
	}
	.p-header-sp-nav:before {
		content: "";
		display: block;
		width:50px;
		height:60px;
		background-color:#081a45;
		z-index: -1;
		position: absolute;
		right:-10px;
		top:-17px;
	}
	.p-header-sp-nav span {
		display: block;
		position: absolute;
		width: 30px;
		height: 2px;
		background: #ffffff;
		-webkit-transition: .2s;
		transition: .2s;
	}
	.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-story-wrap {
	width:100%;
	position:relative;
	display:flex;
}

.p-story-left {
	width:100%;
	max-width:753px;
	position:relative;
	background: url("../img/story_left.avif") center center no-repeat;
	background-size:cover;
	aspect-ratio:753 / 626;
}

@media screen and (min-width:961px) { /*PC*/
	.p-story-wrap {
		align-items:center;
		background: url("../img/story_right.avif") right center no-repeat;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-story-wrap {
		background: url("../img/story_right.avif") right bottom no-repeat;
		padding-bottom:100%;
		background-size:contain;
	}
}



/*キャラクター*/

@media screen and (min-width:961px) { /*PC*/
	.p-chara-body-01 {
		background:url("../img/chara_body01.avif") center center no-repeat;
		width:100%;
		position: relative;
		height:900px;
	}

	.p-chara-body-02 {
		background:url("../img/chara_body02.avif") center center no-repeat;
		width:100%;
		position: relative;
		height:900px;
	}

	.swiper, .swiper2 {
		width: 100%;
		height: 900px;
	}

	.swiper-thumb, .swiper-thumb2 {
		position: absolute;
		left:50%;
		margin-left:-480px;
		bottom:50px;
		z-index:75;
	}

	.thumb-wrapper {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width:80px!important;
		height:350px!important;
		gap:10px 0;
	}

	.slide-select {
		width:80px!important;
		height:80px!important;
		overflow: hidden;
		cursor: pointer;
		box-shadow: 0 0 10px rgba(0,0,0,0.3);
		background-color:#fff;
	}

	.slide-select img {
		transition: all 0.3s;
	}

	.slide-select img:hover {
		opacity: 0.6;
	}

	.p-chara-wrap {
		width:100%;
		position: relative;
	}

	.stand-slide {
		width:100%;
		height:900px;
		display: block;
	}

	.stand01 {	background:url("../img/chara_slide01.avif") center top no-repeat;height:900px!important;}
	.stand02 {	background:url("../img/chara_slide02.avif") center top no-repeat;height:900px!important;}
	.stand03 {	background:url("../img/chara_slide03.avif") center top no-repeat;height:900px!important;}
	.stand04 {	background:url("../img/chara_slide04.avif") center top no-repeat;height:900px!important;}
	.stand05 {	background:url("../img/chara_slide05.avif") center top no-repeat;height:900px!important;}
	.stand06 {	background:url("../img/chara_slide06.avif") center top no-repeat;height:900px!important;}
	.stand07 {	background:url("../img/chara_slide07.avif") center top no-repeat;height:900px!important;}

	.p-chara-voice {
		height:80px;
		position: absolute;
		left:50%;
		margin-left:-32px;
		bottom:40px;
		z-index: 75;
		border-radius: 20px;
		box-sizing: border-box;
		text-align: left;
		display: flex;
		align-items:center;
		gap:32px;
		padding:0 32px;
	}
	.p-voice-bt {
		display: flex;
		gap:10px;
	}
	.p-voice-bt li {
		width:40px;
		height:40px;
		overflow: hidden;
	}
	.p-voice-bt li a {
		display: block;
		width:40px;
		height:40px;
		overflow: hidden;
		transition: all 0.3s;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-chara-body-01 {
		width:100%;
		position: relative;
		aspect-ratio: 100 / 175;
	}

	.p-chara-body-02 {
		width:100%;
		position: relative;
		aspect-ratio: 100 / 175;
	}

	.swiper, .swiper2 {
		width: 100%;
		aspect-ratio: 100 / 175;
	}

	.swiper-thumb, .swiper-thumb2 {
		position: relative;
		z-index:75;
	}

	.thumb-wrapper {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		width:100%!important;
		height:80px!important;
		gap:10px!important;
		background-color:#000;
		padding:10px 0;
		margin:0 auto;
	}

	.slide-select {
		width:80px!important;
		height:80px!important;
		overflow: hidden;
		cursor: pointer;
		box-shadow: 0 0 10px rgba(0,0,0,0.3);
		background-color:#fff;
	}

	.slide-select img {
		transition: all 0.3s;
	}

	.slide-select img:hover {
		opacity: 0.6;
	}

	.p-chara-wrap {
		width:100%;
		position: relative;
	}

	.stand-slide {
		width:100%;
		aspect-ratio: 100 / 175;
		display: block;
	}

	.stand01 {	background:url("../img/mb_chara01.avif") center top no-repeat;background-size: cover;}
	.stand02 {	background:url("../img/mb_chara02.avif") center top no-repeat;background-size: cover;}
	.stand03 {	background:url("../img/mb_chara03.avif") center top no-repeat;background-size: cover;}
	.stand04 {	background:url("../img/mb_chara04.avif") center top no-repeat;background-size: cover;}
	.stand05 {	background:url("../img/mb_chara05.avif") center top no-repeat;background-size: cover;}
	.stand06 {	background:url("../img/mb_chara06.avif") center top no-repeat;background-size: cover;}
	.stand07 {	background:url("../img/mb_chara07.avif") center top no-repeat;background-size: cover;}

	.p-chara-voice {
		height:80px;
		position: relative;
		z-index: 75;
		box-sizing: border-box;
		text-align: left;
		display: flex;
		justify-content: center;
		gap:10px;
		padding:10px;
		background-color:#000;
	}
	.p-voice-bt {
		display: flex;
		gap:10px;
	}
	.p-voice-bt li {
		width:40px;
		height:40px;
		overflow: hidden;
	}
	.p-voice-bt li a {
		display: block;
		width:40px;
		height:40px;
		overflow: hidden;
		transition: all 0.3s;
	}
}

/* ギャラリー */

.p-gallery-wrap ul {
	width:100%;
	display:flex;
	flex-wrap:wrap;
	gap:20px;
}

.p-gallery-wrap ul li {
	background-color:#fff;
}

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



/* コンセプト */

.p-concept-wrap {
	display:flex;
	flex-direction:column;
	gap:48px;
}

.p-concept-wrap img {
	width:100%;
	max-width:960px;
	margin:0 auto;
}

/* ショップガイド */

.p-shopguide-pillow {
	width:100%;
	max-width: 1200px;
	margin:0 auto 48px;
	overflow: hidden;
	box-sizing: border-box;
	padding:25px;
	display: flex;
	flex-wrap: wrap;
	gap:26px;
	justify-content: space-between;
	position: relative;
	background:url("../img/bg_chara01.avif") center top no-repeat;
	background-size:cover;
}

.p-pillow-wrap {
	display: flex;
	gap:26px;
	flex-wrap: wrap;
}

.p-pillow-thum {
	display: block;
}

.p-pillow-thum ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap:28px 26px;
}

.p-pillow-thum ul li {
	background-color:#fff;
	position: relative;
}

@media screen and (min-width:1301px) {
	.p-pillow-wrap {
		width:496px;
	}
	.p-pillow-wrap img {
		width:calc((100% - 26px) / 2);
	}
	.p-pillow-thum {
		width:626px;
	}
	.p-pillow-thum ul li {
		width:calc((100% - 26px) / 2);
	}
	.p-pitext {
		width:100%!important;
	}
} /*PC*/
@media screen and (max-width:1300px) {
	.p-pillow-wrap {
		width:calc(44% - 13px);
	}
	.p-pillow-wrap img {
		width:calc((100% - 26px) / 2);
	}
	.p-pillow-thum {
		width:calc(56% - 13px);
	}
	.p-pillow-thum ul li {
		width:calc((100% - 26px) / 2);
	}
	.p-pitext {
		width:100%!important;
	}
} /*MB*/
@media screen and (max-width:960px) {
	.p-pillow-wrap {
		width:100%;
	}
	.p-pillow-wrap img {
		width:calc((100% - 26px) / 2);
	}
	.p-pillow-thum {
		width:100%;
	}
	.p-pillow-thum ul li {
		width:calc((100% - 26px) / 2);
	}
	.p-pillow-thum ul li a img {
		width:100%;
	}
	.p-pitext {
		width:100%!important;
	}
} /*MB*/

/* スペシャル */

.p-special-wrap li {
	color:#fff;
	font-size:1.6rem;
	font-weight:700;
}

.p-special-wrap li a {
	font-size:1.6rem;
	font-weight:700;
}

.p-special-wrap li a img {
	margin-bottom:12px;
}

.p-material-header-wrap {
	width:100%;
	max-width:720px;
	margin:0 auto 60px;
	position:relative;
	aspect-ratio:3 / 1;
}

.p-icon-wrap ul {
	width:100%;
	max-width: 1100px;
	margin:0 auto;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap:24px;
}

.p-icon-wrap li {
	width:calc((100% - 97px) / 5);
	position: relative;
	aspect-ratio:1 / 1;
	border-radius: 50%;
	overflow: hidden;
}


/*スタッフ*/

.p-staff-body {
	background-color:rgba(83,83,83,0.90);
	border-radius: 20px;
	box-sizing: border-box;
	margin:0 auto;
	width:100%;
	padding:24px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: relative;
}

.p-staff-box {
	width: 50%;
	text-align: left;
	position: relative;
}

@media screen and (min-width:1201px) {
	.p-staff-box {
		width: 50%;
	}
} /*PC*/
@media screen and (max-width:1200px) {
	.p-staff-box {
		width: 100%;
	}
} /*MB*/

.p-staff-box dl {
	display: flex;
	justify-content: flex-start;
}

.p-staff-box dt {
	font-size: 1.5rem;
	transform: rotate(0.03deg);
	font-weight: 700!important;
	width:20%;
	box-sizing: border-box;
	padding:4px 4px;
	color:#dbb5ff;
	line-height: 1.7;
}

.p-staff-box dd {
	font-size: 1.5rem;
	transform: rotate(0.03deg);
	font-weight: 400!important;
	width:80%;
	box-sizing: border-box;
	padding:4px 4px;
	color:#ffffff;
	line-height: 1.7;
}

.p-staff-box dd span {
	font-size: 80%;
}

.p-kanowaku {
	width:100%;
	max-width:960px;
	margin:0 auto 48px;
}

ul.p-foot-menu {
	display:flex;
	flex-wrap:wrap;
	gap:20px;
	justify-content: center;
	margin:0 auto 16px;
}

/* フッター */

.p-foot-logo {
	margin:0 auto 24px;
}

.p-copyright p {
	color:#fff;
	font-size:1.5rem;
	font-weight:700!important;
}