@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');

body{
    margin:0;
    width:100%;
    font-family: 'Noto Sans JP', sans-serif;
    display:flex;
    flex-flow: column;
}

a{
    text-decoration: none;
    color:black;
}

ul {
    list-style: none;
}

.banner{
    position:relative;
    width:100%;
    height: 100px;
    background-color:black;
}

.title{
    font-size: 30px;
    text-align: center;
    letter-spacing:0.5em;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    color:white;
}

.main{
    margin:0 2%;
}

.content-box{
    margin: 10px 0;
}

.content-box-icon {
    text-align: center;
}

.content-box-title{
    text-align: center;
}

.content-box-title h2{
    margin: 0 10px;    
}

.content-box-sentence {
    text-align: center;
}

table{
    margin: 0 auto;
    border-collapse: collapse;
}
table th{
    border: solid 1px;
    background-color: #66FF99;
}

table td{
    border: solid 1px;
}

#head{
    margin-top: 20px;
}

#atention{
    color:red
}

#number-of-use{
    width:100px;
}

#charter{
    width:400px;
}

#weekday, #holiday{
    width:200px;
}

.display-reserve{
    margin:20px 0;
}

.display-reserve p{
    margin: 5px 0;
    text-align: center;
}

.display-reserve-box{
    margin: 0px auto;
    width:70px;
    height: 25px;
    padding: 0.5em 1em;
    border: solid 2px black;/*線*/
    border-radius: 10px;/*角の丸み*/
}

.display-reserve-box:hover{
    background-color: orangered;
}


@media screen and (min-width:1001px){
    .contents-box{
        display: flex; 
        flex-wrap: wrap;
        width: 1000px;
        margin: 0 auto;
    }

    .content-box{
        width:500px;
    }    
}

@media screen and (max-width:1000px){
    .contents-box{
        display: flex; 
        flex-wrap: wrap;
        width: 100%;
        margin: 0 auto;
    }

    .content-box{
        width: 100%;
    }    
}

@media screen and (max-width:500px){
    .contents-box{
        display: flex; 
        flex-wrap: wrap;
        width: 100%;
        margin: 0 auto;
    }
}


@media screen and (min-width:761px){

    .banner{
        margin-top:100px;
    }

    .alternating-list{
        display:flex;
        flex-direction:column;
        margin-top: 50px ;
        width:100%;
    }
    
    .photo-sentence{
        display:flex;
        width:100%;
    }
    
    .small-title{
        display: none;
    }
    
    .photo{
        width:50%;
        height: 100%;
        margin:auto;
    }

    .photo img{
        width:90%;
        height:auto;
        max-height: 100%;
        margin:auto;
    }
    
    .sentence{
        width:50%;
    }
    
    .sentence h1, .sentence p{
        display: block;
        width: 90%;
        margin: 20px auto;
    }


}

@media screen and (max-width:760px){
    
    .banner{
        margin-top:80px;
    }

    .photo-sentence{
        display: flex;
        flex-direction:column;
        margin-bottom:10px;
        width:100%;   
    }
    .small-title{
        text-align: center;
    }

    .big-title{
        display: none;
    }

    .order-sentence{
        order:2;
    }

    .order-photo{
        order:1;
    }

    .photo{
        width:100%;
        height: 100%;
        margin:auto;
    }

    .photo img{
        width:100%;
        height:auto;
        max-height: 100%;
        margin:auto;
    }
    
}

