:root {
	--white: #ffffff;
	--gray: #cccccc;
	--gray2: #444444;
	--black: #161616;
	--pink: #f7559a;
	--yellow: #e59d43;
	--blue: #545ea3;

	--fs14: calc(14 / 16 * 1rem);
	--fs16: calc(16 / 16 * 1rem);
	--fs20: calc(20 / 16 * 1rem);
	--fs25: calc(25 / 16 * 1rem);
	--fs30: calc(30 / 16 * 1rem);
	--fs40: calc(40 / 16 * 1rem);
	--fs50: calc(50 / 16 * 1rem);
	--fs60: calc(60 / 16 * 1rem);

	--ff1: "Noto Sans JP", sans-serif;
	--ff2: "Aoboshi One", serif;
}

html {
	width: 100%;
	height: 100%;
	font-size: 100%;
}

body {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	color: var(--black);
	font-weight: 500;
	font-size: var(--fs16);
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.6;
	letter-spacing: 0.1em;
	word-break: break-all;
}

#page {
	display: flex;
	z-index: 0;
	flex-flow: column;
	width: 100%;
	min-height: 100vh;
	background-image: linear-gradient(#f3f3f3 1px, transparent 1px);
	background-size: 100% 24px;
	background-color: var(--white);
}

a {
	text-decoration: none;
}

img {
	width: 100%;
	height: auto;
}

.h2 {
	text-align: center;
	rotate: -3deg;
}

h2 {
	display: inline-block;
	margin-bottom: 80px;
	color: var(--gray2);
	font-weight: 700;
	font-size: var(--fs50);
	font-family: var(--ff2);
	line-height: 0.6;
	text-align: center;
	padding: .5em 1em;
	border-left: 30px solid var(--yellow);
	background-color: #f5f5f5;
	box-shadow: 2px 2px 5px var(--gray);
}

iframe {
	width: 100%;
	height: 100%;
	aspect-ratio: 16 / 9;
	border: 1px solid var(--gray);
}

#main {
	flex: 1;
}

.inner {
	width: 1150px;
	margin: 0 auto;
	padding: 80px 0 100px;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

/*LOADING*/
#loading {
	position: fixed;
	z-index: 999;
	width: 100vw;
	height: 100vh;
	background-color: var(--white);
	text-align:center;
}

#loading-logo {
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#loading-logo .logo {
	width: 600px;
}
/*-------*/

/*NAV*/
#nav {
	position: fixed;
	top: 0;
	right: -500px;
	bottom: 0;
	z-index: 100;
	opacity: 0;
	display: block;
	width: 480px;
	max-width: 100%;
	height: 100vh;
	background: var(--white);
	overflow-x: hidden;
	overflow-y: auto;
	transition-duration: .5s;
	transition-property: width, right, opacity;
}

.nav-list {
	width: 100%;
	margin: 0 auto;
	z-index: 99;
}

.nav-list ul {
	margin: 0 10px;
}

.nav-list li {
	display: block;
	width: 100%;
	height: auto;
	padding: 20px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	text-align: center;
}

.nav-list li a {
	color: var(--black);
	font-size: var(--fs20);
	font-weight: 700;
	font-family: var(--ff2);
	text-align: center;
	transition-property: color;
	transition-duration: .2s;
}

.nav-list li a:hover {
	color: var(--yellow);
}

.nav-list img {
	width: 200px;
}

.open #nav {
	right: 0;
	opacity: 1;
}

.nav-mask {
	opacity: 0;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 98;
	width: 0;
	height: 100vh;
	transition-property: opacity, background, width;
	transition-duration: .5s, .5s, 0s;
	transition-delay: 0s, 0s, .5s;
}

.open .nav-mask {
	opacity: 1;
	position: fixed;
	width: 100vw;
	height: 100vh;
	z-index: 98;
	background: rgba(0, 0, 0, 0.5);
	cursor: pointer;
	transition-property: opacity, background;
	transition-duration: .5s, .5s;
}

.nav-btn {
	display: block;
	opacity: 1;
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 101;
	width: 60px;
	height: 60px;
	border: 2px solid var(--yellow);
	border-radius: 100px;
	background-color: var(--white);
	cursor: pointer;
	transition: all .5s;
	-webkit-tap-highlight-color: transparent;
}

.nav-btn span {
	display: block;
	position: absolute;
	left: 24%;
	width: 30px;
	height: 3px;
	background-color: var(--yellow);
	transition: all .4s;
}

.nav-btn img {
	position: absolute;
	top: 68%;
	left: 24%;
	width: 30px;
	background-color: transparent;
	color: var(--yellow);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0;
}

.nav-btn span:nth-child(1) {
	top: 24%;
}

.nav-btn span:nth-child(2) {
	top: 38%;
}

.nav-btn span:nth-child(3) {
	top: 52%;
}

.open .nav-btn {
	box-shadow: none;
}

.open .nav-btn span:nth-child(1) {
	transform: translateY(8px) rotate(135deg);
}

.open .nav-btn span:nth-child(2) {
	opacity: 0;
}

.open .nav-btn span:nth-child(3) {
	transform: translateY(-8px) rotate(-135deg);
}
/*---*/

/*TOPPAGE*/
.topPage .button {
	position: fixed;
	z-index: 50;
	right: 20px;
	bottom: 40px;
	width: 60px;
	height: 60px;
	background-color: var(--white);
	border: 2px solid var(--yellow);
	border-radius: 100px;
}

.topPage .button .arrow {
	position: absolute;
	top: 40%;
	left: 50%;
	width: 30px;
	height: 17px;
	background-image: url(../img/common/arrow.svg);
	transform: translate(-50%, -50%);
	transition-duration: .4s;
	transition-property: top;
}

.topPage .button img {
	position: absolute;
	top: 65%;
	left: 24%;
	width: 30px;
	background-color: transparent;
	color: var(--yellow);
	font-size: 10px;
	font-weight: 900;
	letter-spacing: 0;
}

.topPage .button:hover .arrow {
	top: 34%;
}
/*-------*/

/*HEADER*/
.header {
	position: relative;
	width: 100%;
	height: 100%;
}

.header .logo {
	position: absolute;
	top: 10%;
	right: 5%;
	width: 35%;
}

.header .date {
	position: absolute;
	top: 35%;
	right: 10%;
	width: 25%;
}

.header .catch {
	position: absolute;
	bottom: 21%;
	right: 4%;
	width: 35%;
	rotate: 5deg;
}

.header .cs {
	position: absolute;
	top: 0;
	left: 0;
	width: 20%;
	max-width: 225px;
}
/*------*/

/*FOOTER*/
.footer {
	width: 100%;
	height: auto;
	padding: 80px 0 100px;
	background-color: var(--yellow);
	color: var(--white);
	font-size: var(--fs14);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.footer ul {
	display: flex;
	list-style: none;
	margin-bottom: 50px;
	justify-content: center;
}

.footer ul li {
	width: 40px;
	margin: 0 20px;

}

.footer .logo {
	width: 60px;
	margin: 0 auto 50px;
}

.footer img {
	transition-duration: 0.2s;
	transition-property: opacity;
}

.footer img:hover {
	opacity: 0.7;
}

.footer .text {
	width: 95%;
	margin: 0 auto;
	text-align: center;
}

.footer .text p {
	padding-bottom: 15px;
}

.footer .text img.img01 {
	width: 13px;
	vertical-align: middle;
}

.footer .text img.img02 {
	width: 49px;
	vertical-align: middle;
}
/*------*/

/*NEWS*/
.news ul {
	list-style: none;
}

.news ul li {
	position: relative;
	display: flex;
	margin-bottom: 15px;
	padding: 20px 40px;
	border: 1px solid var(--yellow);
	border-radius: 0px;
	background-color: var(--white);
}

.news ul li .date {
	width: 160px;
	padding-right: 50px;
	color: var(--yellow);
	font-family: var(--ff2);
}

.news ul li .text {
	width: calc(100% - 160px);
}

.news ul li .text a {
	color: var(--blue);
	font-weight: 700;
}
/*----*/

/*STORY*/
.story {
	position: relative;
	background-image: url(../img/common/bg01.jpg);
	background-size: cover;
	text-align: center;
	background-position: 15% 0;
}

.story .area p {
	margin-bottom: 40px;
	font-size: var(--fs20);
}

.story .area p span {
	color: var(--yellow);
}

.story .area h3 {
	margin-bottom: 40px;
	color: var(--pink);
	font-size: var(--fs30);
	text-shadow: -1px -1px 0 var(--white), 0 -1px 0 var(--white), 1px -1px 0 var(--white), -1px 0 0 var(--white), 1px 0 0 var(--white), -1px 1px 0 var(--white), 0px 1px 0 var(--white), 1px 1px 0 var(--white);
}

.story .area .img {
	position: absolute;
	z-index: -1;
	right: -10%;
	top: 10%;
}
/*-----*/

/*CHARACTER*/
.character {
	position: relative;
}

.character .area {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}

.character .area .left {
	width: 35%;
}

.character .area .left img {
	filter: drop-shadow(10px 5px 0 var(--yellow));
}

.character .area .left .chara01 {
	display: none;
}

.character .area .left .chara01.is-active {
	display: block;
}

.character .area .right {
	width: 64%;
	padding-top: 40px;
}

.character .area .right h3 {
	display: flex;
	align-items: baseline;
	margin-bottom: 10px;
	color: var(--yellow);
	font-size: var(--fs40);
	font-weight: 900;
}

.character .area .right h3 span {
	margin-left: 15px;
	font-size: 0.4em;
	font-weight: 700;
}

.character .area .right h4 {
	margin-bottom: 5px;
	color: var(--yellow);
	font-size: var(--fs20);
	font-weight: 700;
}

.character .area .right .voice {
	display: flex;
	margin-bottom: 30px;
}

.character .area .right .voice .voice-container .voice-button {
	width: 45px;
	height: auto;
	margin-right: 10px;
	background-color: transparent;
}

.character .area .right .cos-btn {
	display: flex;
	margin-bottom: 30px;
}

.character .area .right .cos-btn a {
	width: 100%;
	max-width: 250px;
	margin-right: 20px;
	border: 2px solid var(--yellow);
	background-color: var(--white);
	transition: all .2s;
}

.character .area .right .cos-btn a:hover {
	background-color: var(--yellow);
}

.character .area .right .cos-btn a.active {
	background-color: var(--yellow);
}

.character .area .right p {
	margin-bottom: 40px;
}

.character .area .right p.cv {
	margin-bottom: 20px;
}

.character .area .right ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	list-style: none;
}

.character .area .right ul li {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 10px;
}

.character .area .right ul li span {
	display: inline-block;
	width: 120px;
	margin-right: 10px;
	padding: 4px 10px;
	border-radius: 10px;
	background-color: var(--yellow);
	color: var(--white);
	text-align: center;
}

/*---------*/

/*GALLERY*/
.gallery {
	position: relative;
	background-color: #ebbf77;
	background: repeating-linear-gradient( 45deg, #edc584, #edc584 6px, #ebbf77 6px, #ebbf77 30px );
}

.gallery .area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.gallery .area::after {
	content: "";
	display: block;
	width: 32%;
}

.gallery .area .img {
	width: 32%;
	margin-bottom: 4%;
	overflow: hidden;
	border: 5px solid var(--white);
	transition-duration: .2s;
	transition-property: rotate;
	box-shadow: 1px 1px 5px var(--gray2);
}

.gallery .area .img img {
	width: 100%;

}

.gallery .area .img:hover {
	rotate: 2deg;
}
/*-------*/

/*SPECIAL*/
.special {
	position: relative;
}

.special .select {
	display: flex;
	flex-wrap: wrap;
	justify-content: center
}

.special .select .banner {
	width: 33%;
	margin: 0 0.5% 1%;
}

.special .select .banner .img {
	position: relative;
	overflow: hidden;
	margin-bottom: 5px;
}

.special .select .banner .img img {
	transform: scale(1.01);
	transition-duration: .2s;
	transition-property: transform;
}

.special .select .banner .img:hover img {
	transform: scale(1.1);
}

.special .select .banner p {
	text-align: center;
	color: var(--black);
}
/*------*/

/*SHOP*/
.shop {
	display: none;
	opacity: 0;
	padding: 40px 10px 0;
	text-align: center;
}

.shop.is-active {
	display: block;
	animation-name: displayAnime;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}

@keyframes displayAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.shop h3 {
	margin-bottom: 20px;
	color: var(--yellow);
	font-size: var(--fs25);
	font-weight: 700;
	text-align: center;
}

.shop h4 {
	margin-bottom: 20px;
	font-size: var(--fs20);
	font-weight: 700;
	text-align: center;
}

.shop .area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 1000px;
	margin: 0 auto 40px;
}

.shop .contents {
	position: relative;
	width: 49%;
	margin-bottom: 80px;
}

.shop .contents img {
	margin-bottom: 20px;
	box-shadow: 0 0 5px var(--gray);
}

.shop .contents .text {
	text-align: center;
}

.shop .contents .text h5 {
	margin-bottom: 10px;
	color: var(--yellow);
	font-size: var(--fs20);
	font-weight: 700;
}

.shop .contents .text .text01 {
	margin-bottom: 5px;
	color: var(--blue);
	font-size: var(--fs14);
}

.shop .contents .text .text02 {
	margin-bottom: 20px;
}

.shop .contents .text .link {
	display: inline-block;
	padding: 10px 100px;
	border: 1px solid var(--yellow);
	background-color: var(--yellow);
	color: var(--white);
	font-weight: 700;
	transition-property: background-color, color;
	transition-duration: .3s;
}

.shop .contents .text .link:hover {
	background-color: var(--white);
	color: var(--yellow);
}
/*----*/

/*limited*/
.limited {
	display: none;
	opacity: 0;
	padding: 40px 10px 0;
}

.limited.is-active {
	display: block;
	animation-name: displayAnime2;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}

@keyframes displayAnime2 {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.limited h3 {
	margin-bottom: 20px;
	color: var(--yellow);
	font-size: var(--fs25);
	font-weight: 700;
	text-align: center;
}

.limited h4 {
	margin-bottom: 10px;
	color: var(--yellow);
	font-size: var(--fs20);
	font-weight: 700;
}

.limited .area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 1000px;
	margin: 0 auto 40px;
}

.limited .contents {
	position: relative;
	width: 49%;
	margin-bottom: 80px;
}

.limited .contents img {
	margin-bottom: 10px;
	box-shadow: 0 0 5px var(--gray);
}
/*-------*/

/*PRODUCT*/
.product {
	position: relative;
	background-color: #ebbf77;
	background: repeating-linear-gradient( 45deg, #edc584, #edc584 6px, #ebbf77 6px, #ebbf77 30px );
}

.product .img {
	width: 100%;
	max-width: 350px;
	margin: 0 auto 80px;
}

.product .text {
	display: flex;
	margin: 0 auto 80px;
	padding: 40px;
	border: 5px solid var(--yellow);
	border-radius: 20px;
	background-color: var(--white);
}

.product .text .h3 {
	text-align: center;
	rotate: 3deg;
}

.product .text .h3 h3 {
	display: inline-block;
	margin-bottom: 40px;
	color: var(--gray2);
	font-weight: 700;
	font-size: var(--fs30);
	font-family: var(--ff2);
	line-height: 0.6;
	text-align: center;
	padding: .5em 1em;
	border-left: 20px solid var(--yellow);
	background-color: #f5f5f5;
	box-shadow: 2px 2px 5px var(--gray);
}

.product .text dl {
	display: flex;
	flex-wrap: wrap;
}

.product .text dt {
	width: 140px;
	margin-bottom: 20px;
	color: var(--yellow);
	font-weight: 700;
}

.product .text dd {
	width: calc(100% - 140px);
	margin-bottom: 20px;
}

.product .text .spec {
	width: 55%;
	margin: 0 auto;
}

.product .text .staff {
	width: 45%;
}
/*-------*/

@media screen and (max-width:1200px){
	body {
		/*480px-1200px fs14-fs16*/
		font-size: clamp(0.875rem, 0.792rem + 0.28vw, 1rem);
	}

	h2 {
		/*480px-1200px fs30-fs50*/
		font-size: clamp(1.875rem, 1.042rem + 2.78vw, 3.125rem);
	}

	.inner {
		width: 95%;
	}

	.nav-bg {
		background-color: transparent;
		box-shadow: none;
	}

	.nav-pc {display: none;}
	/*----*/

	/*STORY*/
	.story .area .img {
		position: static;
		width: 90%;
		max-width: 600px;
		margin: 0 auto 40px;
		transform: rotate(0deg);
	}

	.story .area h3 {
		/*480px-1200px fs20-fs25*/
		font-size: clamp(1.25rem, 1.042rem + 0.69vw, 1.563rem);
	}

	.story .area p {
		/*480px-1200px fs14-fs20*/
		font-size: clamp(0.875rem, 0.625rem + 0.83vw, 1.25rem);
	}
	/*-----*/

	/*CHARACTER*/
	.character .area .right h3 {
		/*480px-1200px fs30-fs40*/
		font-size: clamp(1.875rem, 1.458rem + 1.39vw, 2.5rem);
	}
	/*---------*/

	/*SHOP*/
	.shop h3 {
		/*480px-1200px fs20-fs25*/
		font-size: clamp(1.25rem, 1.042rem + 0.69vw, 1.563rem);
	}

	.shop h4 {
		/*480px-1200px fs16-fs20*/
		font-size: clamp(1rem, 0.833rem + 0.56vw, 1.25rem);
	}

	.shop .contents .text h5 {
		/*480px-1200px fs16-fs20*/
		font-size: clamp(1rem, 0.833rem + 0.56vw, 1.25rem);
	}

	.shop .area {
		width: 100%;
	}
	/*----*/

	/*LIMITED*/
	.limited h3 {
		/*480px-1200px fs20-fs25*/
		font-size: clamp(1.25rem, 1.042rem + 0.69vw, 1.563rem);
	}

	.limited .area {
		width: 90%;
		max-width: 900px;
	}

	.limited .area .contents .text h4 {
		/*480px-1200px fs16-fs20*/
		font-size: clamp(1rem, 0.833rem + 0.56vw, 1.25rem);
	}
	/*-------*/

	/*PRODUCT*/
	.product .text dt {
		width: 100%;
		margin-bottom: 0;
	}

	.product .text dd {
		width: 100%;
	}
	/*-------*/
}

@media screen and (max-width:800px) {
	#page {
		background-attachment: scroll;
	}

	.pc {
		display: none;
	}

	.sp {
		display: block;
	}

	#loading-logo {
		width: 100%;
	}

	#loading-logo .logo {
		width: 80%;
	}

	.nav-btn {
		top: 10px;
		right: 10px;
	}

	.topPage .button {
		right: 10px;
		bottom: 20px;
	}

	/*HEADER*/
	.header {
		position: relative;
		display: block;
	}

	.header .logo {
		position: absolute;
		top: auto;
		bottom: 30%;
		right: 10%;
		width: 80%;
	}

	.header .date {
		position: absolute;
		top: auto;
		bottom: 25%;
		right: 20%;
		width: 60%;
	}

	.header .catch {
		position: absolute;
		top: auto;
		bottom: 7%;
		right: 15%;
		width: 70%;
		rotate: 2deg;
	}
	/*------*/

	/*NEWS*/
	.news ul li {
		display: block;
		padding: 20px;
	}

	.news ul li .date {
		width: 100%;
		padding-right: 0;
	}

	.news ul li .text {
		width: 100%;
	}
	/*----*/

	/*STORY*/
	.story .area {
		display: block;
	}

	.story .area .text {
		width: 100%;
	}
	/*-----*/

	/*CHARACTER*/
	.character .area {
		display: block;
	}

	.character .area .left {
		width: 50%;
		margin: 0 auto 20px;
	}

	.character .area .right {
		width: 100%;
		margin-top: 0;
	}
	/*---------*/

	/*GALLERY*/
	.gallery .area .img {
		width: 49%;
		margin-bottom: 2%;
	}

	.gallery .area::after {
		width: 49%;
	}
	/*------*/

	/*SPECIAL*/
	.special .select .banner {
		width: 48%;
	}

	.special .select::after {
		width: 48%;
	}
	/*------*/

	/*SHOP*/
	.shop .area .contents {
		width: 100%;
	}

	.shop .area .contents .text .link {
		width: 90%;
		padding: 10px 0;
	}
	/*----*/

	/*LIMITED*/
	.limited .area .contents {
		width: 100%;
	}
	/*-------*/

	/*PRODUCT*/
	.product .text {
		display: block;
		padding: 40px 5%;
	}

	.product .text .spec, .product .text .staff {
		width: 100%;
	}

	.product .text .spec {
		margin-bottom: 40px;
	}

	.product .text .spec dt, .product .text .staff dt, .product .text .spec dd, .product .text .staff dd {
		width: 100%;
	}

	.product .text .spec dt, .product .text .staff dt {
		margin-bottom: 0;
		padding-bottom: 0;
	}
	/*-------*/
}

@media screen and (max-width:480px) {

	.chara-area a{
		width: 33%;
	}

	.chara-select .button01 {
		margin: 0 5px;
	}

	.chara-select .button02 {
		display: none;
	}
}

@media screen and (max-width:320px) {

	.footer-sns {
		width: 80%;
		margin: 0 auto 15%;
	}

	.footer-sns li {
		margin: 0 5%;
	}

	.footer-logo-eg {
		margin-bottom: 15%;
	}

	.footer-logo-eg img {
		width: 25%;
	}
}