@charset "UTF-8";
/* CSS Document */
/* ::::::::::::::::::::::::::::::::: FOR RESTAURANT_SINGLE PAGE レストラン詳細 ::::::::::::::::::::::::::::::::: */
.menuTabBlock {
  height: 750px;
  box-sizing: border-box;
  border: solid 1px #bbb;
  overflow-y: auto;
  margin-bottom: 40px;
}

@media screen and (max-width: 989px) {
  .menuTabBlock {
    height: auto;
    margin-bottom: 40px;
  }
}

.menuTabBlock > .tabContents {
  padding: 40px;
  text-align: left;
}

@media screen and (max-width: 989px) {
  .menuTabBlock > .tabContents {
    padding: 30px 5% 40px;
  }
}

.menuTabBlock .menuList {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 989px) {
  .menuTabBlock .menuList {
    display: block;
  }
}

.menuTabBlock .menuList li {
  box-sizing: border-box;
  position: relative;
  background: #fff;
  width: 31.797%;
  margin: 20px 2.3045% 0 0;
}

@media screen and (max-width: 989px) {
  .menuTabBlock .menuList li {
    width: auto;
    margin: 20px 0 0 0;
  }
}

.menuTabBlock .menuList li:nth-child(3n) {
  margin-right: 0;
}

.menuTabBlock .menuList li:nth-child(-n+3) {
  margin-top: 0;
}

@media screen and (max-width: 989px) {
  .menuTabBlock .menuList li:nth-child(-n+3) {
    margin-top: 20px;
  }
}

@media screen and (max-width: 989px) {
  .menuTabBlock .menuList li:first-child {
    margin-top: 0;
  }
}

.menuTabBlock .menuList a {
  display: block;
  padding: 18px 20px 35px;
}

@media screen and (max-width: 989px) {
  .menuTabBlock .menuList a {
    padding: 15px 15px 25px;
  }
}

.menuTabBlock .menuList .img {
  margin: -18px -20px 20px;
}

@media screen and (max-width: 989px) {
  .menuTabBlock .menuList .img {
    margin: -15px -15px 20px;
  }
}

.menuTabBlock .menuList .icon {
  background: #d4b572;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 10px;
  text-align: center;
}

@media screen and (max-width: 989px) {
  .menuTabBlock .menuList .icon {
    width: 60px;
    height: 60px;
    border-radius: 30px;
  }
}

.menuTabBlock .menuList .icon span {
  display: block;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.461;
  position: relative;
  top: 15px;
  font-weight: bold;
}

@media screen and (max-width: 989px) {
  .menuTabBlock .menuList .icon span {
    font-size: 1rem;
  }
}

.menuTabBlock .menuList .title {
  background: url(../../img/common/vector_yellow_right.svg) no-repeat 0 13px;
  background-size: 6px 6px;
  margin-bottom: 0;
  text-indent: .6em;
}

@media screen and (max-width: 989px) {
  .menuTabBlock .menuList .title {
    font-size: 1.5rem;
    background-position: 0 11px;
    text-indent: 1em;
  }
}

.menuTabBlock .menuList .desc {
  margin-top: 14px;
  font-size: 1.3rem;
  line-height: 1.69;
}

@media screen and (max-width: 989px) {
  .menuTabBlock .menuList .desc {
    display: none;
  }
}

.menuTabBlock .menuList .price {
  margin-top: 10px;
  font-size: 1.3rem;
  line-height: 1.69;
}

@media screen and (max-width: 989px) {
  .menuTabBlock .menuList .price {
    display: none;
  }
}

.menuTabBlock .menuList .price p:first-child {
  margin-bottom: 10px;
}

.menuTabBlock .menuList li.recommendation a::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: solid 3px #d4b572;
}

@media screen and (max-width: 989px) {
  .menuTabBlock .menuList li.recommendation a::after {
    border-width: 2px;
  }
}

.menuTabBlock .menuBlock {
  margin-bottom: 40px;
  background: #fff;
}

@media screen and (max-width: 989px) {
  .menuTabBlock .menuBlock {
    margin-bottom: 30px;
  }
}

.menuTabBlock .menuBlock:last-child {
  margin-bottom: 0;
}

.menuTabBlock .menuBlock:after {
  content: "";
  display: block;
  clear: both;
}

.menuTabBlock .menuBlock .img {
  float: left;
  width: 276px;
}

@media screen and (max-width: 989px) {
  .menuTabBlock .menuBlock .img {
    float: none;
    width: auto;
  }
}

.menuTabBlock .menuBlock .img img {
  width: 100%;
}

.menuTabBlock .menuBlock .img + .inner {
  margin-left: 276px;
}

@media screen and (max-width: 989px) {
  .menuTabBlock .menuBlock .img + .inner {
    margin-left: 0;
  }
}

.menuTabBlock .menuBlock .inner {
  padding: 33px 40px 50px;
}

@media screen and (max-width: 989px) {
  .menuTabBlock .menuBlock .inner {
    padding: 20px 5% 30px;
  }
}

@media screen and (max-width: 989px) {
  .menuTabBlock .menuBlock .title {
    margin-bottom: 15px;
  }
}

.menuTabBlock .menuBlock .menuList02 {
  font-size: 1.3rem;
}

.menuTabBlock .menuBlock .menuList02 li {
  padding-bottom: 3px;
  border-bottom: solid 1px #ddd;
  margin-bottom: 3px;
  display: table;
  width: 100%;
}

.menuTabBlock .menuBlock .menuList02 li .name {
  display: table-cell;
  vertical-align: middle;
  width: 440px;
}

.menuTabBlock .menuBlock .menuList02 li .price {
  display: table-cell;
  vertical-align: middle;
  text-align: right;
}

.menuTabBlock .menuBlock .caution {
  margin-top: 20px;
}

.menuTabBlock + .btnWrap {
  margin-bottom: 45px;
}

@media screen and (min-width: 990px) {
  .menuDetailBlock02 .menuBlock .img {
    width: 440px;
  }
}

@media screen and (min-width: 990px) {
  .menuDetailBlock02 .menuBlock .img + .inner {
    margin-left: 440px;
  }
}

@media screen and (min-width: 990px) {
  .menuDetailBlock02 .menuBlock .inner {
    margin-left: 440px;
    padding: 40px;
  }
}

.menuDetailBlock02 .menuBlock .title {
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 989px) {
  .menuDetailBlock02 .menuBlock .title {
    font-size: 1.8rem;
    line-height: 1.61;
    margin-bottom: 15px;
  }
}

.menuDetailBlock02 .menuBlock .text {
  margin-bottom: 32px;
}

@media screen and (max-width: 989px) {
  .menuDetailBlock02 .menuBlock .text {
    font-size: 1.3rem;
    margin-bottom: 25px;
  }
}

.menuDetailBlock02 .menuBlock .table {
  margin-bottom: 30px;
}

.menuDetailBlock02 .menuBlock .table th {
  width: 99px;
}

@media screen and (max-width: 989px) {
  .menuDetailBlock02 .menuBlock .table th {
    width: auto;
  }
}

.menuDetailBlock02 .menuBlock .table td {
  width: 258px;
}

@media screen and (max-width: 989px) {
  .menuDetailBlock02 .menuBlock .table td {
    width: auto;
  }
}

.menuDetailBlock03 .menuList {
  margin-bottom: 40px;
}

.menuDetailBlock03 .menuList > li {
  padding: 18px 20px 35px;
}

@media screen and (max-width: 989px) {
  .menuDetailBlock03 .menuList > li {
    padding: 15px 5% 20px;
  }
  .menuDetailBlock03 .menuList > li .desc,
  .menuDetailBlock03 .menuList > li .price {
    display: block;
  }
}

.menuDetailBlock03 .text01 {
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 24px;
}

@media screen and (max-width: 989px) {
  .menuDetailBlock03 .text01 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

.menuDetailBlock03 .text02 {
  margin-bottom: 30px;
}

@media screen and (max-width: 989px) {
  .menuDetailBlock03 .menuBlock .img {
    display: none;
  }
}

.restaurantInfo {
  text-align: left;
  background: #fff;
  padding: 40px 40px 60px;
}

@media screen and (max-width: 989px) {
  .restaurantInfo {
    padding: 26px 5% 35px;
  }
}

.restaurantInfo .imageLeft {
  margin-bottom: 40px;
}

.restaurantInfo .imageLeft::after {
  content: "";
  display: block;
  clear: both;
}

.restaurantInfo .imageLeft .img {
  float: left;
  margin-right: 40px;
}

@media screen and (max-width: 989px) {
  .restaurantInfo .imageLeft .img {
    float: none;
    text-align: center;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.restaurantInfo .imageLeft .inner .name {
  line-height: 1;
  margin-bottom: 25px;
}

@media screen and (max-width: 989px) {
  .restaurantInfo .imageLeft .inner .name {
    margin: 20px 0;
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: center;
  }
}

.restaurantInfo .imageLeft .inner p {
  line-height: 1.79;
}

.restaurantInfo .table01 {
  margin-bottom: 40px;
}

@media screen and (max-width: 989px) {
  .restaurantInfo .table01 {
    margin-bottom: 35px;
  }
}

.restaurantInfo .table01 th {
  width: 160px;
}

@media screen and (max-width: 989px) {
  .restaurantInfo .table01 th {
    width: auto;
  }
}

.restaurantInfo .table01 td {
  width: 718px;
}

@media screen and (max-width: 989px) {
  .restaurantInfo .table01 td {
    width: auto;
  }
}
