@charset "utf-8";
/* CSS Document */

/* ---------------------------------------------------------------------------------------------

   Genre-menu（食べる、買い物ページ 共通）

--------------------------------------------------------------------------------------------- */

/* ジャンルリンク
------------------------------------------------------------*/
.genre-menu-wrap{
    width: 100%;
    position: relative;
    z-index: 10;
}

.genre-menu-wrap ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.genre-menu-wrap ul li{
    width: 32%;
    margin-bottom: 2%;
    border: 1px solid #000;
    border-radius: 10px;
    text-align: center;
    line-height: 1.25;
	font-size: clamp(14px, 3vw, 24px);
}
.genre-menu-wrap ul li span{
	font-size: clamp(12px, 3vw, 16px);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.genre-menu-wrap ul li a{
    display: block;
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    color: #000;
}
.genre-menu-wrap ul li a span{
    color: #f60;
}

.genre-menu-wrap ul li a:hover{
    background: #f60;
    color: #fff;
}
.genre-menu-wrap ul li a:hover span{
    color: #fff;
}

@media screen and (max-width:900px) {

.genre-menu-wrap ul li{
    width: 49%;
    margin-bottom: 2%;
}
}

.genre-menu-wrap ul li.target-link a{
    background: #f60;
    color: #fff;
}
.genre-menu-wrap ul li.target-link a span{
    background: #f60;
    color: #fff;
}



/* ---------------------------------------------------------------------------------------------

   Event-menu（イベントページ）

--------------------------------------------------------------------------------------------- */

/* イベント内部リンク
------------------------------------------------------------*/
.event-menu-wrap{
    width: 100%;
    position: relative;
    z-index: 10;
}

.event-menu-wrap ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.event-menu-wrap ul li{
    width: 49%;
    margin-bottom: 2%;
    border: 1px solid #000;
    border-radius: 10px;
    text-align: center;
    line-height: 1.25;
	font-size: clamp(14px, 3vw, 24px);
}
.event-menu-wrap ul li span{
	font-size: clamp(12px, 3vw, 16px);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.event-menu-wrap ul li a{
    display: block;
    background: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    color: #000;
}
.event-menu-wrap ul li a span{
    color: #f60;
}

.event-menu-wrap ul li a:hover{
    background: #f60;
    color: #fff;
}
.event-menu-wrap ul li a:hover span{
    color: #fff;
}

/*@media screen and (max-width:900px) {

.event-menu-wrap ul li{
    width: 49%;
    margin-bottom: 2%;
}
}*/

/*.event-menu-wrap ul li.target-link a{
    background: #f60;
    color: #fff;
}
.event-menu-wrap ul li.target-link a span{
    background: #f60;
    color: #fff;
}*/























































































































