@charset "UTF-8";
body {
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
}
.hero {
  position: relative;
  background: url('/images/bk01.jpg') center/cover no-repeat;
  background-attachment: fixed;
  color: white;
  text-align: center;
  padding: 120px 20px;
}
.hero::before {
  content: "";
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background-color: rgba(0,0,0,0.5); /* 40% 黒オーバーレイ */
  z-index: 0;
}
.hero > .container {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
#menu {
  background: url('/images/menu-bg.jpg') center/cover no-repeat fixed;
  color: #fff;
  padding: 100px 0;
  position: relative;
}

#menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 40% 黒オーバーレイで文字を見やすく */
  z-index: 0;
}

#menu .container {
  position: relative;
  z-index: 1; /* 背景オーバーレイより前面に表示 */
}

.fnt_fu_fff{
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #9a9a9a;
  text-shadow: 2px 2px 6px rgba(250, 246, 0, 0.4);
}


.menu-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}
footer {
  background-color: #f8f9fa;
  padding: 20px 0;
  text-align: center;
  color: #777;
}
nav .navbar-brand {
  font-weight: bold;
}




