/**
* Theme Name: WP Pro Real Estate 7 Child
* Description: This is a child theme of WP Pro Real Estate 7, generated by Real Estate 7.
* Author: <a href="https://www.contempothemes.com/">Contempo Themes</a>
* Template: realestate-7
* Version: 3.1.1
*/
/* 画面右の比較ページを隠す */
#compare-panel {
  display: none !important;
}

#language-switcher {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

#language-switcher select {
    font-size: 16px;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
}

/* 言語スイッチャーのメニュー */
#language-switcher ul {
    position: relative;
}

/* 言語スイッチャーのボタン */
#language-switcher ul li {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
}

/* ▼ドロップダウンメニューのスタイル */
#language-switcher ul li ul {
     position: absolute;
    top: 100%; /* 👈 上の要素の直下に配置 */
    left: 0;
}

/* ▼ホバー時にメニューを表示 */
#language-switcher ul li:hover ul {
    visibility: visible;
    opacity: 1;
    display: block !important;
}

/* 言語スイッチャーのリンク */
#language-switcher a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

#language-switcher a:hover {
    color: #0073aa;
}


