@charset "UTF-8";

/*//////////////////////////////////////////////////////////////
	layout
//////////////////////////////////////////////////////////////*/

/*=======================================================
	body
=======================================================*/




/*=======================================================
	container
=======================================================*/

/* btn_sns_area */
#btn_sns_area {
	position: absolute;
	right: 150px;
	top: 10px;
	z-index: 10;
}

/* tw_btn_area */
#tw_btn_area {
	text-align: right;
	float: right;
}

/* gnavi_area */
#gnavi_area {
	top: 0;
}


/*=======================================================
	common
=======================================================*/

.loading {
	position: fixed;
	background: #f90;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0px;
	left: 0px;
	z-index: 5;
	pointer-events: none;
	transition: 1s;
}

.loaded .loading {
	opacity: 0;
}

.lodaingInner .loadingImg1,
.lodaingInner .loadingImg2,
.lodaingInner .loadingImg3,
.lodaingInner .loadingImg4,
.lodaingInner .loadingImg5 {
	display: block;
	width: 50px;
	height: 150px;
	position: absolute;
	top: calc(50% - 75px);
	left: calc(50% - 25px);
	border-radius: 50%;
	animation: animeLoading 3s infinite;
	opacity: 0;
}

.lodaingInner .loadingImg2 {
	animation-delay: 0.2s;
}

.lodaingInner .loadingImg3 {
	animation-delay: 0.4s;
}

.lodaingInner .loadingImg4 {
	animation-delay: 0.6s;
}

.lodaingInner .loadingImg5 {
	animation-delay: 0.8s;
}

.lodaingInner .loadingImg1::before,
.lodaingInner .loadingImg2::before,
.lodaingInner .loadingImg3::before,
.lodaingInner .loadingImg4::before,
.lodaingInner .loadingImg5::before {
	position: absolute;
	content: "";
	display: block;
	top: 9px;
	left: calc(50% - 5px);
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50%;
	box-shadow:
		0px 0px 5px #fff,
		0px 0px 10px #fff,
		0px 0px 15px #fff;
}

@keyframes animeLoading {
	0% {
		transform: rotate(0deg);
		opacity: 0;
	}

	40% {
		opacity: 1;
	}

	80% {
		transform: rotate(360deg);
		opacity: 0;
	}

	100% {
		transform: rotate(360deg);
		opacity: 0;
	}
}

.btn {
	margin-top: 20px;
}

.btn a {
	display: inline-block;
	padding: 15px;
	text-decoration: none;
	font-weight: bold;
}

.btn.promo {
	display: inline-block;
	padding: 80px 15px 0px;
}

@media screen and (max-width: 800px) {
	.btn.promo {
		display: inline-block;
		padding: 25px 15px 0px;
	}
}

.btn.promo a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	padding: 10px;
	min-width: 500px;
	font-size: 200%;
}

.btn.promo a::before {
	position: absolute;
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	border: 10px solid #f90;
	outline: 5px solid rgb(253, 253, 176, 1.0);
	box-shadow: inset 0px 0px 0px 5px rgb(253, 253, 176, 1.0);
	border-radius: 100px;
	transition: 0.5s;
}

.btn.promo a:hover:before {
	transform: scale(1.05);
}

@media screen and (max-width: 800px) {
	.btn.promo .icon svg {
		width: 40px;
		height: auto;
	}

	.btn.promo a {
		gap: 15px;
		padding: 10px 20px;
		min-width: 0px;
		font-size: 120%;
	}

	.btn.promo a::before {
		border: 6px solid #f90;
		outline: 3px solid rgb(253, 253, 176, 1.0);
		box-shadow: inset 0px 0px 0px 3px rgb(253, 253, 176, 1.0);
		border-radius: 100px;
	}
}

@media screen and (max-width: 480px) {
	.btn.promo .icon svg {
		width: 30px;
		height: auto;
	}

	.btn.promo a {
		gap: 10px;
		padding: 5px 10px;
		min-width: 0px;
		font-size: 110%;
	}

	.btn.promo a::before {
		border: 6px solid #f90;
		outline: 3px solid rgb(253, 253, 176, 1.0);
		box-shadow: inset 0px 0px 0px 3px rgb(253, 253, 176, 1.0);
		border-radius: 100px;
	}
}


.styleTtl {
	text-align: center;
	font-size: 45px;
	line-height: 1em;
	color: #f90;
	text-shadow:
		3px 3px 0 #fff,
		-3px 3px 0 #fff,
		3px -3px 0 #fff,
		-3px -3px 0 #fff;
}

.styleTtl>.inner {
	display: inline-block;
	position: relative;
	min-width: 312px;
	background: url(../img/bg_ttl.png) top center;
	padding: 4px;
	border-radius: 10px;
}

.styleTtl>.inner::before {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/icon_fork.png) no-repeat center center;
	width: 29px;
	height: 88px;
	left: -49px;
	top: -30px;
	transform: rotate(-20deg);
}

.styleTtl>.inner::after {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/icon_spoon.png) no-repeat center center;
	width: 29px;
	height: 90px;
	right: -49px;
	top: -32px;
	transform: rotate(20deg);
}

.styleTtl>.inner>.inner2 {
	position: relative;
	top: -19px
}

@media screen and (max-width: 640px) {
	.styleTtl {
		font-size: 28px;
		text-shadow:
			3px 3px 0 #fff,
			-3px 3px 0 #fff,
			3px -3px 0 #fff,
			-3px -3px 0 #fff;
	}

	.styleTtl>.inner {
		display: inline-block;
		position: relative;
		min-width: 200px;
		background: url(../img/bg_ttl.png) top center;
		padding: 4px;
		border-radius: 5px;
	}

	.styleTtl>.inner::before {
		left: -39px;
		transform: scale(0.5) rotate(-20deg);
	}

	.styleTtl>.inner::after {
		right: -39px;
		transform: scale(0.5) rotate(20deg);
	}

	.styleTtl>.inner>.inner2 {
		position: relative;
		top: -12px
	}
}

.styleBtn1 {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}

.styleBtn1 a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	text-decoration: none;
	font-size: 120%;
	font-weight: bold;
	position: relative;
	padding: 5px 10px;
	min-width: 260px;
}

.styleBtn1 a::before {
	position: absolute;
	content: "";
	display: block;
	border: solid 4px #f90;
	border-radius: 50px;
	width: 100%;
	height: 100%;
	transition: .5s;
}

.styleBtn1 a:hover:before {
	transform: scale(1.05);
}

.styleBtn1 a .icon img {
	vertical-align: bottom;
	position: relative;
	top: -2px;
}

/*=======================================================
	logo_area
=======================================================*/
#logo_area {
	position: relative;
	opacity: 0;
	transition: opacity 1s;
}

.loaded #logo_area {
	opacity: 1;
	-webkit-mask: url(../img/mask.svg);
	mask: url(../img/mask.svg);
	-webkit-mask-image: url("../img/mask.svg");
	mask-image: url("../img/mask.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 125% 125%;
	mask-size: 125% 125%;
	-webkit-mask-position: center;
	mask-position: center;
}

#logo_area .inner {
	overflow: hidden;
	width: 100%;
	height: 90vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

@media screen and (max-width: 1080px) {
	#logo_area .inner {
		height: 85vh;
	}
}

@media screen and (max-width: 640px) {
	#logo_area .inner {
		height: 60vh;
	}
}

#logo_area .bgImg {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	object-fit: cover;
}

#logo_area .bgImg li {
	width: 25%;
}

@media screen and (max-width: 1080px) {
	#logo_area .bgImg li {
		width: 33.333%;
	}
}

#logo_area .bgImg li img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

#logo_area .data {
	padding-bottom: 2vw;
	position: relative;
	z-index: 2;
}

#logo_area .data .ttl {
	width: 40vw;
	max-width: 385px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	opacity: 0;
	transition: opacity 5s;
	will-change: transform;
	backface-visibility: hidden;
	z-index: 3;
	filter: drop-shadow(4px 4px 16px rgba(0, 0, 0, 0.6));
}

@media screen and (max-width: 640px) {
	#logo_area .data .ttl {
		width: 45vw;
		filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.3));
	}
}

.loaded #logo_area .data .ttl {
	opacity: 1;
	animation: scaleDown 2s forwards;
}

@keyframes scaleDown {
	0% {
		transform: scale(1.05);

	}

	100% {
		transform: scale(1);
	}
}


#logo_area .data .ttl::before {
	/* position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	top: 3%;
	left: 3%;
	background: rgba(0, 0, 0, 0.8);
	filter: blur(20px);
	border-radius: 50%; */
}

#logo_area .data .ttl img {
	width: 100%;
	height: auto;
	position: relative;
}

.mv_btm {
	width: 100%;
	position: relative;
}

.mv_btm {
	position: absolute;
	transform: translateY(-100%) translateX(-50%);
	width: 100%;
	left: 50%;
}

.mv_btm::before {
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 100px;
	bottom: -98px;
	left: 0px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
	z-index: 2;
}

.mv_btm img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

#logo_date_area {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 16px;
	text-align: center;
	line-height: 1em;
	opacity: 0;
	transition: opacity 5s;
	transition-delay: 1s;
	z-index: 2;
	margin-top: -2.5em;
}

.loaded #logo_date_area {
	opacity: 1;
}

#logo_date_area .dateInner {
	position: relative;
	display: inline-block;
}

#logo_date_area .dateInner::before {
	position: absolute;
	display: block;
	content: "";
	width: 112%;
	height: 140%;
	top: -18%;
	left: -6%;
	background: rgb(255, 228, 105);
	border-radius: 200px;
	filter: blur(10px);
}

@media screen and (max-width: 640px) {
	#logo_date_area .dateInner::before {
		filter: blur(5px);
	}
}

#logo_date_area h2 {
	position: relative;
	color: #FFF;
	line-height: 1em;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
	letter-spacing: .01em;
}


/*=======================================================
	about_area
=======================================================*/
#about_area {
	margin-top: 120px;
	margin-bottom: 120px;
	position: relative;
	width: 100%;
	overflow-x: hidden;
}

@media screen and (max-width: 640px) {
	#about_area {
		margin-top: 60px;
		margin-bottom: 60px;
		position: relative;
	}
}

#about_area>.inner {
	position: relative;
	padding-left: 16px;
	padding-right: 16px;
}

#about_area>.inner>.inner2 {
	display: inline-block;
	position: relative;
	z-index: 2;
}

#about_area>.inner>.inner2::before {
	/* position: absolute;
	display: block;
	content: "";
	background: rgba(255, 255, 255, 0.8);
	width: 120%;
	height: 110%;
	left: -10%;
	top: -5%;
	filter: blur(10px);
	border-radius: 40%; */
}

#about_area h2 {
	margin-bottom: 30px;
	padding-bottom: 10px;
	text-align: center;
	position: relative;
	line-height: 1.1em;
}

@media screen and (max-width: 1080px) {
	#about_area h2 {
		font-size: 300%;
	}
}

@media screen and (max-width: 640px) {
	#about_area h2 {
		font-size: 200%;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
}

#about_area h2>.inner {
	display: inline-block;
	position: relative;
}

#about_area h2>.inner::before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 5px;
	background: #f90;
	border-radius: 50px;
	bottom: -20px;
	transform: scaleX(0.2);
	transition: 2s;
}

.scrollAnime.active #about_area h2>.inner::before {
	transform: scaleX(1);
}

#about_area .detail {
	line-height: 1.8em;
	position: relative;
	padding-left: 16px;
	padding-right: 16px;
	text-shadow: 0px 0px 10px #fff , 0px 0px 10px #fff ,0px 0px 10px #fff,0px 0px 10px #fff;
}

#about_area .aboutImgs {
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
	margin-top: 80px;
}

@media screen and (max-width: 640px) {
	#about_area .aboutImgs {
		margin-top: 40px;
	}
}

#about_area .aboutImgs li {
	width: 20%;
}

#about_area .aboutImgs li.up img {
	margin-top: -40%;
}

#about_area .aboutImgs li.up2 img {
	margin-top: -100%;
}

#about_area .aboutImgs li img {
	width: 100%;
	height: auto;
}

#about_area .detail {
	font-size: 140%;
	line-height: 1.8em;
}

#about_area .detail .font-l {
	font-size: 180%;
	display: block;
	padding: 10px 0px;
	text-align: center;
	line-height: 1.5em;
}

@media screen and (max-width: 1080px) {
	#about_area .detail {
		font-size: 125%;
	}
}

@media screen and (max-width: 640px) {
	#about_area .detail {
		font-size: 110%;
	}

	#about_area .sp-None {
		display: none;
	}
}

/*=======================================================
	new_area
=======================================================*/
#new_area {
	position: relative;
	margin-bottom: 120px;
}

@media screen and (max-width: 640px) {
	#new_area {
		margin-bottom: 60px;
	}
}

#new_area h2 {
	margin-bottom: 50px;
}

@media screen and (max-width: 640px) {
	#new_area h2 {
		margin-bottom: 30px;
	}
}

#new_area .youtube_area {
	padding-left: 16px;
	padding-right: 16px;
}

#new_area .youtube_area>.inner {
	display: inline-block;
	padding: 40px;
	background: #f90;
	border-radius: 50px;
	box-sizing: border-box;
	box-shadow: 8px 8px 2px rgba(0, 0, 0, 0.1);
}

#new_area .youtube_area .movie {
	position: relative;
}

#new_area .youtube_area .movie iframe {
	border-radius: 50px;
}

#new_area .youtube_area .movie::before {
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: -1px;
	left: 0px;
	border-radius: 50px;
	z-index: 2;
	pointer-events: none;
	box-sizing: border-box;
	/* background: #f90; */
}

#new_area .youtube_area .texts {
	color: #fff;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
	margin-top: 20px;
}

#new_area .youtube_area .texts h3 {
	font-size: 30px;
}

@media screen and (max-width: 1080px) {
	#new_area .youtube_area>.inner {
		display: block;
		padding: 20px;
		border-radius: 30px;
	}

	#new_area .youtube_area .movie iframe {
		width: 100%;
		aspect-ratio: 16 / 9;
		height: auto;
		border-radius: 30px;
	}

	#new_area .youtube_area .texts {
		margin-top: 10px;
	}

	#new_area .youtube_area .texts h3 {
		font-size: 25px;
	}
}

@media screen and (max-width: 640px) {
	#new_area .youtube_area .texts h3 {
		font-size: 20px;
	}
}

/*=======================================================
	archive_area
=======================================================*/
#archive_area {
	margin-bottom: 180px;
	position: relative;
	padding-left: 16px;
	padding-right: 16px;
}

@media screen and (max-width: 640px) {
	#archive_area {
		margin-bottom: 100px;
	}
}

#archive_area h2 {
	margin-bottom: 50px;
}

@media screen and (max-width: 640px) {
	#archive_area h2 {
		margin-bottom: 30px;
	}
}

#archive_area ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px 1.5%;
}

#archive_area ul li {
	width: 32%;
	max-width: 640px;
	position: relative;
	background: #f90;
	border-radius: 20px;
	padding: 20px;
	box-sizing: border-box;
	box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 640px) {
	#archive_area ul li {
		border-radius: 10px;
		padding: 10px;
		font-size: 80%;
	}
}

#archive_area ul li img {
	display: block;
}

@media screen and (max-width: 640px) {
	#archive_area .styleBtn1 {
		margin-top: 30px;
	}
}

#archive_area ul li .imgArea {
	overflow: hidden;
	border-radius: 15px;
}

@media screen and (max-width: 640px) {
	#archive_area ul li .imgArea {
		border-radius: 10px;
	}
}

#archive_area ul li .imgArea img {
	vertical-align: bottom;
}

#archive_area ul li .texts {
	margin-top: 10px;
	color: #fff;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

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

.icon_play {
	position: absolute;
	top: 0;
	left: 0;
}

.icon_play img {
	width: 100%;
}

/*=======================================================
	archive_list_area
=======================================================*/
#archive_list_area {
	margin-top: 100px;
}

@media screen and (max-width: 640px) {
	#archive_list_area {
		margin-top: 50px;
	}
}

/*=======================================================
	twitter_area
=======================================================*/
#twitter_area {
	margin-bottom: 80px;
}

#twitter_area h2 {
	height: 115px;
	text-indent: -9999px;
	overflow: hidden;
	background: url(../img/ttl_x.png) 50% 50% no-repeat;
	background-size: contain;
}

/*=======================================================
	sponsor_area
=======================================================*/
#sponsor_area {
	margin-bottom: 80px;
	position: relative;
}

@media screen and (max-width: 640px) {
	#sponsor_area {
		margin-bottom: 40px;
	}
}

#sponsor_area ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#sponsor_area ul li {
	margin: 0 20px 20px;
}

#sponsor_area ul li:first-child {
	width: 100%;
	margin: 0 0 20px;
}


@keyframes animeRotate {
	from {
		transform: rotate(5deg);
	}

	to {
		transform: rotate(-5deg);
	}
}

#sponsor_area .neobatakun {
	position: absolute;
	left: calc(50% + 125px);
	top: -43px;
	width: 150px;
	height: 100px;
}

#sponsor_area .neobatakun a {
	display: block;
	position: relative;
	animation: animeRotate 2s ease-in-out infinite alternate;
	width: 100%;
	height: 100%;
}

#sponsor_area .neobatakun a img {
	position: absolute;
	transition: 1s;
	left: 0px;
	top: 0px;
}

#sponsor_area .neobatakun a .neobata2 {
	opacity: 0;
	z-index: 2;
}

#sponsor_area .neobatakun a:hover .neobata2 {
	opacity: 1;
}

@media screen and (max-width: 640px) {
	#sponsor_area .sponsoredby {
		width: 130px;
		height: auto;
	}

	#sponsor_area .sponsorLogo {
		width: 300px;
		height: auto;
	}

	#sponsor_area .neobatakun {
		position: absolute;
		left: calc(50% + 77px);
		top: -22px;
		transform: rotate(5deg);
		width: 100px;
		height: 67px;
	}

	#sponsor_area .neobatakun a img {
		width: 100px;
		height: auto;
	}
}

/*=======================================================
	logo_s_area
=======================================================*/
#logo_s_area {
	position: relative;
}

#logo_s_area h1 {
	text-align: center;
	padding: 80px 16px 5px;
}

#logo_s_area h1 img {
	max-width: 500px;
	width: 85%;
	height: auto;
}

#logo_s_area #logo_date_area {
	display: inline-block;
	margin-top: 0.1em;
	opacity: 1;
}

/*=======================================================
	filter_area
=======================================================*/
#filter_area {
	padding: 0px 16px 50px;
}

#filter_area #filter_form {
	font-weight: bold;
	color: #fff;
	background: #f90;
	padding: 15px 15px 20px;
	border-radius: 10px;
	border: solid 5px #fff;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

#filter_area #filter_form .filter_row label {
	display: inline-block;
	padding: 5px;
}

#filter_area #filter_form select {
	padding: 2px 10px;
	border-radius: 5px;
}

/*=======================================================
	footer
=======================================================*/
#footer {
	width: 100%;
	position: relative;
}

#footer p {
	text-align: center;
	line-height: 180px;
	margin-bottom: 0;
}

#footer p a {
	text-decoration: none;
	color: #555;
}

/*=======================================================
	pagetop_area
=======================================================*/
#pagetop_area {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 20;
}

#pagetop_area a {
	width: 60px;
	height: 60px;
	display: block;
	background: #fa7528;
	border: solid 3px #ffffff;
	border-radius: 50%;
	position: relative;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

#pagetop_area a::before {
	position: absolute;
	content: " ";
	top: 39%;
	right: 37%;
	width: 12px;
	height: 12px;
	border-top: 5px solid #FFF;
	border-right: 5px solid #FFF;
	transform: rotate(-45deg);
}

/*=======================================================
	背景演出
=======================================================*/
.backgroundEffects .obj1,
.backgroundEffects .obj2,
.backgroundEffects .obj3,
.backgroundEffects .obj4,
.backgroundEffects .obj5,
.backgroundEffects .obj6,
.backgroundEffects .obj7 {
	position: fixed;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	filter: blur(10px);
	animation: animePulse 5s ease-in-out infinite alternate;
}

.backgroundEffects .obj1 {
	background: rgb(247, 236, 187);
	top: 120px;
	left: calc(50% + 40vw);
	width: 60px;
	height: 60px;
	animation-delay: 0s;
}

.backgroundEffects .obj2 {
	background: rgb(247, 226, 234);
	top: 160px;
	left: calc(50% - 45vw);
	width: 45px;
	height: 45px;
	animation-delay: 2s;
}

.backgroundEffects .obj3 {
	background: rgb(228, 255, 205);
	top: 460px;
	left: calc(50% + 30vw);
	width: 45px;
	height: 45px;
	animation-delay: 4s;
}

.backgroundEffects .obj4 {
	background: rgb(255, 228, 179);
	top: 560px;
	left: calc(50% - 30vw);
	animation-delay: 1s;
}

.backgroundEffects .obj5 {
	background: rgb(232, 253, 219);
	top: 700px;
	left: calc(50% - 40vw);
	width: 45px;
	height: 45px;
	animation-delay: 3s;
}

.backgroundEffects .obj6 {
	background: rgb(255, 251, 195);
	top: 800px;
	left: calc(50% - 10vw);
	animation-delay: 5s;
}

.backgroundEffects .obj7 {
	background: rgb(245, 227, 227);
	top: 760px;
	left: calc(50% + 37vw);
	width: 60px;
	height: 60px;
	animation-delay: 0s;
}

@keyframes animePulse {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(1.8);
	}
}

/*=======================================================
	scrollAnime
=======================================================*/
.scrollAnime {
	opacity: 0;
	transition: opacity 2s;
}

.scrollAnime.active {
	opacity: 1;
}