
/*------------------------------------------------------------
	全体
------------------------------------------------------------*/
*{
	font-family: "M PLUS 2", "Noto Sans", sans-serif;
	color: #f3eee7;
	text-align: center;
	text-align-last: center;
	font-weight: 900;
}
p{
	text-align: center;
	text-align-last: center;
	font-size: clamp(16px, 2vw, 34px);
    line-height: 1.7em;
}
body{
	max-width: 100vw;
	background: #cf121b;
	overflow-x: clip;
}
.cap{
	font-size: clamp(13px, 2vw, 16px);
	font-weight: 700;
}

/*------------------------------------------------------------
	ヘッダー（header）
------------------------------------------------------------*/
header{
	position: relative;
    z-index: 100;
    width: calc(100% - 4rem);
	background: #231815;
	padding: 1rem 2rem;
	display: flex;
    justify-content: space-between;
    align-items: center;
}
header a.headerLogo{
	filter: invert(100%);
	max-width: 125px;
    width: 20%;
}
header ul.headerLinks{
	display: flex;
}
header ul.headerLinks li + li {
	border-left: 1px solid #ccc;
	margin-left: 1em;
	padding-left: 1em;
}
@media all and (max-width:750px){
	header ul.headerLinks{
		display: none;
	}
	.menu.menuToggle{
		display: block;
		position: relative;
		width: 38px;
		height: 29px;
		z-index: 10;
		margin-left: 10px;
		cursor: pointer;
	}
	.menu.menuToggle span{
		display: inline-block;
		position: absolute;
		left: 0;
		width: 100%;
		height: 1px;
		background: #FFFFFF;
		-webkit-transition: background 0.3s, -webkit-transform 0.3s;
		transition: background 0.3s, -webkit-transform 0.3s;
		transition: transform 0.3s, background 0.3s;
		transition: transform 0.3s, background 0.3s, -webkit-transform 0.3s;
	}
	.menu.menuToggle span:nth-of-type(1) {
		top: 0;
	}
	.menu.menuToggle span:nth-of-type(2) {
		top: 14px;
	}
	.menu.menuToggle span:nth-of-type(3) {
		bottom: 0;

	}
	.menu.menuToggle.is-active span {
		background: #FFFFFF;
	}
	.menu.menuToggle.is-active span:nth-of-type(1) {
		-webkit-transform: translateY(14px) rotate(45deg);
		transform: translateY(14px) rotate(45deg);
	}
	.menu.menuToggle.is-active span:nth-of-type(2) {
		opacity: 0;
	}
	.menu.menuToggle.is-active span:nth-of-type(3) {
		-webkit-transform: translateY(-14px) rotate(-45deg);
		transform: translateY(-14px) rotate(-45deg);
	}
	.menu.menuToggle.is-active span {
		background: #FFFFFF;
	}
}
/*------------------------------------------------------------
	メニュー
------------------------------------------------------------*/
.menuBox{
	display: none;
	position: fixed;
	top: 0;
    left: 0;
	z-index: 98;
	width: 100vw;
	height: 100vh;
}
.innerBox {
    width: 100%;
    height: 100%;
    margin-right: 0;
    margin-left: auto;
    background: #231815;
}
ul.naviUl {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
	gap: 0.5em;
    height: 100%;
    padding: 0 15%;
	font-size: clamp(20px, 6vw, 32px);
	line-height: 1.4em;
}
ul.naviUl a{
   position: relative;
}
ul.naviUl a::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	background: #f3eee7;
	transition: 0.2s;
	transform-origin: left;
	transform: scaleX(0);
}
ul.naviUl a:hover::after{
	transform: scaleX(1);
}

/*------------------------------------------------------------
	コンテンツ（main）
------------------------------------------------------------*/
main{
	max-width: 1100px;
	margin: 0 auto 4rem;
	display: grid;
    align-content: start;
	gap: 4rem;
}
@media all and (max-width:550px){
	main{
		gap: 2rem;
	}
}
/*------------------------------------------------------------
	メインビジュアル（top）
------------------------------------------------------------*/
#top .mv{
	padding: 2em 0;
}

/*------------------------------------------------------------
	チラシ情報（flyer）
------------------------------------------------------------*/
#flyer a.flyerLink{
	position: relative;
	display: block;
	transition: 0.3s;
}
#flyer a.flyerLink:hover{
	opacity: 0.7;
}
#flyer a.flyerLink::after{
	content: "";
	background-image: url("../img/flyer_decor.webp");	
	background-repeat: no-repeat;
	background-size: contain;
    background-position: bottom center;
	width: 150%;
	height: 100%;
	position: absolute;	
    left: 50%;
    bottom: 0;
	transform: translateX(-50%);
	display: block;
	pointer-events: none;
}
#flyer a.flyerLink ul{	
	position: relative;
    display: flex;
    gap: 2em;	
	max-width: 960px;
    width: 70%;
    margin: 0 auto;
}
#flyer a.flyerLink ul::after{
	content: "";
	background-image: url("../img/flyer_btn.webp");
	background-repeat: no-repeat;
	background-size: contain;
    background-position: center;
	max-width: 490px;
	width: 50%;
	height: 100%;
	position: absolute;
	z-index: 1;
	left: 50%;
    transform: translateX(-50%);
	display: block;
}
#flyer .eligibleStores h4{
	font-size: clamp(18px, 2vw, 27px);
}
#flyer .eligibleStores h4 span{
	background: #f3eee7;
	color: #cf121b;
	padding: 0.25rem 1em;
	border-radius: 2em;
	margin-right: 0.5em;
}

@media all and (max-width:550px){
	#flyer a.flyerLink ul,
	#flyer a.flyerLink ul::after{
		width: 90%;
	}
	#flyer .eligibleStores h4{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 0.5em;
	}
	#flyer .eligibleStores h4 span{
		display: block;
		margin-right: 0;
		width: calc(95% - 2em);
	}
}
/*------------------------------------------------------------
	リンク（info）
------------------------------------------------------------*/
#info > p{
	font-size: clamp(14px, 2vw, 28px);
}
#info ul.infoLinks{
	display: flex;
	gap: 1em;
	margin-top: 2em;
}
#info ul.infoLinks li{
	width: calc(100% / 3);
}
#info ul.infoLinks li a.linkBtn{
	margin-bottom: 0.5em;
	display: grid;
	align-items: center;
	height: 4em;
	background: #cf121b;
	border: 2px #f3eee7 solid;
	border-radius: 0.5em;
	filter: drop-shadow(2px 4px 0px #f3eee7);
	transition: 0.2s;
	font-size: clamp(18px, 2vw, 24px);
}
#info ul.infoLinks li a.linkBtn:hover{
	transform: translate(2px, 4px);
	filter: drop-shadow(0px 0px 0px #f3eee7);
}

#info ul.infoLinks li a.linkCap{
	position: relative;
}
#info ul.infoLinks li a.linkCap::after{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	background: #f3eee7;
	transition: 0.2s;
	transform: scaleX(1);
}
#info ul.infoLinks li a.linkCap:hover::after{
	transform: scaleX(0);
}
@media all and (max-width:550px){
	#info ul.infoLinks{
		flex-direction: column;
		align-items: center;
		gap: 1.5em;
	}
	#info ul.infoLinks li{
		width: 90%;
	}
}


/*------------------------------------------------------------
	ポップ（pop）
------------------------------------------------------------*/
#pop h2{
	max-width: 1100px;
	margin: 0 auto;
}
#pop .popImg{
	background: linear-gradient(to bottom, #cf121b 0%,#cf121b 50%,#f3eee7 51%,#f3eee7 100%);
	padding: 1rem 0;
}
#pop .popImg img{	
	max-width: 550px;
	width: 80%;
	margin: auto;
	border: 5px #FFFFFF solid;
}

/*------------------------------------------------------------
	フッター（footer）
------------------------------------------------------------*/
footer{
	background: #f3eee7;
	padding-bottom: 1rem;
}
footer p{	
	color: #cf121b;
	padding-bottom: 1em;
}
footer small,
footer small *{
	font-size: 12px;
	font-weight: 500;
	color: #231815;
}


/*------------------------------------------------------------
	固定 店舗情報（shopLink）
------------------------------------------------------------*/
#shopLink{
	position: sticky;
    bottom: 0;
    background: #231815;
    padding: 1rem 0;
	z-index: 99;
}
#shopLink a{
	font-size: clamp(16px, 2vw, 24px);
	font-weight: 700;
}
#shopLink a::after{
	font-family: 'Font Awesome 5 Free';
	content: '\f105';
}