/* 지도 or 목록보기 버튼 */
.btns-change-view {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    z-index: 49;
}

/* 태그(공통) */
.place-list .thumbnail .status {
    display: inline-flex;
    align-items: center;
    position: absolute;
}
.place-list .status {
    color: var(--gray);
    /*border-radius: 1.25rem;*/
    border-radius: 0.5rem;
    background-color: var(--white);
}
.place-list .status i {
    display: block;
    border-radius: 50%;
    background-color: var(--gray);
}
.place-list .status.blue {
    color: var(--blue);
}
.place-list .status.blue i {
    background-color: var(--blue);
}
.place-list .status.yellow {
    color: #FFB800;
}
.place-list .status.yellow i {
    background-color: #FFB800;
}
.place-list .info .title {
    font-weight: 700;
}
.place-list .info .addr {
    display: block;
    line-height: 1.5;
    color: #6a6a6a;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.place-list .info .tags {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: var(--white);
}
    .place-list .info .tags .tag {
        display: inline-flex;
        align-items: center;
        border-radius: 0.4rem;
        border: 1px solid var(--light-gray);
        background-color: #fafafa;
    }
}
.place-list .info .tags .tag strong {
    margin-left: 0.212rem;
}
.place-list .info .tags .tag .icon-heart {
    display: inline-flex;
    margin-right: 0.212rem;
}
.place-list .info .tags .tag.red {
    color: #ef3737;
    border-color: #ef3737;
    background-color: #ffe3e3;
}
.place-list .info .tags .tag.blue {
    color: var(--blue);
    border-color: var(--blue);
    background-color: #f1f7ff;
}

.place-list .info .tags .tag.yellow {
    color: #000000;
    border-color: #fcca00;
    background-color: #fcca00;
}

.place-list .info .tags .tag.blue-reverse {
    color: var(--white);
    background-color: var(--blue);
    border-color: var(--blue);
}
.place-list .info .tags .tag.green-reverse {
    color: var(--white);
    background-color: var(--green);
    border-color: var(--green);
}

/* 리스트형 */ 
.type-list .place-list h2 {
    font-weight: 700;
}
.type-list .place-list ul {
    display: flex;
    flex-wrap: wrap;
}

/*
    .type-list .place-list .thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    background-color: #eee;
}

    .type-list .place-list .thumbnail img {
    display: block;
    width: auto;
    height: 100%;
}*/

.type-list .place-list .thumbnail {
    display: flex;
    justify-content: center;
    position: relative;
    text-align: center;
    background-color: #eee;
}

.type-list .place-list .thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius:8px;
}
/* simple list */
.type-list .place-list.simple li {
    border: 1px solid var(--light-gray);
}
/* banner */
.banner-area {
    display: flex;
}
.banner-area .banner {
    display: inline-flex;
    width: 100%;
    overflow: hidden;
}
.banner-area .banner img {
    width: 100%;
    height: 100%;
}

/* 지도형 */

.map-info {
    width: 30rem;
    height: 10rem;
    border-radius: 0.6rem;
    background-color: #fff;
    padding: 1.2rem;
    border: solid 1px #f17676;
}

.map-info .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


    .map-info .info .title {
        font-size: 1.4rem;
        line-height: 1.6rem;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }


    .map-info .info .addr {
        margin-top: 0.4rem;
        font-size: 1.2rem;
        line-height: 1.5rem;
        line-height: 1.5;
        color: #6a6a6a;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }


    .map-info .info .tags {
        margin-top: 1.6rem;
        gap: 0.6rem;
    }


        .map-info .info .tags .tag {
            padding: 0.381rem 0.436rem;
            font-size: 1.2rem;
            line-height: 1.2;
        }

.container.type-map {
    max-width: 100vw;
    width: 100%;
}
.container.type-map .map {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    height: 99vh;
    margin-top: -11.2rem;
    overflow: hidden;
}
.dummy-img {
    width:100%;
    height: 100%;
    background: url("../assets/images/sample/map.png") no-repeat center;
    background-size: cover;
}
/* 스와이프 바 */
.container.type-map .swipe-bar {
    z-index: 49;
    display: flex;
/*    position: absolute;
    left: 0;
    bottom: 0;*/
    width: 100%;
    text-align: center;
    background-color: #fff;
    border-radius: 20px 20px 0 0;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    animation: showSlideUp 0.5s forwards;
    /*animation: hideSlideDown 0.5s forwards;*/
}
    .container.type-map .swipe-bar.open {
        min-height: 47vh;
        animation: showSlideUp 0.5s forwards;
    }
.container.type-map .swipe-bar .aler-txt {
    margin: 16px 0;
    font-size: 16px;
}
.container.type-map .swipe-bar .aler-txt strong {
    color: var(--blue);
}
.container.type-map .swipe-bar .btn-control-pannel {
    width: 100%;
    height: 20px;
    border-radius: 20px 20px 0 0;
}
.container.type-map .swipe-bar .btn-control-pannel:before {
    content:'';
    display: inline-block;
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background-color: var(--gray);
}



/* Mobile Device */
/* 768px 미만 해상도의 모바일 기기를 위한 코드를 작성한다. 
모든 해상도에서 이 코드가 실행됨. 미디어 쿼리를 지원하지 않는 모바일 기기를 위해 미디어 쿼리 구문을 사용하지 않는다. */

/* Under Tablet */
@media all and (max-width:1023px) {
    .merit {
        gap: 1.2rem;
        width: 100%;
    }
    .merit li {
        padding: 1.9rem 2rem;
        height: 8.2rem;
        border-radius: 0.96rem;
    }

    .merit li .text {
        margin-left: 1.8rem;
        width: calc(100% - 4rem - 1.8rem);
        font-size: 1.2rem;
    }

    .merit li .icon {
        width: 3.5rem;
        height: 3.5rem;
    }

    /* 리스트 */
    .type-map .place-list {
        overflow-y: auto;
        text-align: left;
        margin-top: 0.5rem;
    }
    .type-map .place-list:first-child {
        margin-top: 0.5rem;
    }

    .type-map .place-list h2 {
        font-size: 2rem;
    }

    .type-map .place-list ul {
        flex-direction: column;
        gap: 3rem;
        margin: 3rem 0;
        display: flex;
        flex-wrap: wrap;
    }

    .type-map .place-list ul li {
        width: 100%;
    }

    .type-map .place-list ul .simple {
        width: 100%;
        padding: 2rem;
        border-radius: 1.2rem;
        border: 1px solid var(--light-gray);
    }

    .type-map .place-list ul li a {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 1.4rem;
    }

    .type-map .place-list ul .simple a {
        display: flex;
        flex-direction: column;
    }

        .type-map .place-list .thumbnail {
            width: 10rem;
            height: 11rem;
            border-radius: 0.8rem;
            display: flex;
            justify-content: center;
            position: relative;
            text-align: center;
            background-color: #eee;
        }

        .type-map .place-list .thumbnail img {
            width: 100%;
            border-radius: 0.8rem;
            display: block;
            height: 100%;
        }

    .type-map .place-list .thumbnail .status {
        top: 0.8rem;
        left: 0.8rem;
        padding: 0.442rem 0.683rem 0.46rem 0.62rem;
        line-height: 1.2rem;
        font-size: 1.2rem;
        font-weight: 700;
    }

    .type-map .place-list .status i {
        margin-right: 0.3rem;
        width: 0.8rem;
        height: 0.8rem;
    }

    .type-map .place-list .info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: calc(100% - 12rem);
    }

    .type-map .place-list .simple .info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }


    .type-map .place-list .info .title {
        font-size: 1.4rem;
        line-height: 1.6rem;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .type-map .place-list .info .addr {
        margin-top: 0.4rem;
        font-size: 1.2rem;
    }

    .type-map .place-list .info .tags {
        margin-top: 1.0rem;
        gap: 0.6rem;
    }

    .type-map .place-list .info .tags .tag {
        padding: 0.381rem 0.436rem;
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .type-map .place-list .info .program {
        padding-top: 1rem;
        font-size: 1.2rem;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    /* simple list */
    .type-map .place-list.simple li {
        width: 100%;
        padding: 2rem;
        border-radius: 1.2rem;
    }

    .type-map .place-list.simple li a {
        display: flex;
        flex-direction: column;
    }

    .type-map .place-list.simple .tags {
        margin-top: 2rem;
        gap: 0.5rem;
    }


    .type-list .place-list {
        margin-top: 6rem;
    }
    .type-list .place-list:first-child {
		margin-top: 2rem;
	}
    .type-list .place-list h2 {
        font-size: 2rem;
    }
    .type-list .place-list ul {
        flex-direction: column;
        gap: 3rem;
        margin: 3rem 0;
    }
    .type-list .place-list ul li {
        width: 100%;
    }

    .type-list .place-list ul .simple {
        width: 100%;
        padding: 2rem;
        border-radius: 1.2rem;
        border: 1px solid var(--light-gray);
    }


    .type-list .place-list ul li a {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 1.4rem;
    }

    .type-list .place-list ul .simple a {
        display: flex;
        flex-direction: column;
    }

    .type-list .place-list .thumbnail {
        width: 10rem;
        height: 11rem;
        border-radius: 0.8rem;
    }
    .type-list .place-list .thumbnail img {
        width: 100%;
        border-radius: 0.8rem;
    }
    .type-list .place-list .thumbnail .status {
        top: 0.8rem;
        left: 0.8rem;
        padding: 0.442rem 0.683rem 0.46rem 0.62rem;
        line-height: 1.2rem;
        font-size: 1.2rem;
        font-weight: 700;
    }
    .type-list .place-list .status i {
        margin-right: 0.3rem;
        width: 0.8rem;
        height: 0.8rem;
    }
    .type-list .place-list .info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: calc(100% - 12rem);
    }

    .type-list .place-list .simple .info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width:100%;
    }


    .type-list .place-list .info .title {
        font-size: 1.4rem;
        line-height: 1.6rem;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .type-list .place-list .info .addr {
        margin-top: 0.4rem;
        font-size: 1.2rem;
    }
    .type-list .place-list .info .tags {
        margin-top: 1.0rem;
        gap: 0.6rem;
    }
    .type-list .place-list .info .tags .tag {
        padding: 0.381rem 0.436rem;
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .type-list .place-list .info .program {
        padding-top: 1rem;
        font-size: 1.2rem;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    /* simple list */
    .type-list .place-list.simple li {
        width: 100%;
        padding: 2rem;
        border-radius: 1.2rem;
    }
    .type-list .place-list.simple li a {
        display: flex;
        flex-direction: column;
    }
    .type-list .place-list.simple .tags {
        margin-top: 2rem;
        gap: 0.5rem;
    }
    /* banner */
    .banner-area {
        flex-wrap: wrap;
        gap: 3rem;
    }
    .banner-area .banner {
        border-radius: 1.2rem;
    }

    /* 지도형 */
    .container.type-map {
        margin-top: -11.2rem;
    }
    /*.container.type-map .place-list,*/
    .container.type-map .banner-area {
        display: none;
    }

    .layer_facility_type_info {
        text-indent: 0px;
        font-size: 12px;
    }

}

/* Uppder Tablet */
@media all and (min-width:1024px) {
    .merit {
        gap: 1.2rem;
        width: 100%;
    }

    .merit li {
        padding: 2.1rem 3rem 2.1rem 3.6rem;
        height: 10.2rem;
        border-radius: 1.2rem;
    }

    .merit li .text {
        margin-left: 2.8rem;
        width: calc(100% - 6rem - 2.8rem);
        font-size: 1.7rem;
    }

    .merit li .icon {
        width: 5rem;
        height: 5rem;
    }

    .btns-change-view {
        display: inline-flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 0.8rem;
        transform: rotateY(-50%);
        background-color: var(--white);
        border-radius: 1.5rem;

    }
    /* 스와이프 바 */
    .container.type-map .swipe-bar {
        -webkit-box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.3);
        -moz-box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.3);
        box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.3);
    }

    /* 리스트형 */
    .type-list .place-list {
        padding-bottom: 10rem;
    }

        .type-list .place-list:first-child {
            margin-top: 6rem;
        }

        .type-list .place-list h2 {
            margin-bottom: 4rem;
            font-size: 3rem;
        }
        /*    .type-list .place-list ul {
        gap: 6rem 3.2rem;
    }*/

        .type-list .place-list ul {
            gap: 3rem 2.5rem;
        }

            .type-list .place-list ul.simple {
                gap: 3rem 2.5rem;
            }

        /*      .type-list .place-list li {
        flex-direction: row;
        width: 39.2rem;
    }
  .type-list .place-list .thumbnail {
        width: 100%;
        height: 24.4rem;
        border-radius: 2rem;
    }
    .type-list .place-list .thumbnail {
        width: 100%;
        height: 24.4rem;
        border-radius: 2rem;
    }
    .type-list .place-list .thumbnail .status {
        top: 2rem;
        left: 2rem;
        padding: 0.7rem 0.9rem 0.8rem 0.7rem;
        line-height: 1;
        font-size: 1.2rem;
        font-weight: 700;
    }
*/
        .type-list .place-list li {
            flex-direction: row;
            width: 28.6rem;
            border-radius: 8px;
            background-color: white;
            box-shadow: 2px 2px 10px rgba(0,0,0,.05);
            border: 1px solid #e8e8e8;
        }

        .type-list .place-list .thumbnail {
            width: 100%;
            height: 24.4rem;
            border-radius: 8px;
        }


            .type-list .place-list .thumbnail .status {
                top: 1rem;
                left: 1rem;
                padding: 0.7rem 0.9rem 0.8rem 0.7rem;
                line-height: 1;
                font-size: 1.2rem;
                font-weight: 600;
            }

        .type-list .place-list .status i {
            margin-right: 0.3rem;
            width: 1rem;
            height: 1rem;
        }

        .type-list .place-list .info {
            margin-top: -9.5rem;
            z-index: 40;
            position: relative;
            background-color: white;
            height: 200px;
            padding: 10px 10px;
            border-radius: 0px 0px 8px 8px;
        }

    #class4 > li {
        z-index: 40;
        position: relative;
        background-color: white;
        padding: 10px 10px;
        border-radius: 8px 8px;
    }

    #class4 > li .info {
        z-index: 40;
        position: relative;
        background-color: white;
        padding: 5px 5px;
        margin-top: 0px !important;
        height: 110px !important;
    }


    .type-list .place-list .list_day .simple {
        z-index: 40;
        position: relative;
        background-color: white;
        padding: 10px 10px;
        border-radius: 8px 8px;
    }

    .type-list .place-list .list_day .simple .info {
        z-index: 40;
        position: relative;
        background-color: white;
        padding: 5px 5px;
        margin-top: 0px !important;
        height: 110px !important;
    }


    .type-list .place-list .info .title {
        font-size: 1.5rem;
        line-height: 2.2rem;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }
    .type-list .place-list .info .addr {
        margin-top: 0.4rem;
        font-size: 1.4rem;
    }
    .type-list .place-list .info .tags {
        margin-top: 3.0rem;
        gap: 1rem 0.5rem;
    }
    .type-list .place-list .info .tags .tag {
        padding: 0.4rem 0.6rem;
        /* height: 3rem; */
        font-size: 1.2rem;
        line-height: 1.375;
    }
    /* simple list */
    .type-list .place-list.simple li {
        padding: 2rem;
        border-radius: 8px;
    }
    .type-list .place-list.simple .tags {
        margin-top: 2rem;
        gap: 0.5rem;
    }


    .type-list .place-list .list_day .simple .tags {
        margin-top: 2rem;
        gap: 0.5rem;
    }

    body > div > main > div > div > ul > li > div > a > div.tag {
        margin-top: 2rem !important;
        gap: 0.5rem !important;
    }

    .type-list .place-list .info .program {
        margin-top: 3rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e8e8e8;
        font-size: 1.2rem;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }


    /* banner */
    .banner-area {
        flex-wrap: nowrap;
        gap: 3.2rem;
        padding-bottom: 6rem;
    }
    .banner-area .banner {
        border-radius: 1.2rem;
    }
}

/* Tablet + Small PC Device */
@media all and (min-width:1024px) and (max-width:1439px) {
    .type-list .place-list h2 {
        font-size: 2.6rem;
    }
    .type-list .place-list ul li {
        flex-direction: row;
    }
}

/* mo ~ Small PC Device */
@media all and (max-width: 1439px) {
     /* 지도 or 목록보기 버튼 */
    .btns-change-view {
        background: none;
        box-shadow: none;
        bottom: 3rem;
    }
     .btns-change-view button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        padding: 0.8rem 0;
        width: 16.5rem;
        border-radius: 0.8rem;
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--white);
        opacity: 1;
        background-color: var(--blue);
        z-index: 5;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    }
    .btns-change-view button.active {
        display: none;
    }
    .btns-change-view button svg {
        display: block;
        opacity: 1;
    }

}

/* Desktop Device */
@media all and (min-width:1440px) {

    /* 지도 or 목록보기 버튼 */
    .btns-change-view .btn-wrap {
        display: flex;
    }
    .btns-change-view button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.6rem;
        padding: 1rem 0;
        width: 16.5rem;
        border-radius: 1.5rem;
        font-size: 1.6rem;
        font-weight: 700;
        color: #000;
        opacity: 0.30000001192092896;
        background-color: transparent;
        z-index: 5;
        font-family:'NotoSans';
    }
    .btns-change-view button svg {
        display: none;
        opacity: 0;
    }
    .btns-change-view button.active {
        font-weight: normal;
        color: var(--white);
        opacity: 1;
        -webkit-transition: color background-color 0.3s;
        transition: color background-color 0.3s;
        font-family: 'NotoSans';
    }
    .btns-change-view button.active svg {
        display: block;
        opacity: 1;
    }
    .bg-toggle {
        position: absolute;
        top: 0.786rem;
        width: 16.5rem;
        height: calc(100% - 1.596rem);
        background-color: var(--blue);
        border-radius: 1.5rem;
        z-index: -1;
    }
    .bg-toggle.list {
        left: calc(100% - 17.5rem);
        animation: btnShowList 0.3s ease-out 0s both;
    }
    .bg-toggle.map {
        left: 1rem;
        animation: btnShowMap 0.3s ease-out 0s both;
    }
    /* banner */
    .banner-area {
        padding-bottom: 10rem;
    }

    /* place list */
    .type-map .place-list {
        position: absolute;
        top: 14rem;
        right: 3rem;
        z-index: 40;
        padding: 0 2rem 2.5rem 2rem;
        width: 50rem;
        height: calc(100vh - 27rem);
        background-color: #fff;
        border-radius: 20px;
        overflow-y: auto;
    }
    .type-map .place-list .aler-txt {
        padding: 4rem 0;
        font-size: 1.6rem;
        text-align: center;
    }
    .type-map .place-list .aler-txt strong {
        color: var(--blue);
    }

    .type-map .place-list ul {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin: 0;
        flex-wrap:wrap;
    }
    .type-map .place-list ul li a {
        display: flex;
        flex-direction: row;
/*        justify-content: flex-start;
        align-items: flex-start;*/
        justify-content : space-between;
        gap: 1.4rem;
    }
    .type-map .place-list .thumbnail {
        width: 12rem;
        height: 12rem;
        border-radius: 0.8rem;
        display: flex;
        justify-content: center;
        position: relative;
        text-align: center;
        background-color: #eee;
    }
    .type-map .place-list .thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0.8rem;
    }
    .type-map .place-list .thumbnail .status {
        top: 0.8rem;
        left: 0.8rem;
        padding: 0.442rem 0.683rem 0.46rem 0.62rem;
        line-height: 1.2rem;
        font-size: 1.2rem;
        font-weight: 700;
    }
    .type-map .place-list .status i {
        margin-right: 0.3rem;
        width: 0.8rem;
        height: 0.8rem;
    }
    .type-map .place-list .info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: calc(100% - 12rem);
    }
    .type-map .place-list .info .title {
        font-size: 1.4rem;
        line-height: 1.6rem;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .type-map .place-list .info .addr {
        margin-top: 0.4rem;
        font-size: 1.2rem;
        line-height: 1.5rem;
        line-height: 1.5;
        color: #6a6a6a;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .type-map .place-list .info .tags {
        margin-top: 1.6rem;
        gap: 0.6rem;
    }
    .type-map .place-list .info .tags .tag {
        padding: 0.381rem 0.436rem;
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .type-map .place-list .info .program {
        padding-top: 1rem;
        font-size: 1.2rem;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

/*    .type-map .place-list .simple {
        margin-top: 0.4rem;
        font-size: 1.4rem;
        line-height: 1.5rem;
        height: 3.2rem;
        white-space: normal;
        word-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }*/
    .type-map .place-list .simple .info .addr {
        line-height: 1.5rem;
        height: 3.2rem;
    }

    .type-map .place-list .simple .info {
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* width: calc(100% - 12rem); */
        width: 100%;
    }

    .type-map .place-list li {
        width: 100%;
        padding-bottom: 20px;
        border-bottom: 1px solid #efefef;
    }

    .layer_facility_type_info {
        text-indent: 40px;
        font-size: 12px;
    }

    

    .layer_facility_type_info_line {
        margin-left: 115px;
    }

}

.facility_type_isDabome {
    background-color: #1d83ef;
    color: white !important;
}
.facility_type_desk {
    /*    background-color: #e72d26;
    color: white !important;*/
    color: #d12222 !important;
}

.merit {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.merit li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    background: #F6FAFF;
}

.merit li .icon.merit-03 {
    background: url(../assets/images/icons/icon-merit-03.svg) no-repeat 50% 50%;
    background-size: 100% auto;
}

.merit li .icon.merit-01 {
    background: url(../assets/images/icons/phoneCall.svg) no-repeat 50% 50%;
    background-size: 100% auto;
}

.merit li .text {
    text-align: left;
    font-weight: 700;
    word-break: break-word;
}

.layer_facility_type_info li:first-child {
    color: #258fff
}



