@charset "utf-8";
/* CSS Information========

Table of Contents:
 * info
 
========================== */
#container {
  margin-bottom: 80px;
}
#container .topicpath {
  width: 90%;
  margin: 10px auto 60px;
}
h2 {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 49px;
  color: #063641;
  margin-top: 50px;
}
/* ========================
　list_rooms
========================== */
.list_rooms {
  width: 90%;
  margin: auto;
}
.list_rooms ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.list_rooms .type li {
  width: 33%;
  text-align: center;
  border-left: 1px solid #ccc;
  margin-bottom: 12px;
}
.list_rooms .type li:nth-child(3) {
  border-right: 1px solid #ccc;
}
.list_rooms .type li:last-child {
  border-right: 1px solid #ccc;
}
.list_rooms ul li a {
  position: relative;
  display: inline-block;
  color: #333;
  padding-bottom: 15px;
  text-decoration: none;
}
.list_rooms .type li a:before {
  border-right: 1px solid #383838;
  border-top: 1px solid #383838;
  bottom: 7px;
  content: " ";
  height: 5px;
  right: 40%;
  position: absolute;
  -webkit-transform: translateX(-50%) rotate(135deg);
  transform: translateX(-50%) rotate(135deg);
  width: 5px;
}
.list_rooms .detail li {
  width: 33%;
  text-align: center;
}
.list_rooms .detail li a:before {
  border-right: 1px solid #383838;
  border-top: 1px solid #383838;
  bottom: 7px;
  content: " ";
  height: 5px;
  right: 40%;
  position: absolute;
  -webkit-transform: translateX(-50%) rotate(135deg);
  transform: translateX(-50%) rotate(135deg);
  width: 5px;
}
/* ========================
　box_room
========================== */
h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
h3 img {
  height: 42px;
}
.box_room {
  margin: 40px 0 50px;
}
section.box_room:last-child {
  margin: 40px 0 0;
}
.box_room .slider-img {
  position: relative;
  margin: 0 5px;
}
.box_room .room_det {
  width: 90%;
  margin: 20px auto 0;
}
.box_room .room_det .lbox .txt {
  margin-bottom: 20px;
}
.box_room .room_det .lbox .r_table li {
  border-top: 1px dashed #ccc;
  padding: 10px 0;
}
.box_room .room_det .lbox .r_table li:last-child {
  border-bottom: 1px dashed #ccc;
}
.box_room .room_det .lbox .r_table li dl {
  display: flex;
}
.box_room .room_det .lbox .r_table li dl dt {
  width: 35%;
  padding-left: 5%;
}
.box_room p .btn.reserve {
  margin: 10px auto 0 auto;
  background-color: #063641;
}
.box_room p .btn.reserve span {
  color: #fff;
}
.box_room p .btn.reserve:before {
  background: #fff;
}
.box_room p .btn.reserve:hover span {
  color: #063641;
}

/* ========================
　モーダルウィンドウ
========================== */
/*モーダルを開くボタン*/
.modal-open {
  cursor: pointer;
  margin-top: 25px;
  -webkit-transition: opacity 200ms ease-in;
  -moz-transition: opacity 200ms ease-in;
  -o-transition: opacity 200ms ease-in;
  transition: opacity 200ms ease-in;
}
.modal-open:hover {
  opacity: 0.7;
  -webkit-transition: opacity 200ms ease-in;
  -moz-transition: opacity 200ms ease-in;
  -o-transition: opacity 200ms ease-in;
  transition: opacity 200ms ease-in;
}
.modal-open .btn {
  width: 100%;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 60%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
  opacity: 1;
  visibility: visible;
  z-index: 99;
}
/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content {
  background: #fff;
  text-align: left;
}
/* ========================
　information
========================== */
#information {
  width: 90%;
  margin: 0 auto;
}
.box_info ul {
  width: 60%;
  margin: 20px auto 0;
  letter-spacing: 1px;
}
.box_info ul li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.box_info ul li dl {
  width: 45px;
  margin-right: 4%;
}
/* ========================
　amenity / facility
========================== */
#amenity,
#facility {
  width: 90%;
  margin: 0 auto;
}
#amenity section,
#facility section {
  margin-top: 40px;
}
#amenity section h4,
#facility section h4 {
  font-size: 20px;
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
#amenity section p,
#facility section p {
  text-align: left;
}

/*タブレット*/
@media screen and (min-width: 768px) {
  /* ========================
　list_rooms
========================== */
  .list_rooms .type li,
  .list_rooms .detail li {
    font-size: 16px;
    width: 25%;
  }
  .list_rooms ul li:nth-child(3) {
    border-right: none;
  }
  /* ========================
　box_room
========================== */
  .box_room {
    margin: 80px 0;
  }
  .box_room > div img {
    height: 30vh;
    width: 100%;
    object-fit: cover;
  }
  h3 img {
    height: 60px;
  }
  .box_room:nth-child(4),
  .box_room:nth-child(7),
  .box_room:nth-child(9) {
    margin: 50px 0 0;
  }
  .box_room .slider-img {
    margin: 0 15px;
  }
  .box_room .room_det {
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin: 30px auto 0;
  }
  .box_room .room_det .lbox {
    width: 60%;
  }
  .box_room .room_det .rbox {
    width: 35%;
  }
  .box_room p .btn.reserve {
    margin: 40px auto 0 auto;
  }
  /* ========================
　モーダルウィンドウ
========================== */
  .modal-open {
    border: 1px solid #ccc;
    margin: 0;
    position: relative;
  }
  .box_room .room_det .rbox img {
    height: auto;
  }
  .box_room .room_det .rbox span {
    width: 22px;
    position: absolute;
    top: 5px;
    right: 5px;
  }
  /*モーダル枠の指定*/
  .modal-body {
    max-width: 700px;
    width: 100%;
  }
  /* ========================
　information
========================== */
  .box_info ul {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .box_info ul li {
    margin-right: 4%;
  }
  .box_info ul li:last-child {
    margin-right: 0;
  }
  .box_info ul li dl {
    width: 60px;
    margin-right: 6%;
  }
  .box_info ul li dd {
    width: 100%;
  }
}
/*タブレット(横)*/
@media screen and (min-width: 1024px) {
  h2 {
    font-size: 68px;
    margin-top: 80px;
    margin-bottom: 50px;
  }
  h3 {
    font-size: 25px;
  }
  .container {
    width: 1000px;
    margin: 0 auto;
  }
  /* ========================
　list_rooms
========================== */
  .list_rooms .type li,
  .list_rooms .detail li {
    width: 220px;
  }
  /* ========================
　box_room
========================== */
  .box_room > div img {
    height: 50vh;
  }
  #rooms .slider-img {
    margin: 0 30px;
  }
  .box_room .room_det {
    width: 1000px;
  }
  .box_room .room_det .lbox {
    width: 55%;
  }
  .box_room .room_det .rbox {
    width: 40%;
  }
  .box_room .room_det .rbox span {
    width: 28px;
    top: 10px;
    right: 10px;
  }
  /* ========================
　モーダルウィンドウ
========================== */
  /*モーダル枠の指定*/
  .modal-body {
    max-width: 600px;
  }
  /* ========================
　information
========================== */
  .box_info ul {
    margin: 0;
  }
  .box_info ul li dl {
    width: 80px;
  }
  /* ========================
　amenity / facility
========================== */
  #amenity,
  #facility {
    width: 1000px;
  }
  #amenity section:first-of-type,
  #facility section:first-of-type {
    margin-top: 0;
  }
}
/* PCページ */
@media screen and (min-width: 1440px) {
  #container .topicpath {
    width: 1100px;
  }
  .container {
    margin-bottom: 100px;
  }
  /* ========================
　box_room
========================== */
  .box_room > div img {
    height: 70vh;
  }
  .box_room .room_det {
    width: 1000px;
    margin: 40px auto 0;
  }
  .box_room .room_det .lbox {
    width: 55%;
  }
  .box_room .room_det .rbox {
    width: 41%;
  }
  /* ========================
　モーダルウィンドウ
========================== */
  /*モーダル枠の指定*/
  .modal-body {
    max-width: 700px;
  }
  /* ========================
　amenity / facility
========================== */
  #amenity section p,
  #facility section p {
    margin: 0 10px;
  }
}
