/* =======================================================
* sub_bg
* ======================================================= */
.sub_bg {
  background: url(../images/bg-service.jpg) no-repeat center/cover;
}

/* =======================================================
* menu
* ======================================================= */
#menu .menu_txt {
  padding-bottom: 5rem;
}

#menu .menu_txt img {
  width: 120px;
  margin: 0 auto 10px;
}

#menu h2 {
  font-size: 3rem;
  letter-spacing: .1em;
  color: #333;
}

/* menuList */
.menuList.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}

.menuList li {
  background: #7ebabd;
  padding: 30px 40px;
  border-radius: 5px;
  color: #fff;
  line-height: 1.7;
}

.menuList li h3 {
  text-align: center;
  font-size: 1.8rem;
  border-bottom: 1px dotted;
  padding-bottom: 5px;
  margin-bottom: 15px;
  font-weight: bold;
  letter-spacing: .1em;
}

.menuList li h3 img {
  width: 15px;
  vertical-align: middle;
  margin-right: 7px;
}

.menuList li p img {
  object-fit: cover;
  height: 280px;
}

.menuList li .menuList_price {
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  width: 70%;
  margin: 15px auto 0;
  color: #389398;
  border-radius: 5px;
  padding: 5px 0;
}

.menuList li .menuList_price span {
  font-size: 2rem;
}

/* .menuList li a {
  color: #fff;
  border-bottom: 1px solid;
  line-height: 3;
} */

.menuList li .menuList_caution {
  font-size: 1.2rem;
  margin-top: 15px;
}

/* menuList_new */
.menuList_new {
  font-size: 1.2rem;
  margin-top: 30px;
}

.menuList_new a.js-modal-open {
  text-align: center;
  background: var(--color-pink);
  color: #fff;
  margin: 0 auto;
  padding: 10px;
  width: 100%;
  display: block;
  max-width: 280px;
  border-radius: 5px;
}

/* modal */
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.modal__bg {
  background: rgba(0, 0, 0, 0.7);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal__content {
  background: #fff;
  left: 50%;
  padding: 50px 30px 0px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  border-radius: 5px;
  line-height: 2;
  color: #333;
  font-size: 1.4rem;
}

.menuList_new .modal__content .menuList_price {
  background: #7ebabd;
  width: 70%;
  margin: 20px auto;
  color: #fff;
  border-radius: 5px;
  padding: 5px 0;
}


.js-modal-close {
  color: var(--color-green);
  font-size: 3rem;
  font-weight: bold;
}

/* line_reserve */
.line_reserve {
  margin: 50px auto 10px;
}

.line_reserve a {
  background: #06C755;
  padding: 30px 100px;
  display: inline-block;
  font-size: 2.2rem;
  text-align: center;
  color: #fff;
  border-radius: 5px;
}

.line_reserve a span {
  display: block;
  font-size: 1.3rem;
}

.line_reserve a img {
  display: inline-block;
  width: 30px;
  vertical-align: middle;
  padding-right: 5px;
}

@media screen and (max-width:768px) {
  #menu .menu_txt img {
    width: 90px;
  }

  .menuList.grid {
    grid-template-columns: 1fr;
  }

  .menuList li {
    padding: 20px;
  }

  .menuList li p img {
    height: 200px;
  }

  .menuList div img {
    width: 95%;
  }

  .modal__content {
    width: 92%;
    text-align: left;
    padding: 30px 20px 0px;
  }

  .menuList_new .modal__content .menuList_price {
    width: 90%;
  }

  .line_reserve a {
    display: block;
    padding: 25px 0;
  }

}


/* =======================================================
* attention
* ======================================================= */
#attention {
  background: url(../images/bg-attension.jpg) no-repeat center/ cover;
  line-height: 1.8;
  padding: 15rem 0;
}

#attention .wrap {
  background: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  padding: 50px;
  box-sizing: border-box;
  border-radius: 5px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
  color: var(--color-black);
  font-weight: bold;
}

#attention li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 17px;
}

#attention li::before {
  position: absolute;
  content: "※";
  top: 0;
  left: 0;
  font-size: 1.3rem;
}

.linkBtn {
  padding-bottom: 5rem;
}

@media screen and (max-width:768px) {
  #attention {
    padding: 9rem 20px;
    background-position: center right 40%;
  }

  #attention .wrap {
    padding: 30px 20px 10px;
    font-size: 1.3rem;
  }

  #attention h2 {
    font-size: 1.8rem;
  }
}