@charset "utf-8";

.ad-top{
    display: none;
}
/*-----------------------------------
map
-----------------------------------*/
.map-frame{
    position: relative;
    overflow: hidden;
}
#map{
    margin-top: 10px;
}
/*--Large screens only--*/
@media print, screen and (min-width: 1025px){
    #map,
    #map iframe{
        height: 100vh !important;
    }    
}
/*--Small~Medium screens--*/
@media only screen and (max-width: 1024px){
    #map{
        margin: 0 auto 20px;
        border: none;
        border-bottom: 1px solid #CCC;
    }
}
/*-----------------------------------
center-address
-----------------------------------*/
.center-address{
    height: 40px;
    padding: 0 20px;
    line-height: 40px;
    z-index: 100;
}
.center-address em,
.center-address span{
    font-weight: bold;
    font-size: 1.1em;
}
/*--Large screens only--*/
@media print, screen and (min-width: 1025px){
    .center-address{
        position: absolute;
        top: 11px;
        right: 0;
        background-color: rgba(255, 255, 255, 0.95);
    }
}
/*--Small screens--*/
@media only screen and (max-width: 767px){
    .center-address{
        padding: 0 10px;
    }
    .center-address p{
        font-size: 0.8em;
    }
}
/*-----------------------------------
search
-----------------------------------*/
.area-search{
    padding: 5px 15px 15px;
    background-color: rgba(43, 41, 38, 0.95);
    font-size: 0.9em;
    text-align: center;
    color: #FFF;
}
.area-search p{
    margin-bottom: 5px;
}
.area-search form{
    position: relative;
}
.area-search input[type="text"]{
    width: 100%;
    padding: 8px 50px 8px 15px;
    background-color: #f3f5f7;
    border: none;
    border-radius: 50px;
    font-family: "游ゴシック","YuGothic","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ ProN","メイリオ","Meiryo","sans-serif";
}
.area-search input[type="image"]{
    position: absolute;
    content: "";
    width: 20px;
    top: 50%;
    right: 30px;
    margin-top: 0px;
}
/*--Large screens--*/
@media print, screen and (min-width: 768px){
    .area-search{
        position: absolute;
        z-index: 400;
        top: 10px;
        left: 0;
        border-radius: 0 0 10px 0
    }
}
/*--Medium screens--*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .area-search{
        top: 40px;
        width: 300px;
        padding-top: 15px;
    }
    .area-search input[type="image"]{
        margin-top: -10px;
    }
}
/*--Small screens--*/
@media only screen and (max-width: 767px){
    .area-search{
        padding: 15px 10px;
    }
    .area-search p{
        display: none;
    }
    .area-search input[type="text"]{
        height: 40px;
        line-height: 40px;
    }
    .area-search input[type="image"]{
        top: 75px;
        margin-top: -10px;
    }
}

/*-----------------------------------
detail
-----------------------------------*/
.detail-trigger{
    position: absolute;
    top: 50px;
    right: 20px;
}/*後で消す*/
.detail{
    position: absolute;
    z-index: 500;
    top: 60px;
    right: -401px;
    width: 400px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 0 0 0 10px;
    font-size: 0.9em;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.detail.open{
    right: 1px;
}
.detail .close{
    display: none;
    position: absolute;
    top: 0;
    left: -40px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px 0 0 10px;
    cursor: pointer;
}
.detail.open .close{
    display: block;
}
.detail.open .close::before,
.detail.open .close::after{
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 3px;
    height: 20px;
    margin-top: -10px;
    margin-left: -2px;
    background-color: #333;
    border-radius: 20px;
}
.detail.open .close::before{
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.detail.open .close::after{
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.detail p.name{
    font-size: 1.2em;
    font-weight: bold;
}
.detail ul.icon{
    margin: 0 0 10px;
}
.detail ul.icon li{
    padding: 0 3px;
    font-size: 0.75em;
}
table{
    width: 100%;
    border-top: 1px solid #CCC;
}
th{
    text-align: left;
    vertical-align: top;
}
th,td{
    padding: 5px 10px;
    border-bottom: 1px solid #CCC;
}
tr:nth-child(odd) th,
tr:nth-child(odd) td{
    background-color: #f3f5f7;
}
.action ul{
    width: 100%;
    margin-top: 10px;
}
.action li.view-detail{
    float: left;
    width: 48%;
}
.action li.my-list{
    float: right;
    width: 48%;
}
.action li a{
    display: block;
    padding: 3px 5px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
}
.action li.view-detail a{
    background-color: #0fa37b;
    color: #FFF;
}
.action li.my-list a{
    background-color: #0075b6;
    color: #FFF;
    -webkit-transition: none;
    transition: none;
}
.action li.my-list a.remove{
    background-color: #BBB;
}
.action li.my-list a.preloader{
    background-image: url(/static/image/common/preloader.png);
    background-position: center center;
    background-repeat: no-repeat;
}
/*--Medium screens--*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .detail{
        top: 50px;
        right: -400px;
        font-size: 0.8em;
    }
    .detail.open{
        right: 0px;
    }
}
/*--Small screens--*/
@media only screen and (max-width: 767px){
    .detail-trigger{
        position: absolute;
        top: 80px;
        right: 20px;
    }
    .detail{
        top: 110px;
        right: -300px;
        width: 300px;
        font-size: 0.8em;
    }
    .detail.open{
        right: 0px;
    }
    th,td{
        padding: 2px 8px;
    }
}
/*-----------------------------------
monthly_parkings
-----------------------------------*/
.monthly_parkings{
    margin-bottom: 15px;
    padding: 30px;
    background-color: #f3f5f7;
    border-radius: 10px;
    text-align: left;
}
.monthly_parkings p#address{
    text-align: center;
}
.monthly_parkings p#address em{
    margin-right: 5px;
    font-weight: bold;
}
.monthly_parkings p.link a{
    display: block;
    margin: 5px auto 10px;
    padding: 5px 10px;
    background-color: #52c357;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    color: #FFF;
}
.monthly_parkings p.link a img{
    width: 26px;
    margin-right: 5px;
    vertical-align: -8px;
}
/*--Medium screens--*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .monthly_parkings{
        margin-bottom: 20px;
    }
}
/*--Small screens--*/
@media only screen and (max-width: 767px){
    .monthly_parkings{
        margin-bottom: 20px;
        padding: 20px;
    }
}
/*-----------------------------------
ad
-----------------------------------*/
.ban li{
    text-align: center;
}
/*--Large screens--*/
@media print, screen and (min-width: 768px){
    .ban li{
        float: left;
    }
    .ban li.mp{
        width: 68%;
    }
    .ban li.ad-ban{
        width: 30%;
    }
    /*.ban li.mp{
        width: 444px;
    }
    .ban li.ad-ban{
        width: 300px;
    }
    .ban li.ads_pc{
        width: 336px;
    }*/
    .ban li:not(:last-child){
        margin-right: 2%;
    }
    .ban li li{
        float: none;
        width: 100%;
        margin-right: 0;
    }
    .ban li li:not(:last-child){
        margin-bottom: 15px;
    }
}
/*--Medium screens--*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .one-column{
        margin-top: 0;
    }
    .one-column .ad li:last-child{
        margin-bottom: 0;
    }
    .ban li.mp{
        width: 65%;
        margin-right: 3%;
    }
    .ban li.ad-ban{
        width: 32%;
        margin-right: 0;
    }
}
/*--Small screens--*/
@media only screen and (max-width: 767px){
    .one-column{
        padding: 0;
    }
    .ban li li{
        margin-bottom: 20px;
    }
}
/*-----------------------------------
clear
-----------------------------------*/
.action ul,
ul.ban{
    display: block;
    min-height: 1%;
}
.action ul:after,
ul.ban:after{
    clear: both;
    content:".";
    display: block;
    height: 0;
    visibility: hidden;
}
