@charset "utf-8";

/*-------------------------------------------------------------------------
MAP
-------------------------------------------------------------------------*/

/* LAYOUT
--------------------------- */
.l-map {
    width: auto;
    padding: 0;
    position: relative;
}
    /* 地図 */
    .map__section {
        position: relative;
        overflow: hidden;
    }
        /* 右側固定 */
        .map__right {
            background-color: #fff;
            display         : flex;
            flex-direction  : column;
            width: 400px;
            height: inherit;
            position: absolute;
            top     : 0;
            right   : 0;
            z-index: 7;
        }
            .map__header {
                padding: 20px 30px 16px;
            }
                .map__btn-condition {
                    padding-inline: 10px;
                }
            .map__body {
                height: 100%;
                overflow-y: auto;
                overflow-x: hidden;
                scrollbar-width: none;/* moz用 */
            }
            .map__body::-webkit-scrollbar {
                display: none;
            }
    /* 条件  */
    .map__condition {
        width: 100%;
        height: calc(100% + 50px);
        display: none;
        background-color: #fff;
        overflow-y: auto;
    }

/* 地図
--------------------------- */
.map__section #gmap {
    width: 100%;
    height: inherit;
}

/* 検索
--------------------------- */
.map-input {
    margin-block: 0 16px;
    position: relative;
}
    .map-input input {
        width: 100%;
        box-shadow: var(--box-shadow);
        padding-right: 30px;
    }
    .map-input button {
        width: 35px;
        height: 35px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        padding: 10px;
    }
        .map-input svg {
            width: 15px;
            height: 15px;
        }

/* 物件
--------------------------- */
.map-bkn {
    padding: 0 0 20px;
}
/* 一覧 */
.map-bkn__link {
    padding: 12px 0 6px 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap    : 10px;
}
    .map-bkn__img {
        width: 80px;
        height: 69px;
        margin: 0 0 2px;
    }
    .map-bkn__type {
        font-size: 10px;
        color    : var(--light-text-color);
        text-align: center;
    }
    .map-bkn__right {
        overflow: hidden;
        flex: 1;
    }
        .map-bkn__name {
            text-overflow: ellipsis;
            overflow     : hidden;
            white-space  : nowrap;
            font-size: 12px;
            color    : var(--light-text-color);
        }
        .map-bkn__text {
            text-overflow: ellipsis;
            overflow     : hidden;
            white-space  : nowrap;
            font-size: 12px;
        }
            .map-bkn__text svg {
                min-width: 10px;
                width: 10px;
                height: 10px;
            }
        .map-bkn__price {
            font-weight: bold;
        }
    .map-bkn__arw {
        width: 30px;
        display    : flex;
        align-items: center;
    }
        .map-bkn__arw svg {
            width: 10px;
            height: 10px;
        }


/* 下部固定
--------------------------- */
.map-status {
    background-color: rgba(236, 239, 241, .5);
    display        : flex;
    gap            : 10px;
    align-items    : center;
    justify-content: space-between;
    padding: 8px 20px;
}
    .map-status__return {
        display: flex;
        align-items: center;
        font-weight: bold;
        color      : var(--light-text-color);
        line-height: 1;
    }
        .map-status__return svg {
            width: 12px;
            height: 12px;
            fill: var(--light-text-color);
        }
    .map-status__right {
        display    : flex;
        gap        : 10px;
        align-items: center;
    }
        .map-status__num {
            font-weight: bold;
        }
        .map-status__search {
            width: 43vw;
            height: 44px;
            gap: 5px;
        }
            .map-status__search svg {
                width: 15px;
                height: 15px;
                fill: #fff;
            }

/* 物件開閉ボタン
--------------------------- */
.map__bkn-switch {
    padding-inline: 10px;
    position: absolute;
    top: 20px;
    right: 10px;
    z-index: 7;
}
.map__bkn-switch:hover {
    opacity: 1;
}

/*-------------------------------------------------------------------------
モーダル
-------------------------------------------------------------------------*/

.condition-modal {
    width: 1140px;
    height: 645px;
}
    .condition-modal__inner {
        height: inherit;
        padding: 22px 170px 100px;
        overflow: auto;
        scrollbar-width: none;/* moz用 */
    }
    .condition-modal__inner::-webkit-scrollbar { 
        display: none;
    }
        .condition-modal__return {
            margin: 0 0 13px;
            display    : flex;
            align-items: center;
            font-weight: 400;
        }
            .condition-modal__return svg {
                width: 10px;
                height: 10px;
            }

/* 下部固定上書き
--------------------------- */
.condition-modal .select-fixed {
    width: 100%;
    min-width: auto;
    background-color: #DADEE0;
    position: absolute;
    bottom  : 0;
    left    : 0;
}
.condition-modal .select-fixed__btn--select {
    border: none;
    color: #fff;
}
.condition-modal .select-fixed__btn--select svg {
    fill: #fff;
}

/*-------------------------------------------------------------------------
アイコン 波状効果
-------------------------------------------------------------------------*/
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: #0861c7;
    transform: scale(0);
    animation: ripple-animation 1s ease-out forwards;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/*-------------------------------------------------------------------------
グーグルマップのズームボタンの拡大縮小のボタンの移動
-------------------------------------------------------------------------*/

.gm-bundled-control {
    bottom: 110px !important;
    top: unset !important;
}

/* 学区検索
--------------------------- */
.win-list-right .school_arround_bkn {
    padding: 3px 15px;
    border: 1px solid var(--border-color);
    font-size: 12px;
}
.win-list-right .school_arround_link {
    margin: 10px 0 3px;
    text-align: center;
}
.win-spot-list {
    text-align: center;
    min-height: 180px;
}
.win-list-right li,
.win-list-top h2 {
    font-size: 12px;
}
#favo_map {
    width: 800px;
    height: 400px;
    margin-top: 5px;
}
.favo_map_text {
    margin: 5px 0 20px 0;
}
#favo_map_mobile {
    width: 100%;
    height: 400px;
    margin-top: 5px;
}
.favo_map_mobile_text {
    margin: 5px 0 20px 0;
    padding: 0 20px 8px;
}
