﻿/* ===========================
   タイトルバー
=========================== */
.map_title {
    margin-top: -10px !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    font-size: 143%;
    font-weight: bold;
    color: #fff;
}

    .map_title .title-text {
        flex: 1;
        line-height: 1.2;
    }

/* ===========================
   条件ボタン（タイトル内）
=========================== */
.filter-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    background: rgba(255,255,255,.95);
    color: #00589c;
    border-radius: 999px;
    padding: 0 16px;
    height: 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    border: none;
    box-shadow: 0 2px 6px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.8);
    transition: all .15s ease;
    white-space: nowrap;
}

    .filter-toggle:hover {
        background: #fff;
        transform: translateY(-1px);
    }

    .filter-toggle:active {
        transform: scale(.97);
    }


.gmap_line {
    width: 100%;
    margin: 0;
    padding-top:5px;
    display: flex;
}

.color_chi {
    background-color: #32ADFF;
}


.gmap_line01 {
    width: 25%;
}

    .gmap_line01 img {
        width:90%;
    }

#map {
    width: 100%;
    height: 640px;
    margin: 0;
}


/* ===========================
   InfoWindow 全体
=========================== */
.info-window {
    width: 240px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    color: #333;
}

/* ===========================
   画像
=========================== */
.info-image-wrap {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-radius: 8px;
}

    .info-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* ===========================
   本文
=========================== */
.info-body {
    padding: 10px 4px 4px;
}

/* タイトル */
.info-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 4px;
    line-height: 1.4;
}

/* 住所 */
.info-address {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* ===========================
   ボタン
=========================== */
.info-button {
    display: block;
    text-align: center;
    font-size: 12px;
    /* background: #32ADFF; */
    color: #fff !important;
    padding: 8px 0;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.2s;
}

    /* hover（PC用） */
    .info-button:hover {
        background: #1e8fd1;
    }


/* ===========================
   フィルターボタン
=========================== */
/*
.filter-toggle {
    position: fixed;
    top: 80px;
    right: 12px;
    background: #32ADFF;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 1500;
    font-size: 13px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

    .filter-toggle:hover {
        background: #1e8fd1;
    }
*/
/* ===========================
   サイドパネル
=========================== */
.filter-panel {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 12px rgba(0,0,0,0.25);
    transition: right 0.25s ease;
    z-index: 2000;
    padding: 15px 12px;
    overflow-y: auto; /* ←重要：スクロール対応 */
}

    .filter-panel.open {
        right: 0;
    }

/* ===========================
   ヘッダー
=========================== */
.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-bottom: 12px;
    font-size: 15px;
}

.close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* ←タップ領域を大きく */
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%; /* 丸くして押しやすく */
}

    .close-btn:hover {
        background: rgba(0,0,0,0.08);
    }

    .close-btn:active {
        background: rgba(0,0,0,0.15);
    }

/* ===========================
   グループ
=========================== */
.filter-group {
    margin-bottom: 18px;
}

.filter-title {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 13px;
}

/* ===========================
   金額行
=========================== */
.filter-row {
    display: flex;
    align-items: center;
    gap: 8px; /* 少し広げる */
}

    .filter-row select {
        appearance: none;
        flex: 1;
        padding: 10px 8px; /* ←大きく */
        font-size: 14px; /* ←少し上げる */
        border-radius: 6px;
    }

    /* 〜の部分も少し余裕 */
    .filter-row span {
        font-size: 14px;
        padding: 0 4px;
    }

/* ===========================
   チェック（共通）
=========================== */
.filter-group label {
    display: inline-block; /* ←2列化 */
    width: 48%;
    margin-bottom: 6px;
    font-size: 13px;
    cursor: pointer;
}

/* チェックボックス少し調整 */
.filter-group input[type="checkbox"] {
    margin-right: 4px;
}

/* ===========================
   ボタン
=========================== */
.filter-actions {
    margin-top: 20px;
}

.btn-search {
    width: 100%; /* ←押しやすく */
    background: #32ADFF;
    color: #fff;
    border: none;
    padding: 12px 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}