@charset "utf-8";
/* CSS Document */
.top-image{
  height: 400px;
  width: 100%;
  background-color: rgba(0,0,0,0.3);
}
.top-image::before{
  content: "";
  display: block;
  width: 100%;
  height: 400px;
  background-image: url("../img/top/menu_top.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.top-image h1{
  color: #FFF;
  font-size: 2.0rem;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
  position: absolute;
  top: 190px;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.2rem;
}

.menu{
  background-color: #EBE3DC;
  padding-top: 60px;
}

.menu-wrapper h2{
  font-size: 2.0rem;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 600;
  font-style: normal;
  padding-bottom: 30px;
}
.menu-osusume{
  margin: 0 20px;
}
.menu-osusume ul{
  list-style: none;
  margin-bottom: 60px;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.menu-osusume ul li{
  width: 100%;
  margin-bottom: 40px;
  transition: .6s;
}
.menu-osusume ul li div{
  display: inline-block;
  overflow: hidden;
  padding: 0;
}
.menu-osusume ul li img{
  width: 100%;
  aspect-ratio: 3 / 2 ;
  object-fit: cover;
  display: block;
  border-radius: 3px;
  transition-duration: .6s;
}
.menu-osusume li img:hover {
  transform: scale(1.15);
}
.menu-osusume ul li p{
  padding: 10px 0 0 10px;
  text-align: left;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 2.0rem;
}
.menu-osusume ul li span{
  padding-left: 20px;
}
.menu-table{
  margin-bottom: 0px;
  margin: 0 20px;
}
.menu-table_image{
  width: 100%;
  max-width: 1000px;
  padding-bottom: 40px;
  margin: 0 auto;
}
.menu-table_image img{
  width: 100%;
  transition: .6s;
}
.menu-table_image img:hover{
  transform: scale(1.1);
}
.menu-centens{
	font-size: 1.4rem;
	font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
	color: #888888;
	text-align: left;
	line-height: 2.4rem;
	margin: 0 auto;
	max-width: 1000px;
	padding: 0 20px 60px;
}

@media(max-width: 599px){
  .menu-image{
    padding-bottom: 80px;
  }
  .menu-image ul{
    display: flex;
    flex-wrap: wrap;
  }
  .menu-image ul li:first-child{
    width: 100%;
    aspect-ratio: 4 / 3 ;
  }
  .menu-image ul li:nth-child(2),.menu-image ul li:nth-child(3){
    width: 50%;
    aspect-ratio: 2 / 3 ;
  }
  .menu-image ul li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media(min-width: 600px){
  .menu-osusume ul{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto;
    padding: 0 0 80px;
  }
  .menu-osusume ul li{
    width: calc((100% - 30px) / 2);
    height: auto;
    padding: 0;
    margin-bottom: 0;
  }
  .menu-osusume ul li img{
    width: 100%;
    aspect-ratio: 3 / 2 ;
    object-fit: cover;
  }
  .menu-image{
    padding-bottom: 160px;
  }
  .menu-image ul{
    display: flex;
  }
  .menu-image ul li{
    width: calc( 100% / 3 );
    max-height: 400px; 
  }
  .menu-image ul li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media(min-width: 800px){
  .menu-osusume ul{
    gap: 40px;
    max-width: 1300px;
  }
  .menu-osusume ul li{
    width: calc((100% - 80px) / 3);
    margin-bottom: 40px;
  }
  .menu-table_image{
    padding-bottom: 60px;
  }
  .menu-centens{
	  font-size: 1.6rem;
	  padding: 0 20px 120px;
  }
}