@charset "UTF-8";
.loading {
	z-index: 9999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	visibility: hidden;
	opacity: 0;
	transition: 0.5s;
}
.loading.active {
	visibility: visible;
	opacity: 1;
	background: #F3B1B9;
}
/*
.loader {
	position: absolute;
	top: calc(50% - 32px);
	left: calc(50% - 32px);
	width: 64px;
	height: 64px;
}
.loader div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	box-sizing: border-box;
	opacity: .8;
}
.one {
	border-top: 1px solid #fff;
	animation: rotate-left 1s linear infinite;
}
.two {
	border-right: 1px solid #CCCC52;
	animation: rotate-right 1s linear infinite;
}
.three {
	border-bottom: 1px solid #FFD933;
	animation: rotate-right 1s linear infinite;
}
.four {
	border-left: 1px solid #000;
	animation: rotate-right 1s linear infinite;
}
@keyframes rotate-left {
	0% {
		transform: rotate(360deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

@keyframes rotate-right {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
*/
.loader {
	position: fixed;
	top: calc(45% - 50px / 2);
	left: calc(50% - 300px / 2);
	display: block;
	width: 300px;
	height: auto;
	font-family: "Oswald", sans-serif;
	font-size: 7rem;
	line-height: 1;
	text-align: center;
}
.ball-pulse-sync>div, .ball-pulse>div, .ball-scale-random>div, .ball-scale>div {
	background-color: #fff;
	border-radius: 100%;
	margin: 2px;
	display: inline-block;
}
.ball-pulse-sync>div:nth-child(1) {
	-webkit-animation: ball-pulse-sync .6s -.14s infinite ease-in-out;
	animation: ball-pulse-sync .6s -.14s infinite ease-in-out;
}
.ball-pulse-sync>div:nth-child(2) {
	-webkit-animation: ball-pulse-sync .6s -70ms infinite ease-in-out;
	animation: ball-pulse-sync .6s -70ms infinite ease-in-out;
}
.ball-pulse-sync>div:nth-child(3) {
	-webkit-animation: ball-pulse-sync .6s 0s infinite ease-in-out;
	animation: ball-pulse-sync .6s 0s infinite ease-in-out;
}
.ball-pulse-sync>div {
	width: 15px;
	height: 15px;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
@keyframes ball-pulse-sync {
	33% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px)
	}

	66% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px)
	}

	100% {
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}


html {
	overflow-x: hidden;
}
a:hover img {
	opacity: 0.8;
}
/* パララックス */
.inVtop {
	transform: translate(0, -20px);
	-webkit-transform: translate(0, -20px);
	filter: alpha(opacity=0);
	opacity: 0.0;
	-moz-opacity: 0.0;
	transition: 0.4s;
}
.inV {
	transform: translate(0, 40px);
	-webkit-transform: translate(0, 40px);
	filter: alpha(opacity=0);
	opacity: 0.0;
	-moz-opacity: 0.0;
	transition: .8s;
}
.inVright {
	transform: translate(40px, 0);
	-webkit-transform: translate(40px, 0);
	filter: alpha(opacity=0);
	opacity: 0.0;
	-moz-opacity: 0.0;
	transition: .8s;
}
.inVleft {
	transform: translate(-40px, 0);
	-webkit-transform: translate(-40px, 0);
	filter: alpha(opacity=0);
	opacity: 0.0;
	-moz-opacity: 0.0;
	transition: .8s;
}
.inVopen {
	transform: scale(.5);
	-webkit-transform: scale(.5);
	filter: alpha(opacity=0);
	opacity: 0.0;
	-moz-opacity: 0.0;
	transition: .8s;
	transition-delay: 0.8s;
}
.inValpha {
	filter: alpha(opacity=0);
	opacity: 0.0;
	-moz-opacity: 0.0;
	transition: 2.8s;
	transition-delay: 0.4s;
}
.inSc,
.inVp,
.inVsc {
	transform: scale(.8);
	filter: alpha( opacity=0 );
	opacity: 0;
	transition: .3s;
	transition-delay: 1s;
}
.inAnime {
	transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	filter: alpha(opacity=100);
	opacity: 1.0;
	-moz-opacity: 1.0;
}
.zoom {
	opacity: 0;
}
.zoom.is-animated {
	animation: zoom 0.5s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
	/*animation-delay: 0.5s;*/
}
@keyframes zoom {
	0% {
		opacity: 0;
		transform: scale(0.9);
	}
/*
	50% {
		transform: scale(1.05);
	}
	65% {
		transform: scale(0.9);
	}
*/
	100% {
		transform: scale(1);
	}
	20%,
	100% {
		opacity: 1;
	}
}
.inV01 {
	transition-delay: 1.5s;
}
.inV02 {
	transition-delay: 1.75s;
}


body {
	overflow-x: hidden;
	font-family: YakuHanJP, "Noto Sans JP", Meiryo, sans-serif;
}
header {
	top: 0;
	width: 100vw;
	position: relative;
}
header .logo {
	width: 31.64%;
}
article {
	width: 100vw;
	margin: 0 auto;
}
section {
	overflow-x: hidden;
	padding-bottom: 1.33vw;
	position: relative;
}
h2 {
	margin-top: -16vw;
	padding-top: 16vw;
}
/* navi */
#navi,
#navi_flow {
	width: 100vw;
	z-index: 999;
	position: relative;
	position: fixed;
	padding-top: 4.73vw;
	padding-top: 2vw;
}
#navi_flow.fixed {
	display: block;
	position: fixed;
	top: 0;
	background: none;
}
#navi ul,
#navi_flow ul {
	width: 93.47%;
	display: flex;
	margin: 0 auto;
	padding: 0;
	justify-content: space-between;
	flex-wrap: wrap;
}
#navi li,
#navi_flow li {
	width: 23%;
}
#navi_flow {
	display: none;
}
#navi a:hover,
#navi_flow a:hover {
	opacity: 0.9;
}
/* lityカスタマイズ */
.lity{
	background: rgba(0 0 0 / 80%);
}
.lity-close{
	text-shadow: unset;
}
.lity-close::after{
	content: "";
	display: inline-block;
	background: url(../upload/close.svg) no-repeat;
	background-size: contain;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
@media screen and (min-width: 751px){
	.lity-close{
		width: 100px;
		height: 100px;
		top: 35px;
		right: 35px;
	}
	.lity-close:active {
		top: 36px;
		right: 35px;
	}
}
@media screen and (max-width: 750px){
	.lity-close{
		width: 60px;
		height: 60px;
		top: 20px;
		right: 20px;
	}
	.lity-close:active {
		top: 21px;
		right: 20px;
	}
}
/* KV */
h1 {
	position: relative;
	background: url("../images/bg_kv.png"), #F09CB4;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100%;
}
/* contents */
#contents {
	background: #F7B45E;
	overflow-y: hidden;
}
#event {
	padding-bottom: 6.63vw;
	background: #B9D200;
	overflow-y: hidden;
}
#mother {
	background: #ABDAD6;
	overflow-y: hidden;
}
#pickup {
	background: #FAC8D3;
	overflow-y: hidden;
}
a.link {
	width: 46vw;
	position: absolute;
	left: 50%;
	bottom: 4vw;
	transform: translateX(-50%);
}
#event div a.link {
	width: 46vw;
	position: absolute;
	left: 50%;
	bottom: 2.79vw;
	transform: translateX(-50%);
}
#contents > p,
#contents div,
#event > p,
#mother > p,
#mother div,
#pickup > p {
	width: 90.67%;
	margin: 0 auto 6.67vw;
	position: relative;
	text-align: center;
}
#mother > p,
#mother div,
#pickup > p {
	width: 86.67%;
}
#mother > p {
	margin: 0 auto 3.13vw;
}
/* contents */
#contents div,
#mother div {
	margin: 0 auto 2.67vw;
	display: flex;
	justify-content: space-between;
}
#contents div p {
	width: 48.53%;
	margin-bottom: 4vw;
	position: relative;
}
#mother div p {
	width: 48.53%;
	margin-bottom: 4vw;
	position: relative;
}
a.link {
	width: 73.53%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.contents01 a.link {
	bottom: 6.89vw;
}
.contents01 a.link.line {
	bottom: 20.96vw;
}
.contents02 a.link {
	bottom: 6.64vw;
}
.contents03 a.link {
	bottom: 13.79vw;
}
.contents03 a.link.detail {
	bottom: 3.76vw;
}
.contents04 a.link {
	bottom: 6.13vw;
}
.contents04 a.link.line {
	bottom: 13.79vw;
}
/* event */
#event > div {
	width: 90.67%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.event01 {
	background: #FC8690;
/*
	background: url("../images/bg_event01.png"), #FC8690;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100%;
*/
}
.event02 {
	background: #008CCF;
/*
	background: url("../images/bg_event02.png"), #008CCF;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100%;
*/
}
.event03 {
	background: #6FBA2C;
/*
	background: url("../images/bg_event03.png"), #6FBA2C;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100%;
*/}
#event .link {
	width: 73.53%;
	margin: 2.8vw auto 0;
}
#event > p.link {
	width: 86.67%;
	margin: 6vw auto 0;
}
/* tab */
#event .tab_list {
	display: flex;
	justify-content: space-between;
}
#event .tab_list button {
	width: calc(100% / 3);
	padding: 0;
	border: none;
	text-align: center;
	cursor: pointer;
}
.btn_e01 {
	background: #FC8690;
}
.btn_e02 {
	background: #008CCF;
}
.btn_e03 {
	background: #6FBA2C;
}
.btn_e01.btn_active {
	background: #FC8690;
/*
	background: url("../images/bg_tab_e01.png"), #FC8690;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100%;
*/
}
.btn_e02.btn_active {
	background: #008CCF;
/*
	background: url("../images/bg_tab_e02.png"), #008CCF;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100%;
*/
}
.btn_e03.btn_active {
	background: #6FBA2C;
/*
	background: url("../images/bg_tab_e03.png"), #6FBA2C;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100%;
*/
}
#event .tab_cont {
	display: none;
	padding-bottom: 4.21vw;
}
#event .cont_active {
	display: block;
}
/* pickup */
.pickup01 a.link {
	bottom: 3.47vw;
}
.pickup02 a.link {
	bottom: 2.8vw;
}
/* foot link */
footer {
	background: #fff;
}
footer div {
	padding: 0 4%;
}
.foot_link,
.foot_copy div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.foot_link,
.foot_copy {
	padding-top: 4.67vw;
}
.foot_link {
	background: #FFFBC7;
}
.foot_link p {
	width: 44vw;
	margin-bottom: 5vw;
	color: #000;
	font-weight: 400;
}
.foot_link span {
	margin-bottom: 0.75em;
	display: block;
	font-weight: 700;
}
.foot_copy {
	background: #fff;
}
.foot_copy div p {
	width: 53.33%;
}
.foot_copy div p:last-child {
	width: 28.46%;
}
.foot_copy > p {
	padding: 2.5em 0 2em;
	text-align: center;
}

#page_top {
	width: 60px;
	height: 60px;
	text-decoration: none;
	position: fixed;
	right: 0;
	bottom: -60px;
	opacity: 0.6;
	z-index: 100;
}
#page_top i {
	font-weight: 900;
	font-size: 50px;
	color: #333;
}
#page_top img {
	width: 13.2vw;
}
.center {
	text-align: center;
}
.pc_only {
	display: none !important;
}
.sp_only {
	display: block !important;
}

/* font-size */
.foot_link p {
	font-size: 2.13vw;
}
.foot_copy p {
	font-size: 1.73vw;
}
/* pc */
@media (min-width: 751px) {
	body {
		background: url("../images/bg_pc.png") center top no-repeat;
		background-size: 1920px;
		background-attachment: fixed;
	}
	header {
		width: 540px;
		margin: 0 auto;
		background: #fff;
	}
	.wrap {
		max-width: 540px;
		margin: 0 auto;
		/*box-shadow: 10px 0px 10px -10px rgba(3, 0, 0, 0.5), -10px 0px 10px -10px rgba(3, 0, 0, 0.5);*/
	}
	main {
		width: 540px;
		margin: 0 auto;
		position: relative;
		z-index: 1;
		background: #fff;
	}
	article {
		width: 540px;
		position: relative;
		z-index: 1;
	}
	section {
		padding-bottom: 10px
	}
	h2 {
		margin-top: -85px;
		padding-top: 85px;
	}
/* navi */
	#navi,
	#navi_flow {
		width: 540px;
		margin: 0 auto;
		padding-top: 25px;
		padding-top: 10px;
	}
	#navi_flow.fixed {
	}
/* KV */
	h1 {
		position: relative;
	}
	.main_image {
		width: 540px;
	}
/* contents */
	#event {
		padding-bottom: 35px;
	}
	a.link {
		position: absolute;
		left: 50%;
		bottom: 20px;
		transform: translateX(-50%);
	}
/* contents */
	a.link {
		width: 73.53%;
		bottom: 20px;
	}
	#event div a.link {
		width: 73.53%;
		bottom: 20px;
	}
	#contents > p,
	#contents div,
	#event > p,
	#mother > p,
	#mother div,
	#pickup > p {
		margin: 0 auto 35px;
	}
	#mother > p {
		margin: 0 auto 17px;
	}
/* contents */
	#contents div,
	#mother div {
		margin: 0 auto 15px;
	}
	#contents div p {
		margin-bottom: 20px;
	}
	#mother div p {
		margin-bottom: 20px;
		position: relative;
	}
	.contents01 a.link {
		bottom: 36px;
	}
	.contents01 a.link.line {
		bottom: 110px;
	}
	.contents02 a.link {
		bottom: 36px;
	}
	.contents03 a.link {
		bottom: 75px;
	}
	.contents03 a.link.detail {
		bottom: 20px;
	}
	.contents04 a.link {
		bottom: 31px;
	}
	.contents04 a.link.line {
		bottom: 75px;
	}
	.contents03 a.link,
	.contents04 a.link,
	#mother div .link {
		width: 81.82%;
	}
/* event */
	#event .link {
		margin: 20px auto 0;
	}
	#event > p.link {
		margin: 35px auto 0;
	}
/* tab */
	#event .tab_cont {
		padding-bottom: 20px;
	}
/* pickup */
	.pickup01 a.link {
		bottom: 18px;
	}
	.pickup02 a.link {
		bottom: 15px;
	}
/* foot link */
	footer {
		width: 540px;
		margin: 0 auto;
	}
	.foot_link,
	.foot_copy {
		padding-top: 25px;
	}
	.foot_link p {
		width: 238px;
		margin-bottom: 16px;
	}
	.pc_only {
		display: block !important;
	}
	.sp_only {
		display: none !important;
	}
/* font-size */
	.foot_link p {
		font-size: 1.2rem;
	}
	.foot_copy p {
		font-size: 1.3rem;
	}

}


/* footer */
/* footer_pc */
@media (min-width: 751px) {
}
/* 2x */
@media (min-width: 1921px) {
	body {
		background: url("../images/bg_pc2x.png") center top no-repeat;
		background-size: cover;
		background-attachment: fixed;
	}
}
