@charset "UTF-8";
#container{
	position: relative;
	transform: none;
}
#all_block{
	position: relative;
}
.star::before,.star::after{
	content: "";
	position: fixed;
	left: 10vw;
	top: 10vh;
	z-index: 1;
	display: block;
	width: 80px;
	height: 80px;
	background: url("../images/star.svg") no-repeat;
	background-size: contain;

	pointer-events: none;
	opacity: 0;
	animation: glitter 2s 1.5s infinite;
}
.star::after{
	animation: glitter 2s 2.5s infinite;
	background: url("../images/star2.svg") no-repeat;
	left: 5vw;
	top: 20vh;
	width: 50px;
	height: 50px;
}
.star.right::before{
	animation: glitter 1.8s 1s infinite;
	width: 50px;
	height: 50px;
	left: auto;
	right: 5vw;
	top: 30vh;
}
.star.right::after{
	width: 80px;
	height: 80px;
	left: auto;
	right: 10vw;
	top: 40vh;
}

@keyframes glitter {
	0% {
	  transform: scale(0);
	  opacity: 0;
	}
  
	25% {
	  transform: scale(1);
	  opacity: 1;
	}
  
	50% {
	  transform: scale(0);
	  opacity: 0;
	}
	100% {
		transform: scale(0);
		opacity: 0;
	  }
  }

/*-----------------------------------------------
__Header
-----------------------------------------------*/
header{
	width: 100%;
	margin: 0 auto;
	background: #5fe8ff;
}
header h1{
	width: 100%;
	background: #fff;
	padding: 10px;
	text-align: center;
}
header h1 img{
	max-height: 40px;
	width: auto;	
}
header figure{
	position: relative;
	max-width: 1250px;
	margin: 0 auto;
}
header img.sm_no{
	position: absolute;
	left: 50px;
	bottom:0;
	max-width: 140px;
	height: auto;
	border-radius: 10px;
}
header figure img{
	display: block;
	margin: 0 auto;
}
header .fl_box{
	max-width: 1050px;
	justify-content: space-between;
	width: 90%;
	margin: 0 auto;
}
figure.wchance{
	width: 90%;
	text-align: center;
	margin: 0 auto;
	padding: 40px 0 80px;
}
.recipe.fl_box {
	width: 100%;
	flex-direction: row;
	align-items: stretch;
	margin-bottom: 80px;
}
.recipe.fl_box > div{
	width: 25%;
}
main > .recipe div{
	position: relative;
}
main > .recipe div::before{
	content: "";
	position: absolute;
	right: 5%;
	top: 5%;
	z-index: 1;
	width: 60px;
	height: 50px;
	background: url(../images/icon_recipe.svg) no-repeat;
	background-size: contain;
}
main > .recipe div:nth-child(odd){
	transform: rotate(5deg);
}
main > .recipe div:nth-child(even){
	transform: rotate(-5deg);
}

/*-----------------------------------------------
__Main
-----------------------------------------------*/

main{
	padding: 40px 0;
	position: relative;
}

main section{
	border: 3px solid #0e9e40;
	border-radius: 30px;
	background: #fff;
	overflow: hidden;
	margin-bottom: 60px;
	margin-top:60px;
}
main section h2{
	color: #fff;
	background: #0e9e40;
	text-align: center;
	padding: 10px;
	margin-top: -1px;
	font-size:2em;
	letter-spacing: 0.05em;
}
main section .content{
	padding: 40px;
}

em.red{
	color: #D7000F;
}
span.og{
	color: #F77B14;
}


.intro{
	align-items: center;
	margin-bottom: 60px;
}
.intro div div{
	margin-bottom: 2em;
}
.intro div{
	width: 65%;
}
.intro figure{
	width: 30%;
}
#date .content{
	font-size: 140%;
	font-weight: bold;
}
#date .content dl{
	font-size: 60%;
	justify-content: center;
}
#date .content dt{
	margin-right: 1em;
}
#date .content p,#date .content dd{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
#date .content small{
	margin-right: 1em;
}
#date .content span.sm_br{
	padding-left: 0.5em;
	display: flex;
	align-items:center;
}
#date .content em{
	font-size: 180%;
}
#date .content span:not(.sm_br){
	border-radius: 50%;
	line-height: 1;
	font-size: 80%;
	margin-left: 5px;
	padding: 5px;
	background: #333;
	color: #fff;
	text-align: center;
}
#date .content > span:not(.sm_br){
	margin-right: 0.5em;
}

.insta_ttl{
	display:flex;
	justify-content: center;
	align-items: center;
	margin-top:150px;
	padding:0 10px;
}

#insta_link{
	margin: 0 auto 100px auto;
	padding: 100px 0;
	background: #ccf8ff;
}
#insta_link .fl_box{
	margin: 0 auto;
	width: 90%;
	justify-content: space-between;
}
#insta_link .txt_box{
	width: 35%;
	display: flex;
	flex-direction: column;
	gap: 40px 0;
	align-items: center;
	justify-content: center;
	color: #F77B14;
}
#insta_link h4{
	display: flex;
	flex-direction: column;
	gap: 40px 0;
	align-items: center;
	justify-content: center;
	color: #F77B14;
}
#insta_link h4 img{
	width: 300px;
}
#insta_link h4 em{
	font-weight: bold;
	font-size: 2rem;
	text-align: center;
}
#insta_link .button a{
	display: table;
	border-radius: 50px;
	padding: 15px 30px;
	border: 3px solid #D7000F;
	color: #D7000F;
	text-decoration: none;
	background-color: #fff;
	transition: all ease .3s;
}
#insta_link .button a:hover{
	transform: scale(0.97);
	background-color: #D7000F;
	color: #fff;
}
#insta_link .img_box{
	width: 60%;
	flex-wrap: wrap;
	gap: 20px;
}
#insta_link .img_box div{
	width: 31%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
#insta_link .img_box a img{
	transition: all ease .3s;
}
#insta_link .img_box a:hover img{
	opacity: 0.7;
}


#info .fl_box{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#info .fl_box figure{
	width: 30%;
	border-radius: 20px;
	overflow: hidden;
}
#info .fl_box > p{
	width: 65%;
}
#info .wchance{
	margin-top: 40px;
}

.sm_br{
	display: inline-block;
	padding-left: 1em;
}

section#happyou{
	margin-bottom: 0;
}


#howto .step article{
	padding: 0 20px;
}
#howto .txt_box{
	width: 60%;
}
#howto .image_box{
	width: 30%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
#howto .image_box figure.label{
	width: 80%;
	margin-bottom: 40px;
}
.step .recipe.fl_box{
	margin-bottom: 0;
}


.bd_box{
	padding: 20px;
	border: 1px solid #6c8193;
	border-radius: 16px;
}
ul.list{
	margin: 20px 0;
}
ul.list > li{
	list-style-type:disc;
	margin-left:2em;
	margin-bottom:0.5em;
}
ol{
	margin: 20px 0;
}
ol > li{
	list-style-type:decimal;
	margin-left:2em;
	margin-bottom:0.5em;
}

.caution{
	background: #f0f4f7;
	margin: 80px auto;
	padding: 40px;
	border-radius: 16px;
}
.caution.sub{
	display: flex;
	align-items: center;
}
.caution dt{
	display: table;
	background: #6c8193;
	color: #fff;
	padding: 10px 20px;
	border-radius: 8px;
	margin-bottom: 1em;
}
.caution dt.top{
	display: block;
	color: #6c8193;
	font-weight: bold;
	font-size: 1.2em;
	background: none;
	text-align: center;
}
.caution p{
	font-size: 90%;
}
.step article{
	margin-bottom: 60px;
}
.step article h3{
	width: 10em;
	border: 1px solid #D7000F;
	color: #D7000F;
	padding: 0px 10px;
	text-align: center;
	font-weight: normal;
	border-radius: 40px;
	margin-bottom: 1em;
	font-size: 90%;
}
.step article h3 em{
	font-size: 30px;
	font-weight: normal;
}
.btn a{
	display: block;
	text-decoration: none;
	filter:drop-shadow(0 6px 0 rgba(0,0,0,0.2));
	transition: all ease .3s;
}
#howto .btn a{
	width: 80%;
	max-width: 500px;
	margin: 0 auto;
}
#container{
	position: relative;
}
#container > .btn{
	position: fixed;
	right: 10px;
	bottom: 5%;
	z-index: 10;
	width: 300px;
}
#container > .btn .sm_no{
	max-width: 200px;
	padding: 15px;
	border-radius: 10px;
	overflow: hidden;
	margin: 0 auto 20px;
	background: #fff;
}
#container > .btn .sm_no img{
	display: block;
}
.btn a:hover{
	transform: translateY(10px);
	filter: none;
}

#happyou p.ta_center{
	display: table;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	color: #000;
	font-size: 140%;
	padding: 0 0.5em;
}
#happyou p.ta_center em{
	background: linear-gradient(transparent 50%, #FBD375 50%);
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}
#happyou p.ta_center img{
	display: block;
	margin: 0 auto 20px auto;
}

/*-----------------------------------------------
__Footer
-----------------------------------------------*/
footer{
	background:#FBD375;
	padding: 60px 0;
}
footer dl{
	max-width: 600px !important;
	padding:40px;
	border-radius: 30px;
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}
footer dt{
	font-weight: bold;
	font-size: 120%;
	width: 100%;
	text-align: center;
}
footer dt::before{
	content: "";
	display: inline-block;
	margin-right: 8px;
	width: 16px;
	height: 16px;
	background: #D7000F;
	border-radius: 50%;
}
footer dd{
	width: 100%;
	margin-top: 20px;
}
footer dd a{
	display: block;
	height: 50px;
	pointer-events: none;
	margin-bottom: 20px;
}
footer dd a img{
	display: block;
	margin: 0 auto;
	height: 100%;
	width: auto;
}
footer small{
	margin-top: 40px;
	display:block;
	clear: both;
	text-align:center;
}

/*-----------------------------------------------
__Common
-----------------------------------------------*/
.fl_box{
	display:flex;
	justify-content: space-between;
	width:100%;
}

.pc_no{
	display:none;
}
a.tel{
	pointer-events:none;
}


.ta_center{
	text-align:center;
}
.f_right{
	float: right;
}
.f_left{
	float: left;
}
.c_both{
	clear: both;
}
.img_line{
	margin: 5px;
	padding: 2px;
	border: 1px solid #ccc;
}
.icon{
	margin: 0 5px;
	vertical-align: middle;
}


@media screen and (max-width: 999px){
	body{
		overflow-x: hidden;
	}
	.star::before,.star::after{
		left: 3vw;
		top: 10vh;
		width: 50px;
		height: 50px;
	}
	.star::after{
		left: 2vw;
		top: 20vh;
		width: 30px;
		height: 30px;
	}
	.star.right::before{
		width: 35px;
		height: 35px;
		right: 5vw;
		bottom: 25vh;
	}
	.star.right::after{
		width: 60px;
		height: 60px;
		right: 0;
		bottom: 15vh;
	}

	#container > .btn{
		right: 10%;
		width: 80%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#container > .btn .sm_no{
		max-width: 160px;
		margin: 0 20px 0;
	}
	.btn a{
		width: 300px;
	}

	#insta_link > div.fl_box{
		align-items: center;
	}
	#insta_link .img_box div{
		width: 30%;
	}

	footer{
		padding-bottom: 260px;
	}
	footer dd a{
		pointer-events: all;
	}
	footer dl{
		max-width: none !important;
		flex-direction: column;
		align-items: center;
	}

}

@media screen and (min-width: 0px) and (max-width: 600px){
	.star{
		display: none;
	}
	.fl_box.sm_bl{
		flex-direction: column;
		justify-content: center;
	}
	.sm_br{
		padding-left: 0;
		display: block;
	}
	.sm_no{
		display: none;
	}

	main section{
		border-radius: 16px;
	}
	main section h2{
		font-size: 120%;
	}
	main section .content{
		padding: 25px;
	}

	header h1 img{
		max-height: 35px;
	}
	main{
		padding: 0 0 50px;
	}

	figure.wchance{
		padding: 0 0 50px;
	}
	main > .recipe div::before{
		width: 30px;
		height: 24px;
	}

	#info .fl_box.sm_bl{
		flex-direction: column-reverse;
	}
	#info .fl_box > p{
		width: 100%;
	}
	#info .fl_box figure{
		margin-bottom: 20px;
		width: 70%;
	}
	#info .fl_box.bd_box figure{
		width: 100%;
		margin: 20px 0 0;
	}

	#date p{
		font-size: 100%;
	}
	#date p small{
		width: 100%;
		margin-right: 0;
		text-align: center;
	}
	#date .content span.sm_br{
		flex-wrap: wrap;
		justify-content: center;
	}
	#date .content em{
		font-size: 120%;
	}

	#insta_link > div.fl_box{
		gap: 40px 0;
	}
	#insta_link h4 img{
		width: 200px;
	}
	#insta_link h4 em{
		font-size: 1.4rem;
	}
	#insta_link .txt_box,
	#insta_link .img_box{
		width: 100%;
	}
	#insta_link .img_box div{
		width: 47%;
	}

	#howto .step article{
		padding: 0;
	}
	#howto .txt_box,#howto .image_box{
		width: 100%;
	}
	#howto .image_box{
		margin-bottom: 40px;
	}

	.step .recipe.fl_box{
		flex-wrap: wrap;
	}
	.step .recipe.fl_box > div{
		width: 50%;
	}
	#happyou p.ta_center{
		padding: 0;
		text-align: left;
		font-size: 100%;
		line-height: 1.4;
	}

	#container > .btn{
		bottom: 30px;
	}
	#container > .btn a{
		width: 200px;
	}

	.caution{
		padding: 20px;
		font-size: 90%;
	}
	.caution ul.list{
		padding: 0;
		border: none;
	}
	.caution.sub{
		flex-direction: column;
	}

	.step article{
		flex-direction: column;
	}
	.step article h3{
		margin: 0 auto 10px auto;
	}
	.step article p{
		width: 100%;
	}

	#howto p.ta_center::before{
		display: none;
	}

	footer{
		padding-bottom: 150px;
	}
	footer dl{
		padding: 25px;
	}
	footer dd{
		width: 100%;
	}
	footer dd a{
		min-height: auto;
	}
	footer dd a img{
		width: 100%;
		height: auto;
	}

	.sm_no{
		display: none;
	}
	.pc_no{
		display: block;
	}
}