:root {
	--white: #ffffff;
	--gray: #cccccc;
	--gray2: #444444;
	--black: #161616;
	--pink: #ff4a81;
	--pink2: #ff98b7;
	--blue: #1e6fc2;
	--blue2: #98e1ff;

	--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: "Nunito", sans-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-color: #fff6f9;
}

a {
	text-decoration: none;
}

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

h2 {
	margin-bottom: 60px;
	color: var(--gray2);
	font-weight: 700;
	font-size: var(--fs60);
	font-family: var(--ff2);
	line-height: 0.6;
	text-align: center;
}

h2 .pink {
	color: var(--pink);
}

h2 .jp {
	font-size: 0.3em;
	font-family: var(--ff1);
}

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: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

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

/*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(--pink);
}

.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(--pink);
	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(--pink);
	transition: all .4s;
}

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

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

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

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

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

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

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

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

.topPage .arrow {
	position: absolute;
	top: 48%;
	left: 50%;
	width: 30px;
	height: 30px;
	background-image: url(../img/common/arrow.svg);
	transform: translate(-50%, -50%);
}
/*-------*/

/*HEADER*/
.header {
	position: relative;
	background-image: url(../img/common/bg.jpg);
	background-size: 500px 500px;
	animation: bgMove 15s linear infinite;
}

@keyframes bgMove {
	0% {
		background-position: 500px 500px;
	}

	100% {
		background-position: 500px 0;
	}
}

.header::after {
	content: "";
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 4vw;
	background-image: url(../img/common/wave.svg);
	background-repeat: no-repeat;
	background-size: cover;
}

.header .flex {
	display: flex;
	flex-direction: row-reverse;
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
}

.header .flex .left {
	position: relative;
	width: 50%;
}

.header .flex .left .logo {
	position: absolute;
	top: 20%;
	left: 5%;
	width: 90%;
}

.header .flex .left .date {
	position: absolute;
	top: 54%;
	left: 10%;
	width: 80%;
}

.header .flex .left .cs {
	position: absolute;
	top: 0;
	left: 0;
	width: 30%;
	max-width: 225px;
}

.header .flex .right {
	width: 50%;
	overflow: hidden;
}
/*------*/

/*FOOTER*/
.footer {
	width: 100%;
	height: auto;
	padding: 80px 0 100px;
	background-color: var(--pink);
	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 {
	position: relative;
	z-index: 2;
}

.news::after {
	content: "";
	position: absolute;
	bottom: 2px;
	width: 100%;
	height: 4vw;
	background-image: url(../img/common/wave.svg);
	background-repeat: no-repeat;
	background-size: cover;
	rotate: 180deg;
	transform: translateY(-100%);
}

.news ul {
	list-style: none;
	max-height: 270px;
	overflow-y: scroll;
}

.news ul::-webkit-scrollbar {
	width: 5px;
}

.news ul::-webkit-scrollbar-thumb {
	background-color: var(--blue);
}

.news ul li {
	position: relative;
	display: flex;
	padding: 25px 0;
	border-bottom: 1px solid var(--gray);
}

.news ul li:first-of-type {
	border-top: 1px solid var(--gray);
}

.news ul li .date {
	padding-right: 50px;
	color: var(--pink);
	font-weight: 700;
	width: 160px;
}

.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;
	background-attachment: fixed;
	text-align: center;
	background-position: 80% 0;
	color: var(--white);
}

.story::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 4vw;
	background-image: url(../img/common/wave.svg);
	background-repeat: no-repeat;
	background-size: cover;
}

.story .inner {
	padding: calc(80px + 4vw) 0;
}

.story h2 {
	color: var(--white);
}

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

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

.story .area h3 {
	margin-bottom: 40px;
	color: var(--blue2);
	font-size: var(--fs25);
}

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

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

.character::after {
	content: "";
	position: absolute;
	bottom: 2px;
	z-index: 1;
	width: 100%;
	height: 4vw;
	background-image: url(../img/common/wave.svg);
	background-repeat: no-repeat;
	background-size: cover;
	rotate: 180deg;
	transform: translateY(-100%);
}

.character .area {
	display: none;
	opacity: 0;
}

.character .area.is-active {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: center;
	animation-name: charaAnime;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}

@keyframes charaAnime {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

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

.character .area .left .chara01 {
	position: relative;
	display: none;
	opacity: 0;
}

.character .area .left .chara01.is-active {
	display: block;
	animation-name: charaAnime3;
	animation-duration: .4s;
	animation-fill-mode: forwards;
}

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

	}
}

.character .area .right {
	width: 55%;
	margin-top: -40px;
}

.character .area .right h3 {
	font-weight: 900;
	font-size: var(--fs30);
	color: var(--pink);
	margin-bottom: 10px;
}

.character .area .right h3 .pink {
	color: var(--pink);
}

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

.character .area .right p.cv {
	margin-bottom: 20px;
	padding-bottom: 20px;
	font-weight: 700;
	border-bottom: 1px solid var(--gray);
}

.character .area .right p.cv span {
	color: var(--white);
	background-color: var(--pink);
	padding: 0 10px;
	margin-right: 5px;
	border-radius: 100px;
}
/*---------*/

/*GALLERY*/
.gallery {
	position: relative;
	background-image: url(../img/common/bg.jpg);
	background-size: 500px 500px;
	animation: bgMove 15s linear infinite;
}

.gallery::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 4vw;
	background-image: url(../img/common/wave.svg);
	background-repeat: no-repeat;
	background-size: cover;
}

.gallery .inner {
	padding: calc(80px + 4vw) 0;
}

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

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

.gallery .area .img {
	width: 33%;
	margin-bottom: 0.5%;
	overflow: hidden;
}

.gallery .area .img img {
	width: 100%;
	transform: scale(1.01);
	transition-duration: .2s;
	transition-property: transform;
}

.gallery .area .img img:hover {
	cursor: zoom-in;
	transform: scale(1.1);
}
/*-------*/

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

.special::after {
	content: "";
	position: absolute;
	bottom: 2px;
	z-index: 1;
	width: 100%;
	height: 4vw;
	background-image: url(../img/common/wave.svg);
	background-repeat: no-repeat;
	background-size: cover;
	rotate: 180deg;
	transform: translateY(-100%);
}

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

/*
.special .select::after {
	content: "";
	width: 33%;
}
*/

.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(--pink);
	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;
}

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

.shop .contents .text h5 {
	margin-bottom: 10px;
	color: var(--pink);
	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(--pink);
	border-radius: 100px;
	background-color: var(--pink);
	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(--pink);
}
/*----*/

/*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(--pink);
	font-size: var(--fs25);
	font-weight: 700;
	text-align: center;
}

.limited h4 {
	margin-bottom: 10px;
	color: var(--pink);
	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;
}
/*-------*/

/*PRODUCT*/
.product {
	background-image: url(../img/common/bg.jpg);
	background-size: 500px 500px;
	animation: bgMove 15s linear infinite;
}

.product .inner {
	padding: calc(80px + 4vw) 0;
}

.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(--pink);
	border-radius: 20px;
	background-color: var(--white);
}

.product .text h3 {
	margin-bottom: 20px;
	color: var(--gray2);
	font-size: var(--fs30);
	font-weight: 700;
	font-family: var(--ff2);
	text-align: center;
}

.product .text h3 span {
	color: var(--pink);
}

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

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

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

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

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

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

	h2 {
		/*480px-1200px fs40-fs60*/
		font-size: clamp(2.5rem, 1.667rem + 2.78vw, 3.75rem);
	}

	.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 fs20-fs30*/
		font-size: clamp(1.25rem, 0.833rem + 1.39vw, 1.875rem);
	}
	/*---------*/

	/*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 .flex {
		position: relative;
		display: block;
	}

	.header .flex .left {
		position: static;
		width: 100%;
	}

	.header .flex .left .logo {
		z-index: 1;
		top: 50%;
		filter: drop-shadow(0 0 2px var(--white));
	}

	.header .flex .left .date {
		z-index: 1;
		top: auto;
		bottom: 10%;
		filter: drop-shadow(0 0 2px var(--white));
	}

	.header .flex .right {
		width: 100%;
	}
	/*------*/

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

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

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

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

	.story .area .visual {
		width: 80%;
		margin: 0 auto;
	}

	.story .area .text {
		width: 100%;
	}

	.story .area .text .logo {
		margin: 0 auto 40px;
	}
	/*-----*/

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

	.character .area .left {
		width: 100%;
		margin-bottom: 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%;
	}
}