@charset "utf-8";

.menuGrid {
    display: grid;
    grid-template-columns: repeat(1 1fr);
    gap: 30px 15px;
}

.menuGrid.menuGridTable {
    gap: 0 15px;
}

.menuName {
    font-family: var(--fontB);
}

.menuImgBx {
    aspect-ratio: 189/164;
    overflow: hidden;
}

.menuImgBx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menuFl {
    flex-wrap: wrap;
}

.menuFlRow {
    gap: 10px;
}

.menuFlItem {
    border-bottom: 1px solid var(--black);
}

.menuFlTh {
    flex: 1;
}

.menuRecoBx {
    aspect-ratio: 146/53;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:576px) {

    .menuGrid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* min-width: 576px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:768px) {

    .menuGrid {
        gap: 40px 15px;
    }

}

/* min-width: 768px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1024px) {

    .menuGrid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 15px;
    }

}

/* min-width: 1024px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1220px) {

    .menuGrid {
        gap: 60px 25px;
    }

    .menuGrid.menuGridTable {
        gap: 0 25px;
    }

    .caterGrid .menuGridItem {
        padding: 0 !important;
    }


    .menuGridItem,
    .menuGridItemIn  {
        padding: 0 30px 30px !important;
    }

    .menuName {
        font-size: 25px !important;
    }

    .menuPrice {
        font-size: 20px !important;
    }

    .menuTxt {
        font-size: 18px !important;
    }

}

/* min-width: 1220px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1400px) {

    .menuGrid.menuGridTable {
        gap: 0 40px;
    }

}

/* min-width: 1400px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
.bg_bk {
  	position: rerative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
	background-color: #2D1E12;
}


.scroll-top {
  	scroll-margin-top: 150px;
}

.anchor-offset {
  display: block;
  position: relative;
  top: -120px; 
  visibility: hidden;
}

.display-flex {
	display: block;
  	align-items: center;
  	border-bottom: 1px solid #2D1E12;
  	gap: 30px;
}

@media screen and (min-width:767px) {
   .display-flex  {
        display: flex;
    }
}

.ttl {
	font-size: 18px!important;
  	font-family: var(--fontB);
  	width: 350px;
  	font-weight: 700;
}

@media screen and (min-width:1024px) {
   .ttl  {
        font-size: 26px!important;
    }
}

@media screen and (min-width:1200px) {
   .ttl  {
        font-size: 30px!important;
    }
}

.sub-p {
	font-size:14px!important;
  	border: 1px solid #2D1E12 !important;
  	padding: 10px;
  	margin: 10px;
}