@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');
/* CSS Document */
/*共通*/
hr{
	border: 0;
	border-bottom: var(--txt) 1px dashed;
}
.fontChange {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.scBox{
	opacity: 0;
	transition:transform 500ms 0s ease-out, opacity 500ms 0s ease;
	transform: translateY(1em);
	position: relative;

}
.scBox.action{
	opacity: 1;
	transform: translateY(0);
}

.txtCenter{
	display: grid;
	align-items: center;
	justify-content: center;
	padding: 1em 0 0;
	position:relative;
	z-index: 2;
}

h2{
	max-width: 5.5em;
	font-size: min(8vw,48px);
	line-height: 1.3em;
	margin: 0 auto;
	text-align: center;
	letter-spacing: 1px;
	position: relative;
	z-index: 2;
}


/*TOP*/
#topArea {
	padding-top: 1.8em;
}

#topArea .topImg{
	background-image: url("../img/top.jpg");
	background-repeat: no-repeat;
	background-size: contain;
	margin-left: auto;
	position: relative;
}
.catch{
	text-align: center;


	position: relative;
		width: 100%;
	margin: 0 auto;
	padding: 3em 1em ;
	z-index: 3;
	background-color: var(--darkB);
	color: var(--white);
}
.notesBox{padding: 1em; margin-bottom: 1em; background-color: var(--white);border: var(--lightB) 2px solid; border-radius: 6px;}
.notesBox ul.notes{
	text-align: left;
	/*margin-top: 0.8em;*/
	padding: 0.8em 0.5em;
	font-size: 0.9em;
	line-height: 1.5em;
	text-shadow: 0 0 5px var(--white);
}
.notesBox h3{
	background-color: var(--pink);
	color: var(--white);
	padding: 0.5em 0;
	border-radius: 6px;
	text-align: center;
}
/*------------------------------------
イベント概要
--------------------------------------*/
#event{
	padding: 4em 2em 7em;
	position: relative;
	overflow: hidden;
	text-align: center;
}
#event:before{
	content: "";
	top:1em;
	left: 1em;
	right: 1em;
	bottom: 2.5em;
	display: block;
	position: absolute;
	border: var(--lightB) 1em solid;
	transform:rotate(-5deg);
}
#event .bgBox:before{
	content: "";
	width: 1em;
	top:0;
	left: 1.5em;
	bottom: 0;
	background-image: url("../img/event_bg_l.png");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	
	
}
#event .bgBox:after{
	content: "";
	width: 1em;
	top:0;
	right: 1.5em;
	bottom: 0;
	background-image: url("../img/event_bg_r.png");
	background-position: right bottom;
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	
	
}

/*------------------------------------
入店のご案内
--------------------------------------*/
#info{
	padding: 4em 0 0;
	background-image: url("../img/entry_bg_t.png");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% auto;
	margin-bottom: 2em;
}
#info .bgBox{
	display: grid;
	align-content: center;
	justify-content: center;
	padding: 0 2em 7em;
	background-image: url("../img/entry_bg_b.png");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
/*------------------------------------
グッズ
--------------------------------------*/

#goods{
	padding-top: 1em;
	position: relative;
	background-image: url("../img/bg_line.png");
	background-size: 40px auto;
}
#goods:before{
	content: "";
	width: 15%;
	height: 5.9em;
	background-image: url("../img/goods_bg_l.png");
	left: 0;
	top:0;
	display: block;
	position: absolute;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left top;
}
#goods:after{
	content: "";
	width: 15%;
	height: 5.9em;
	background-image: url("../img/goods_bg_r.png");
	right: 0;
	top:0;
	display: block;
	position: absolute;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: right top;
}

#goods h2{
	position: relative;
}
.tokuten{
	background-color: var(--lightB);

	overflow: hidden;
	padding: 1em;
	margin: 1em auto;
}
.tokuten .txt{
	padding: 1em 0;
}
.tokuten img{
	border-bottom-left-radius: 30px;
	border-top-right-radius:30px ;
}
/*グッズ情報*/
	/*グッズサムネ*/
.goodsWrap {
	text-align: left;
		display: grid;
	grid-template-columns:repeat(1, 1fr);
	column-gap: 0.5em;
	row-gap: 1em;
	padding: 1em 0 0;
}
.itemBox{

	background-color:#fff;
	padding: 0;
	position: relative;
	border: var(--pink) 1px solid;
	/*border-bottom:#dfb3ba 3px solid;*/
	/*color:#111;*/
	text-align: left;
}

.itemBox .new{
	text-align: center;
	background-color:var(--bgP);
	color: #fff;
}
.itemBox .new:before{
	content: none;
}

.itemBox a:hover{
	background-color:transparent;
}
.image{
	padding: 0.5em 0.5em 0;
	position: relative;
}
.itemBox a{
	position: relative;
	display: block;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	color:var(--txt);
}
.itemBox a:before{
	content: "";
	width: 0;
	height: 100%;
	display: block;
	position: absolute;
	top:0;
	bottom:0;
	left:0;
	transition: all 0.2s 0s ease-out;
	background: #f1e4d3;
	opacity: 0.8;
}
.itemBox a:hover:before{
	width: 100%;
}
.itemBox a:after{
	content: "more";
	position: absolute;
	line-height: 1.5em;
	height: 1.5em;
	letter-spacing: 1px;
	width: 100%;
	border-bottom:var(--txt) 1px solid;
	text-align: center;
	top:50%;
	left:0%;
	color:var(--txt);
	z-index: 2;
	display:block;
	opacity: 0;
	transition: all 0.2s 0s ease-out;
}
.itemBox a:hover:after{
	opacity: 1;
}
.goodsCategory{
	color: #fff;
	padding: 0.2em 0;
	margin-bottom: 0.3em;
}
.itemBox h4{
	padding: 0.5em;
	line-height: 1.5em;
	font-weight: bold;
	color: var(--txt);
}
.itemBox .eventTitle{/*グッズ名内イベントタイトル*/
	font-size: 0.8em;
}
.price{
	text-align: right;
	font-weight: bold;
	padding: 0.5em;
	background-color:  var(--pink);
	color: var(--txt);
	position: relative;
	padding-left: 2em;

}
.price .small{
	font-size: 0.8em;
	line-height: 1.5em;
}
.goodsNum{
position: absolute;
top:0em;
left:0em;
/*padding: 0.25em;*/
width: 2em;
	height: 2em;
background-repeat: no-repeat;
background-position: center;
background-size:contain;
text-align: center;
font-size: 15px;
	line-height: 2em;
font-weight: bold;
background-color:var(--white);
border-radius: 50%;
color: var(--txt);
text-shadow: none;
	transform: scale(0.9);
}

ul.list{
	margin-left: 1em;
}
ul.list li{
	text-indent: -1em;
	margin: 0.5em 0;
}

#caution{

	padding: 2em 1em;

	text-shadow: 0 0 5px var(--white);
}
/*#caution ul.notes{
	font-size:max(0.8em ,12px);
	line-height: 1.5em;
	padding-top: 0.5em ;

}
#caution ul.notes li{
	margin-bottom: 0.5em;
}
*/
/*---------------------------------------------------------
@media
------------------------------------------------------------*/
@media (min-width: 481px) {
	#info .txt{
			text-align: center;
	}
	#info .notes{
		text-align: left;
	}
	#event .bgBox:before{
	width: 1.5em;
		left: 1.5em;

	}
	#event .bgBox:after{
		width: 1.5em;	
		right: 1.5em;

	}

}
@media (min-width: 600px) {
	/*グッズサムネ*/
	.goodsWrap {
		grid-template-columns:repeat(2, 1fr);
	}
	#info {
		padding:8em 0 0 ;
		
	}
	#info .bgBox{
		padding: 0 0 13em;
	}
	#event .bgBox:before{
	width: 2em;
		left: 2em;

	}
	#event .bgBox:after{
		width: 2em;	
		right: 2em;

	}
}

@media (min-width: 1025px) {/*PC*/
	#topArea {
		padding-top: 0;
	}
	.tokuten .txtArea{
		padding: 0 0.5em;
	}

	#event{
		padding: 6em 2em 9em;

	}


}
