@charset "utf-8";
/* CSS Document */
/*トップイメージ*/
.topimagesection {
  background-image: url("../img/top/top.jpg");
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
  padding: 0 5px;
}
.topimagesection h2 {
  color: #FFFFFF;
  font-size: 18px;
  text-shadow: 2px 2px 5px #000,2px 2px 5px #000,2px 2px 5px #000,2px 2px 5px #000;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
@media (max-width:700px) {
  .topimagesection {
    width: 100%;
    padding: 0;
  }
}
/*メインコンテンツ*/
.maincontainer {
  width: min(90%,1000px);
  margin: 60px auto;
  background-color: #E3DADA;
  color: #171717;
  padding: 5px;
}
.maincontainer h2 {
  border-left: 5px solid #171717;
  border-bottom: double #171717;
  margin-bottom: 10px;
  padding-left: 10px;
}
.maincontainer a {
  text-decoration: none;
  color: #171717;
}
.maincontainer a:hover {
  font-weight: 600;
}

/*今月のおすすめ*/
.newmenulist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: min(90%,1000px);
  margin: 0 auto;
  padding-bottom: 20px;
}
.newmenulist li {
  width: 220px;
  margin: 0 auto;
  padding:0 10px 30px;
  text-align: center;
}
.newmenulist img {
  width: 170px;
  height: 170px;
  border-radius: 500px;
  margin: 0 auto;
  pointer-events: none;
}
.newmenulist h3 {
  font-size: 18px;
}
.newmenulist p {
  text-align: left;
  font-size: 14px;
}
.newmenulist span {
  font-size: 12px;
}
/*お店案内*/
.storeinfosection {
  text-align: center;
}
.mapimg {
  background-color: aqua;
  width: min(90%,600px);
  height: 300px;
  margin: 10px auto;
}
.mapimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
