@charset "shift-js";

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　　全体設計
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
html{
    font-size:100%;
}
    
body{
    background-color:white;
    font-family:Verdana,sans-serif;
    margin:0;
    width:100%;
    
}
    

a{
   text-decoration:none;
}


img{
    max-width:100%;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　　big-bg
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.big-bg{
    background-image:url(../img/1-main.jpg);
    height:600px;
    background-size: cover;
    background-position:center;
    background-repeat:no-repeat;
   
    
}


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　　header
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
header{
    background-color:black;
    opacity:0.8;
    font-weight:normal;
    height:60px;
    width:100%;
    position:fixed;
    top:0;
    right:0;
    z-index:10; 
}

header a{
    color:white;
    display:block;
}
.header-innner{
    width:960px;
    height:60px;
    margin:0 auto;
    line-height:60px;
}

.header-innner h1{
    float:left;
    margin:0;
    font-weight:normal;
}
nav{
    float:right;
}
nav ul{
    margin:0;
}
nav ul li {
    list-style: none;
    display:inline-block;
    font-size:20px;
    padding-left:20px;
}


nav ul li a:hover{
    color:gray;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　header小さい画面のとき
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.toggle{
    display: none;
    width: 42px;
    cursor: pointer;
    z-index: 3;
    float:right;
    height: 60px;
}

.toggle span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 3px white;
    -webkit-transition: .25s ease-in-out;	
    /*変化の速度を指定*/
    -moz-transition: .25s ease-in-out;		
    /*変化の速度を指定*/
    transition: .25s ease-in-out;			
    /*変化の速度を指定*/
}
 
.toggle span:nth-child(1) {
    top: 20px;
}
 
.toggle span:nth-child(2) {
    top: 29px;
}
 
.toggle span:nth-child(3) {
    top: 38px;
}
 
/* 最初のspanをマイナス45度に */
.toggle.active span:nth-child(1) {
    top: 29px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.toggle.active span:nth-child(2),
.toggle.active span:nth-child(3) {
    top: 29px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}


.nav_active{
    transform: translateY(-200%); 
    /*ナビを上に隠す*/
}
.nav_active ul{
    margin:0;
    padding:0;
}
.nav_active ul li {
    list-style: none;
    display:block;
    font-size:20px;
    background-color:black;
    opacity:0.7;
    padding:10px;
    text-align:right;
    width:100%;
}
.nav_active ul li a{
    width:500px;
    margin:0 auto;
}
.nav_active ul li a:hover{
    color:gray;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　　body-wrapper
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.body-wrapper{
    width:960px;
    margin:0 auto;
    padding:0.4%;
    height:100%;
}




/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　　homecontent
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

#house-name{
    font-size:50px;
    color:white;
    border:5px solid white;
    font-weight: normal;
    padding:10px 20px;
    text-shadow:0 0 3px black;
    
    position: relative;
    top:50%;
    left:50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    text-align: center;

    display:none;
    

    
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　　content
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.content{
    width:960px;
    height:auto;
    margin:80px auto 50px auto;
   
}
.content h2{
    margin:0;
    padding:50px 0;
    font-size:30px;
    font-weight:normal;
}
.cansel{
    padding:20px;
    box-shadow:0 0 5px rgba(70, 69, 69, 0.397);
    background-color: rgba(235, 231, 231, 0.692);

}
.content h3{
    font-weight:normal;
    margin:0 0 10px 0;
}
.content ul{
    font-size:15px;
    list-style: inside;
    margin:0;
    padding:0;
}
.content p{
    margin:0;
    font-size:15px;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　　introduce
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


.introduce h3{
    font-size :40px;
    font-weight:normal;
    text-align:center;
    padding:20px 0;
}
.words{
    width:500px;
    float:left;
    margin:40px 30px 0 120px;
}
.introduce img{ 
    width:20%;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　rooms&facirity
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.sub-title{
    background-color:rgb(243, 236, 226);
    height:70px;
    text-align:center;
    margin:70px 0 20px 0;
   
    
}
.sub-title h2{
    font-size:30px;
    padding:0;
    line-height:70px;
    font-weight: normal;

}
.rooms-wrapper{
    display:flex;
    justify-content:space-between;
}
.room{
    width:31%;
    height:auto;
    box-shadow:0 0 5px rgba(70, 69, 69, 0.397);
    background-color: rgba(235, 231, 231, 0.692);
}

.room-type{
    font-size:20px;
    text-align:center;
    font-weight:normal;
}

.room:hover {
	transform: scale(1.07);	/*画像の拡大率*/
    transition-duration: 0.3s;	/*変化に掛かる時間*/
}    

.room-info{
    padding:20px 10px;
}
.room table{
    margin-bottom: 10px;
}

.price{
    text-align:right;
}
.attention{
    text-align:center;
    padding:30px;
}
.btn-warpper{
    text-align:center;
    margin:70px auto;
    }
    
.btn-reservation{
    display:inline-block;
    color:#fff;
    background:rgba(31, 30, 30, 0.699);
    font-size:20px;
    border-radius:10px;
    padding:10px 50px;
    box-shadow:0 0 20px rgba(31, 30, 30, 0.397);
}
.btn-reservation:hover{
    box-shadow:none;
}

.facirity-wrapper{
    display:flex;
    justify-content:space-between;    
}
.facirity{
    width:48%;
    height:auto;
    box-shadow:0 0 5px rgba(70, 69, 69, 0.397);
    background-color: rgba(235, 231, 231, 0.692);
    padding-bottom:20px;
}

.facirity-name{
    font-size:20px;
    text-align:center;
    font-weight:normal;
}
.facirity-icon {
    display: flex;
    justify-content: center;
    padding:20px 10px;
    margin:0 auto;
}
.facirity-icon img{
    width:10%;
    height:50px;
    padding-right:10px;
}
.facirity p{
    padding:0px 10px;
}
.fees{
    display:flex;
    justify-content:center;
    padding:0 10px 20px 10px;
    margin:0 auto;
   
   
}
.fee{
    width:80px;
    
}
.fee img{
    width:60%;
    height:60%;
}
.fee p{
    padding:0;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　   　　infomation
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.info-upper{
    display:flex;
    justify-content:space-between;

}
.time{
    margin:auto auto;
}
.time p{
    font-size:20px;
}
.family-img{
    box-shadow:0 0 5px rgba(70, 69, 69, 0.397);
    width:50%;

}
.info-middle{
    display:flex;
    justify-content:space-between;
    height:auto;
    padding:10px 30px;

}
.icon{
    width:10%;
}

.icon p{
    display:block;
    text-align:center;
    margin:0;
}

.info-lower{
    background-color: rgba(248, 246, 246, 0.692);
    padding:20px 10px;
}

#accordion{
    max-width: 700px;
    height: auto;
    margin:0 auto;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　　calender
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.calender{
    width:960px;
    height:auto;
    margin:30px auto;
}    

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　　maps
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.maps-wrapper{
    display:flex;
    justify-content:space-between;
    box-shadow:0 0 5px rgba(70, 69, 69, 0.397);
    background-color: rgba(235, 231, 231, 0.692);
}
.date{
    padding:10px;
    width:22%;
}
.date h3{
    border-bottom:1px solid gray;
    margin-bottom:10px;
    margin-top:0;
}
.date p{
    margin:0;
}

.map{
    width:74%;
    height:auto;
    margin:0 auto;
    padding:10px;
}
iframe{
    width:100%;

}

.transfar{
    margin:50px auto;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　　contactform
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.contactform{
    box-shadow:0 0 5px rgba(70, 69, 69, 0.397);
    background-color: rgba(235, 231, 231, 0.692);
    width:600px;
    height:auto;
    font-size:20px;
    margin:0px auto 60px auto;
    padding:30px;
}   
 


input{
    border:none;
    border-bottom:1px solid #d1d1d1;
    font-size:.8em;
    width: 100%;
    padding:4px;
    margin:5px 0 10px 0;
}

textarea{
    font-size:1em;
    width: 100%;
    padding:4px;
    height:200px;
    margin:5px 0 10px 0;
    font-size:.8em;
}

.submit{
    text-align:center;
    margin:20px 0;
}
button{
    color:#fff;
    background:rgba(31, 30, 30, 0.699);
    font-size:20px;
    border-radius:3px;
    padding:10px 50px;
    box-shadow:5px 5px 5px rgba(70, 69, 69, 0.397);
    border:none;
    width:50%;
    margin:0 auto;
}

button:hover{
    color:rgb(185, 184, 184);
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　　TOPに戻るボダン
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
#back-top{
    display: block;
    height: 51px;
    width:51px;
    z-index:50;
    position: fixed;
    bottom:51px;
    right: 51px;
    border-radius: 50%;
    box-shadow:0 0 3px gray;
    display: none;
  
 
 }
 #back-top span{
     background-image: url(../img/btn_top.png);
     width:51px;
     height: 51px;
     display: block;
     background-position:center;
     background-repeat:no-repeat;
 }
 #back-top:hover {
    box-shadow:0 0 5px black;
 }


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　　　　　　fotter
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
footer{
    width:100%;
}
.footer1{
    padding:10px 0;
    background-color: black;
    opacity:0.7;
    color:white;
    margin:0;
}
.footer-innner{
    width:960px;
    margin:0 auto;
}
.footer1 h5{
    font-weight:normal;
    font-size:25px;
    margin:0;
    padding-bottom:10px;
}
.footer1 p{
    margin:0;
}
.footer2{
    background-color:black;
    opacity:0.9;
    height:40px;
    width:100%;
    text-align:center;
}
.footer2 p{
    font-size:20px;
    margin:0;
    line-height:40px;
    color:gray;
}



    /* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
    　--------responsive-------
    ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */


    /* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
    　　　　　　ipad-size
    ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
    @media(max-width:960px){
        *{
            box-sizing:border-box;
        }

    /*----------header共通----------*/
        .big-bg{
        height:400px;
        }
        .header{
            width:100%;
        }

        .header-innner{
            width:500px;
        }
        .header-innner h1{
        font-size:20px;
        display:block;
        padding:0 20px;
        }
        nav{
            display:none;
        }
        .toggle{
            display: block;
        }  
        .nav_active.active{
            transform: translateY(0%);
        }
    /*---------- index.html----------*/
        .body-wrapper{
            width:500px;
        }
        .homecontent h2{
            font-size:40px;
            font-weight:normal;
        }
        .content{
            width:500px; 
        }
        .words{
            width:500px;
            clear:left;
            margin:30px;
        }
        .introduce img{ 
            width:50%;
            display:block;
            margin:0 auto;
        }
        .rooms-wrapper{
            flex-direction: column;
        }
        .room{
            width:90%;
            margin:20px auto;
        }
        .room:hover {
            transform:none;	
        }    
        .facirity-wrapper{
            flex-direction: column;   
        }
        .facirity{
            width:90%;
            margin:20px auto;
        }
        .fee img{
            height:30%;
        }
        .info-upper{
            flex-direction: column;  
        }
        .family-img{
            width:90%;
            margin:20px auto;
        }
        .info-middle .info-lower{
            width:90%;
            margin:0 auto;
        }


    /*---------- booking.html----------*/
        .calender{
            width:500px;
        }    

    /*----------access.html----------*/
        .maps-wrapper{
            flex-direction: column;   
            width:100%;
        }
        .date{
            width:100%;
        }
        .date h3{
            padding:10px 0;
        }
        .map{
            width:100%;
        }

    /*----------contact.html----------*/
        .contactform{
            width:500px;
        }   

    /*----------footer共通----------*/
        .footer-innner{
            width:500px;
        }   
    

        #back-top{
            position: fixed;
            bottom:30px;
            right: 20px;
        }
    }

    /* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
    　　 　　　　mobile-size
    ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
    @media(max-width:600px){
    /*----------header共通----------*/
        .big-bg{
            height:400px;
            margin:0 auto;
        }
        .header-innner{
            width:350px;
        }
        .nav_active ul li a{
            width:350px;
        }
        #house-name {
            font-size:30px;
        }
    /*---------- index.html----------*/
        .body-wrapper{
            width:350px;
        }
        .content{
            width:350px; 
        }
        .words{
            width:350px;
            margin:10px 0 50px 0;
        }
        .introduce h3 {
            font-size:30px;
        }
        .facirity-icon img{
            width:12%;
            height:40px;
        }
        .fee img{
            height:30px;
        }
        .content p{
            padding:0 14px;
            font-size:14px;
        }
        .infomation .info-middle .icon {
            width:16%;
        }
        .infomation .info-middle .icon p{
            display:none;
        }

    /*---------- booking.html----------*/
        .calender{
            width:350px;
        }    

    /*----------access.html----------*/


    /*----------contact.html----------*/
        .contactform{
            width:350px;
            padding:5px;
        }   

    /*----------footer共通----------*/
        .footer-innner{
            width:350px;
            padding:10px;
        }   
        footer h5{
            font-size:13px;
        }
        footer p{
            font-size:12px;
        }

    }


