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

/* 共通 */

.p-head {
	width:100%;
	margin:0 auto 72px;
}

.p-topics {
	width:100%;
	margin:0 auto 60px;
}

/* キービジュアル */

.p-kv {
	background:url("../img/kv.webp") center top no-repeat;
	background-size:cover;
	
	margin:0 auto;
}

@media screen and (min-width:961px) { /*PC*/
	.p-kv {
		width:100%;
		max-width:1920px;
		aspect-ratio:1920 / 1743;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-kv {
		width:100%;
		aspect-ratio:8 / 11;
	}
}

/*PC用メニュー*/

.p-pc-menu {
	width: 100%;
	height: 70px;
	background:transparent;
	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: 70px;
	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:70px;
	position: relative;
	overflow:hidden;
	z-index:18;
}

ul.p-mainmenu li a {
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	gap:4px;
	width:100%;
	height:70px;
	color:#ffffff;
	line-height:1;
	text-align:center;
	text-decoration:none;
}

ul.p-mainmenu li a .menu-main {
	display:block;
	font-size:16px;
	font-weight:700;
	line-height:1.2;
	white-space:nowrap;
}

ul.p-mainmenu li a .menu-sub {
	display:block;
	font-size:11px;
	font-weight:400;
	letter-spacing:0.08em;
	line-height:1.2;
	white-space:nowrap;
}

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

ul.p-mainmenu li a:before {
	content: "";
	display:block;
	position: absolute;
	width:100%;
	height:8px;
	top:0;
	left:0;
	background-color:#ffbf00;
	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-topics-wrap {
	width: 100%;
	margin: 0 auto 36px;
}

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

.p-topics-wrap ul li {
	background: linear-gradient(to bottom,  #ffffff 0%,#e9e9e9 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	padding: 12px;
}

@media screen and (min-width:961px) { /*PC*/
	.p-topics-wrap ul li {
		width: calc((100% - 16px) / 2);
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-topics-wrap ul li {
		width: 100%;
		max-width: 640px;
		margin: 0 auto;
	}
}

.p-information {
	background-color: #081a45;
	position: relative;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap:8px;
	height: 200px;
	overflow-y: scroll;
}

.p-info-wrap {
	background-color: #000313;
	position: relative;
	padding: 12px;
	display: flex;
	flex-direction: column;
	gap:8px;
	height: 200px;
	overflow-y: scroll;
}

.p-info-wrap dl {
	border-bottom: 1px solid #ffffff;
	display: flex;
	font-size: 1.6rem;
	padding-bottom: 8px;
}

.p-info-wrap dl dt {
	background-color: #008eff;
	padding: 4px 8px;
	min-width:120px;
	text-align:center;
	color:#fff;
}

.p-info-wrap dl dd {
	color: #fff;
	padding: 4px;
}

@media screen and (min-width:961px) { /*PC*/
}
@media screen and (max-width:960px) { /*MB*/
	.p-information dl {
		flex-direction: column;
		text-align: left;
	}
	.p-information dl dt {
		margin-bottom: 4px;
	}
}

/* ストーリー */

@media screen and (min-width:961px) { /*PC*/
	.p-story-body {
		background: url("../img/story_body.webp") left top no-repeat;
		width:100%;
		max-width:1080px;
		height:580px;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-story-body {
		display:none;
	}
}



/*キャラクター*/

.p-character-wrap {
	width: 100%;
	position: relative;
	box-sizing: border-box;
}

@media screen and (min-width:961px) { /*PC*/
	.p-chara-select {
		position: relative;
		z-index: 300;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-chara-select {
		position: relative;
		z-index: 300;
	}
}

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

@media screen and (min-width:961px) { /*PC*/
	.p-chara-select ul li {
		width:86px;
		max-width:86px;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-chara-select ul li {
		width:calc((100% - 80px) / 5);
		max-width:86px;
	}
}

.p-chara-select ul li a {
	position: relative;
	width: 100%;
}


@media screen and (min-width:961px) { /*PC*/
	.p-chara-body {
		position: relative;
		width: 100%;
		height: 1000px;
		margin: 0 auto;
	}

	.p-chara-single {
		width: 100%;
		height: 1000px;
	}
	#Chara01 {background:url("../img/chara/chara01.webp") center top no-repeat;}
	#Chara02 {background:url("../img/chara/chara02.webp") center top no-repeat;}
	#Chara03 {background:url("../img/chara/chara03.webp") center top no-repeat;}
	#Chara04 {background:url("../img/chara/chara04.webp") center top no-repeat;}
	#Chara05 {background:url("../img/chara/chara05.webp") center top no-repeat;}
	#Chara06 {background:url("../img/chara/chara06.webp") center top no-repeat;}
	#Chara07 {background:url("../img/chara/chara07.webp") center top no-repeat;}
	#Chara08 {background:url("../img/chara/chara08.webp") center top no-repeat;}
	#Chara09 {background:url("../img/chara/chara09.webp") center top no-repeat;}
	
	.p-chara-voice {
		position:absolute;
		z-index:50;
		top:251px;
		left:50%;
	}
	#Chara01 .p-chara-voice {margin-left:220px;}
	#Chara02 .p-chara-voice {margin-left:220px;}
	#Chara03 .p-chara-voice {margin-left:220px;}
	#Chara04 .p-chara-voice {margin-left:270px;}
	#Chara05 .p-chara-voice {margin-left:340px;}
	#Chara06 .p-chara-voice {margin-left:220px;}
	#Chara07 .p-chara-voice {margin-left:220px;}
	#Chara08 .p-chara-voice {margin-left:270px;}
	#Chara09 .p-chara-voice {margin-left:220px;}
	#Chara10 .p-chara-voice {margin-left:220px;}
	.p-voice-bt {
		width:500px;
		height:24px;
		display:flex;
		justify-content:flex-start;
		gap:8px;
	}
	.p-voice-bt li a {
		background-color:#ff356e;
		width:24px;
		height:24px;
		display:block;
		border-radius:12px;
		color:#fff;
		overflow:hidden;
		text-indent:-9999px;
		box-shadow: 2px 2px 0 #0a1946;
		transition:all 0.3s;
	}
	.p-voice-bt li a:hover {
		background-color:#ffbf01;
	}
	.p-voice-bt li a:after {
		position:absolute;
		top:0;
		left:0;
		content:"";
		display:block;
		width:24px;
		height:24px;
		background:url("../img/chara/voice.png") center top no-repeat;background-size: contain;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-chara-body {
		position: relative;
		width: 100%;
	}

	.p-chara-single {
		width: 100%;
		padding-top: 200%;
	}
	#Chara01 {background:url("../img/chara/mob_chara01.webp") center top no-repeat;background-size: contain;}
	#Chara02 {background:url("../img/chara/mob_chara02.webp") center top no-repeat;background-size: contain;}
	#Chara03 {background:url("../img/chara/mob_chara03.webp") center top no-repeat;background-size: contain;}
	#Chara04 {background:url("../img/chara/mob_chara04.webp") center top no-repeat;background-size: contain;}
	#Chara05 {background:url("../img/chara/mob_chara05.webp") center top no-repeat;background-size: contain;}
	#Chara06 {background:url("../img/chara/mob_chara06.webp") center top no-repeat;background-size: contain;}
	#Chara07 {background:url("../img/chara/mob_chara07.webp") center top no-repeat;background-size: contain;}
	#Chara08 {background:url("../img/chara/mob_chara08.webp") center top no-repeat;background-size: contain;}
	#Chara09 {background:url("../img/chara/mob_chara09.webp") center top no-repeat;background-size: contain;}
	.p-chara-voice {
		position:relative;
		z-index:50;
	}
	.p-voice-bt {
		width:100%;
		padding:5px 0;
		display:flex;
		justify-content:center;
		gap:12px;
		background-color:#0a1946;
	}
	.p-voice-bt:before {
		content:"VOICE";
		line-height:32px;
		font-size:1.9rem;
		font-weight:700;
		color:#ff356e;
		font-family: "Noto Sans SC", sans-serif;
		font-optical-sizing: auto;
		font-style: normal;
		transform: rotate(0.03deg);
	}
	.p-voice-bt li a {
		background-color:#ff356e;
		width:32px;
		height:32px;
		display:block;
		border-radius:16px;
		color:#fff;
		overflow:hidden;
		text-indent:-9999px;
		transition:all 0.3s;
	}
	.p-voice-bt li a:hover {
		background-color:#ffbf01;
	}
	.p-voice-bt li a:after {
		position:absolute;
		top:0;
		left:0;
		content:"";
		display:block;
		width:32px;
		height:32px;
		background:url("../img/chara/voice.png") center top no-repeat;background-size: contain;
	}
}

/*ギャラリー*/

.p-gallery-wrap {
	width: 100%;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#081a45+0,081a45+101&0+29,0+29,1+30,1+70,1+70,0+71 */
background: linear-gradient(to bottom,  rgba(8,26,69,0) 0%,rgba(8,26,69,0) 30%,rgba(8,26,69,1) 30%,rgba(8,26,69,1) 70%,rgba(8,26,69,0) 70%,rgba(8,26,69,0) 101%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

	position: relative;
	margin: 0 auto;
	box-sizing: border-box;
	margin-bottom: 32px;
}

.slider-gallery {
	width: 100%;
	max-width: 1100px;
	aspect-ratio:16 / 9;
	position: relative;
	margin:0 auto;
	background-color:#fff;
}

.p-gallery-single {
	width: 100%;
	max-width: 1100px;
	aspect-ratio:16 / 9;
	position: relative;
	z-index: 500!important;
	background-color: #081a45;
	padding-bottom:5px;
}

.p-gallery-select ul {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	gap:14px;
	flex-wrap: wrap;
}

.p-gallery-select ul li {
	background-color: #081a45;
	padding-bottom:5px;
}

@media screen and (min-width:961px) { /*PC*/
	.p-gallery-select ul li {
		width: calc((100% - 70px) / 6);
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-gallery-select ul li {
		width: calc((100% - 28px) / 3);
	}
}

.p-gallery-single span {
	display: block;
	width: 100%;
	max-width: 1100px;
	aspect-ratio:16 / 9;
}

.img01 {background: url("../img/gallery/gallery01.webp") left top no-repeat; background-size: cover;}
.img02 {background: url("../img/gallery/gallery02.webp") left top no-repeat; background-size: cover;}
.img03 {background: url("../img/gallery/gallery03.webp") left top no-repeat; background-size: cover;}
.img04 {background: url("../img/gallery/gallery04.webp") left top no-repeat; background-size: cover;}
.img05 {background: url("../img/gallery/gallery05.webp") left top no-repeat; background-size: cover;}
.img06 {background: url("../img/gallery/gallery06.webp") left top no-repeat; background-size: cover;}
.img07 {background: url("../img/gallery/gallery07.webp") left top no-repeat; background-size: cover;}
.img08 {background: url("../img/gallery/gallery08.webp") left top no-repeat; background-size: cover;}
.img09 {background: url("../img/gallery/gallery09.webp") left top no-repeat; background-size: cover;}
.img10 {background: url("../img/gallery/gallery10.webp") left top no-repeat; background-size: cover;}
.img11 {background: url("../img/gallery/gallery11.webp") left top no-repeat; background-size: cover;}
.img12 {background: url("../img/gallery/gallery12.webp") left top no-repeat; background-size: cover;}
.img13 {background: url("../img/gallery/gallery13.webp") left top no-repeat; background-size: cover;}
.img14 {background: url("../img/gallery/gallery14.webp") left top no-repeat; background-size: cover;}

/* 世界観 */

.p-world-wrap {
	margin:0 auto 80px;
}

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

.p-world-wrap ul li {
	width:min(500px, 100%);
	background-color:#fff;
	box-shadow: 0 7px 0 #008eff;
	overflow:hidden;
}

.p-world-button {
	position:relative;
	display:flex;
	justify-content:center;
	align-items:center;
	width:100%;
	aspect-ratio:500 / 60;
	border:0;
	background-color:#fff;
	background-position:center top;
	background-repeat:no-repeat;
	background-size:100% 100%;
	background-image:url("../img/world_thum01.png");
	color:#008eff;
	transition:all 0.3s;
}

.p-world-button::before {
	content:"";
	position:absolute;
	top:0;
	bottom:0;
	left:10%;
	right:10%;
	background:#fff;
}

.p-world-button-label {
	position:relative;
	z-index:1;
	font-size:2.4rem;
	font-weight:500;
	line-height:1.2;
	white-space:nowrap;
}

.p-world-button:hover,
.p-world-button:focus-visible {
	transform:translateX(7px);
}

.p-world-button:focus-visible {
	outline:3px solid #ff366d;
	outline-offset:-3px;
}

.p-world-modal {
	display:none;
	position:fixed;
	inset:0;
	z-index:9998;
}

.p-world-modal.is-open {
	display:block;
}

.p-world-modal-backdrop {
	position:absolute;
	inset:0;
	background:rgba(8,26,69,0.78);
}

.p-world-modal-dialog {
	position:relative;
	z-index:1;
	width:min(880px, calc(100% - 40px));
	max-height:calc(100vh - 80px);
	margin:40px auto;
	background:#fff;
	box-shadow:0 8px 30px rgba(0,0,0,0.35);
}

.p-world-modal-content {
	box-sizing:border-box;
	max-height:calc(100vh - 80px);
	overflow-y:auto;
	padding:56px 64px 48px;
	color:#081a45;
	text-align:left;
}

.p-world-modal-content h2 {
	margin:0 0 28px;
	padding-bottom:16px;
	border-bottom:2px solid #008eff;
	color:#008eff;
	font-size:3.2rem;
	font-weight:700;
	line-height:1.2;
}

.p-world-modal-content h3 {
	margin:28px 0 10px;
	color:#008eff;
	font-size:2rem;
	font-weight:700;
	line-height:1.4;
}

.p-world-modal-content p {
	margin:0 0 20px;
	font-size:1.7rem;
	line-height:2;
}

.p-world-modal-content p:last-child {
	margin-bottom:0;
}

.p-world-modal-close {
	position:absolute;
	top:12px;
	right:16px;
	z-index:2;
	width:36px;
	height:36px;
	border:0;
	color:#008eff;
	font-size:3.2rem;
	font-weight:300;
	line-height:1;
}

.p-world-modal-close:hover,
.p-world-modal-close:focus-visible {
	color:#ff366d;
}

body.world-modal-open {
	overflow:hidden;
}

@media screen and (max-width:960px) {
	.p-world-modal-dialog,
	.p-world-modal-content {
		max-height:calc(100vh - 40px);
	}

	.p-world-modal-dialog {
		width:calc(100% - 24px);
		margin:20px auto;
	}

	.p-world-modal-content {
		padding:52px 24px 32px;
	}

	.p-world-modal-content h2 {
		font-size:2.6rem;
	}

	.p-world-modal-content h3 {
		font-size:1.9rem;
	}

	.p-world-modal-content p {
		font-size:1.6rem;
		line-height:1.9;
	}
}

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

.p-faq-box {
	width:100%;
	max-width:960px;
	margin:0 auto;
	background-color:#fff;
}

.p-faq-box dl dt {
	background-color:#008eff;
	color:#fff;
	box-sizing:border-box;
	padding:12px;
	font-size:1.5rem;
	line-height:1.5;
}

.p-faq-box dl dd {
	color:#008eff;
	background-color:#fff;
	box-sizing:border-box;
	padding:12px;
	font-size:1.5rem;
	line-height:1.5;
}

/* 特典 */

.p-gouka-image {
	width: 100%;
	max-width: 960px;
	margin: 0 auto 36px;
	overflow: hidden;
	border:1px solid #008eff;
	box-shadow: 0 5px 0 #008eff;
}

.p-shop-gouka {
	width: 100%;
	max-width: 960px;
	margin:0 auto 72px;
	background-color: #ffffff;
	border:1px solid #008eff;
	padding: 32px;
	box-sizing: border-box;
	position:relative;
	box-shadow: 0 5px 0 #008eff;
}

.p-shop-gouka ul {
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	gap:8px;
}

.p-shop-gouka ul li {
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
	text-align: left;
	font-family: "Noto Sans SC", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	transform: rotate(0.03deg);
	font-weight: 900!important;
	line-height: 1.8;
	color: #008eff;
	font-size: 1.8rem;
	border-bottom: 1px solid #008eff;
	padding-bottom: 8px;

}

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

.p-shopbox {
	width:calc((100% - 20px) / 2);
	box-sizing: border-box;
	padding:16px;
	display: flex;
	flex-direction: column;
	border:1px solid #008eff;
	background-color:#ffffff;
}

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

.p-shopname {
	color:#ffffff;
	font-weight: 700;
	font-size: 2.5rem;
	margin-bottom:12px;
	background-color:#008eff;
	padding:8px;
	box-sizing:border-box;
}

.p-shopname p {
	font-family: "Noto Sans SC", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	transform: rotate(0.03deg);
	font-weight: 900!important;
}

.p-shopimg {
	margin-bottom: 12px;
}

.p-shopimg2 {
	width: 100%;
	max-width: 480px;
	margin: 24px auto 24px;
	border-radius: 10px;
	overflow: hidden;
}

.p-shoptitle {
	border:1px solid #008eff;
	font-size: 1.6rem;
	padding:12px 0;
	margin-bottom: 12px;
	line-height: 1.5;
	margin-top: auto;
	box-sizing:border-box;
}

.p-shoptitle p {
	font-family: "Noto Sans SC", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	transform: rotate(0.03deg);
	font-weight: 700;
	color:#008eff;
}

.p-shoptitle p span {
	color:red;
	font-size: 1.5rem;
}

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

.p-shoplink a {
	display: block;
	width:calc((100% - 12px) / 2);
	box-sizing: border-box;
	padding:12px 0;
	font-size: 1.7rem;
	font-weight: 700;
	
	transition: all 0.3s;
}

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

a.p-bt-normal {
	background-color:#ffbf00;
	color:#fff;
	border:1px solid #ffbf00;
	box-sizing:border-box;
}
a:hover.p-bt-normal {
	color:#ffbf00;
	background-color:#fff;
}

a.p-bt-gouka {
	background-color:#ff366d;
	color:#fff;
	border:1px solid #ff366d;
	box-sizing:border-box;
}
a:hover.p-bt-gouka {
	color:#ff366d;
	background-color:#fff;
}


/* Special: preview, team testimonials and download */

#l-Special .p-head {
	margin-bottom:24px;
}

.special__stack {
	display:flex;
	flex-direction:column;
	gap:24px;
	width:100%;
	max-width:1000px;
	margin:0 auto;
}

.special__visual-frame {
	width:100%;
	max-width:1000px;
	margin:0 auto;
	font-size:10px;
	line-height:1;
	letter-spacing:0;
}

.special__visual-frame__ratio {
	position:relative;
	width:100%;
	overflow:hidden;
	background:#eef9fd;
	border:2px solid #008eff;
	border-radius:8px;
	aspect-ratio:16 / 9;
}

.special__visual-frame__placeholder {
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	height:100%;
}

.special__visual-frame__ratio img {
	display:block;
	width:100%;
	height:100%;
	object-fit:cover;
}

/* Team Testimonials - Isolated Fixed Metrics */

.team_testimonials,
.team_testimonials * {
	box-sizing:border-box;
}

.team_testimonials {
	--tt-color-main:#008eff;
	--tt-color-sub:#5bc0ff;
	--tt-item-bg:rgba(0,142,255,0.12);
	--tt-item-bg-hover:rgba(0,142,255,0.2);
	--tt-text-color:#081a45;
	--tt-heimu-bg:#081a45;
	--tt-heimu-text:#ffffff;
	--tt-heimu-link:#5bc0ff;
	font-size:10px;
	line-height:1;
	letter-spacing:0;
	word-spacing:0;
	text-align:left;
	text-justify:auto;
	word-break:normal;
	overflow-wrap:normal;
	width:100%;
	max-width:100%;
	margin:0 auto;
	background:transparent;
	border:3px solid var(--tt-color-main);
	border-radius:16px;
	box-shadow:none;
	overflow:hidden;
}

.testimonials_title {
	padding:15px 0;
	text-align:center;
	background:linear-gradient(135deg, var(--tt-color-main), var(--tt-color-sub));
	border-bottom:2px solid var(--tt-color-main);
}

.testimonials_title h3 {
	margin:0;
	color:#ffffff;
	font-size:16px;
	line-height:22px;
	letter-spacing:0;
	font-weight:700;
	text-shadow:0 1px 2px rgba(0,0,0,0.3);
	font-family:"Poppins", "Noto Sans SC", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.testimonials_content {
	padding:20px;
}

.testimonial_item {
	display:flex;
	align-items:flex-start;
	margin-bottom:20px;
	padding:15px;
	background:var(--tt-item-bg);
	border-left:4px solid var(--tt-color-main);
	border-radius:8px;
	transition:all 0.3s ease;
}

.testimonial_item:hover {
	background:var(--tt-item-bg-hover);
	transform:translateX(5px);
	box-shadow:0 2px 5px rgba(0,90,180,0.25);
}

.testimonial_item:last-child {
	margin-bottom:0;
}

.member_info {
	min-width:150px;
	margin-right:20px;
	padding-top:2px;
	text-align:right;
}

.member_name {
	margin-bottom:4px;
	color:var(--tt-color-main);
	font-size:18px;
	line-height:20px;
	letter-spacing:0;
	font-weight:700;
	font-family:"Poppins", "Noto Sans SC", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.member_position {
	color:rgba(8,26,69,0.72);
	font-size:12px;
	line-height:16px;
	letter-spacing:0;
	font-weight:400;
	font-family:"Noto Sans SC", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.member_position a,
.member_position a:visited {
	color:var(--tt-color-main);
	text-decoration:underline;
	text-underline-offset:2px;
}

.member_comment {
	flex:1;
	min-width:0;
	color:var(--tt-text-color);
	text-align:left;
	font-size:16px;
	line-height:26px;
	letter-spacing:0;
	font-weight:400;
	font-family:"Noto Sans SC", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.member_comment p {
	margin:0 0 16px;
	color:var(--tt-text-color);
	font-size:16px;
	line-height:26px;
	letter-spacing:0;
	font-weight:400;
}

.member_comment p:last-child {
	margin-bottom:0;
}

.testimonial_media {
	display:flex;
	align-items:flex-start;
	gap:16px;
	width:100%;
}

.testimonial_image {
	display:block;
	flex:0 1 320px;
	width:100%;
	max-width:320px;
	max-height:180px;
	height:auto;
	margin:0;
	object-fit:contain;
	object-position:left top;
	border-radius:6px;
}

.testimonial_image--small {
	flex:0 0 128px;
	width:128px;
	max-width:128px;
	max-height:128px;
}

/* Heimu / Spoiler */

.team_testimonials .heimu {
	--heimu-color:var(--tt-heimu-bg);
	--heimu-text-color:var(--tt-heimu-text);
	--heimu-link-color:var(--tt-heimu-link);
	background-color:var(--heimu-color);
	border-radius:3px;
	padding:1px 2px;
	line-height:1.2;
	letter-spacing:0;
	transition:background-color 0.13s linear, color 0.13s linear;
}

.team_testimonials .heimu,
.team_testimonials .heimu a,
.team_testimonials a .heimu {
	color:var(--heimu-color);
	text-shadow:none;
	transition:color 0.13s linear;
}

.team_testimonials .heimu:hover,
.team_testimonials .heimu:active {
	color:var(--heimu-text-color);
	background-color:var(--heimu-color);
}

.team_testimonials .heimu:hover a,
.team_testimonials a:hover .heimu {
	color:var(--heimu-link-color);
}

/* Download module */

.special__mod-download {
	width:100%;
	max-width:1000px;
	margin:0 auto;
	overflow:hidden;
	font-size:10px;
	line-height:1;
	letter-spacing:0;
	background-color:#ffffff;
	border:1px solid #008eff;
	border-radius:16px;
}

.special__mod-download__title {
	margin:0;
	padding:14px 16px;
	color:#008eff;
	font-size:16px;
	line-height:1.2;
	font-weight:700;
	text-align:center;
	border-radius:16px 16px 0 0;
}

.special__mod-download__grid {
	display:grid;
	grid-template-columns:1fr 1fr;
	border-top:1px solid #008eff;
	border-radius:0 0 16px 16px;
	overflow:hidden;
}

.special__mod-download__head {
	padding:10px 8px;
	color:#081a45;
	font-size:16px;
	line-height:1.2;
	font-weight:700;
	text-align:center;
	background-color:#5bc0ff;
	border-right:1px solid #008eff;
}

.special__mod-download__head:nth-child(2) {
	border-right:0;
}

.special__mod-download__cell {
	display:flex;
	align-items:center;
	justify-content:center;
	padding:14px 12px;
	border-top:1px solid #008eff;
	border-right:1px solid #008eff;
}

.special__mod-download__cell:nth-child(4) {
	border-right:0;
}

.special__mod-download__btn {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-width:160px;
	padding:10px 20px;
	color:#ffffff;
	font-size:16px;
	line-height:1.2;
	font-weight:700;
	text-align:center;
	white-space:nowrap;
	writing-mode:horizontal-tb;
	text-orientation:mixed;
	font-family:"Noto Sans SC", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	background:#008eff;
	border:0;
	border-radius:8px;
	cursor:pointer;
}

.special__mod-download__btn:hover {
	color:#ffffff;
	text-decoration:none;
	opacity:0.75;
}

@media screen and (max-width:960px) {
	#l-Special .p-head {
		margin-bottom:16px;
	}

	.special__stack {
		gap:16px;
		padding:0 12px;
	}

	.special__visual-frame__ratio {
		border-width:1px;
	}

	.testimonials_content {
		padding:14px;
	}

	.testimonial_item {
		flex-direction:column;
		gap:8px;
		margin-bottom:14px;
		padding:12px;
	}

	.member_info {
		min-width:0;
		margin-right:0;
		text-align:left;
	}

	.member_name {
		font-size:15px;
		line-height:18px;
	}

	.member_position {
		font-size:11px;
		line-height:15px;
	}

	.member_comment,
	.member_comment p {
		font-size:14px;
		line-height:22px;
	}

	.testimonial_media {
		gap:10px;
	}

	.testimonial_image {
		flex-basis:180px;
		max-width:180px;
		max-height:140px;
	}

	.testimonial_image--small {
		flex-basis:128px;
		max-width:128px;
		max-height:128px;
	}

	.special__mod-download {
		border-radius:12px;
	}

	.special__mod-download__title {
		padding:14px 10px;
		font-size:14px;
		border-radius:12px 12px 0 0;
	}

	.special__mod-download__grid {
		border-radius:0 0 12px 12px;
	}

	.special__mod-download__head {
		padding:8px 6px;
		font-size:13px;
	}

	.special__mod-download__cell {
		padding:10px 8px;
	}

	.special__mod-download__btn {
		min-width:120px;
		padding:8px 12px;
		font-size:13px;
	}
}

/*体験版*/

.p-trial-thum {
	margin-bottom: 48px;
}

.p-trial-thum ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

@media screen and (min-width:1025px) { /*PC-LARGE*/
	.p-trial-thum ul li {
		width: calc(100% / 5);
	}
}
@media screen and (max-width:1024px) { /*PC-MIDDLE*/
	.p-trial-thum ul li {
		width: calc(100% / 4);
	}
}
@media screen and (max-width:728px) { /*MB*/
	.p-trial-thum ul li {
		width: calc(100% / 3);
	}
}

.p-trial-dl {
	width: 100%;
	margin:0 auto 72px;
	display: flex;
	flex-direction: column;
	gap:8px;
}

.p-trial-dl dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	background-color: #081a45;
	padding:12px;
	gap:12px 0;
}

.p-trial-dl dl dt {
	position: relative;
	box-sizing: border-box;
	font-size: 1.8rem;
	text-align: left;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #fff;
}

.p-trial-dl dl dd {

	position: relative;
	box-sizing: border-box;
	font-size: 1.8rem;
	font-weight: 700;
}

@media screen and (min-width:961px) { /*PC*/
	.p-trial-dl dl dt {
		width: 30%;
	}
	.p-trial-dl dl dd {
		width: 70%;
	}
}
@media screen and (max-width:960px) { /*MB*/
	.p-trial-dl dl dt {
		width: 100%;
	}
	.p-trial-dl dl dd {
		width: 100%;
	}
}

.p-trial-dl dl dd a {
	display: block;
	width:100%;
	background-color:#098cf4;
	color:#fff;
	text-decoration: none;
	box-sizing: border-box;
	padding:8px;
	border-radius: 10px;
	transition: all 0.3s;
}

.p-trial-dl dl dd a:hover {
	opacity: 0.6;
}


/* プロダクト */

.p-main-staff {
	margin:0 auto 80px;
}

.p-main-staff ul {
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	gap:60px 24px;
}

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

.p-staff-box {
	text-align: left;
	position: relative;
	border-top:1px solid rgba(223,223,223,1.00);
}

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

.p-staff-box dl {
	display: flex;
	justify-content: flex-start;
	border-bottom:1px solid rgba(223,223,223,1.00);
	flex-wrap: wrap;
}

.p-staff-box dt {
	font-size: 1.5rem;
	font-weight: 700!important;
	box-sizing: border-box;
	line-height: 1.7;
}

.p-staff-box dl:nth-child(2n + 1) dt {color:#ff366d;}
.p-staff-box dl:nth-child(2n) dt {color:#ffbf00;}
.p-staff-box dl:nth-child(3n) dt {color:#008eff!important;}

.p-staff-box dd {
	font-size: 1.5rem;
	font-weight: 400!important;
	box-sizing: border-box;
	color:rgba(255,255,255,1.00);
	line-height: 1.7;
}

@media screen and (min-width:1025px) { /*PC*/
	.p-staff-box dt {
		width:25%;
		padding:4px 4px;
	}
	.p-staff-box dd {
		width:75%;
		padding:4px 4px;
	}
}
@media screen and (max-width:1024px) { /*MB*/
	.p-staff-box dt {
		width:100%;
		padding:4px 4px 0;
	}
	.p-staff-box dd {
		width:100%;
		padding:4px;
	}
}

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

/* フッター */

.p-foot-logo {
	width:100%;
	max-width:420px;
	margin:0 auto;
	display:flex;
	align-items:center;
	justify-content:center;
	gap:24px;
}

.p-foot-logo a {
	display:flex;
	align-items:center;
	justify-content:center;
	width:calc((100% - 24px) / 2);
}

.p-foot-logo img {
	display:block;
	width:auto;
	height:auto;
	max-width:100%;
	max-height:72px;
}

.p-foot-logo a:first-child img {
	max-width:150px;
}

.p-foot-logo a:last-child img {
	max-width:180px;
}

.p-copyright {
	font-size:1.4rem;
}

/*動画*/

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

.p-movieframe iframe {
	width: 100%;
	aspect-ratio:16 / 9;
}

.p-patch {
	background-color:#fff;
	padding:24px;
	box-sizing:border-box;
	width:100%;
	font-size:1.5rem;
	line-height:1.5;
	text-align:left;
	border-radius: 10px;
	margin:0 auto 24px;
}

a.p-patch-dl {
	display: block;
	width:100%;
	background-color:#098cf4;
	color:#fff;
	text-decoration: none;
	box-sizing: border-box;
	padding:12px;
	border-radius: 10px;
	transition: all 0.3s;
	font-size:2rem;
	font-weight:700;
}

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