@charset "utf-8";

.title {
  height: 420px;
  background-image: url(../images/menu/menu-main.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-shadow: 1px 1px 10px #4b2c14;
}

.title h1 {
  font-family: 'Yuji Syuku', serif;
  font-size: 32px;
  font-weight: bold;
}

.title p{
  font-size: 15px;
  margin-top: 15px;
}

.menu-lead{
  margin-top: 50px;
  font-size: 20px;
  text-align: center;
  line-height: 2;
  font-weight: 500;
}

.highlighter {
  background: linear-gradient(transparent 80%,#804318 50%);
}

.menu {
  margin-top: 60px;
  max-width: 100%;
}

.menu-list {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 100px;
}

.menu-list img{
  background-color:rgb(255, 255, 255);
}

.recommended{
  background-color: #ffffff;
  padding-top: 45px;
  padding-bottom: 55px;
  margin-top: 50px;
}

.recommended h2 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}

.recommended h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background-color: #000000;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.item-list {
  display: flex;
  padding-top: 40px;
  padding-bottom: 10px;
  padding-left: 60px;
  padding-right: 60px;
  overflow: scroll;
}

.item-list li {
  flex-shrink: 0;
  width: 260px;
  margin-left: 60px;
}

.item-list li:first-child {
  margin-left: 0;
}

.item-list dl {
  margin-top: 20px;
}

.item-list dt {
  font-weight: bold;
}

.item-list dd {
  font-size: 13px;
  line-height: 20px;
  margin-top: 10px;
}

.item-list .price {
  font-weight: bold;
  margin-top: 15px;
}

.footer {
  margin-top: 200px;
}

@media (max-width: 800px) {
  .title {
    height: 460px;
    background-image: url(../images/menu/bg-main-mobile.png);
  }

  .menu-lead {
    text-align: left;
    font-size: 18px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 50px;
  }  

  .menu {
    margin-top: 80px;
    margin-bottom: 150px;
    max-width: 100%;
    overflow: scroll;
  }
  
  .menu-list {
    width: 175%;
  }
  
  .menu-list img{
    background-color:aliceblue;
    background: rgb(255, 255, 255 ,0.7);
  }

  .item-list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .item-list li {
    width: 220px;
    margin-left: 30px;
  }

  .footer {
    margin-top: 50px;
  }
}