@charset "UTF-8";
#selectRoom {
  position: relative;
  width: 505px;
  margin: 0 auto 65px;
}
@media (max-width: 767px) {
  #selectRoom {
    width: 100%;
    margin-bottom: 30px;
  }
}
#selectRoom .icon {
  fill: #AB8D4B;
  max-width: 17px;
  max-height: 17px;
  vertical-align: middle;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
#selectRoom select {
  padding-bottom: 10px;
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0 0 0 50px;
  width: 100%;
  height: 65px;
  font-family: YuGothic, "游ゴシック", Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", Roboto, "Droid Sans", Meiryo, "メイリオ", Verdana, sans-serif;
  font-size: 1.5rem;
  cursor: pointer;
  border: none;
  background: url(/img/common/bg_select.svg) no-repeat right 20px center;
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
  width: 505px;
}
@media (max-width: 767px) {
  #selectRoom select {
    width: 100%;
    font-size: 1.3rem;
    height: 55px;
  }
}
#selectRoom select:invalid {
  color: #666;
}
#selectRoom select option {
  color: black;
}
#selectRoom select option:first-child {
  color: #666;
}

.roomList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 53px 33px;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .roomList {
    display: block;
    margin-bottom: 30px;
  }
}
.secTitle01 + .roomList {
  margin-top: -30px;
}

@media (max-width: 767px) {
  .secTitle01 + .roomList {
    margin-top: 0;
  }
}
.roomList .listItem {
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .roomList .listItem + .listItem {
    margin-top: 20px;
  }
}
.roomList .listItem .photo {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .roomList .listItem .photo {
    margin-bottom: 15px;
  }
}
.roomList .listItem .photo img {
  aspect-ratio: 97/57;
}

body.modal-open {
  overflow: hidden;
  position: relative;
  height: 100vh;
  width: 100vw;
}

.roomList .listItem .roomNameWrap {
  border-bottom: 1px solid #CACACA;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 5px;
}

.roomList .listItem .roomNameWrap .roomName {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.roomList .listItem .roomNameWrap .md-btn {
  background-color: #142335;
  color: #fff;
  border-radius: 4px;
  padding: 7px 12px 8px 32px;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  margin-left: auto;
}

.roomList .listItem .roomNameWrap .md-btn::before,
.roomList .listItem .roomNameWrap .md-btn::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 9px;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.roomList .listItem .roomNameWrap .md-btn::before {
  width: 18px;
  height: 18px;
  border: 1px solid #fff;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .roomList .listItem .roomNameWrap .md-btn::before {
    width: 14.5px;
    height: 14.5px;
  }
}
.roomList .listItem .roomNameWrap .md-btn::after {
  left: 15px;
  width: 10px;
  height: 10px;
  border: 5px solid transparent;
  border-left: 8px solid #fff;
}

@media (max-width: 767px) {
  .roomList .listItem .roomNameWrap .md-btn::after {
    left: 13.5px;
    width: 5px;
    height: 5px;
    border: 4px solid transparent;
    border-left: 7px solid #fff;
  }
}
#roomMovie.modal .md-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  opacity: 0.9;
  z-index: 9999;
}

#roomMovie.modal .md-contents {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1100px;
  height: auto;
  overflow: hidden;
  z-index: 10000;
}

@media screen and (max-width: 1024px) {
  #roomMovie.modal .md-contents {
    width: 90%;
  }
}
#roomMovie.modal .videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

#roomMovie.modal .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#roomMovie.modal .md-xmark {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 25px;
  height: 22px;
  z-index: 9999;
  cursor: pointer;
}

#roomMovie.modal .md-xmark span {
  height: auto;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
}

#roomMovie.modal .md-xmark span:nth-of-type(1) {
  top: 0;
  transform: translateY(10px) rotate(-45deg);
}

#roomMovie.modal .md-xmark span:nth-of-type(2) {
  bottom: -1px;
  transform: translateY(-10px) rotate(45deg);
}

.roomList .listItem .roomName {
  border-bottom: 1px solid #CACACA;
  padding-bottom: 10px;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  text-transform: capitalize;
}

.roomList .listItem .roomDetail {
  display: flex;
  flex-wrap: wrap;
  gap: 0 15px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .roomList .listItem .roomDetail {
    margin-bottom: 5px;
  }
}
.roomList .listItem .roomDetail li {
  padding-left: 1.4em;
  text-indent: -0.7em;
}

.roomList .listItem .roomDetail li::before {
  content: "●";
  display: inline-block;
  color: #AB8D4B;
  margin-right: 5px;
}

.roomList .listItem .roomDetail li:first-child {
  width: 100%;
}

.roomList .listItem .roomDetail + .btn {
  margin-top: auto;
}

@media (max-width: 767px) {
  .roomList .listItem .roomDetail + .btn {
    margin-top: 15px;
  }
}
.roomList .listItem .link {
  display: flex;
  gap: 0 15px;
  margin-top: -15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.roomList .listItem .link a {
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .roomList .listItem .link {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.roomList .listItem .btn {
  margin-top: auto;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .roomList .listItem .btn {
    margin-top: 20px;
  }
}
.roomList .listItem .btn a {
  width: 100%;
  min-width: initial;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .roomList .listItem .btn a {
    padding-right: 40px;
  }
}
.room .note + .btn a + a {
  margin-top: 10px;
}

/* ROOM 客室スライド画像追加 ----------------------------------------- */
.room .listItem .photo {
  position: relative;
}

.room .listItem .photo p {
  background: rgba(20, 35, 53, 0.8);
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.room .listItem .photo p.txt {
  left: 4%;
  bottom: 12px;
  background: none;
  border-radius: initial;
  display: block;
  width: calc(100% - 50px);
  height: auto;
  font-size: 1.3rem;
  color: #fff;
  text-shadow: 0px 0px 8px #000000, 0px 0px 8px #000000;
  line-height: 1.1;
}

.room .listItem .photo p .icon_photo {
  width: 14px;
  height: 10px;
}

.roomPhotoModal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.roomPhotoModal_bg {
  height: 100vh;
  position: absolute;
  width: 100%;
  opacity: 0.95;
  background: #F7F4ED;
}

.roomPhotoModal_content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 742px;
}

@media (max-width: 767px) {
  .roomPhotoModal_content {
    width: 90%;
  }
}
.roomPhotoModal .thumbnail-img {
  opacity: 0.3;
  transition: opacity 0.3s linear;
}

.roomPhotoModal .thumbnail-img img {
  aspect-ratio: 164.5/100.5;
}

.roomPhotoModal .slick-num {
  position: absolute;
  right: 30px;
  bottom: 20px;
  color: #fff;
  border: 1px solid #fff;
  background: rgba(20, 35, 53, 0.8);
  border-radius: 20px;
  height: 25px;
  width: 10%;
  line-height: 22px;
  text-align: center;
  font-family: "acumin-variable", sans-serif;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 400;
  font-size: 1.6rem;
  letter-spacing: 0;
}

@media (max-width: 767px) {
  .roomPhotoModal .slick-num {
    font-size: 1.2rem;
    height: 20px;
    line-height: 17px;
    width: 14%;
    right: 18px;
    bottom: 12px;
  }
}
.roomPhotoModal .slider {
  padding: 20px 20px 14px;
}

.roomPhotoModal .thumbnail {
  padding: 0 14px 20px;
}

.roomPhotoModal .thumbnail.slick-initialized .slick-slide {
  padding: 0 7px;
}

@media (max-width: 767px) {
  .roomPhotoModal .slider {
    padding: 9px 9px 6px;
  }
  .roomPhotoModal .thumbnail {
    padding: 0 9px 9px;
  }
  .roomPhotoModal .thumbnail.slick-initialized .slick-slide {
    padding: 0 2.5px;
  }
}
.slick-slide .txt {
  position: absolute;
  bottom: 8px;
  color: #fff;
  left: 10px;
  text-shadow: 0px 0px 8px #000000, 0px 0px 8px #000000;
  width: calc(100% - 65px);
  line-height: 1.1;
  font-size: 1.3rem;
}

.roomPhotoModal .slick-current {
  opacity: 1;
}

.roomPhotoModal .slick-slider .slick-arrow {
  width: 30px;
  height: 35px;
}

.roomPhotoModal .slick-slider .slick-arrow.prev-arrow {
  position: absolute;
  left: 35px;
  transform: rotate(180deg);
}

.roomPhotoModal .slick-slider .slick-arrow.next-arrow {
  position: absolute;
  right: 35px;
}

.roomPhotoModal .slick-arrow svg {
  fill: #fff;
  width: 16px;
  height: 31px;
  filter: drop-shadow(1px 1px 2px #000);
}

@media (max-width: 767px) {
  .roomPhotoModal .slick-slider .slick-arrow {
    width: 20px;
    height: 20px;
    top: 10px;
  }
  .roomPhotoModal .slick-slider .slick-arrow.prev-arrow {
    left: 12px;
  }
  .roomPhotoModal .slick-slider .slick-arrow.next-arrow {
    right: 15px;
  }
  .roomPhotoModal .slick-arrow svg {
    width: 7px;
    height: 13px;
  }
}
.roomPhotoModal .slick-slider .slick-track,
.roomPhotoModal .slick-slider .slick-list {
  width: 700px;
}

.roomPhotoModal .thumbnail.slick-slider .slick-list {
  width: 714px;
}

@media (max-width: 767px) {
  .roomPhotoModal .slick-slider .slick-track,
  .roomPhotoModal .slick-slider .slick-list {
    width: 85vw;
  }
  .roomPhotoModal .thumbnail.slick-slider .slick-list {
    width: 85vw;
  }
}
.slick-img img {
  aspect-ratio: 970/590;
}

.roomPhotoModal .thumbnail-img {
  cursor: pointer;
}

.roomPhotoModal_content .js-modal-close {
  position: absolute;
  top: -50px;
  right: -5px;
  display: block;
  width: 35px;
  height: 35px;
}

.roomPhotoModal_content .js-modal-close::before,
.roomPhotoModal_content .js-modal-close::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  width: 30px;
  height: 2px;
  margin: auto;
  transform: rotate(45deg);
}

.roomPhotoModal_content .js-modal-close::after {
  transform: rotate(-45deg);
}

@media (max-width: 767px) {
  .roomPhotoModal_content .js-modal-close {
    top: -28px;
    right: 0;
    width: 20px;
    height: 20px;
  }
  .roomPhotoModal_content .js-modal-close::before,
  .roomPhotoModal_content .js-modal-close::after {
    width: 20px;
  }
}
/* 間取り図モーダル ----------------------------------------- */
.floorplanModal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.floorplanModal_bg {
  height: 100vh;
  position: absolute;
  width: 100%;
  opacity: 0.95;
  background: #F7F4ED;
}

.floorplanModal_content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 742px;
}

.floorplanModal_content img {
  max-height: 85vh;
}

@media (max-width: 767px) {
  .floorplanModal_content {
    width: 90%;
  }
}
.floorplanModal_content .js-modal-close {
  position: absolute;
  top: -50px;
  right: -5px;
  display: block;
  width: 35px;
  height: 35px;
}

.floorplanModal_content .js-modal-close::before,
.floorplanModal_content .js-modal-close::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  width: 30px;
  height: 2px;
  margin: auto;
  transform: rotate(45deg);
}

.floorplanModal_content .js-modal-close::after {
  transform: rotate(-45deg);
}

@media (max-width: 767px) {
  .floorplanModal_content .js-modal-close {
    top: -28px;
    right: 0;
    width: 20px;
    height: 20px;
  }
  .floorplanModal_content .js-modal-close::before,
  .floorplanModal_content .js-modal-close::after {
    width: 20px;
  }
}
/* =========================================================
amenity
========================================================= */
.amenity {
  background: rgba(240, 240, 235, 0.5);
}

.amenityBtn {
  display: none;
  border-top: 1px solid #CACACA;
  border-bottom: 1px solid #CACACA;
  background: #fff;
  padding: 20px 5%;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .amenityBtn {
    display: flex;
    align-items: center;
  }
}
.amenityBtn span {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #AB8D4B;
  width: 25px;
  height: 25px;
  margin-left: auto;
  color: #AB8D4B;
}

.amenityBtn.on span {
  padding-bottom: 3px;
  font-size: 1.8rem;
}

.amenityBtn.on + .wrapper {
  opacity: 1;
  visibility: visible;
  height: auto;
  padding: 30px 0;
}

.amenityTitle {
  margin: 50px 0 20px;
}

@media (max-width: 767px) {
  .amenityTitle {
    margin: 30px 0 15px;
  }
}
.amenityTitle:first-child {
  margin-top: 0;
}

.amenityTitle a {
  color: #4D4D4D;
  font-family: YuGothic, "游ゴシック", Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", Roboto, "Droid Sans", Meiryo, "メイリオ", Verdana, sans-serif;
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .amenityTitle a {
    display: block;
    font-size: 1.3rem;
  }
}
.amenityList {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
  gap: 10px;
}

@media (max-width: 767px) {
  .amenityList {
    grid-template-columns: repeat(3, 1fr);
  }
}
.amenityList li {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  background: #fff;
  padding: 20px 5px 10px;
  font-size: 1.3rem;
}

@media (max-width: 767px) {
  .amenityList li {
    border-radius: 10px;
    padding: 15px 3px 7px;
    font-size: 1.2rem;
  }
}
.amenityList li .icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}

.amenityList li .icon img {
  max-height: 45px;
}

.amenityList li .name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 3em;
  text-align: center;
  line-height: 1.2;
  text-transform: capitalize;
}

.amenityList li .star {
  position: absolute;
  top: 10px;
  left: 10px;
  line-height: 1;
  color: #AB8D4B;
}

.amenityList li .price {
  position: absolute;
  bottom: -2.2em;
  left: 0;
  right: 0;
  text-align: center;
}

.amenityList li .price_02 {
  position: absolute;
  bottom: -3.4em;
  left: 0;
  right: 0;
  text-align: center;
}

.amenityList li .price_02 span {
  margin-top: -3px;
  display: block;
  line-height: 1.5;
  letter-spacing: -1px;
}

.amenityList.starList {
  margin-bottom: 70px;
  gap: 30px 10px;
}

@media (max-width: 767px) {
  .amenityList.starList {
    margin-bottom: 50px;
    gap: 30px 10px;
  }
}
.amenityList + .note {
  margin-top: 20px;
}

.amenityList + .note + .amenityTitle {
  margin-top: 30px;
}

.amenity .disc {
  display: flex;
  gap: 1em;
  margin: 20px 0;
}

@media (max-width: 767px) {
  .amenity .disc {
    display: block;
  }
}/*# sourceMappingURL=room.css.map */