html {
  margin-top: 0!important;
  background-color: #111;
}
/* COMPANY PAGE 共通スタイル */
.company-page {
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
  background-color: #fff;
}

/* メインビジュアル */
.menu-hero {
  background: url('../assets/img/menu-wide.jpg') no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: flex-end;
  padding: 60px;
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.menu-hero__text h1 {
  font-size: 4rem;
  font-weight: bold;
  margin: 0;
}
.menu-hero__text p {
  font-size: 20px;
  margin: 0;
  margin-bottom: -10px;
}
.menu-price {
    width: 100%;
}
.menu-price__inner {
    display: flex;
    justify-content:space-between;
    width: 90%;
    margin: 50px auto;
}
.menu-price__inner img {
    width: 30%;
}
@media (max-width: 768px) {
  .menu-hero {
    padding: 20px;
    height: 300px;
  }
  .menu-price__inner {
    flex-direction: column; 
    width: 90%;
    margin: 50px auto 0 auto;
  }
  .menu-price__inner img {
    width: 100%;
    margin-bottom: 20px;
  }
}