.rts-hotel-card {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 15px;
}
/* ===============================
   高級ホテル風カードデザイン
================================= */

.luxury-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e4e4e4;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: all .3s ease;
    margin-bottom: 24px;
}

.luxury-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

/* 画像 */
.rts-hotel-image img {
    width: 260px;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid #ddd;
}

/* タイトル */
.rts-hotel-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

/* 口コミ */
.rts-hotel-review {
    font-size: 1.1rem;
    color: #e3b341; /* ゴールド */
    font-weight: 600;
    margin-bottom: 10px;
}

.rts-review-label {
    color: #555;
    font-size: 0.9rem;
    margin-left: 4px;
}

/* 価格 */
.rts-hotel-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.rts-hotel-price span {
    background: #f9efe3;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-right: 6px;
}

/* アクセス */
.rts-hotel-access {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.4;
    margin-bottom: 16px;
}

/* CTAボタン */
.rts-hotel-btn {
    display: inline-block;
    background: linear-gradient(135deg, #a8894c, #c9a86a);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    transition: all .3s ease;
}

.rts-hotel-btn:hover {
    background: linear-gradient(135deg, #c9a86a, #a8894c);
    transform: translateY(-2px);
}

/* ===============================
   スマホ対応
================================= */

@media (max-width: 768px) {
    .luxury-card {
        flex-direction: column;
        padding: 16px;
    }

    .rts-hotel-image img {
        width: 100%;
        height: 200px;
    }
}
/* =============================
   小さめ画像レイアウト（ぼやけ対策）
============================= */

.rts-hotel-image-small img {
    width: 160px;   /* 小さめ表示 */
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fafafa;
}

@media (max-width: 768px) {
    .rts-hotel-image-small img {
        width: 100%;
        height: 180px;
    }
}
/* ========================================
   小さめ画像（ぼやけ軽減用）
   サイズ：幅160px × 高さ120px（推奨）
======================================== */
.rts-hotel-image-small img {
    width: 160px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fafafa;
    display: block;
}


/* ========================================
   PCレイアウト：横並び
======================================== */
.rts-hotel-card {
    display: flex;
    gap: 18px;
    padding: 18px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e4e4e4;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all .25s ease;
    margin-bottom: 20px;
}

.rts-hotel-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.10);
}

/* タイトル */
.rts-hotel-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #222;
}

/* 口コミ */
.rts-hotel-review {
    font-size: 1.05rem;
    color: #e3b341;
    font-weight: bold;
    margin-bottom: 8px;
}
.rts-review-label {
    color: #666;
    font-size: 0.9rem;
}

/* 価格 */
.rts-hotel-price {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.rts-hotel-price span {
    background: #f9efe3;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-right: 6px;
}

/* アクセス */
.rts-hotel-access {
    font-size: 0.9rem;
    margin-bottom: 14px;
    color: #444;
    line-height: 1.4;
}

/* CTAボタン */
.rts-hotel-btn {
    display: inline-block;
    background: linear-gradient(135deg, #a8894c, #c7a86a);
    color: #fff;
    padding: 9px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all .25s ease;
}
.rts-hotel-btn:hover {
    background: linear-gradient(135deg, #c7a86a, #a8894c);
    transform: translateY(-2px);
}

/* ========================================
   スマホ対応
======================================== */
@media (max-width: 768px) {
    .rts-hotel-card {
        flex-direction: column;
        padding: 16px;
    }
    .rts-hotel-image-small img {
        width: 100%;
        height: 200px;
    }
}
