/* --------------------
 Guest room detail
-------------------- */
.guestroom__overview {
    margin: 0 0 80px;
}

@media (min-width: 768px) {
    .guestroom__overview {
        margin: 0 0 100px;
    }
}

.guestroom__overview-container {
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 16px;
    width: 100%;
}

@media (min-width: 768px) {
    .guestroom__overview-container {
        padding: 0 30px;
    }
}

.guestroom__overview__menu {
    align-items: stretch;
    display: flex;
    flex-flow: row nowrap;
    gap: 60px 20px;
    margin: 0 auto 80px;
    max-width: 700px;
    width: 100%;
}

@media (min-width: 768px) {
    .guestroom__overview__menu {
        gap: 60px 40px;
        margin: 0 auto 120px;
    }
}

.guestroom__overview__menu:last-child {
    margin-bottom: 160px;
}

@media (min-width: 768px) {
    .guestroom__overview__menu:last-child {
        margin-bottom: 200px;
    }
}

.guestroom__overview__menu__item {
    position: relative;
    width: calc(50% - 10px);
}

@media (min-width: 768px) {
    .guestroom__overview__menu__item {
        width: calc(50% - 20px);
    }
}

.guestroom__overview__menu__item:after {
    background-image: url(../images/icons/icon-navy-angle-bottom.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -36px;
    content: "";
    display: block;
    height: 14px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 22px;
}

.guestroom__overview__menu__item__link {
    border: 2px solid #9babb5;
    border-radius: 15px;
    color: inherit;
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    transition: background-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 100%;
}

@media (min-width: 768px) {
    .guestroom__overview__menu__item__link {
        padding: 20px 16px;
    }
}

.guestroom__overview__menu__item__link__title {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    font-size: var(--fs20);
    font-weight: 500;
    gap: 12px;
    justify-content: center;
    line-height: 1.2;
    margin: 0;
}

@media (min-width: 768px) {
    .guestroom__overview__menu__item__link__title {
        font-size: var(--fs24);
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .guestroom__overview__menu__item__link__title img {
        height: 28px;
        width: auto;
    }
}

.guestroom__overview__menu__item__link__spec {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    gap: 4px;
    justify-content: center;
}

.guestroom__overview__menu__item__link__spec span {
    background-color: #9babb5;
    color: #ffffff;
    display: block;
    font-size: var(--fs14);
    letter-spacing: 0.1em;
    line-height: 1.2;
    min-width: 120px;
    padding: 4px 8px;
    text-align: center;
    width: auto;
}

@media (min-width: 768px) {
    .guestroom__overview__menu__item__link__spec span {
        font-size: var(--fs16);
    }
}

.guestroom__overview__menu__item__link.-active {
    background-color: #d9dfe3;
    pointer-events: none;
}

.guestroom__overview__menu__item__link:focus {
    background-color: #d9dfe3;
}

@media (hover: hover) and (pointer: fine) {
    .guestroom__overview__menu__item__link:hover {
        background-color: #d9dfe3;
    }
}

.guestroom__overview__content p {
    font-size: var(--fs14);
    letter-spacing: 0.1em;
    line-height: 2;
    margin: 0;
    text-align: center;
}

.guestroom__gallery {
    container-type: inline-size;
    overflow-x: clip;
    padding: 0 0 80px;
    position: relative;
}

@media (min-width: 768px) {
    .guestroom__gallery {
        padding: 0 0 220px;
    }
}

.guestroom__gallery:before {
    background-color: #ffffff;
    content: "";
    display: block;
    height: 140px;
    left: -1px;
    -webkit-mask-image: url(../images/commons/com-bg-mask-top.svg);
    mask-image: url(../images/commons/com-bg-mask-top.svg);
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: auto 100%;
    mask-size: auto 100%;
    pointer-events: none;
    position: absolute;
    right: -1px;
    top: 133.3333333333vw;
    transform: translateY(-2px);
    width: auto;
    z-index: 1;
}

@media (min-width: 768px) {
    .guestroom__gallery:before {
        top: 120px;
    }
}

@container (min-width: 1200px) {
    .guestroom__gallery:before {
        aspect-ratio: 1200/140;
        height: auto;
        -webkit-mask-size: cover;
        mask-size: cover;
    }
}

.guestroom__gallery:after {
    background-color: #ffffff;
    bottom: 0;
    content: "";
    display: block;
    height: 140px;
    left: -1px;
    -webkit-mask-image: url(../images/commons/com-bg-mask-bottom.svg);
    mask-image: url(../images/commons/com-bg-mask-bottom.svg);
    -webkit-mask-position: center top;
    mask-position: center top;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: auto 100%;
    mask-size: auto 100%;
    pointer-events: none;
    position: absolute;
    right: -1px;
    top: auto;
    transform: translateY(2px);
    width: auto;
    z-index: 1;
}

@container (min-width: 1200px) {
    .guestroom__gallery:after {
        aspect-ratio: 1200/140;
        height: auto;
        -webkit-mask-size: cover;
        mask-size: cover;
    }
}

.guestroom__gallery__bg {
    background-color: #345569;
    bottom: 0;
    display: block;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 133.3333333333vw;
    z-index: 0;
}

@media (min-width: 768px) {
    .guestroom__gallery__bg {
        top: 120px;
    }
}

.guestroom__gallery__bg:before {
    background-image: url(../images/commons/com-bg.svg);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 2010px 3516px;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    -webkit-mask-image: linear-gradient(-120deg, rgba(72, 102, 120, 0) 0%, rgba(72, 102, 120, 0) 20%, #486678 100%);
    mask-image: linear-gradient(-120deg, rgba(72, 102, 120, 0) 0%, rgba(72, 102, 120, 0) 20%, #486678 100%);
    position: absolute;
    right: 170px;
    top: 0;
    z-index: 0;
}

.guestroom__gallery-container {
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 16px;
    position: relative;
    width: 100%;
    z-index: 2;
}

@media (min-width: 768px) {
    .guestroom__gallery-container {
        padding: 0 30px;
    }
}

.guestroom__gallery__slider .glide--swipeable {
    cursor: auto;
}

.guestroom__gallery__slider .glide-container {
    margin: 0 0 30px;
    position: relative;
}

@media (min-width: 768px) {
    .guestroom__gallery__slider .glide-container {
        margin: 0 0 50px;
    }
}

.guestroom__gallery__slider .glide__slide img {
    width: 100%;
}

.guestroom__gallery__slider .glide__arrows {
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.guestroom__gallery__slider .glide__arrow {
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border: 1px solid #ffffff;
    border-radius: 50%;
    bottom: 0;
    box-sizing: content-box;
    height: 50px;
    left: auto;
    margin: auto 0;
    padding: 0;
    position: absolute;
    right: auto;
    top: 0;
    width: 50px;
    z-index: 1;
}

.guestroom__gallery__slider .glide__arrow span {
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    width: 1px;
}

.guestroom__gallery__slider .glide__arrow:before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px 10px;
    bottom: 0;
    content: "";
    display: block;
    height: 10px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 16px;
}

.guestroom__gallery__slider .glide__arrow:after {
    display: none;
}

.guestroom__gallery__slider .glide__arrow--prev {
    left: 10px;
}

@media (min-width: 768px) {
    .guestroom__gallery__slider .glide__arrow--prev {
        left: 20px;
    }
}

.guestroom__gallery__slider .glide__arrow--prev:before {
    background-image: url(../images/icons/icon-white-arrow-left.svg);
}

@media (hover: hover) and (pointer: fine) {
    .guestroom__gallery__slider .glide__arrow--prev:hover:before {
        transform: translateX(-5px);
    }
}

.guestroom__gallery__slider .glide__arrow--next {
    right: 10px;
}

@media (min-width: 768px) {
    .guestroom__gallery__slider .glide__arrow--next {
        right: 20px;
    }
}

.guestroom__gallery__slider .glide__arrow--next:before {
    background-image: url(../images/icons/icon-white-arrow-right.svg);
}

@media (hover: hover) and (pointer: fine) {
    .guestroom__gallery__slider .glide__arrow--next:hover:before {
        transform: translateX(5px);
    }
}

.guestroom__gallery__slider .glide__bullets {
    align-items: stretch;
    bottom: auto;
    display: flex;
    flex-flow: row wrap;
    gap: 8px;
    height: auto;
    justify-content: center;
    left: auto;
    margin: 0;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
}

@media (min-width: 768px) {
    .guestroom__gallery__slider .glide__bullets {
        gap: 16px;
    }
}

.guestroom__gallery__slider .glide__bullet {
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: block;
    height: auto;
    margin: 0;
    padding: 0;
    position: relative;
    text-align: center;
    width: calc(20% - 6.4px);
}

@media (min-width: 768px) {
    .guestroom__gallery__slider .glide__bullet {
        width: 85px;
    }
}

.guestroom__gallery__slider .glide__bullet img {
    aspect-ratio: 1040/536;
    height: auto;
    object-fit: cover;
    position: relative;
    width: 100%;
    z-index: 1;
}

.guestroom__gallery__slider .glide__bullet:after {
    background-color: #b0a39f;
    border-radius: 2px;
    bottom: -3px;
    content: "";
    display: block;
    left: -3px;
    opacity: 0;
    position: absolute;
    right: -3px;
    top: -3px;
    transition: opacity 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    z-index: 0;
}

@media (min-width: 768px) {
    .guestroom__gallery__slider .glide__bullet:after {
        border-radius: 4px;
        bottom: -4px;
        left: -4px;
        right: -4px;
        top: -4px;
    }
}

.guestroom__gallery__slider .glide__bullet--active:after {
    opacity: 1;
}

.guestroom__gallery__slider .glide__bullet:focus:after {
    opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
    .guestroom__gallery__slider .glide__bullet:hover:after {
        opacity: 1;
    }
}

.guestroom__floor {
    margin: 0 0 80px;
    padding: 80px 0 0;
}

@media (min-width: 768px) {
    .guestroom__floor {
        margin: 0 0 120px;
        padding: 120px 0 0;
    }
}

.guestroom__floor-container {
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 16px;
    position: relative;
    width: 100%;
    z-index: 2;
}

@media (min-width: 768px) {
    .guestroom__floor-container {
        padding: 0 30px;
    }
}

.guestroom__floor__slider {
    margin: 0 0 80px;
}

@media (min-width: 768px) {
    .guestroom__floor__slider {
        margin: 0 0 100px;
    }
}

.guestroom__floor__slider .glide--swipeable {
    cursor: auto;
}

.guestroom__floor__slider .glide-container {
    margin: 0 0 30px;
    position: relative;
}

@media (min-width: 768px) {
    .guestroom__floor__slider .glide-container {
        margin: 0 0 70px;
    }
}

.guestroom__floor__slider .glide__slide img {
    width: 100%;
}

.guestroom__floor__slider .glide__arrows {
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.guestroom__floor__slider .glide__arrow {
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border: 1px solid #052d46;
    border-radius: 50%;
    bottom: 0;
    box-sizing: content-box;
    height: 50px;
    left: auto;
    margin: auto 0;
    padding: 0;
    position: absolute;
    right: auto;
    top: 0;
    width: 50px;
    z-index: 1;
}

.guestroom__floor__slider .glide__arrow span {
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    width: 1px;
}

.guestroom__floor__slider .glide__arrow:before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px 10px;
    bottom: 0;
    content: "";
    display: block;
    height: 10px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    transition: transform 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 16px;
}

.guestroom__floor__slider .glide__arrow:after {
    display: none;
}

.guestroom__floor__slider .glide__arrow--prev {
    left: 10px;
}

@media (min-width: 768px) {
    .guestroom__floor__slider .glide__arrow--prev {
        left: 20px;
    }
}

.guestroom__floor__slider .glide__arrow--prev:before {
    background-image: url(../images/icons/icon-navy-arrow-left.svg);
}

@media (hover: hover) and (pointer: fine) {
    .guestroom__floor__slider .glide__arrow--prev:hover:before {
        transform: translateX(-5px);
    }
}

.guestroom__floor__slider .glide__arrow--next {
    right: 10px;
}

@media (min-width: 768px) {
    .guestroom__floor__slider .glide__arrow--next {
        right: 20px;
    }
}

.guestroom__floor__slider .glide__arrow--next:before {
    background-image: url(../images/icons/icon-navy-arrow-right.svg);
}

@media (hover: hover) and (pointer: fine) {
    .guestroom__floor__slider .glide__arrow--next:hover:before {
        transform: translateX(5px);
    }
}

.guestroom__floor__slider .glide__bullets {
    display: flex;
    flex-flow: row nowrap;
    gap: 0 8px;
    justify-content: center;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .guestroom__floor__slider .glide__bullets {
        column-gap: 30px;
    }
}

.guestroom__floor__slider .glide__bullet {
    -webkit-appearance: none;
    appearance: none;
    background: none;
    background-color: rgba(5, 45, 70, 0.2);
    border: none;
    border-radius: 50%;
    display: block;
    height: 6px;
    margin: 0 !important;
    opacity: 1;
    padding: 0;
    width: 6px;
}

@media (min-width: 768px) {
    .guestroom__floor__slider .glide__bullet {
        height: 10px;
        width: 10px;
    }
}

.guestroom__floor__slider .glide__bullet--active {
    background-color: #052d46;
    opacity: 1;
}

.guestroom__detail {
    margin: 0 0 40px;
}

@media (min-width: 768px) {
    .guestroom__detail {
        margin: 0 0 80px;
    }
}

.guestroom__detail-container {
    margin: 0 auto;
    max-width: 760px;
    padding: 0 16px;
    position: relative;
    width: 100%;
    z-index: 2;
}

@media (min-width: 768px) {
    .guestroom__detail-container {
        padding: 0 30px;
    }
}

.guestroom__detail__title {
    margin: 0 0 16px;
}

.guestroom__detail__title__en {
    display: inline-block;
    font-family: var(--ff-brandon-grotesque);
    font-size: var(--fs18);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.4;
    margin: 0 12px 0 0;
}

.guestroom__detail__title__ja {
    display: inline-block;
    font-size: var(--fs12);
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.4;
    margin: 0;
}

.guestroom__detail__table-wrapper {
    margin: 0 0 60px;
}

@media (min-width: 768px) {
    .guestroom__detail__table-wrapper {
        margin: 0 0 90px;
    }
}

.guestroom__detail__table {
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0;
    max-width: 100%;
    width: 100%;
}

.guestroom__detail__table > tbody > tr > th, .guestroom__detail__table > tbody > tr > td {
    font-size: var(--fs12);
    letter-spacing: 0.1em;
    line-height: 1.6;
    text-align: left;
    vertical-align: top;
    width: auto;
}

@media (min-width: 768px) {
    .guestroom__detail__table > tbody > tr > th, .guestroom__detail__table > tbody > tr > td {
        font-size: var(--fs14);
    }
}

.guestroom__detail__table > tbody > tr > th {
    border-bottom: 1px solid var(--color-theme);
    font-weight: 500;
    padding: 20px 10px 20px 0;
    width: 100px;
}

@media (min-width: 768px) {
    .guestroom__detail__table > tbody > tr > th {
        padding: 25px 10px 25px 0;
        width: 150px;
    }
}

.guestroom__detail__table > tbody > tr > td {
    border-bottom: 1px solid rgba(var(--color-theme-rgb), 0.2);
    padding: 20px 0 20px 12px;
    word-break: break-all;
}

@media (min-width: 768px) {
    .guestroom__detail__table > tbody > tr > td {
        padding: 25px 0 25px 30px;
    }
}

.guestroom__detail__table > tbody > tr > td p {
    margin: 0 0 1.25em;
}

.guestroom__detail__table > tbody > tr > td p:last-child {
    margin-bottom: 0;
}

.guestroom__detail__table > tbody > tr:first-child > th {
    border-top: 1px solid var(--color-theme);
}

.guestroom__detail__table > tbody > tr:first-child > td {
    border-top: 1px solid rgba(var(--color-theme-rgb), 0.2);
}

.guestroom__detail__action .com-button {
    margin: 0 auto;
}

.guestroom__other {
    padding: 0 0 160px;
    position: relative;
}

.guestroom__other-container {
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    width: 100%;
    z-index: 2;
}

.guestroom__other__main__action a {
    align-items: center;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    background-color: var(--color-theme);
    border: 1px solid var(--color-theme);
    border-radius: 29px;
    color: #ffffff;
    display: flex;
    flex-flow: row nowrap;
    font-family: var(--ff-brandon-grotesque);
    font-size: var(--fs14);
    font-weight: 500;
    height: 53px;
    justify-content: flex-start;
    letter-spacing: 0.18em;
    line-height: 1.05;
    margin: 0 auto;
    min-width: 236px;
    padding: 0.25em 78px 0 45px;
    position: relative;
    text-decoration: none;
    transition: background-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s, color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 320px;
}

@media (min-width: 768px) {
    .guestroom__other__main__action a {
        height: 58px;
        min-width: 262px;
        padding: 0.25em 86px 0 80px;
        width: 400px;
    }
}

.guestroom__other__main__action a:after {
    background-color: #ffffff;
    bottom: 0;
    content: "";
    display: block;
    height: 10px;
    margin: auto 0;
    -webkit-mask-image: url(../images/icons/icon-navy-arrow-right.svg);
    mask-image: url(../images/icons/icon-navy-arrow-right.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    right: 30px;
    top: 0;
    transition: background-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 16px;
}

@media (min-width: 768px) {
    .guestroom__other__main__action a:after {
        right: 80px;
    }
}

.guestroom__other__main__action a:focus {
    background-color: #ffffff;
    color: var(--color-theme);
}

.guestroom__other__main__action a:focus:after {
    background-color: var(--color-theme);
}

@media (hover: hover) and (pointer: fine) {
    .guestroom__other__main__action a:hover {
        background-color: #ffffff;
        color: var(--color-theme);
    }

    .guestroom__other__main__action a:hover:after {
        background-color: var(--color-theme);
    }
}