@charset "UTF-8";

/***** rooms CSS *****/
.rooms {
    font-family: 'Noto Serif JP', serif;
    display: grid;
}
.room-wrapper {
    width: 100%;
    margin: 0 auto;
}
.room-wrapper p {
    text-align: justify;
    line-height: 2em;
}
.room-inner {
    max-width: 960px;
/*            width: 100vw;*/
    margin: 0 auto;
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns:1fr 40px 1fr;
}

/* section.top */
.room-top {
    height: calc(100vh - 80px);
    background-color: var(--beige);
}
.room-info {
    height: 88%;
    margin: 50px;
    padding: 20px 40px;
    border: 1px solid var(--brown);
    background-color: rgba(255, 255, 255, .3);
    color: #555;
    overflow-y: scroll;
}
.room-info h1 {
    color: var(--mint-blue);
    font-weight: normal;
    font-size: 1.7em;
    text-align: center;
    margin-bottom: 15px;
}
.room-info dl {
    margin-top: 1em;
}
.room-info dt {
    background-color: var(--beige);
    line-height: 2em;
    text-indent: .5em;
    font-weight: normal;
}
.room-info dd {
    font-family: Arial, Helvetica, sans-serif;
    font-size: .9em;
    text-indent: .5em;
    line-height: 2;
    padding: 0 5px;
    background-color: #fff;
    border-bottom: 1px dashed var(--beige);
}
.last-list {
    margin-bottom: 1.3em;
}

/* section.shisa */
.shisa {
    width: 100%;
    margin-top: -50px;
    padding-bottom: 10px;
    background-color: var(--beige);
    display: grid;
    align-items: end;
    justify-items: center;
}
.shisa div {
    position: relative;
    height: 260px;
}
.shisa p {
/*            width: 400px;*/
    max-width: calc(80vw - 40px);
    height: 100px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 100px;
    letter-spacing: 1px;
    text-align: center;
    background-color: #fff;
    border: 1px solid var(--light-red);
    border-radius: 10px;
    color: var(--light-red);
    display: inline-block;
    position: relative;
    box-sizing: border-box;
}
.shisa p::before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 87%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 9px solid #fff;/*12*/
  z-index: 2;
}
.shisa p::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 87%;
  margin-left: -17px;
  border: 17px solid transparent;
  border-top: 11px solid var(--light-red);/*14*/
  z-index: 1;
}
.shisa img {
    position: absolute;
    right: -30px;
    bottom: 40px;
    width: 110px;
    display: inline-block;
    text-align: right;
}

/* section.room-sec .room01 ~ 03 */
.room-sec {
    padding-bottom: 150px;
}
.room-sec .room-summary {
    position: relative;
}
.room-sec .num {
    display: inline-block;
    font-weight: normal;
    font-family: 'Noto Sans JP', sans-serif;
    position: absolute;
    top: 13px;
    left: 0;
    font-size: 2.8em;
    color: var(--light-red);
    text-align: center;
    margin-top: -0.25em;
    background: #fff;
    width: 60px;
    height: 60px;
    line-height: 45px;
    padding: 5px;
    border: 1px solid var(--light-red);
    border-radius: 50%;
    box-shadow: 2px 2px 4px #aaa;
}
.room-sec h2 {
    position: relative;
    z-index: 1;
    color: var(--mint-blue);
    text-shadow: 2px 2px 0px #fff;
    text-align: center;
}
.room-sec h2 + p {
    margin-bottom: 15px;
    color: var(--brown);
    text-align: center;
}
.room-sec > img {
    height: 380px;
    object-fit: cover;
    margin-bottom: 40px;
}
.room01 {
    background-image: linear-gradient(180deg, var(--beige),var(--beige) 75%,#fff 95%, #fff 100%);
}
.room01 h2 {
    text-indent: 2em;
}
.room02 {
    background-color: #fff;
}
.room03 {
    background-image: linear-gradient(180deg, #fff,#fff 75%,var(--mint-blue) 95%, var(--mint-blue) 100%);
}
.room02 h2, .room03 h2{
    text-shadow: 2px 2px 5px #aaa;
}
.room-slider {
    max-width: 40vw;
}

/* グリッドデザイン */
.room01 .room-summary, .room02 .room-slider, .room03 .room-summary {
    grid-area: 2 / 1 / 3 / 2;
}
.room01 .room-slider, .room02 .room-summary, .room03 .room-slider {
    grid-area: 2 / 3 / 3 / 4;
}

/* 予約ボタン */
.toReservation {
    position: fixed;
    top: 80px;
    right: 0;
    z-index: 1;
    width: 80px;
    height: 210px;
    color: #fff;
    font-size: 1.1em;
    letter-spacing: 4px;
    text-align: center;
    writing-mode: vertical-rl;
    background-color: var(--mint-blue);
    opacity: .9;
}
.toReservation a {
    text-decoration: none;
    color: #fff;
    width: 100%;
    line-height: 80px;
    display: block;
}
.toReservation img {
    width: 50px;
    margin-top: 22px;
}

/* その他 */
.sp_br{
        display: none;
    }
.slick-dots li.slick-active button:before {
    color: var(--mint-blue);
}
.link-height {
    padding-top:80px;
}
.link-height > img {
    margin-top:-80px;
    padding-top:80px;
}

@media (max-width: 999px) {
    .room-wrapper .room-inner {
        padding-left: 20px;
        padding-right: 20px;
    }
    .toReservation img {
        display: none;
    }
}
@media (max-width: 959px) {
    .toReservation {
        top: inherit;
        right: inherit;
        bottom: 0;
        left: 0;
        writing-mode: inherit;
        width: 100vw;
        height: auto;
    }
}
@media (max-width:767px) {
    .room-inner {
        display: block;
        width: inherit;
    }
    .room-info {
        padding: 20px 10px;
        margin: 0;
    }
    .shisa p {
        line-height: 30px;
        padding-top: 15px;
    }
    .room-sec {
        padding-bottom: 10px;
    }
    .room-sec > img {
        height: 200px;
    }
    .room-slider {
        max-width: 100vw;
    }
}
@media (max-width:424px) {
    .shisa p {
        line-height: 28px;
        padding-top: 8px;
    }
    .sp_br{
        display: block;
    }
}