/*------------------------------------------

MV

------------------------------------------*/

.mv {
  width: 100%;
  overflow: hidden;
  max-height: 600px;
}

.mv img {
  width: 100%;
  min-height: 100%;
  max-height: 600px;
  display: block;
  object-fit: cover;
}

.inr {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}
.chef-box {
  padding-top: 90px;
}

.chef-box h3 {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

.chef-box h3::before,
.chef-box h3::after {
  content: "";
  position: absolute;
  bottom: -12px;
  width: 80px;
  height: 4px;
}

.chef-box h3::before {
  left: 48%;
  margin-left: -51px;
  background: #fff;
}

.chef-box h3::after {
  right: 48%;
  margin-right: -51px;
  background: #536d53;
}

@media screen and (max-width: 767px) {
  .txt {
    line-height: 1.3em;
  }
}

/* モーダル */
.service_wrap {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.service_wrap .service_box {
  width: 31%;
  margin: 15px 1%;
  cursor: pointer;
}

.service_wrap .service_box .service_box_img {
  width: 100%;
  position: relative;
}

.service_wrap .service_box .service_box_img img {
  width: 100%;
  transition: 0.3s;
}

.service_wrap .service_box .service_box_img .service_box_more_deco {
  width: 150px;
  padding: 10px;
  background-color: #fff;
  color: #395f39;
  border-radius: 10px 0 0 0;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 16px;
  text-align: center;
  transition: 0.3s;
}

.service_wrap .service_box .service_box_name {
  width: 100%;
  padding: 10px 0;
  box-sizing: border-box;
  text-align: center;
  background: rgba(57, 95, 57, 0.8);
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

.modal__wrapper {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.modal__layer {
  height: 100%;
  background: rgba(50, 50, 50, 0.85);
  cursor: pointer;
}

.modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(calc(100% - 40px), 1000px);
  height: calc(100% - 100px);
  padding: 20px;
  background: #fff;
  box-sizing: border-box;
}

.modal__inner {
  position: relative;
  overflow-y: scroll;
  height: 100%;
  padding: 80px 20px 20px;
  box-sizing: border-box;
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(50, 50, 50, 1);
  cursor: pointer;
  transition: opacity 0.6s;
}

.modal__close:before,
.modal__close:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  content: "";
}

.modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__image {
  width: 100%;
  margin-bottom: 20px;
}

.modal__title {
  width: 100%;
  padding: 20px 10px;
  box-sizing: border-box;
  background-color: #395f39;
  color: #fff;
  margin-bottom: 5px;
  text-align: center;
  font-size: 20px;
}

.modal__text {
  margin-top: 30px;
  text-align: center;
}

@media screen and (max-width: 896px) {
  .service_wrap {
    justify-content: space-between;
  }
  .service_wrap .service_box {
    width: 49%;
    margin: 15px 0;
  }
  .service_wrap .service_box .service_box_name {
    font-size: 16px;
  }
  .service_wrap .service_box .service_box_img .service_box_more_deco {
    width: 70px;
    padding: 7px;
    border-radius: 7px 0 0 0;
  }
  .modal__container {
    padding: 10px;
  }
  .modal__inner {
    padding: 60px 10px 10px;
  }
  .modal__close {
    top: 10px;
    right: 20px;
    width: 34px;
    height: 34px;
  }
  .modal__title {
    padding: 10px;
    font-size: 16px;
  }
  .modal__text {
    text-align: left;
  }
}
