@charset "UTF-8";


#home.mono,
#floorb01.mono,
#floor01.mono{
	position: relative;
	height: 100vh;
	background: url(../../img/food/bg-g-kira-l.png);
	background: url(../../img/food/sp-bg-w375.png);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
}
#home.mono{
	background: url(../../img/food/sp-bg-w375.png);
	background-size: cover;
	background-position: center;
}

#home h1{
	 font-size: clamp(2rem, 10vw, 5rem);
	 line-height: 1;
	 text-align: center;
}
#home h2.t-narrow{
	 font-size: clamp(1rem, 2vw, 2rem);
	 text-align: center;
	 margin-top: 20px;
	 color: #fff;
}
#home .conte-tx .t-kakomi-w{
	  display: table;
	  margin: 0 auto;
	  font-size: clamp(1rem, 6vw, 2.5rem);

}
#home .conte-tx{
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	transition: 0.3s;
}
#home .conte-tx .poster{
	max-width: 330px;
	width: 100%;
	margin: 50px auto 0;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
.mono .food-footer .t-chashless{
	font-size: 10px;
	text-align: center;
	padding: 4px 6px;
	background: #eae8e8;
}
.t-chashless em{
	font-weight: bold;
	font-style: normal;
	font-size: 11px;
	letter-spacing: 0;
}

.mono .food-footer{
	position: fixed;
	width: 100%;
	height: 74px;
	bottom: 0;
	left: 0;
	z-index: 1;
	background:#8FC31F;	
}
.mono .food-footer ul{
	display: flex;
	align-items: stretch;
	width: 100%;
	max-width: 430px;
	margin: 0 auto;
	height: 50px;
	overflow: hidden;
}
.mono .food-footer ul li{
	height: 50px;
	display: flex;
	flex: 1 1 auto;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition:all .3s ease-out;
}
.mono .food-footer ul li + li{
	border-left: solid 1px #fff;
}
.mono .food-footer ul li a{
	padding: 5px 20px;
	font-size: 18px;
	color: #fff;
	line-height: 0.95;
}
.mono .food-footer ul li.ph a{
	padding: 0;
}

.mono .food-footer ul li.home{
	width: 50px;
	max-width: 50px;
}


#home .food-footer ul li:nth-child(1),
#floor01 .food-footer ul li:nth-child(2),
#floorb01 .food-footer ul li:nth-child(3){
	background: #111;
}

.mono .c-gourmet .slider_container{
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
.mono #gourmet .main-swiper{
	position: relative;
	padding-top: 50px;
	padding-bottom: 30px;
	width: 30%;
	background: url(../../img/food/bg-nuno-01.png)repeat;
	background-size: 100% 100%;
	border: solid 1px #8FC31F;
	border-radius: 0 40px 40px 0;
}
.mono #gourmet .main-swiper:before{
	content: '';
	display: block;
	width: 50px;
	height: 100%;
	background: url(../../img/food/sl-kage-2.png)repeat-y;
	background-size: contain;
	left: 0;
	top: 0;
	position: absolute;
}


.mono .map-container {
	position: relative;
  width: 70%;
  margin-top: 10px;
  margin-bottom: 10px;
}
.mono .map-container:before{
	content: '';
	display: block;
	width: 15%;
	height: 150px;
	background: url(../../img/food/map-wipe.png)no-repeat;
	background-size: contain;
	background-position: center right;
	position: absolute;
	right: 15px;
	top: -15px;
}

.map-container img.floormap {
  width: 100%;
  height: auto; /* 比率維持 */
  display: block;
}
.map-container .thumbs-swiper{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	aspect-ratio: 1100 / 800;/*画像サイズ*/
}
.map-container .thumbs-swiper .thumb{
	position: absolute;
}
.map-container .thumbs-swiper .thumb .i-side-no{
	transform: scale(1);
	transition: transform 0.4s ease, opacity 0.4s ease;
}
.thumbs-swiper .thumb.is-active  .i-side-no{
  transform: scale(1.2);  /*アクティブ時に拡大 */
}
.c-gourmet .thumbs-swiper .thumb.is-active .i-side-no:after{
	background: #111;
}
.c-gourmet .thumbs-swiper .thumb.is-active .ph{
	position: relative;
	z-index: 10;
}
#floorb01 .swiper-slide,
#floor01 .swiper-slide{
	position: relative;
}
.swiper-slide .tab-day{
	display: flex;
	margin-bottom: 10px;
	position: absolute;
	top: -24px;
}
.swiper-slide .tab-day li{
	padding: 0px 16px;
	background: #fff;
	border: solid 2px #8FC31F;
	color: #8FC31F;
	border-radius: 4px;
	font-size: 10px;
	transition:all .3s ease-out;
}
.swiper-slide .tab-day li:hover,
.swiper-slide .tab-day li:active{
	background: #8FC31F;
	color: #fff;
}
.swiper-slide .tab-day li + li{
	margin-left: 5px;
}

/********/
.swiper-slide .tab-content {
  display: none;
}
.swiper-slide .tab-content.active {
  display: block;
  animation: fadeUp 0.5s ease forwards;
}
.tab-content.fade-up {
  animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/** 番号やアイコンの位置 ***********/
#food-01.thumb{
	left: 55.5%;	
	top: 13%;
}
#food-02.thumb{
	left: 71%;	
	top: 41%;
}
#food-03.thumb{
	left: 65.5%;	
	top: 41%;
}
#food-04.thumb{
	left: 60%;	
	top: 41%;
}
#food-05.thumb{
	left: 55%;	
	top: 54.5%;
}
#food-06.thumb{
	left: 55%;	
	top: 60%;
}
#food-07.thumb{
	left: 55%;	
	top: 65.5%;
}
#food-08.thumb{
	left: 55%;	
	top: 70%;
}
#food-09.thumb{
	left: 44.5%;	
	top: 77%;
}
#food-10.thumb{
	left: 42.1%;	
	top: 50.5%;
}

#food-a.thumb{
	left: 47%;	
	top: 6.5%;
}
#food-b.thumb{
	left: 46%;	
	top: 29.5%;
}
#food-c.thumb{
	left: 46%;	
	top: 35%;
}
#food-d.thumb{
	left: 46%;	
	top: 40.5%;
}
#food-e.thumb{
	left: 46%;	
	top: 46%;
}
#food-f.thumb{
	left: 55%;	
	top: 77%;
}
#food-g.thumb{
	left: 24%;	
	top: 92%;
}
#food-h.thumb{
	left: 18%;	
	top: 92%;
}
#food-i.thumb{
	left: 6%;	
	top: 92%;
}
#food-j.thumb{
	left: 6%;	
	top: 3%;
}



#food-line.thumb{
	left: 36%;	
	top: 2.4%;
}
#food-photo.thumb{
	left: 42%;	
	top: 4.2%;
}
#food-hane.thumb{
	left: 61%;	
	top: 38%;
}

/** B1f番号やアイコンの位置 ***********/
#floorb01 #food-01.thumb{
	left: 65%;	
	top: 71%;
}
#floorb01 #food-02.thumb{
	left: 56.5%;	
	top: 75%;
}
#floorb01 #food-03.thumb{
	left: 30%;	
	top: 80%;
}
#floorb01 #food-04.thumb{
	left: 53%;	
	top: 67%;
}
#floorb01 #food-05.thumb{
	left: 58.5%;	
	top: 65%;
}
#floorb01 #food-06.thumb{
	left: 65.5%;	
	top: 56%;
}
#floorb01 #food-07.thumb{
	left: 65.5%;	
	top: 48.5%;
}
#floorb01 #food-08.thumb{
	left: 61%;	
	top: 12%;
}
#floorb01 #food-09.thumb{
    left: 38.5%;
    top: 63%;
}

#floorb01 #food-k1.thumb{
	left: 48%;	
	top: 90.5%;
}
#floorb01 #food-k2.thumb{
	left: 54%;	
	top: 90.5%;
}
#floorb01 #food-k3.thumb{
	left: 60%;	
	top: 90.5%;
}
#floorb01 #food-k4.thumb{
	left: 66%;	
	top: 90.5%;
}

#floorb01 #food-a.thumb{
	left: 30%;	
	top: 0%;
}
#floorb01 #food-b.thumb{
	left: 65%;	
	top: 26.5%;
}
#floorb01 #food-c.thumb{
	left: 61%;	
	top: 12%;
}
#floorb01 #kids{
    left: 51%;
    top: 20%;
}




.mono #gourmet{
	border-top: solid 6px #8FC31F;
	border-bottom:solid 6px #8FC31F;
	padding: 0;
	position: relative;
	width: 100%;
}
.mono #gourmet:after,
.mono #gourmet:before{
	content: '';
	display: block;
	width: 100%;
	height: 4px;
	/*background: url(../../img/food/line-dot-g.png)repeat-x;*/
	position: absolute;
}
.mono #gourmet:before{
	top: 15px;
}
.mono #gourmet:after{
	bottom: 15px;
}




.c-gourmet .thumbs-swiper .thumb .ph{
  width: 0%;
  height: auto;
  opacity: 0;
  border-radius: 0 16px 16px 16px;
  transform: scale(0.1);
  overflow: hidden;
  display: none;
  transition: width 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
}
.c-gourmet .thumbs-swiper .thumb.is-active .ph{
	/*アクティブ時*/
	display: block;
  width: 100%;
  max-width: 60px;
  opacity: 1;
  transform: scale(1);
}

.c-gourmet .thumbs-swiper .i-side-no:after{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #b09d60;
	border-radius: 4px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
.c-gourmet .thumbs-swiper .i-side-no.xx{
	font-weight: bold;
}
.c-gourmet .thumbs-swiper .i-side-no.xx:after{
	background: #8FC31F;
	top: 2px;
}

.c-gourmet .thumbs-swiper .i-side-no{
	width: 30px;
	height: 30px;
	font-size: 1.2rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: relative;
}
.c-gourmet .thumbs-swiper .i-side-no.img img{
	width: 100%;
	height: auto;
}
.c-gourmet .thumbs-swiper .i-side-no.img {
	width: 30px;
	height: 30px;
	border-radius: 4px;
	overflow: hidden;
}
.c-gourmet .thumbs-swiper .thumb{
	display: flex;
}
.c-gourmet .main-swiper .thumb .detail-top{
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	position: relative;
}



.c-gourmet .main-swiper .thumb .detail-top .ph-conte{
	margin-right: 24px;
	position: relative;
	border-radius: 0 40px 0 0 ;
	overflow: hidden;
}
.c-gourmet .main-swiper .swiper-slide .detail-top .ph-conte .i-side-no{
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	font-size: 30px;
	color: #fff;
	background: #b09d60;
}
.c-gourmet .main-swiper .swiper-slide .detail-top .ph-conte .i-side-no.xx{
	background: #8FC31F;
}

.c-gourmet .main-swiper .swiper-slide .detail-top .tx-conte{
	position: relative;
	padding-top: 18px;

}

.c-gourmet .main-swiper .swiper-slide h3.title{
	font-size: 16px;
	line-height: 1.4;
	border-bottom: dashed 2px #8FC31F;
	padding-bottom: 10px;
	margin-bottom: 15px;
}
.c-gourmet .main-swiper .swiper-slide .detail-top .tx-conte .food-pr em,
.c-gourmet .main-swiper .swiper-slide .detail-top .tx-conte .food-pr span,
.c-gourmet .main-swiper .swiper-slide .detail-top .tx-conte .food-pr{
	font-size: 12px;
}
.c-gourmet .main-swiper .swiper-slide .detail-top .tx-conte .food-pr em{
font-weight: bold;
}
.c-gourmet .main-swiper .swiper-slide .shop-info{
	margin-top: 10px;
	padding-top: 10px;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: dashed 2px #8FC31F;
}
.c-gourmet .main-swiper .swiper-slide .shop-info li + li{
	margin-top: 6px;
}
.c-gourmet .main-swiper .swiper-slide .shop-info .shop,
.c-gourmet .main-swiper .swiper-slide .shop-info .area{
	font-size: 12px;
	line-height: 1.2;
	position: relative;
	padding-left: 40px;
	font-weight: bold;
	display: flex;
	align-items: center;
	height: 20px;
}

.c-gourmet .main-swiper .swiper-slide .shop-info .shop:before,
.c-gourmet .main-swiper .swiper-slide .shop-info .area:before{
	content: '場所';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	font-size: 10px;
	color: #fff;
	background: #8FC31F;
	padding: 4px 6px;
	line-height: 1.2;
	border-radius: 2px;
}
.c-gourmet .main-swiper .swiper-slide .shop-info .shop:before{
	content: '出店';
}


.c-gourmet .main-swiper .swiper-slide .detail-bottom{
	display: flex;
	margin-top: 15px;
	margin-bottom: 15px;
}
.c-gourmet .main-swiper .swiper-slide .detail-bottom li + li{
	margin-left: 4px;
}
.c-gourmet .main-swiper .swiper-slide .detail-bottom li{
	font-size: 10px;
	font-weight: bold;
	color: #fff;
	padding: 4px 6px;
	border: solid 2px #8FC31F;
	border-radius: 50px;
	background:#8FC31F;
	letter-spacing: 0.3px;
}



/* メイン側のアクティブ */
.c-gourmet .main-swiper .swiper-slide {

}
.c-gourmet .main-swiper .swiper-slide .ph-conte .ph{
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0s 0.4s;
   transform: scale(0.9);
   border-radius: 0 40px 0 0;
   overflow: hidden;
}
.c-gourmet .main-swiper .swiper-slide-active .ph-conte .ph{
  transform: scale(1);
}
.c-gourmet .main-swiper .swiper-slide .detail-top{
	position: relative;
}
.c-gourmet .main-swiper .swiper-slide.swiper-slide-active .detail-top .ph-conte .i-side-no{
	background:#b09d60;
	border-radius: 0 0 10px 0;
}
.c-gourmet .main-swiper .swiper-slide.swiper-slide-active .detail-top .ph-conte .i-side-no.xx{
	background:#8FC31F;
	border-radius: 0 0 10px 0;
}

.c-gourmet .swiper-button-next,
.c-gourmet .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #8FC31F;
    position: absolute;
    top: calc((100% - 40px) / 2);
    top: 35%;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.c-gourmet .swiper-button-next:active,
.c-gourmet .swiper-button-prev:active {
    opacity: 1;
}



.c-gourmet .swiper-button-next:after,
.c-gourmet .swiper-button-prev:after {
	content: '';
    width: 40px;
    height: 40px;
    background: url(../../img/food/bt-left.png) no-repeat;
    background-size: contain;
    background-position: center;
}
.c-gourmet .swiper-button-next:after{
	transform: scale(-1, 1);
}



@media screen and (max-width: 1440px) {



}

@media screen and (max-width: 1179px) {
	#floorb01.mono,
	#floor01.mono{
		height: 100%;
		display: flex;
		align-items: center;
	}
	#home .conte-tx{
	}

	.mono #gourmet{
		background: #ddd;		
	}

	.mono .c-gourmet .slider_container{
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		max-width: 1024px;
		margin-left: auto;
		margin-right: auto;
		background: #fff;
	}

	.mono #gourmet .main-swiper{
		position: relative;
		padding-top: 50px;
		margin-top: 30px;
		padding-bottom: 50px;
		width: 100%;
		border: none;
		border-radius: 0;
	}
	.mono .map-container {
		position: relative;
	  width: 100%;
	  margin-bottom: 0;

	}
	.mono #gourmet .main-swiper:before{
		content: '';
		display: block;
		width: 100%;
		height: 4px;
		/*background: url(../../img/food/line-dot-g.png)repeat-x;*/
		position: absolute;
		top: 0px;
	}
	.mono #gourmet .main-swiper{
		border-left: none;
	}


}
@media screen and (max-width: 1023px) {




}
@media screen and (max-width: 900px) {


	.c-gourmet .thumbs-swiper .i-side-no {
	    width: 20px;
	    height: 20px;
	    font-size: 1rem;
	}
	.c-gourmet .thumbs-swiper .i-side-no.img {
		    width: 20px;
		    height: 20px;
	}


}

@media screen and (max-width: 767px) {

	/** 番号やアイコンの位置 ***********/
	.c-gourmet .thumbs-swiper .i-side-no.xx:after{
		top: 1px;
	}
	#food-g.thumb .ph,
	#food-h.thumb .ph,
	#food-i.thumb .ph{
		top: -25px;
		position: relative;
		border-radius: 16px 16px 16px 0;
	}

	.c-gourmet .main-swiper .swiper-slide .detail-top .ph-conte .i-side-no{
		width: 30px;
		height: 30px;
		font-size: 1rem;
	}

	/*************/
	#floorb01.mono,
	#floor01.mono{
		height: 100vh;
		display: flex;
		align-items: flex-start;
	}
	.mono .food-footer{
		height: 84px;
	}

	/**地下***********/
	#floorb01 #food-a.thumb{
		left: 30%;	
		top: -1%;
	}


	.mono .map-container{
		margin-top: 70px;
	}
	.mono .map-container:before{
		width: 120px;
		height: 80px;
		right: 15px;
		top: -50px;
	}


	.mono #gourmet .main-swiper{
		margin-top: 50px;
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.map-container .thumbs-swiper{
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
		width: 100%;
		overflow: visible;
	}
	.c-gourmet .main-swiper .swiper-slide .ph-conte{
		border-radius: 0 24px 0 0;
	}

	.c-gourmet .main-swiper .swiper-slide .detail-top{
		display: flex;
		align-items: stretch;
	}
	.c-gourmet .main-swiper .swiper-slide .detail-top .ph-conte{
		width: 55%;
		min-height: 190px;
	}
	.c-gourmet .main-swiper .swiper-slide .detail-top .tx-conte{
		width: calc(45% - 20px);
		margin-left: 20px;
		padding-top: 0;
	}
	.c-gourmet .main-swiper .swiper-slide .tx-conte{
		position: relative;
		padding-bottom: 70px;
	}
	.c-gourmet .main-swiper .swiper-slide .shop-info{
		margin-top: 0px;
		padding-top: 10px;
		margin-bottom: 0px;
		padding-bottom: 5px;
		border-bottom: none;
		position: absolute;
		bottom: 0;
	}
	.c-gourmet .main-swiper .swiper-slide .shop-info .shop, 
	.c-gourmet .main-swiper .swiper-slide .shop-info .area{
		line-height: 1.2;
		font-size: 10px;
	}
	.c-gourmet .main-swiper .swiper-slide .shop-info li + li{
		margin-top: 10px;
	}

	.c-gourmet .thumbs-swiper .i-side-no {
    width: 18px;
    height: 18px;
    font-size: 0.9rem;
  }
	.c-gourmet .thumbs-swiper .i-side-no.img {
    width: 16px;
    height: 16px;

  }  
	.c-gourmet .thumbs-swiper .i-side-no.img img {
    width: 100%;
    height: auto;
  }
  .c-gourmet .thumbs-swiper .i-side-no:after{
  	top: -0.5px;
  }
	.c-gourmet .main-swiper .swiper-slide .detail-bottom{
		border-top: dashed 2px #8FC31F;
		padding-top: 15px;
	}
	.c-gourmet .swiper-button-next,
	.c-gourmet .swiper-button-prev {
	    width: 30px;
	    height: 30px;
	    top: 45%;
	}
	.c-gourmet .swiper-button-next:after,
	.c-gourmet .swiper-button-prev:after {
	    width: 30px;
	    height: 30px;
	}

	#home .conte-tx{
		margin-top: -60%;
	}
	#home .conte-tx .poster{
		margin-top: 20%;
	}


}

@media screen and (max-width: 394px) {
	.mono .map-container {
        margin-top: 40px;
    }
    .mono .map-container:before{
    	top: -30px;
    }
    .mono #gourmet .main-swiper {
        margin-top: 15px;
        padding-top: 45px;
        padding-bottom: 20px;
    }
	#home .conte-tx .poster {
	    max-width: 280px;
	}
	#home .conte-tx{
		margin-top: -20%;
	}



}
@media screen and (max-width: 376px) {

	#home .conte-tx{
		margin-top: -40%;
	}

	.mono .map-container{
		margin-top: 30px;
	}
	.mono .map-container:before{
		width: 90px;
		height: 60px;
		right: 15px;
		top: -20px;
	}

	.mono #gourmet .main-swiper{
		margin-top: 15px;
		padding-top: 35px;		
		padding-bottom: 15px;

	}

	.c-gourmet .main-swiper .swiper-slide .detail-top .tx-conte{
		width: calc(60% - 20px);
		padding-bottom: 60px;		
	}
	.c-gourmet .main-swiper .swiper-slide .detail-top .ph-conte{
		min-height: 100px;
		width: 40%;
	}
	.c-gourmet .main-swiper .swiper-slide h3.title{
		padding-bottom: 10px;
		font-size: 16px;
	}
	.c-gourmet .main-swiper .swiper-slide .detail-top .tx-conte .food-pr{
		font-size: 9px;
		line-height: 1.4;
	}
	.c-gourmet .main-swiper .swiper-slide .shop-info{
		padding-bottom: 0;
	}
	.c-gourmet .main-swiper .swiper-slide .shop-info li + li{
		margin-top: 4px;
	}
	.c-gourmet .main-swiper .swiper-slide .shop-info .shop, 
	.c-gourmet .main-swiper .swiper-slide .shop-info .area{
		font-size: 8px;
		line-height: 1.1;
	}
	.c-gourmet .main-swiper .swiper-slide .shop-info .shop:before, 
	.c-gourmet .main-swiper .swiper-slide .shop-info .area:before{
		font-size: 9px;
	}


	.c-gourmet .main-swiper .swiper-slide .detail-bottom li{
		font-size: 10px;
	}





}
@media screen and (max-width: 360px) {
	.c-gourmet .main-swiper .swiper-slide .detail-top .tx-conte{
		width: calc(50% - 20px);
		padding-bottom: 60px;		
	}
	.c-gourmet .main-swiper .swiper-slide .detail-top .ph-conte{
		min-height: 100px;
		width: 50%;
	}
	.mono .map-container:before{
		width: 100px;
		height: 75px;
		right: 15px;
		top: -40px;
	}

	#home .conte-tx{
		margin-top: -40%;
	}

    .mono #gourmet .main-swiper {
        margin-top: 30px;
        padding-top: 45px;
        padding-bottom: 20px;
    }
	.mono .map-container{
		margin-top: 50px;
	}
	.c-gourmet .main-swiper .swiper-slide .detail-top .tx-conte .food-pr{
		font-size: 10px;
	}


}



