﻿@charset "UTF-8";

/* presia-re.co.jp 物件詳細 PC */
.l-main * {
    font-family: 'Noto Sans JP', sans-serif;
}

.l-main {
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.room-page {
    --color-blue-primary: #2b43a0;
    --color-red-accent: #e93422;
    --color-bg-blue-tint: #f0f5ff;
    --color-line-green: #06c755;
    --color-point-border: #81acfa;
    --color-staff-name: #427be3;
    --color-text: #333333;
    --color-text-sub: #848484;
    --color-text-muted: #585858;
    --color-table-label-bg: #f5f5f5;
    --color-table-border-light: #f0f0f0;
    --color-icon-bg: #e7e5f2;
    --color-scrollbar: #a7bfeb;
    --room-content-width: 1140px;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--color-text);
}

.room-page *,
.room-page *::before,
.room-page *::after {
    box-sizing: border-box;
}

.room-section__inner,
.room-hero__inner,
.room-contact-cta__inner,
.room-recommend__inner {
    width: 100%;
    max-width: var(--room-content-width);
    margin: 0 auto;
}

.room-hero {
    padding: 15px 0 60px;
}

.room-hero__title-bar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--color-bg-blue-tint);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.room-hero__new {
    position: absolute;
    top: -15px;
    left: -15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    background: #e84b37;
    color: #fff;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 12px;
    font-weight: 700;
    margin: 0;
}

.room-hero__title {
    flex: 1;
    margin: 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.4;
}

.room-hero__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.room-hero__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 40px;
    padding: 0 16px;
    border-radius: 7px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #e6e6e6;
    background: #fff;
    color: var(--color-text-muted);
}

.room-hero__action--favorite {
    --favorite-icn-fill: var(--color-blue-primary);
    --favorite-icn-stroke: #fff;
    background: var(--color-blue-primary);
    border-color: var(--color-blue-primary);
    color: #fff;
    min-width: 150px;
}

.room-hero__action--favorite.is-checked {
    --favorite-icn-fill: #cd5353;
    --favorite-icn-stroke: #cd5353;
}

.room-hero__body {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.room-hero__gallery {
    width: 650px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
}

.room-hero__main {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.room-hero__slide-img {
    width: 650px;
    height: 433px;
    cursor: zoom-in;
}

.room-hero__slide-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #f5f5f5;
}

.room-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.95);
    cursor: pointer;
    z-index: 2;
    padding: 0;
    overflow: hidden;
}

.room-hero__arrow--prev {
    left: -25px;
    padding-left: 12px;
}

.room-hero__arrow--next {
    right: -25px;
    padding-right: 12px;
}

.room-hero__caption {
    margin: 0;
    text-align: center;
    font-size: 16px;
    line-height: normal;
    color: var(--color-text);
    min-height: 22px;
}

.room-hero__thumb-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-top: 2px;
}

.room-hero__thumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.room-hero__thumb-viewport {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.room-hero__thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, 128px);
    gap: 8px;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.room-hero__thumb-grid.swiper {
    display: block;
    overflow: hidden;
}

.room-hero__thumb-page {
    display: grid;
    grid-template-columns: repeat(4, 128px);
    gap: 8px;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

.room-hero__thumb-item {
    width: 128px;
    height: 85px;
}

.room-hero__thumb-btn {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    background: none;
    position: relative;
}

.room-hero__thumb-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
}

.room-hero__thumb-item.is-active .room-hero__thumb-btn::after {
    border-color: var(--color-red-accent);
}

.room-hero__thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-hero__pager-text {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--color-blue-primary);
    text-align: center;
}

.room-hero__pager-arrow {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border: none;
    padding: 0;
    cursor: pointer;
    background: none;
}

.room-hero__spec { flex: 1; min-width: 0; }

.room-hero-spec__grid {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #f0f0f0;
}

.room-hero-spec__row {
    display: contents;
}

.room-hero-spec__cell {
    display: flex;
    flex: 0 0 calc(457px / 2);
    max-width: calc(457px / 2);
    min-height: 50px;
    margin: 0;
    padding-right: 10px;
    gap: 10px;
    align-items: stretch;
    box-sizing: border-box;
    border-bottom: 1px solid #f0f0f0;
}

.room-hero-spec__row:first-of-type .room-hero-spec__cell {
    min-height: 49px;
}

.room-hero-spec__row.is-full .room-hero-spec__cell {
    flex: 0 0 100%;
    max-width: 100%;
}

.room-hero-spec__cell dt {
    width: 114px;
    flex-shrink: 0;
    margin: 0;
    padding: 3px 16px 0;
    background: #f5f5f5;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    align-self: stretch;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    border: none;
}

.room-hero-spec__row:first-of-type .room-hero-spec__cell dt {
    padding-top: 2px;
}

.room-hero-spec__cell dt.room-hero-spec__dt--stack {
    display: flex;
    padding: 5px 16px 0;
}

.room-hero-spec__cell dt::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #E0E0E0;
    z-index: 1;
}

.room-hero-spec__cell dt::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #E0E0E0;
    z-index: 1;
}

.room-hero-spec__cell dd {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.4;
    align-self: stretch;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    border: none;
}

.room-hero-spec__cell .room-hero-spec__price {
    padding: 0;
}

.room-hero-spec__cell dd .room-hero-spec__value {
    display: block;
    width: 100%;
    padding: 15px 0 13px;
    font-size: 14px;
    line-height: 1.4;
    word-break: break-word;
}

.room-hero-spec__cell dd .room-hero-spec__value a {
    font-size: 14px;
    line-height: 1.4;
    word-break: break-word;
}

.room-hero-spec__cell .room-hero-spec__price .room-hero-spec__value {
    padding: 11px 0 8px;
}

.room-hero-spec__price dd .room-hero-spec__value {
    padding-top: 10px;
    padding-bottom: 10px;
}

.room-hero-spec__price dd {
    align-items: flex-end;
}

.room-hero-spec__price .price {
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
    margin-right: 5px;
}

.room-hero-spec__dates {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 20px;
}

.room-hero-spec__date-row {
    display: flex;
    margin: 0;
    font-size: 12px;
}

.room-hero-spec__date-row dt {
    width: 112px;
    color: var(--color-text-sub);
    font-weight: 400;
}
.room-hero-spec__date-row dd {
    margin: 0;
}

.room-contact-cta {
    padding: 140px 0 147px;
    background: url(/images/bkn/contact-top_bg.webp) no-repeat center / cover;
}

.room-contact-cta__inner {
    background: #fff;
    border-radius: 20px;
    padding: 32px 51px 41px;
    text-align: center;
    position: relative;
}

.room-contact-cta__inner::before {
    content: '';
    background: url(/images/bkn/contact_top-icn01.webp) no-repeat center / cover;
    position: absolute;
    bottom: -51px;
    left: -84px;
    width: 167px;
    height: 140px;
}

.room-contact-cta__inner::after {
    content: '';
    background: url(/images/bkn/contact_top-icn04.webp) no-repeat center / cover;
    position: absolute;
    bottom: -33px;
    right: -106px;
    width: 172px;
    height: 105px;
}

.room-contact-cta__en {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: var(--color-blue-primary);
}

.room-contact-cta__title {
    margin: 0 0 28px;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.06em;
    position: relative;
    z-index: 1;
}

.room-contact-cta__title::before {
    content: '';
    background: url(/images/bkn/contact_top-icn02.webp) no-repeat center / cover;
    position: absolute;
    top: -28px;
    left: 279px;
    width: 69px;
    height: 90px;
}

.room-contact-cta__title::after {
    content: '';
    background: url(/images/bkn/contact_top-icn03.webp) no-repeat center / cover;
    position: absolute;
    top: -34px;
    right: 268px;
    width: 81px;
    height: 100px;
}

.room-contact-cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.room-contact-cta__tel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 30px;
    margin: 0 0 8px;
}

.room-contact-cta__tel svg {
    margin-top: 5px;
}

.room-contact-cta__tel-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-blue-primary);
}

.room-contact-cta__hours {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-sub);
    text-align: left;
    color: #333;
}

.room-contact-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.room-contact-cta__button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    width: 236px;
    height: 80px;
    border-radius: 14px;
    padding: 0 0 2px 56px;
    color: #fff;
    text-align: left;
    text-decoration: none;
    position: relative;
}

.room-contact-cta__button--contact { background: var(--color-blue-primary); }
.room-contact-cta__button--reservation { background: var(--color-red-accent); }
.room-contact-cta__button--line { background: var(--color-line-green); }

.room-contact-cta__button-sub {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 14px;
    font-weight: 500;
}
.room-contact-cta__button-main {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.room-contact-cta__button-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 18px;
    width: 25px;
    height: 25px;
}

.room-contact-cta__button-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 15px;
    width: 22px;
    height: 22px;
}

.room-contact-cta__button--contact .room-contact-cta__button-arrow {
    --contact-arrow-color: var(--color-blue-primary);
}

.room-contact-cta__button--reservation .room-contact-cta__button-arrow {
    --contact-arrow-color: var(--color-red-accent);
}

.room-contact-cta__button--line .room-contact-cta__button-arrow {
    --contact-arrow-color: var(--color-line-green);
}

.room-sections {
    display: flex;
    flex-direction: column;
    padding: 72px 0 130px;
    position: relative;
    z-index: 2;
}

.room-sections > .room-section + .room-section {
    margin-top: 60px;
}

.room-sections > .room-basic + .room-spot,
.room-sections > .room-basic + .room-map,
.room-sections > .room-spot + .room-map {
    margin-top: 30px;
}

.room-section__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 11px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
}

.room-section__title-icon {
    flex-shrink: 0;
    width: 35px;
    height: 24px;
    --ttl-icn-color: #427BE3;
    margin-top: 4px;
}

.room-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.room-section__head .room-section__title { margin-bottom: 0; }

.room-section__info-btn {
    width: 97px;
    height: 30px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    background: #f4f4f4;
    font-size: 14px;
    line-height: 1;
    color: #585858;
    cursor: pointer;
}

.room-panorama__main {
    overflow: hidden;
    margin-bottom: 10px;
}

.room-panorama__main img,
.room-panorama__main iframe {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.room-panorama__thumb .swiper-slide {
    height: 100px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.room-panorama__thumb .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-red-accent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.room-panorama__thumb .swiper-slide-thumb-active::before {
    opacity: 1;
}

.room-facility__icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 1px;
    margin-bottom: 15px;
}

.room-facility__icons ul {
    display: contents;
    list-style: none;
    margin: 0;
    padding: 0;
}

.room-facility__icons li {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 110px;
    font-size: 12px;
    text-align: center;
    position: relative;
}

.room-facility__icons li:not(:first-of-type)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: #F0F0F0;
}

.room-facility__icons img {
    width: 56px;
    height: 56px;
    background: var(--color-icon-bg);
    border-radius: 8px;
    object-fit: contain;
    margin-bottom: 6px;
}

.md-facility__icn {
    margin: 0 auto 8px;
}

.md-facility__note {
    width: 80px;
    font-size: 12px;
    text-align: center;
    line-height: 1.4;
    color: #333;
}

.room-facility__other {
    display: flex;
    margin: 0;
    border-top: 1px solid var(--color-table-border-light);
    border-bottom: 1px solid var(--color-table-border-light);
    overflow: hidden;
}

.room-facility__other .room-facility__other-title {
    display: flex;
    align-items: center;
    width: 127px;
    flex-shrink: 0;
    margin: 0;
    padding: 24px 14px 23px;
    background: var(--color-table-label-bg);
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.room-facility__other .room-facility__other-title::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #E0E0E0;
}

.room-facility__other .room-facility__other-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #E0E0E0;
}

.room-facility__other .room-facility__other-content {
    flex: 1;
    margin: 0;
    padding: 15px 148px 14px 15px;
}

.room-facility__other .room-facility__other-content li {
    font-size: 14px;
    line-height: 1.4;
}

.room-sales-point .room-section__title-icon,
.room-points .room-section__title-icon {
    --ttl-icn-color: #81ACFA;
}

.room-sales-point__body,
.room-staff__comment {
    background: var(--color-bg-blue-tint);
    border-radius: 15px;
    padding: 20px 25px;
}

.room-sales-point__body p {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
}

.room-staff__comment {
    padding: 21px 25px;
}

.room-staff__comment p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #333;
}

.room-points__list {
    display: flex;
    flex-wrap: wrap;
    font-size: 0;
}

.room-points__list a,
.room-points__list span {
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 5px 10px 3px 9px;
    border: 1px solid var(--color-point-border);
    border-radius: 3px;
    background: #fff;
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.7;
    text-decoration: none;
}

.room-staff__body {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.room-staff__profile { flex-shrink: 0; text-align: center; }

.room-staff__photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.room-staff__name {
    margin: 12px 0 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-staff-name);
}

.room-staff__comment { flex: 1; }

.room-basic__grid .room-detail-grid {
    background: #fff;
    overflow: hidden;
    margin-bottom: 40px;
}

.room-detail-grid__row {
    display: flex;
    margin: 0;
    border-bottom: 1px solid var(--color-table-border-light);
}

.room-detail-grid__row:first-of-type {
    border-top: 1px solid var(--color-table-border-light);
}

.room-detail-grid__row.is-full .room-detail-grid__cell { flex: 1 1 100%; }

.room-detail-grid__cell {
    display: flex;
    flex: 1;
    min-height: 48px;
    max-width: calc(1140px / 2);
}

.room-detail-grid__cell dt {
    display: flex;
    align-items: center;
    width: 128px;
    flex-shrink: 0;
    margin: 0;
    padding-left: 16px;
    background: var(--color-table-label-bg);
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.room-detail-grid__cell dt::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #E0E0E0;
}

.room-detail-grid__cell dt::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #E0E0E0;
}

.room-detail-grid__cell dd {
    align-self: center;
    flex: 1;
    margin: 0;
    padding: 13px 16px;
    font-size: 14px;
    line-height: 1.6;
}

.room-basic__grid .room-detail-grid--other { margin-bottom: 0; }

.room-spot__scroll {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.room-spot__scroll::-webkit-scrollbar { display: none; }

.room-spot__list {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0 0 12px;
}

.room-spot__item {
    flex: 0 0 177px;
    background: var(--color-bg-blue-tint);
    border-radius: 12px;
    padding: 10px 10px 8px;
}

.room-spot__img img {
    width: 100%;
    aspect-ratio: 157 / 105;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.room-spot__category {
    margin: 7px 0 1px;
    padding-inline: 5px;
    font-size: 12px;
    color: var(--color-text-sub);
}

.room-spot__name {
    margin: 0 0 1px;
    padding-inline: 5px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.room-spot__distance {
    margin: 0;
    padding-inline: 5px;
    font-size: 12px;
    color: var(--color-text-sub);
}

.room-hscroll__track {
    position: relative;
    height: 5px;
    margin-top: 8px;
    cursor: pointer;
}

.room-hscroll__track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transform: translateY(-50%);
    pointer-events: none;
}

.room-section .room-hscroll__track::before {
    background: var(--color-table-border-light);
}

.room-hscroll__track.is-hidden {
    display: none;
}

.room-hscroll__thumb {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    min-width: 40px;
    background: var(--color-scrollbar);
    border-radius: 3px;
    transition: left 0.1s;
    cursor: grab;
    user-select: none;
    touch-action: none;
    z-index: 1;
}

.room-hscroll__thumb.is-dragging {
    cursor: grabbing;
    transition: none;
}

.js-room-hscroll .room-recommend__list {
    padding-bottom: 12px;
}

.room-map__canvas {
    width: 100%;
    height: 430px;
    border-radius: 12px;
    overflow: hidden;
}

.room-map__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    gap: 16px;
}

.room-map__address { margin: 0; font-size: 14px; }

.room-map__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 155px;
    height: 40px;
    border: 1px solid #427be3;
    border-radius: 5px;
    background: #fff;
    color: #427be3;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    flex-shrink: 0;
}

.room-recommend {
    padding: 80px 0 82px;
    position: relative;
    z-index: 1;
}

.room-recommend::after {
    content: '';
    position: absolute;
    top: -192px;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: url(/images/bkn/bkn_bg.webp) no-repeat top center / cover;
    z-index: -1;
}

.room-recommend__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.room-recommend__title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.6;
}

.room-recommend__scroll {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.room-recommend__scroll::-webkit-scrollbar { display: none; }

.room-recommend__list {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.room-recommend__item {
    width: 274px;
    flex: 0 0 calc((100% - 45px) / 4);
}

.room-recommend__card {
    display: flex;
    flex-direction: column;
    gap: 7px;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 15px 15px 18px;
    text-decoration: none;
    color: inherit;
}

.room-recommend__img {
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.room-recommend__img img {
    width: 100%;
    aspect-ratio: 330 / 220;
    object-fit: cover;
    display: block;
}

.room-recommend__body {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
}

.room-recommend__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.room-recommend__name {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.room-recommend__spec {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: var(--color-text-sub);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.room-recommend__price {
    display: flex;
    align-items: flex-end;
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-text);
}

.room-recommend__price .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-red-accent);
}

/* 基盤 gallery（image.phtml）— 通常表示は非表示、拡大時のみ detail.css を適用 */
.room-page .room-template-gallery .gallery:not(.is-wide-screen) {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.room-contact-cta--footer {
    background: #F0F5FF url(/images/bkn/contact-bottom_bg.webp) no-repeat center / cover;
    padding: 140px 0 70px;
}

.org-footer {
    background: url(/images/bkn/footer_bg.webp) no-repeat center / cover;
}