@charset "UTF-8";

.page_top .container {
    background: url("../img/firestation/topback.jpg") no-repeat;
    background-size: cover;
    background-position-x: 50%;
}

.firestation {
    padding: 40px 0;
}

.firestation .container {
    max-width: 1060px;
    margin: 0 auto;
}

.firestation .container .inner {
    max-width: 800px;
    margin: 30px auto;
    border: 1px solid #C9CACA;
    padding: 10px 20px;
}

.firestation .container .inner .contents {
    display: flex;
    flex-wrap: wrap;
}


.firestation .container .inner .contents .name {
    max-width: 170px;
    width: 100%;
    text-indent: 2em;
    padding: 5px 10px;
}

.firestation .container .inner .contents .add {
    max-width: 450px;
    width: 100%;
    border-left: 1px dotted #000;
    border-right: 1px dotted #000;
    padding: 5px 10px;
}

.firestation .container .inner .contents .tel {
    max-width: 135px;
    width: 100%;
    padding: 5px 10px;
}
.firestation .container .inner .contents .tel:before {
    content: "";
    display: inline-block;
    width: 11px;
    height: 14px;
    margin-right: 3px;
    background: url("../img/firestation/icon_tel.png") no-repeat;
    background-size: contain;
    vertical-align: middle;
}

.firestation .container .inner .contents .main {
    text-indent: 0;
    border-top: 1px solid #000;
}

.firestation .container .inner .contents .name:nth-child(odd),
.firestation .container .inner .contents .add:nth-child(even),
.firestation .container .inner .contents .tel:nth-child(odd) {
    background: #EFEFEF;
}


/* アコーディオン　　*/
.acd-check{
    display: none;
}
.acd-label{
    background: none;
    color: #000;
    display: block;
    margin-bottom: 1px;
    padding: 10px;
    position: relative;
    font-size: 25px;
    line-height: 1.5em;
}
.acd-label:after{
    background: none;
    box-sizing: border-box;
    content: '＋';
    display: block;
    height: 100%;
    padding: 0;
    position: absolute;
    right: 0;
    top: 10px;
    font-size: 40px;
    font-weight: 100;
}
.acd-content{
    display: block;
    height: 0;
    opacity: 0;
    padding: 0;
    transition: height,padding,visibility 0.5s;
    visibility: hidden;
    font-size: 15px;
    line-height: 1.5em;
}
.acd-check:checked + .acd-label:after{
    content: '−';
}
.acd-check:checked + .acd-label + .acd-content{
    height: 100%;
    opacity: 1;
    padding: 0;
    visibility: visible;
}



/* スマートフォン用 */
@media screen and (max-width: 768px) {

    .firestation .container {
        padding: 0 20px;
    }

    .firestation .container .inner {
        padding: 10px;
    }
    
    .acd-label {
        font-size: 20px;
        padding: 10px 5px;
    }

    .firestation .container .inner .contents {
        display: block;
    }

    .firestation .container .inner .contents .name {
        max-width: none;
        text-indent: 0;
        font-size: 18px;
        font-weight: 500;
        line-height: 1.5em;
    }

    .firestation .container .inner .contents .add {
        max-width: none;
        border: none;
        padding: 0 10px;
        line-height: 1.2em;
    }

    .firestation .container .inner .contents .tel {
        max-width: none;
        border: none;
        padding: 5px 10px 10px;
        line-height: 1.2em;
    }

}




