@charset "UTF-8";
/* ---------------------------------

 ROOM CSS - お部屋ページ用CSS

 --------------------------------- */
.room_title{
  width: 100%;
  padding: 190px 0 50px 0;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(180deg, #a4daf0, #fff);
}
.room_title h1.room_title_h1{
  width: 100%;
  font-size: 2.0rem;
  position: relative;
}
.room_title p.room_title_sub{
  width: 100%;
  margin-top: 10px;
  letter-spacing: 2px;
}
@media screen and (max-width: 896px) {
  .room_title{
    padding: 120px 0 30px 0;
  }
  .room_title h1.room_title_h1{
      font-size: 1.5rem;
  }
}
/* room_main_slide ---------------------- */
.room_main_slide{
  width: 100%;
}
.room_main_slide .room_main_slide_img{
  width: 100%;
  height: 700px;
}
.room_main_slide .room_main_slide_img img{
  width: 100%;
  height: 700px;
  object-fit: cover;
}
.room_main_slide .slick-dots {
  bottom: 15px;
}
.room_main_slide.slick-dotted.slick-slider{
  margin-bottom: 0 ;
}
@media screen and (max-width: 896px) {
  .room_main_slide .room_main_slide_img{
    height: 300px;
  }
  .room_main_slide .room_main_slide_img img{
    height: 300px;
  }
}
/* room_about ----------------------------------- */
.room_about{
  width: 94%;
  margin: 100px auto;
  text-align: center;
}
.room_about h2{
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 896px) {
  .room_about{
    margin: 50px auto;
  }
  .room_about h2{
    margin-bottom: 15px;
  }
}
/* room_video ------------------------------ */
.room_video{
  width: 94%;
  max-width: 1000px;
  margin: 50px auto;
}
/* room_gallery ---------------------------- */
.room_gallery{
  width: 80%;
  margin: 100px auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content:space-between;
}
.room_gallery .room_gallery_box{
  width: 49%;
  margin: 20px 0;
}
@media screen and (max-width: 896px) {
  .room_gallery{
    width: 94%;
    margin: 30px auto 50px auto;
  }
  .room_gallery .room_gallery_box{
    width: 49%;
    margin: 10px 0;
  }
}
/* room_list ---------------------------------- */
.room_list{
  width: 100%;
}
.room_list .room_list_inner{
  width: 80%;
  margin: 0 auto;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content:space-between;
}
.room_list_box{
  width: 49%;
  margin: 20px 0;
  padding: 30px;
  background-color: #f3f3f3;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.room_list_box .room_list_box_photo{
  width: 50%;
}
.room_list_box .room_list_box_note{
  width: 47%;
  margin-left: 3%;
}
.room_list_box .room_list_box_note h4{
  width: 100%;
  margin-bottom: 10px;
}
.room_list_box .room_list_box_note h4{
  width: 100%;
  margin-bottom: 10px;
}
.room_list_box .room_list_box_note .room_dogok{
  width: 100%;
  margin-bottom: 10px;
}
.room_dogok_icon{
  display: inline-block;
  padding: 3px 15px;
  color: #1F81A6;
  border: 1px solid #1F81A6;
  border-radius: 9999px;
  font-size: 0.8rem;
}
.room_capacity_item{
  display: inline-block;
  padding: 1px 10px;
  background-color: #1F81A6;
  color: #fff;
  border-radius: 3px;
  margin-right: 5px;
}
@media screen and (max-width: 896px) {
  .room_list .room_list_inner{
    width: 94%;
  }
  .room_list_box{
    width: 49%;
    margin: 10px 0;
    padding: 15px;
    flex-direction: column;
    justify-content: flex-start;
  }
  .room_list_box .room_list_box_photo{
    width: 100%;
  }
  .room_list_box .room_list_box_note{
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
}

/* room_facility ---------------------------------- */
.room_facility{
  width: 100%;
  margin: 100px auto 0 auto;
  padding: 100px 0;
}
.room_facility .room_facility_inner{
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
}
table.room_table{
  width: 100%;
}
table.room_table th{
  width: 25%;
  text-align: left;
  padding: 10px;
  border-bottom: 1px dotted #ccc;
}
table.room_table td{
  width: 75%;
  padding: 10px;
  border-bottom: 1px dotted #ccc;
}
table.room_table th{
  width: 25%;
  text-align: left;
  padding: 10px;
  border-bottom: 1px dotted #ccc;
}
table.room_table tr:first-child th,
table.room_table tr:first-child td{
  border-top: 1px dotted #ccc;
}
@media screen and (max-width: 896px) {
  .room_facility{
    margin: 50px auto 0 auto;
    padding: 50px 0;
  }
  table.room_table th{
    width: 100%;
    border-bottom: none;
    display: block;
  }
  table.room_table td{
    width: 100%;
    display: block;
    padding: 0 10px 10px 10px;
  }
  table.room_table tr:first-child td{
    border-top: none;
  }
}
/* room_foot ----------------------------------- */
.room_foot{
  width: 100%;
  height: 500px;
  background-color: #1F81A6;
}
.room_foot img{
  width: 100%;
  height: 500px;
  object-fit: cover;
  opacity: 0.5;
}
@media screen and (max-width: 896px) {
  .room_foot{
    height: 250px;
  }
  .room_foot img{
    height: 250px;
  }
}