@charset "UTF-8";
/* CSS Document */
.roomList .Img img {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.contentBox .leftBox {
  padding: 0 50px 0 0;
}
@media (max-width: 1023px) {
  .contentBox .leftBox {
    padding: 0 0 30px 0;
  }
}
.contentBox .rightBox {
  padding: 0;
}

.roomList {
  margin: 0 -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.roomList .roomItem {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 40px;
}
.roomList .roomItem.even .item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.roomList .roomItem.even .Txt {
  padding-right: 50px;
  padding-left: 0;
}
@media (max-width: 960px) {
  .roomList .roomItem.even .Txt {
    padding: 0 0 30px 0;
  }
}
.roomList .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 960px) {
  .roomList .item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.roomList .Img {
  width: calc(100% - 410px);
  cursor: pointer;
}
@media (max-width: 960px) {
  .roomList .Img {
    width: 100%;
    max-width: 825px;
  }
}
@media (min-width: 1181px) {
  .roomList .Img:hover img {
    -webkit-filter: brightness(0.7);
            filter: brightness(0.7);
  }
}
.roomList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.roomList .Img.border {
  position: relative;
  padding: 20px;
  border: 1px solid #866d4f;
  overflow: hidden;
}
@media (max-width: 480px) {
  .roomList .Img.border {
    padding: 10px;
  }
}
.roomList .Img.border::before {
  content: "";
  position: absolute;
  border: 1px solid #866d4f;
  width: 105.8%;
  height: auto;
  aspect-ratio: 1/1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  pointer-events: none;
}
.roomList .Txt {
  width: 410px;
  padding-left: 50px;
}
@media (max-width: 960px) {
  .roomList .Txt {
    width: 100%;
    max-width: 825px;
    margin-top: 40px;
    padding: 0 0 30px 0;
  }
}
.roomList .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.roomList .top .title {
  position: relative;
  line-height: 1;
}
.roomList .top .title a {
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 1.25px;
  line-height: 1.2;
}
@media (max-width: 375px) {
  .roomList .top .title a {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1.25px;
    line-height: 1.2;
  }
}
@media (min-width: 1181px) {
  .roomList .top .title a:hover {
    color: #866d4f;
  }
}
.roomList .top .floor {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1.5px;
  line-height: 1.2;
  padding: 0px 10px;
  border-width: 5px;
  border-style: solid;
  border-image-source: url("data:image/svg+xml,%3Csvg width='261' height='97' viewBox='0 0 261 97' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='18' y1='0.5' x2='260' y2='0.5' stroke='white'/%3E%3Cline y1='96.5' x2='242' y2='96.5' stroke='white'/%3E%3Cline x1='0.5' y1='1' x2='0.5' y2='86' stroke='white'/%3E%3Cline x1='260.5' y1='12' x2='260.5' y2='97' stroke='white'/%3E%3C/svg%3E");
  border-image-slice: 10; /* 依你設計調整切圖區域 */
  border-image-repeat: stretch;
}
.roomList .text {
  color: #cecece;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 1.5px;
  line-height: 1.5;
  height: 55px;
  margin: 10px 0;
}
.roomList .specList {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #fff;
}
.roomList .specList .specItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  position: relative;
  padding: 0 10px;
}
.roomList .specList .specItem::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  top: 0;
  left: 0;
}
.roomList .specList .specItem .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.roomList .specList .specItem .title svg {
  width: 20px;
  height: 20px;
}
.roomList .specList .specItem .title svg.people {
  width: 16px;
  height: 16px;
}
.roomList .specList .specItem .title .titleText {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1;
}
.roomList .specList .specItem .info {
  margin: 0 30px 15px 10px;
  width: 100%;
  padding: 5px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  position: relative;
}
.roomList .specList .specItem .info::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  bottom: 0;
  left: 0;
}
.roomList .specList .specItem .info::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: 0;
}
.roomList .specList .specItem .info span {
  font-family: "Cormorant Infant", "Noto Serif TC", serif;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 1.5px;
  line-height: 1.2;
}
.roomList .specList .specItem .info span:last-child {
  font-family: "Noto Serif TC", "Cormorant Infant", serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-align: right;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.roomList .borderBtn {
  margin-top: 30px;
}

.insIntroBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .insIntroBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.insIntroBox .introBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767px) {
  .insIntroBox .introBox {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
}
.insIntroBox .introBox .articleTitle {
  margin-bottom: 15px;
  padding: 0 0 15px 0;
}
.insIntroBox .introBox .Txt {
  line-height: 1.6;
  font-size: 13px;
  color: #6c6c6c;
  text-align: center;
}

table {
  border-collapse: collapse;
  font-family: "微軟正黑體";
}
table th {
  padding: 5px;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background-color: #cfbd8c;
}
table td {
  padding: 5px;
  font-size: 15px;
  text-align: center;
}