@charset "utf-8";

/*-----------------------------------
h1
-----------------------------------*/
.h1-wrap{
    margin-bottom: 10px;
    padding: 40px 30px;
    background-color: #0075b6;
    background-image: url(/static/image/top/main-bkg-b.jpg);
    background-position: center 70%;
    background-repeat: no-repeat;
    background-size: cover;
}
h1{
    padding-left: 55px;
    background-image: url(/static/image/icon/parking.png);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 44px auto;
    font-size: 1.6em;
    font-weight: bold;
    color: #FFF;
    line-height: 44px;
}
/*--Large screens only--*/
@media print, screen and (min-width: 1025px){
    .breadcrumbs li{
        position: relative;
        float: left;
        margin-right: 15px;
    }
    .breadcrumbs li:not(:last-child)::after{
        position: absolute;
        content: "";
        top: 50%;
        right: -5px;
        width: 4px;
        height: 4px;
        margin-top: -2px;
        border-top: 1px solid #333;
        border-right: 1px solid #333;
        transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }
    .breadcrumbs a{
        font-size: 0.8em;
        margin-right: 10px;
    }
    /*clear これがSPでも読まれるようにしているとパンくずのスクロールがうまくいかない*/
    .breadcrumbs ul{
        display: block;
        min-height: 1%;
    }
    .breadcrumbs ul:after{
        clear: both;
        content:".";
        display: block;
        height: 0;
        visibility: hidden;
    }
}
/*--Small~Medium screens--*/
@media only screen and (max-width: 1024px){
    .breadcrumbs{
        overflow: hidden;
        margin: 0 -20px;
        border-bottom: 1px solid #CCC;
        background: #FFF;
    }
    .breadcrumbs ul{
        display:table;
    }
    .breadcrumbs li{
        display:table-cell;
        white-space:nowrap;
        font-size: 0.7em;
    }
    .breadcrumbs a{
        position: relative;
        display: block;
        padding:3px 3px 3px 16px;
        text-decoration: none;
        -webkit-transition: 0s;
        -moz-transition: 0s;
        -o-transition: 0s;
        transition: 0s;
    }
    .breadcrumbs li:first-child a{
        padding-left: 5px;
    }
    .breadcrumbs li:last-child{
        padding-left: 16px;
    }
    .breadcrumbs li:last-child a{
        margin-left: -16px;
        padding-right: 8px;
    }
    .breadcrumbs a::after,
    .breadcrumbs a::before{
        content: "";
        position: absolute;
        top: 50%;
        margin-top: -1.5em;
        border-top: 1.5em solid transparent;
        border-bottom: 1.5em solid transparent;
        border-left: 1em solid;
        right: -1em;
        padding-left: 1px;
    }
    .breadcrumbs a::after{
        z-index: 2;
        border-left-color: #FFF;
    }
    .breadcrumbs a::before{
        border-left-color: #CCC;
        right: -1.1em;
        z-index: 1;
    }
    .breadcrumbs a:hover{
        background: #EEE;
    }
    .breadcrumbs a:hover::after{
        border-left-color: #EEE;
    }
    .breadcrumbs li:last-child a::after,
    .breadcrumbs li:last-child a::before{
        content: normal;
    }
}
/*--Medium screens--*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .h1-wrap{
        margin-bottom: 0;
        padding: 20px 0;
    }
    .breadcrumbs{
        margin: 0 -30px ;
    }
}
/*--Small screens--*/
@media only screen and (max-width: 767px){
    .h1-wrap{
        margin-bottom: 0;
        padding: 15px 0;
    }
    h1{
        padding-left: 0;
        background-image: none;
        font-size: 1.2em;
        line-height: 1.5;
    }
}
/*-----------------------------------
parts
-----------------------------------*/
section{
    margin-bottom: 30px;
}
h2{
    margin-bottom: 30px;
    font-size: 1.5em;
    font-weight: bold;
}
h2.normal{
    margin-bottom: 0;
    font-size: 1em;
    font-weight: normal;
}
h3{
    margin-bottom: 20px;
    font-size: 1.1em;
    font-weight: bold;
}
p + h2{
    margin-top: 30px;
}
p + h3{
    margin-top: 20px;
}
p.sup{
    text-indent: -1em;
    padding-left: 1em;
}
#map{
    border: 1px solid #CCC;
}
/*--Medium screens--*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    section{
        margin-bottom: 0;
    }
}
/*--Small screens--*/
@media only screen and (max-width: 767px){
    section{
        margin-bottom: 0;
    }
    h2{
        margin-bottom: 20px;
        font-size: 1.2em;
    }
    p + h2{
        margin-top: 20px;
    }
}
/*-----------------------------------
half
-----------------------------------*/
.half .left-column,
.half .right-column{
    width: 50%;
}
.half .left-column{
    border-right: none;
}
.half .left-column{
    float: left;
    padding-right: 20px;
}
.half .right-column{
    float: right;
    padding-left: 20px;
}
/*--Medium screens--*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .half .left-column,
    .half .right-column{
        float: none;
        width: 100%;
    }
    .half .left-column{
        padding-right: 30px;
    }
    .half .right-column{
        padding-left: 30px;
        padding-bottom: 30px;
    }
}
/*--Small screens--*/
@media only screen and (max-width: 767px){
    .half .left-column,
    .half .right-column{
        float: none;
        width: 100%;
        padding: 10px 0 0;
    }
}
/*-----------------------------------
icon
-----------------------------------*/
ul.icon li{
    float: left;
    margin: 5px 5px 0 0;
    padding: 1px 8px;
    border: 1px solid #0075b6;
    font-size: 0.8em;
    color: #0075b6;
}
 ul.icon li.oneday{
    background: #ff9900;
    border: 1px solid #ff9900;
    color: #FFF;
}
/*--Medium screens--*/
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    ul.icon li{
        font-size: 0.7em;
    }
}
/*--Small screens--*/
@media only screen and (max-width: 767px){
    ul.icon{
        margin: 0 20px;
    }
    ul.icon li{
        font-size: 0.6em;
    }
}
/*-----------------------------------
clear
-----------------------------------*/
.right-column,
ul.icon{
    display: block;
    min-height: 1%;
}

.right-column:after,
ul.icon:after{
    clear: both;
    content:".";
    display: block;
    height: 0;
    visibility: hidden;
}
