@charset "utf-8";

/*============================
イントロ
============================*/
.intro {
  padding-bottom: 0.80rem;
  position: relative;
}
@media screen and (max-width: 640px) {
  .intro {
    padding-bottom: 0.40rem;
  }
}

.intro .lead {
  font-size: 0.16rem;
  font-weight: 500;
  text-align: center;
  line-height: 2.5;
}
@media screen and (max-width: 640px) {
  .intro .lead {
    font-size: 0.15rem;
    text-align: justify;
    line-height: 2;
  }
}

/*============================
温泉付き メゾネットスイート
============================*/
.maisonette_suite {
  position: relative;
}

.maisonette_suite::before {
  content: "";
  width: calc(100% - 0.50rem);
  height: calc(100% - 2.00rem);
  background-color: #EDF5F7;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -3;
}
@media screen and (max-width: 640px) {
  .maisonette_suite::before {
    width: 100%;
    height: 100%;
  }
}

.maisonette_suite::after {
  content: "";
  width: 6.40rem;
  height: 6.40rem;
  background-image: url(../img/common/deco02_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: -2.00rem;
  top: 0;
  z-index: -2;
}

.maisonette_suite .header {
  width: calc(50% + 6.00rem);
  height: 4.30rem;
  background-image: url(../img/guestroom/suite_header.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 640px) {
  .maisonette_suite .header {
    width: 100%;
    height: 70vw;
  }
}

.maisonette_suite .header::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.maisonette_suite .header .txt_box {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  z-index: 1;
  color: #FFF;
  text-shadow: 0 0 0.10rem rgba(0,0,0,0.2);
}

.maisonette_suite .header .txt_box .in {
  margin-left: auto;
}

.maisonette_suite .header .txt_box .en_txt {
  font-family: "Playfair Display", serif;
  font-size: 0.14rem;
}
@media screen and (max-width: 640px) {
  .maisonette_suite .header .txt_box .en_txt {
    font-size: 0.12rem;
  }
}

.maisonette_suite .header .txt_box .en_txt span {
  border-bottom: 1px solid #FFF;
}

.maisonette_suite .header .txt_box .ttl {
  font-size: 0.35rem;
  font-weight: 600;
  padding: 0.20rem 0;
}
@media screen and (max-width: 640px) {
  .maisonette_suite .header .txt_box .ttl {
    font-size: 0.24rem;
  }
}

.maisonette_suite .header .txt_box .catch {
  font-size: 0.20rem;
  font-weight: 600;
}
@media screen and (max-width: 640px) {
  .maisonette_suite .header .txt_box .catch {
    font-size: 0.14rem;
    line-height: 1.6;
  }
}

.maisonette_suite .room_list .list {
  padding: 0.50rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.50rem 0;
}

.maisonette_suite .room_list .list .detail a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: #333;
}
@media screen and (max-width: 640px) {
  .maisonette_suite .room_list .list .detail a {
    flex-wrap: wrap;
  }
}

.maisonette_suite .room_list .list .detail .ph {
  width: 3.60rem;
  height: 2.40rem;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .maisonette_suite .room_list .list .detail .ph {
    width: 100%;
    height: 60vw;
  }
}

.maisonette_suite .room_list .list .detail .ph:hover img {
  transform: scale(1.04);
}

.maisonette_suite .room_list .list .detail .txt_box {
  width: calc(100% - 4.00rem);
}
@media screen and (max-width: 640px) {
  .maisonette_suite .room_list .list .detail .txt_box {
    width: 100%;
    margin-top: 0.20rem;
  }
}

.maisonette_suite .room_list .list .detail .txt_box .room_ttl {
  font-size: 0.20rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 640px) {
  .maisonette_suite .room_list .list .detail .txt_box .room_ttl {
    font-size: 0.17rem;
    text-align: center;
  }
}

.maisonette_suite .room_list .list .detail .txt_box .room_ttl span {
  font-size: 0.14rem;
  display: inline-block;
  padding-left: 0.05rem;
}
@media screen and (max-width: 640px) {
  .maisonette_suite .room_list .list .detail .txt_box .room_ttl span {
    font-size: 0.13rem;
    display: block;
    padding-left: 0;
    padding-top: 0.05rem;
  }
}

.maisonette_suite .room_list .list .detail .txt_box .txt {
  font-size: 0.15rem;
  line-height: 2;
  padding: 0.20rem 0;
}
@media screen and (max-width: 640px) {
  .maisonette_suite .room_list .list .detail .txt_box .txt {
    font-size: 0.14rem;
    line-height: 1.8;
  }
}

@media screen and (max-width: 640px) {
  .maisonette_suite .room_list .list .detail .txt_box .more_btn .btn01 {
    margin: auto;
  }
}

/*============================
通常客室一覧
============================*/
.regular_room_list {
  position: relative;
  padding-top: 1.50rem;
  padding-bottom: 0.80rem;
}
@media screen and (max-width: 640px) {
  .regular_room_list {
    padding-top: 0.60rem;
    padding-bottom: 0.40rem;
  }
}

.regular_room_list::before {
  content: "";
  width: calc(100% - 0.50rem);
  height: calc(100% - 3.00rem);
  background-color: #F4F3F0;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -3;
}
@media screen and (max-width: 640px) {
  .regular_room_list::before {
    width: 100%;
    height: calc(100% - 1.50rem);
  }
}

.regular_room_list::after {
  content: "";
  width: 4.00rem;
  height: 1.80rem;
  background-image: url(../img/common/deco_kamome.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: -1.50rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: -2;
}
@media screen and (max-width: 640px) {
  .regular_room_list::after {
    width: 1.80rem;
    height: 1.00rem;
    right: -0.80rem;
    top: auto;
    bottom: -0.30rem;
    transform: none;
  }
}

.regular_room_list .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.56rem 0;
}

.regular_room_list .list .detail {
  width: 100%;
  max-width: 5.20rem;
}
@media screen and (max-width: 640px) {
  .regular_room_list .list .detail {
    max-width: 100%;
  }
}

.regular_room_list .list .detail a {
  display: block;
  color: #333;
}

.regular_room_list .list .detail a .ph {
  width: 100%;
  height: 3.50rem;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .regular_room_list .list .detail a .ph {
    height: 60vw;
  }
}

.regular_room_list .list .detail a:hover .ph img {
  transform: scale(1.04);
}

.regular_room_list .list .detail a .ttl {
  font-size: 0.20rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
  text-align: center;
  padding: 0.25rem 0 0.15rem;
}
@media screen and (max-width: 640px) {
  .regular_room_list .list .detail a .ttl {
    font-size: 0.17rem;
  }
}

.regular_room_list .list .detail a .txt {
  font-size: 0.15rem;
  line-height: 2;
}
@media screen and (max-width: 640px) {
  .regular_room_list .list .detail a .txt {
    font-size: 0.14rem;
  }
}