/* ========================================================
   room-search.css - プレ告知（ティザー）専用版
   ======================================================== */

:root {
    --hotel-blue: #7a5a34; /* 茶系 */
    --hotel-gold: #a68b5a;
    --border-color: #d1d8e0;
}

/* ---------------------------
   1. 検索エリア外枠（告知パネル）
--------------------------- */
.con_search {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 4px;
    box-sizing: border-box;
    overflow: hidden; /* タイトルの背景色を角に合わせる */
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
}

/* ---------------------------
   2. タイトル部分
--------------------------- */
.search_title {
    text-align: center;
    padding: 30px 20px;
    background: #fcfaf5; /* ほんのりベージュで特別感を出す */
    border-bottom: 1px solid #eee;
}

.search_title .jp_title {
    display: block;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--hotel-blue);
    margin-bottom: 8px;
}

.search_title .en_title {
    display: block;
    font-family: "Yu Gothic", sans-serif;
    font-size: 14px;
    color: var(--hotel-gold);
    font-weight: bold;
}

/* ---------------------------
   3. メッセージエリア
--------------------------- */
.teaser-message {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    color: #5e3611;
}

.teaser-message p:first-child {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--hotel-blue);
}

.teaser-message p:last-child {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    font-family: "Yu Gothic", sans-serif;
}

/* ---------------------------
   4. スマートフォン表示
--------------------------- */
@media screen and (max-width: 900px) {
    .con_search { 
        margin: 20px 15px; 
    }

    .search_title .jp_title {
        font-size: 20px;
    }

    .teaser-message {
        padding: 40px 15px;
    }

    .teaser-message p:first-child {
        font-size: 18px;
    }
}