@charset "utf-8";

#contents:has(#article.favorite-page) .h1_section {
    display: none;
}
#contents *{
    font-family: 'Noto Sans JP', sans-serif;
    box-sizing: border-box;
}

#article.favorite-page {
    width: 950px;
    float: none;
    margin: 0 auto;
    padding-bottom: 60px;
}

.favorite-page__head {
    text-align: center;
    margin: 0 0 56px;
}

.favorite-page__title {
    margin: 0;
    color: #2E3F5B;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.75px;
}

.favorite-page__lead {
    margin: 4px 0 0;
    color: #2E3F5B;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

.favorite-page__empty {
    margin: 40px 0 0;
    text-align: center;
}

.favorite-page__empty-text {
    margin: 0;
    color: #2E3F5B;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.favorite-page__empty-btn {
    margin: 24px 0 0;
}

.favorite-page__empty-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 44px;
    padding: 0 24px;
    border-radius: 999px;
    background: #ff8307;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

.favorite-page__empty-link:hover {
    opacity: 1;
    color: #ff8307;
    background: #fff;
    border: 1px solid #ff8307;
    text-decoration: none;
}

#favorite-section {
    clear: both;
}

#favorite-section .bkn__list-box {
    margin-top: 0;
}

#favorite-section .bkn__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: stretch;
    gap: 36px 27px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#favorite-section .bkn__item {
    display: flex;
    flex-direction: column;
    list-style: none;
}

#favorite-section .bkn__item-card {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    border-radius: 15px;
    overflow: hidden;
    width: 298px;
    background: #fff;
    position: relative;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

#favorite-section .bkn__item-card:hover .detail__box * {
    color: #EA5504;
}

#favorite-section .bkn__item-card > a {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    color: inherit;
    text-decoration: none;
}

#favorite-section .bkn__item-card > a:hover {
    opacity: 1;
}

#favorite-section .bkn__item-card > a:hover .bkn__img img {
    transform: scale(1.08);
}

#favorite-section .img__box {
    position: relative;
    flex-shrink: 0;
}

#favorite-section .bkn__img {
    width: 100%;
    height: 173px;
    margin: 0;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

#favorite-section .bkn__img img {
    width: 100%;
    height: 100%;
    border-radius: 4px 4px 0 0;
    object-fit: cover;
    transition: transform 0.4s ease;
    transform: scale(1);
    transform-origin: center center;
}

@media (prefers-reduced-motion: reduce) {
    #favorite-section .bkn__img img {
        transition: none;
    }

    #favorite-section .bkn__item-card > a:hover .bkn__img img {
        transform: scale(1);
    }
}

#favorite-section .ui-icon__heart {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border-radius: 17px;
    position: absolute;
    top: 10px;
    right: 7px;
    z-index: 1;
    cursor: pointer;
}

#favorite-section .ui-icon__heart:after {
    content: "";
    width: 30px;
    height: 26px;
    background: url(/images/favorite/img_icon-heart.svg) no-repeat center;
    background-size: contain;
    display: block;
    transition: 0.3s ease;
}

#favorite-section .ui-icon__heart.is-active:after {
    background: url(/images/favorite/img_icon-heart_on.svg) no-repeat center;
    background-size: contain;
}

#favorite-section .detail__box {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 15px 18px;
}

#favorite-section .bkn__title {
    font-size: 16px;
    font-weight: 600;
    color: #2E3F5B;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
}

#favorite-section .bkn__room {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

#favorite-section .bkn__archive {
    margin: 8px 0 0;
    font-size: 16px;
    font-weight: bold;
    color: #2E3F5B;
}

#favorite-section .bkn__flex {
    display: flex;
    margin-top: 4px;
}

#favorite-section .bkn__price {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: #2E3F5B;
    flex-shrink: 0;
}

#favorite-section .bkn__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #2E3F5B;
}

#favorite-section .bkn__text-first {
    margin-top: 0;
}

#favorite-section .bkn__item-card .tag__link {
    flex-shrink: 0;
    padding: 0 18px 16px;
    background: #fff;
}

#favorite-section .bkn__tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#favorite-section .bkn__tag-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 12px;
    border: 2px solid #2E3F5B;
    border-radius: 20px;
    background: #fff;
    color: #2E3F5B;
    font-size: 13px;
    font-weight: bold;
    line-height: 1.4;
    letter-spacing: 1px;
    white-space: nowrap;
}
