@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/*----------共通----------*/

body {
	width: 100%;
	margin: 0;
	padding: 0;
}
* {
	box-sizing: border-box;
}
p,img,dl,dt,dd,ul,li,h1,h2,h3 {
	margin: 0;
	padding: 0;
}
img {
	border: 0;
	vertical-align: top;
}
ul,li {
	list-style-type: none;
}
a:link,
a:visited {
	font-weight: 700;
}
a:hover,
a:active {
	text-decoration: none;
	transition: 0.4s;
	filter: brightness(1.1);
}
@keyframes zoom {
	100% {transform:scale(1.1)}
}

/*----------PC/SP表示切り替え----------*/

.spout {
	display: none;
}
	@media screen and (max-width: 769px){
		.pcout {
			display: none;
		}
		.spout {
			display: block;
		}
	}
	
/*----------wrapper----------*/

#wrapper {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0 auto;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 1.7;
	color: #000;
	background: url("../images/bg.webp") no-repeat center center / cover;
	background-attachment: fixed;
}
#wrapper section#pageLeft,
#wrapper section#pageRight {
	position: fixed;
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 20%;
	height: 100%;
}
#wrapper section#pageLeft {
	left: 0;
	padding-right: 8px;
	background: url("../images/bg_gradient_left.png") repeat-y right top, url("../images/puni_wave_pc_left_top.png") no-repeat left top / contain, url("../images/puni_wave_pc_left_bottom.png") no-repeat left bottom / contain
}
#wrapper section#pageRight {
	right: 0;
	padding-left: 8px;
	background: url("../images/bg_gradient_right.png") repeat-y left top, url("../images/puni_wave_pc_right_top.png") no-repeat right top / contain, url("../images/puni_wave_pc_right_bottom.png") no-repeat right bottom / contain;
}
#wrapper section#pageCenter {
	position: relative;
	width: 60%;
	margin: 0 auto;
	padding: 20px 0 30px;
	background: rgba(255, 255, 255, 0.6);
}
	@media screen and (max-width: 769px){
		#wrapper {
			position: relative;
			flex-direction: column;
			font-size: 14px;
			line-height: 1.6;
			background: url("../images/puni_wave_sp_top.png") no-repeat center top / contain, url("../images/puni_wave_sp_bottom.png") no-repeat center bottom / contain;
		}
		#wrapper::before {
			position: fixed;
			content: "";
			top: 0;
			left: 0;
			width: 100%;
			height: 100vh;
			background: url("../images/bg.webp") no-repeat center top / cover;
			z-index: -1;
		}
		#wrapper section#pageLeft,
		#wrapper section#pageRight {
			position: relative;
			width: 100%;
			height: auto;
			padding: 0;
			background: none;
		}
		#wrapper section#pageCenter {
			width: 100%;
			padding: 15px 0;
			background: none;
		}
	}

/*----------メニュー----------*/

.menu {
	margin: auto;
	max-width: 140px;
}
.menu ul li {
	width: 100%;
}
.menu ul li:not(:last-child) {
	margin-bottom: 10px;
}
#pageLeft.top .menu ul li:last-child {
	display: none;
}
.menu ul li img {
	width: 100%;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.15)) drop-shadow(-1px 1px 2px rgba(0, 0, 0, 0.15)) drop-shadow(1px -1px 2px rgba(0, 0, 0, 0.15)) drop-shadow(-1px -1px 2px rgba(0, 0, 0, 0.15));
}
.menu ul li:hover {
	animation: zoom 0.2s ease-in-out;
	filter: brightness(1.3);
}
/* スクロールで上に消えるようにする */
.hide {
	transform: translateY(-110%);
}
	@media only screen and (max-width: 769px) {
		.menu {
			position: fixed;
			right: -100%;
			max-width: 100%;
			width: 100%;
			height: 100vh;
			transition: all .4s;
			overflow-y: auto;
		}
		.hamburger {
			position: fixed;
			right: 3px;
			top: 3px;
			width: 70px;
			height: 70px;
			cursor: pointer;
			background: url("../images/menu/menu_sp.png") no-repeat center center / contain;
			z-index: 40;
			border-radius: 100%;
			transition: .5s;
		}
		.menu ul {
			display: flex;
			flex-wrap: wrap;
			justify-content: space-between;
			align-content: center;
			height: 100svh;
			padding: 0 12%;
		}
		.menu ul li {
			width: 48%;
			margin-bottom: 4%;
		}
		.hamburger span {
			position: absolute;
			left: 19px;
			width: 32px;
			height: 6px;
			background-color: #fff;
			border-radius: 3px;
			transition: all .2s;
		}
		.hamburger span:nth-child(1) {
			top: 21px;
		}
		.hamburger span:nth-child(2) {
			top: 50%;
			margin-top: -3px;
		}
		.hamburger span:nth-child(3) {
			bottom: 21px;
		}
		.mask_bg {
			position: fixed;
			left: 0;
			top: 0;
			width: 100vw;
			height: 100vh;
			z-index: 20;
			background-color: #fff;
			opacity: 0;
			visibility: hidden;
			transition: all .4s;
			cursor: pointer;
		}
		/* 表示された時用のCSS */
		.menu-open .menu {
			right: 0;
			z-index: 30;
		}
		.menu-open .mask_bg {
			opacity: 0.85;
			visibility: visible;
		}
		.menu-open .hamburger span:nth-child(1) {
			transform: rotate(45deg);
			top: 50%;
			margin-top: -3px;
		}
		.menu-open .hamburger span:nth-child(2) {
			width: 0;
			left: 50%;
		}
		.menu-open .hamburger span:nth-child(3) {
			transform: rotate(-45deg);
			top: 50%;
			margin-top: -3px;
		}
	}
	
/*----------動画----------*/

.mov .mov_inner {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}
.mov .mov_inner iframe {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}

/*----------キャラクターアニメーション----------*/

.charaanime {
	display: flex;
	align-items: center;
}
.charaanime li img {
	width: 100%;
	animation: purupuru 3.2s linear infinite;
}
.charaanime li:nth-child(3) img {
	animation-delay: 0.3s;
}
.charaanime li:nth-child(2) img {
	animation-delay: 0.9s;
}
.charaanime li:nth-child(4) img {
	animation-delay: 1.5s;
}
.charaanime li:nth-child(1) img {
	animation-delay: 2.1s;
}
.charaanime li:nth-child(5) img {
	animation-delay: 2.7s;
}
@keyframes purupuru {
	0%, 25% { transform: scale(1.0, 1.0) translate(0%, 0%); }
	5% { transform: scale(1.0, 1.06) translate(-5%, -4%) skew(6deg, 0deg); }
	12.5% { transform: scale(1.0, 0.94) translate(5%, 4%) skew(-6deg, 0deg); }
	16.25% { transform: scale(1.0, 1.03) translate(2%, -2%) skew(-3deg, 0deg); }
	20% { transform: scale(1.0, 0.97) translate(-2%, 2%) skew(3deg, 0deg); }
}

/*----------フッター----------*/

#footer {
	position: relative;
	width: 60%;
	margin: 0 auto;
	padding: 0 0 15px;
	text-align: center;
	background: rgba(255, 255, 255, 0.6);
}
#footer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 auto 15px;
	padding: 16px 0 18px;
	line-height: 1;
	background: linear-gradient(to bottom, #ef8bb7, #ef8bb7 50%, #eb6ea5 50%, #eb6ea5);
}
#footer ul li:not(:first-child) {
	margin-left: 0.75em;
	padding-left: 0.75em;
	border-left: 1px solid #fff;
}
#footer.top ul li:last-child {
	display: none;
}
#footer ul li a {
	font-size: 14px;
	color: #fff;
	text-decoration: none;
}
#footer .copyright {
	display: table;
	margin: 0 auto;
	text-align: left;
	font-size: 12px;
	color: #c91275;
}
#footer .pagetop {
	position: fixed;
	bottom: 0;
	right: 10px;
	width: 140px;
	z-index: 2;
}
#footer .pagetop img {
	width: 100%;
}
#footer .pagetop:hover {
	transition: 0.4s;
	transform: scale(1.1);
}
	@media screen and (max-width: 769px){
		#footer {
			width: 100%;
			padding: 0 0 10px 12px !important;
			text-align: left;
			background: none;
		}
		#footer ul {
			display: none;
		}
		#footer .copyright {
			margin: 0 auto 0 0;
			font-size: 11px;
			color: #fff;
		}
		#footer .pagetop {
			position: absolute;
			right: 5px;
			bottom: 0;
			width: 100px;
		}
	}
