@charset "utf-8";

/* ========================================================= */
/* body.menu-en, body.menu-food に body.menu-drink を追加 */
/* ========================================================= */

body.menu-en #fv,
body.menu-food #fv,
body.menu-drink #fv {
  position: relative;
}
body.menu-en #fv::after,
body.menu-food #fv::after,
body.menu-drink #fv::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(10,5,5,.3);
}
body.menu-en #fv h1,
body.menu-food #fv h1,
body.menu-drink #fv h1 {
  z-index: 5;
}
body.menu-en main > section:nth-child(1),
body.menu-food main > section:nth-child(1),
body.menu-drink main > section:nth-child(1) {
  padding-top: 50px;
}

/* --- menu-food 専用部分（変更なし） --- */

body.menu-drink section#se00 .inner .menuLink,
body.menu-food section#se00 .inner .menuLink {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 15px 0;
}
body.menu-drink section#se00 .inner .menuLink a,
body.menu-food section#se00 .inner .menuLink a {
  display: inline-block;
  padding: .25em .5em;
  background-color: #d16f14;
  border-radius: 3px;
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
}
body.menu-drink section#se00 .inner .menuLink a {
  background-color: #149fd1;
  color: #FFF;
}
body.menu-drink section#se00 .inner .menuLink .drink a,
body.menu-food section#se00 .inner .menuLink .drink a {
  background-color: #149fd1;
  color: #FFF;
}
body.menu-drink section#se00 .inner .menuLink .food a,
body.menu-food section#se00 .inner .menuLink .food a {
  background-color: #d16f14;
  color: #FFF;
}

/* --- section[id^=se] / section.seCate 系の共通ルール --- */

body.menu-en section[id^=se],
body.menu-food section.seCate,
body.menu-drink section.seCate { /* drinkにも section.seCate を追加 */
  padding: 25px 0;
}
body.menu-en section[id^=se] .inner,
body.menu-food section.seCate .inner,
body.menu-drink section.seCate .inner { /* drinkにも section.seCate .inner を追加 */
  width: 95%;
}
body.menu-en section[id^=se] h2,
body.menu-food section.seCate h2,
body.menu-drink section.seCate h2 { /* drinkにも section.seCate h2 を追加 */
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  margin-bottom: 20px;
  align-items: center;
}
body.menu-en section[id^=se] h2 span,
body.menu-food section.seCate h2 span,
body.menu-drink section.seCate h2 span { /* drinkにも section.seCate h2 span を追加 */
  font-size: 24px;
  color: #d0af4c;
}
body.menu-en section[id^=se] h2::after,
body.menu-food section.seCate h2::after,
body.menu-drink section.seCate h2::after { /* drinkにも section.seCate h2::after を追加 */
  content: '';
  width: 100%;
  height: 2px;
  background-color: #d0af4c;
}

body.menu-en section[id^=se] .content_inner,
body.menu-food section.seCate .content_inner,
body.menu-drink section.seCate .content_inner { /* drinkにも section.seCate .content_inner を追加 */
  display: grid;
  grid-template-columns: repeat(4,1fr);
  column-gap: 10px;
  row-gap: 20px;
}
body.menu-en section[id^=se] .content_inner dl,
body.menu-food section.seCate .content_inner dl,
body.menu-drink section.seCate .content_inner dl { /* drinkにも section.seCate .content_inner dl を追加 */
  padding: 10px;
  background-color: rgba(0,0,0,.2);
}
body.menu-en section[id^=se] .content_inner dl dt,
body.menu-food section.seCate .content_inner dl dt,
body.menu-drink section.seCate .content_inner dl dt { /* drinkにも section.seCate .content_inner dl dt を追加 */
  font-size: 18px;
  color: #d0af4c;
  font-weight: bold;
}
body.menu-en section[id^=se] .content_inner dl dd,
body.menu-food section.seCate .content_inner dl dd,
body.menu-drink section.seCate .content_inner dl dd { /* drinkにも section.seCate .content_inner dl dd を追加 */
  font-size: 16px;
  color: #FFF;
}
body.menu-en section[id^=se] .content_inner dl dt.name,
body.menu-food section.seCate .content_inner dl dt.name,
body.menu-drink section.seCate .content_inner dl dt.name { /* drinkにも section.seCate .content_inner dl dt.name を追加 */
  word-break: break-word;
}
body.menu-en section[id^=se] .content_inner dl dd.price,
body.menu-food section.seCate .content_inner dl dd.price,
body.menu-drink section.seCate .content_inner dl dd.price { /* drinkにも section.seCate .content_inner dl dd.price を追加 */
  font-size: 18px;
  text-align: right;
  font-weight: bold;
}
body.menu-en section[id^=se] .content_inner dl dd.txt,
body.menu-food section.seCate .content_inner dl dd.txt,
body.menu-drink section.seCate .content_inner dl dd.txt { /* drinkにも section.seCate .content_inner dl dd.txt を追加 */
  font-size: 14px;
  color: #efefef;
}

@media only screen and (max-width: 480px) {
  
  body.menu-en section[id^=se] .content_inner,
  body.menu-food section.seCate .content_inner,
  body.menu-drink section.seCate .content_inner { /* drinkにも section.seCate .content_inner を追加 */
    grid-template-columns: repeat(2,calc(50% - 5px));
    row-gap: 15px;
  }

}/* END max-width: 480px */