/********************************************
* カーボン達成度
********************************************/
body {
    padding-top: 75px;
}

.title {
    background-color: #00B7AA;
}

.title-h {
    position: absolute;
    z-index: 100;
}

.title-img {
    opacity: 0.5;
    display: block;
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: cover;
}

.block-label {
    display: inline-block;
}

.switch .custom-control-input~.custom-control-label span:before {
    content: "【非住宅エリア】を表示";
    color: #A2DDDF;
}

.switch .custom-control-input:checked~.custom-control-label span:before {
    content: "【住宅エリア】を表示　";
    color: #316EB2;
}

/********************************************
* パンくず
* bootstrapをラップ
********************************************/
.bj-breadcrumb {
    font-size: 12px;
}

.bj-breadcrumb li:first-child {
    display: flex;
    align-items: center;
}

.bj-breadcrumb li:first-child::before {
    content: "";
    display: block;
    background-image: url("../img/house_g_24px.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    margin-right: .5rem;
}

.bj-breadcrumb li+li:before {
    content:'>' !important;
}

/********************************************
* 街区の概要
********************************************/
#summary li {
    font-size: .85rem;
}

/********************************************
* デバイス対応 PC
********************************************/
@media only screen and (min-width: 1200px) {
    .bj-header img {
        max-height: 200px;
    }

    .bj-breadcrumb .breadcrumb {
        padding-right: 0;
        padding-left: 0;
    }
}

/********************************************
* デバイス対応 SP
********************************************/
@media only screen and (max-width: 1199px) {
    .summary-container {
        margin: 0 1rem;
    }
}

