* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #121c15; /* 漆黒に近い超深緑 */
    color: #f4f1ea; /* 目に優しいリッチオフホワイト */
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* 🌏 多言語ナビゲーション */
.lang-nav {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 100;
}

.lang-btn {
    background: rgba(223, 213, 198, 0.1);
    border: 1px solid rgba(223, 213, 198, 0.2);
    color: #dfd5c6;
    padding: 6px 14px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-left: 6px;
    transition: all 0.3s;
}

.lang-btn.active, .lang-btn:hover {
    background: #c5a880; /* 上品なゴールドベージュ */
    border-color: #c5a880;
    color: #121c15;
}

header {
    padding: 80px 20px;          /* 💡上下の余白を少し広げて、生成した背景画像がより綺麗に見えるように調整 */
    text-align: center;
    
    /* 🖼️ 背景画像の指定 ＋ ✨文字をクッキリ浮かび上がらせるダークグラデーションを重ねる */
    background: linear-gradient(
        rgba(18, 28, 21, 0.75),   /* 上部の重なり（深緑〜黒に近い透明） */
        rgba(18, 28, 21, 0.55)    /* 下部の重なり */
    ), url('../images/back.jpg'); /* 背景画像のパス（cssフォルダから見た画像の位置） */
    
    background-size: cover;       /* 画像の比率を崩さず全体にフィット */
    background-position: center;  /* 画像の中心を中央に配置 */
    background-repeat: no-repeat;
    
    /* 少しだけ境界線をソフトにする、または高級感を出すためのシャドウ（お好みで） */
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: inset 0 -30px 40px rgba(18, 28, 21, 0.8);
}

/* ✍️ タイトル文字のフォントスタイルもさらにラグジュアリーに微調整 */
header h1 {
    font-size: 42px;
    font-weight: 900;
    color: #c5a880;               /* 統一感のあるラグジュアリーゴールド */
    letter-spacing: 3px;          /* 文字の間隔を少し広げてポータルサイト感を出す */
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6); /* 文字の後ろに影を入れて視認性MAXに */
    margin-bottom: 15px;
}

header p {
    font-size: 16px;
    color: #e2e8e4;               /* 少し柔らかいホワイト */
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    max-width: 700px;
    margin: 0 auto;
}
/* ==========================================================================
   🎛️ フィルターセクション（2〜3行の横並びグリッド）
   ========================================================================== */
.filter-wrapper {
    display: grid;
    /* 画面幅に合わせて自動で2〜3列の綺麗な行に折り返す設定 */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 16px; 
    background: rgba(27, 51, 34, 0.4);
    border: 1px solid rgba(197, 168, 128, 0.15);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

/* 各フィルターグループ（AREAやPRICEなど）の縦のダブつきを解消 */
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 5px;
}

.filter-title {
    font-size: 14px;
    font-weight: 700;
    color: #c5a880;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* フィルター内のボタンを包むコンテナ */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(223, 213, 198, 0.2);
    color: #dfd5c6;
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: rgba(197, 168, 128, 0.15);
    border-color: #c5a880;
    color: #ffffff;
}

/* ==========================================================================
   🎴 スパグリッド ＆ カードレイアウト
   ========================================================================== */
.spa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 30px;
}

.spa-card {
    background: #19261d;
    border: 1px solid rgba(197, 168, 128, 0.1);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.spa-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
    border-color: rgba(197, 168, 128, 0.3);
}

.spa-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.spa-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.spa-hotel {
    font-size: 12px;
    font-weight: 700;
    color: #c5a880;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.spa-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.spa-stars {
    color: #f39c12;
    font-size: 12px;
    margin-bottom: 15px;
}

.spa-desc {
    font-size: 14px;
    color: #a4b3a8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.tag-item {
    background: rgba(197, 168, 128, 0.08);
    color: #c5a880;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
}

/* 🔗 アプリ・予約ボタン */
.btn-book {
    display: block;
    text-align: center;
    background: #c5a880;
    color: #121c15;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.3s;
    position: relative;
    z-index: 10;
}

.btn-book:hover {
    background: #dfd5c6;
}

/* ==========================================================================
   👣 フッター ＆ シェア
   ========================================================================== */
footer {
    margin-top: 80px;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    background: #0d1a11;
}

.footer-share {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.share-btn {
    background: rgba(223, 213, 198, 0.08);
    color: #dfd5c6;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.share-btn:hover {
    background: #c5a880;
    color: #121c15;
}

footer p {
    font-size: 12px;
    color: #5c6e62;
}

/* ==========================================================================
   📱 レスポンシブ（スマホ対応）
   ========================================================================== */
@media (max-width: 768px) {
    .spa-grid {
        grid-template-columns: 1fr;
    }
    header {
        padding: 60px 20px; /* スマホでも高さを抑える */
    }
    header h1 { 
        font-size: 24px; 
    }
}
/* 📱 スマホ・モバイル表示用のレスポンシブ調整 */
@media screen and (max-width: 768px) {
    header {
        padding: 30px 15px !important; /* 💡 上下の余白を80pxから30pxへ大幅に凝縮 */
    }
    
    header h1 {
        font-size: 26px !important;    /* 💡 スマホに合わせて文字サイズを少し小さく */
        margin-bottom: 8px !important;
    }
    
    header p {
        font-size: 13px !important;    /* 💡 サブタイトルもすっきり1行半に収まるサイズに */
        line-height: 1.4;
    }
}
/* ==========================================================================
   モバイル環境（スマホ）用のレイアウト完全修正版
   ========================================================================== */
@media screen and (max-width: 768px) {
    /* 1. ヘッダー全体の高さを確保し、縦並びに強制変更 */
    .main-header {
        padding: 20px 15px !important;
    }

    .header-container {
        display: flex !important;
        flex-direction: column !important; /* 縦並び */
        align-items: center !important;
        text-align: center !important;
        position: relative !important;
        gap: 15px !important; /* 要素間の隙間 */
    }

    /* 2. 右上固定（absolute）を完全に強制解除して、最上部に配置 */
    .lang-switcher, 
    .lang-nav {
        position: static !important; /* 固定解除 */
        order: -1 !important;        /* タイトルよりも「上」に並び替える */
        margin: 0 auto 5px auto !important;
        display: block !important;
    }

    /* セレクトボックス自体の幅をスマホサイズに合わせる */
    .lang-switcher select {
        width: 100% !important;
        max-width: 200px !important;
        padding: 8px 12px !important;
        font-size: 14px !important;
    }

    /* 3. タイトルエリアの幅をいっぱいにする */
    .logo-area {
        width: 100% !important;
        margin: 0 !important;
    }

    .logo-area h1 {
        font-size: 22px !important; /* スマホで見やすい文字サイズ */
        line-height: 1.3 !important;
        margin-bottom: 5px !important;
    }

    #txtSubTitle {
        font-size: 12px !important;
        line-height: 1.4 !important;
    }
}