@charset "utf-8";

#map-container {
    position: relative;
    width: 100%;
    height: 64px;
    overflow: hidden;
    transition: height 0.2s linear 0s;
}
#map-canvas {
    width: 100%;
    height: 100%;
    height: 500px;
    background: #eee;
    overflow: hidden;
}
#map-container .btn-toggle-map {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 64px;
    line-height: 64px;
    color: #fff;
    background: #333;
    text-align: center;
    cursor: pointer;
}
#map-container .btn-toggle-map img {
    margin: 0 10px;
    vertical-align: middle;
}
#map-container .btn-toggle-map .btn-close {
    display: none;
}
#map-container .btn-toggle-map .btn-open {
    display: inline-block;
}

#map-container.map-open {
    height: 400px;
}
#map-container.map-open .btn-toggle-map {
    background: rgba(0, 0, 0, 0.7);
}
#map-container.map-open .btn-close {
    display: inline-block;
}
#map-container.map-open .btn-open {
    display: none;
}



/* ---- info window -------- */
#map-canvas .gmap-iw {
}
#map-canvas .gmap-iw a {
    text-decoration: none;
    cursor: default;
}
#map-canvas .gmap-iw a.link-show-detail {
    cursor: pointer;
}
#map-canvas .gmap-iw a:hover {
    opacity: 0.7;
}
#map-canvas .gmap-iw .iw-name {
    margin: 0 0 5px;
}
#map-canvas .gmap-iw .iw-name span {
    font-weight: bold;
    font-size: 1.1em;
    display: inline-block;
    padding: 0 5px;
    border-bottom: 1px solid #000;
}
#map-canvas .gmap-iw .iw-name img {
    display: inline-block;
    max-height: 1.4em;
    margin: 0 5px 0 0;
    vertical-align: middle;
}
#map-canvas .gmap-iw .iw-address {
    padding: 0 5px;
}
#map-canvas .gmap-iw .iw-tel {
    padding: 0 5px;
}
#map-canvas .gmap-iw .iw-thumb {
    max-width: 200px;
    height: auto;
    margin: 0;
    padding: 5px;
}
#map-canvas .gmap-iw .iw-thumb img {
    display: block;
    width: 100%;
    height: auto;
}

/* ---- ctrl -------- */
#ctrl-box {
}
.ctrl-markers-container {
}

/* ---- marker -------- */
#ctrl-box .marker-btns {
}
#ctrl-box .marker-btns li {
}
#ctrl-box .marker-btns label {
    position: relative;
    cursor: pointer;
	font-size: 14px;
	line-height: 1.4em;
	font-weight: 700;
}
#ctrl-box .marker-btns label::before {
	content:'';
	width:16px;
	height:16px;
	background-color:#fff;
	display: inline-block;
	vertical-align: middle;
	margin-left: 15px;
	margin-right: 5px;
	margin-top: -4px;
	border: 1px solid #d8d6d6;
}
/*
#ctrl-box .marker-btns label.checked::before,
#ctrl-box .marker-btns label:hover:before {
	background-color: #1354A4;
}
*/
#ctrl-box .marker-btns label.checked::before {
	background-color: #1354A4;
}

#ctrl-box .marker-btns input {
    display: none;
}
#ctrl-box .marker-btns label span {
    vertical-align: middle;
}
#ctrl-box .marker-btns label span:first-child {
}

#ctrl-box .listtype-btns {
}


#list-area {
    overflow: hidden;
}
#list-area ul {
    position: relative;
    display: block;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.4;
}
#list-area li {
    display: block;
}
#list-area li a {
    text-decoration: none;
}
#list-area li .list-inner {
    display: table;
    width: 100%;
}
#list-area li .list-inner > span {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    word-break: break-all;
}
#list-area li .list-thumb {
    width: 22%;
}
#list-area li .list-name {
    width: 22%;
    padding: 0 0.5em;
}
#list-area li .list-address {
    width: 26%;
    padding: 0 0.5em;
}
/*
#list-area li .list-completed {
    width: 17%;
}
*/
#list-area li .list-purpose {
    width: 18%;
    padding: 0 0.5em;
}
#list-area li .list-available {
    width: 12%;
    padding: 0 0.5em;
}
#list-area li .list-available span {
    display: none;
}

#list-area .list-head {
    padding: 30px 0 10px;
    font-size: 0.8em;
}
#list-area .list-head li {
}
#list-area .list-head li span {
    padding: 20px 0;
}
#list-area .list-head li .list-completed {
    cursor: pointer;
}
#list-area .list-head li .list-completed span {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 16px;
    padding: 0;
    line-height: 16px;
    text-align: right;
    vertical-align: top;
    font-size: 0;
}
#list-area .list-head li .list-completed span::before,
#list-area .list-head li .list-completed span::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    
    border-style: solid;
}
#list-area .list-head li .list-completed span::before {
    right: 0;
    border-width: 8px 4px;
    background: #fff;
}
#list-area .list-head li .list-completed span::after {
    right: 2px;
    border-width: 4px 2px;
}
#list-area .list-head li .list-completed .btn-sort-asc::before {
    margin-top: -13px;
    border-color: transparent transparent #666 transparent;
}
#list-area .list-head li .list-completed .btn-sort-asc::after {
    margin-top: -6px;
    border-color: transparent transparent #fff transparent;
}
#list-area .list-head li .list-completed .btn-sort-desc::before {
    margin-top: -5px;
    border-color: #666 transparent transparent transparent;
}
#list-area .list-head li .list-completed .btn-sort-desc::after {
    margin-top: -4px;
    border-color: #fff transparent transparent transparent;
}
#list-area.sort-completed-asc .list-head li .list-completed .btn-sort-asc::after {
    display: none;
}
#list-area.sort-completed-desc .list-head li .list-completed .btn-sort-desc::after {
    display: none;
}
#list-area .list-container {
    margin-bottom: 90px;
    font-size: 0.9em;
}
#list-area .list-container li {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 10px;
    border-top: 1px solid #ece8e8;
    border-right: 1px solid #ece8e8;
    border-bottom: 1px solid #ece8e8;
    background: #fff;
}
#list-area .list-container li:nth-of-type(even) {
    background: #f3f3f3;
}
#list-area .list-container li a {
    cursor: default;
}
#list-area .list-container li a.link-show-detail {
    cursor: pointer;
}
#list-area .list-container li > span {
    padding: 0 1em;
}
#list-area .list-container li .list-thumb {
    padding: 0;
}
#list-area .list-container li .list-thumb img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
#list-area .list-container li .list-name {
}
#list-area .list-container li .list-address {
}
#list-area .list-container li .list-name::after,
#list-area .list-container li .list-address::after,
#list-area .list-container li .list-purpose::after {
    content: '';
    display: block;
    width: 1px;
    height: 70%;
    background: #ece8e8;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
#list-area .list-container li .list-completed {
}
#list-area .list-container li .list-purpose {
}
/*
#list-area .list-container li:hover,
#list-area .list-container li.active {
    background: #eee;
}
*/


#list-area.listtype-image {
}

#list-area.listtype-image ul {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
}
#list-area.listtype-image li {
    display: block;
    margin: 0;
/*
    width: 50%;
*/
    width: 33.3333%;
}
#list-area.listtype-image li .list-inner {
    display: block;
    width: 100%;
}
#list-area.listtype-image li .list-thumb {
    position: relative;
    display: block;
    width: 100%;
}
#list-area.listtype-image li a {
    overflow: hidden;
}

#list-area.listtype-image .list-head {
    display: none ! important;
}

#list-area.listtype-image .list-container {
    margin-bottom: 0;
}
#list-area.listtype-image .list-container li {
    position: relative;
    display: block;
    margin: 0;
    border: none;
    background: #fff;
}
#list-area.listtype-image .list-container li > span {
    padding: 0;
}
#list-area.listtype-image .list-container li .list-thumb {
    padding: 0;
}
#list-area.listtype-image .list-container li .list-thumb img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
    
    transform: scale(1);
    transition: transform 0.35s linear 0s;
}

#list-area.listtype-image .list-container li .list-name {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0);
    border: 0 solid rgba(255, 255, 255, 0);
    transition: all 1s cubic-bezier(.19,1,.22,1) 0s;
}
#list-area.listtype-image .list-container li .list-name::after {
    display: none;
}
#list-area.listtype-image .list-container li .list-name > span {
    position: relative;
    margin-top: 60px;
    opacity: 0;
}
#list-area.listtype-image .list-container li .link-show-detail .list-name > span::after {
    content: '';
    position: relative;
    top: 0;
    left: 0;
    display: block;
    width: 140px;
    height: 33px;
    margin: 10px auto 0;
    border: 1px solid #fff;
    background-image: url(../images/share/viewmore.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 80px auto;
}


#list-area.listtype-image .list-container li .list-address,
#list-area.listtype-image .list-container li .list-completed,
#list-area.listtype-image .list-container li .list-purpose {
    display: none;
}

#list-area.listtype-image .list-container li a:hover .list-thumb img {
    transform: scale(1.05);
}
#list-area.listtype-image .list-container li a:hover .list-name {
    background-color: rgba(0, 0, 0, 0.7);
    border: 10px solid rgba(255, 255, 255, 0.3);
}
#list-area.listtype-image .list-container li a:hover .list-name > span {
    transition: all 1s cubic-bezier(.19,1,.22,1) 0s;
    margin-top: 0;
    opacity: 1;
}

#list-area.listtype-image .list-container li:hover {
}



@media screen and (max-width: 860px) {
@media all and (orientation: landscape) { 

}
}

@media screen and (max-width: 860px) {
    #list-area.listtype-image li {
        width: 50%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 610px) {
    #map-canvas .gmap-iw .iw-thumb {
        max-width: 150px;
    }

    #list-area .list-head {
        padding-top: 10px;
    }
    #list-area .list-container li {
        border-left: 1px solid #ece8e8;
    }
    #list-area .list-container li:nth-of-type(2n) {
        background: #fff;
    }
    #list-area li .list-inner {
        display: block;
    }
    #list-area li .list-inner > span {
        display: block;
        vertical-align: middle;
        text-align: center;
    }
    #list-area li .list-thumb {
        width: 100%;
    }
    #list-area li .list-name {
        width: 100%;
        padding: 1em 0 0 ! important;
    }
    #list-area li .list-address {
        width: 100%;
        padding: 1em 0 0 ! important;
    }
    #list-area li .list-purpose {
        width: 100%;
        padding: 1em 0 0 ! important;
    }
    #list-area li .list-completed,
    #list-area li .list-available {
        width: 100%;
        padding: 1em 0 ! important;
    }
    #list-area li .list-available span {
        display: inline-block;
    }
/*
    #list-area .list-head li .list-thumb,
    #list-area .list-head li .list-name,
    #list-area .list-head li .list-address {
        display: none;
    }
*/
    #list-area .list-head li .list-inner {
        display: none;
    }
    #list-area .list-container li .list-name::after,
    #list-area .list-container li .list-address::after {
        display: none;
    }
    
    #list-area.listtype-image li .list-inner {
        padding-bottom: 0;
    }
    #list-area.listtype-image li {
        width: 100%;
        margin: 0 auto;
    }
    #list-area.listtype-image .list-container li a:hover .list-thumb img {
        transform: scale(1);
    }
    #list-area.listtype-image .list-container li a:hover .list-name {
        background-color: rgba(0, 0, 0, 0);
        border: none;
    }
    #list-area.listtype-image .list-container li a .list-name > span {
        opacity: 0;
        display: none;
    }

}


@media screen and (max-width: 480px) {
}

@media screen and (max-width: 320px) {
}





