/* ////////////////////////////////// */
/* トップイメージ画像 */
/* ////////////////////////////////// */
.lower_top_centers {
    background-image: url(../images/centers/topimg.jpg);
    background-size: cover;
    background-position: center 70%;

    margin-bottom: 130px;
}


/* ////////////////////////////////// */
/* 事業所 */
/* ////////////////////////////////// */
.centers_area {
    margin: 0 auto 130px;
    max-width: 1000px;
}
.centers_img {
    display: block;
    width: 100%;
    /*height: 600px;*/
    position: relative;
    /*
    background-image: url(../images/centers/dummy1.jpg);
    background-size: cover;
    background-position: center center;
    */
    margin-bottom: 50px;
}
.centers_flex {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}
.centers_txt {
    width: calc(100% / 2 - 20px);
}
.centers_txt h4 {
    font-size: 26px;
    margin-bottom: 20px;
    /*color: #FF8E25;*/
}
.centers_txt table {
    width: 100%;
}
.centers_txt th {
    vertical-align: top;
    text-align: left;
    width: 90px;
    /*color: #FF8E25;*/
}
.centers_txt td {
    padding-bottom: 15px;
}
.centers_txt td i {
    margin-right: 3px;
}

.centers_map {
    width: calc(100% / 2 - 20px);
}


/* ////////////////////////////////// */
/* スライダーのためのcss */
/* ////////////////////////////////// */
.slider_service {
    width: 100%;
    margin: 0 auto;
    overflow: visible;
}
.slider_service img {
    width: 100%;
    height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider_service .slick-slide {
    /*margin: 0 10px;*/
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.arrow_area {
    position: absolute;
    bottom: 44px;
    left: 0;
    width: 120px;
    height: 60px;
    background: #fff;
    z-index: 2;
    border-top-right-radius: 20px;
    -webkit-border-top-right-radius: 20px;
    -moz-border-radius-topright: 20px;
}
.arrow_hr {
    position: absolute;
    bottom: 55px;
    left: 60px;
    width: 1px;
    height: 40px;
    background: #CCCCCC;
    z-index: 3;
}
.slick-prev,
.slick-next {
    position: absolute;
    /*top: 42%;*/
    bottom: 64px;
    cursor: pointer;
    outline: none;
    /*
    border-top: 2px solid #666;
    border-right: 2px solid #666;
    */
    height: 24px;
    width: 22px;
    z-index: 3;
    color: #48575E;
}
.slick-prev {
    /*left: -1.5%;*/
    left: 20px;
    /*transform: rotate(-135deg);*/
}
.slick-next {
    left: 80px;
    /*
    right: -1.5%;
    transform: rotate(45deg);*/
}
.slick-arrow i {
    font-size: 24px;
}

/*ドットナビゲーションの設定*/
.slick-dots {
    text-align: center;
    margin: 20px 0 0 0;
}
.slick-dots li {
    display: inline-block;
    margin: 0 10px;
}
.slick-dots button {
    color: transparent;
    outline: none;
    width: 10px;
    height: 10px;
    display: block;
    border-radius: 50%;
    background: #ccc;
    border: 0px solid;
}
.slick-dots .slick-active button {
    background: #333;
    border: 3px solid #eee;
    width: 17px;
    height: 17px;
}
.slick-slide img {
    width: 100%;
    height: auto;
    max-height: 650px;
    object-fit: cover;
    border-radius: 20px;
}


/* /////////////////////// */
/* サイズの大きいPC */
/* /////////////////////// */
/*
@media screen and (min-width:1350px){
    .m3_back {
        height: 1200px;
    }
}
@media screen and (min-width:1450px){
    .m3_back {
        height: 1300px;
    }
}
*/

/* /////////////////////// */
/* サイズの小さいPC */
/* /////////////////////// */
@media screen and (max-width:1050px){
    .centers_area {
        max-width: 750px;
    }
    .slick-slide img {
        max-height: 450px;
    }
}


/* /////////////////////// */
/* レスポンシブ対応 */
/* /////////////////////// */
@media screen and (max-width:767px){
    .lower_top_centers {
        margin-bottom: 50px;
    }
    .centers_area {
        width: calc(100% - 30px);
        margin-bottom: 100px;
    }
    .centers_img {
        margin-bottom: 30px;
    }
    .centers_flex {
        flex-wrap: wrap;
        width: 100%;
    }
    .centers_txt {
        width: 100%;
    }
    .centers_map {
        width: 100%;
        height: 350px;
    }

    .slick-prev, .slick-next {
        bottom: 56px;
    }
    .slick-prev {
        left: 16px;
    }
    .slick-next {
        left: 68px;
    }
    .arrow_hr {
        bottom: 52px;
        left: 50px;
        height: 30px;
    }
    .arrow_area {
        width: 100px;
        height: 50px;
    }
    .slick-arrow i {
        font-size: 20px;
    }

    .slick-slide img {
        max-height: 200px;
    }
}