@charset "UTF-8";
/*******************************
 
下層共通 StyleCss
 
*******************************/

/*------------------------------

 header

------------------------------*/
/*.page header .logo a{
    opacity: 0;
    visibility: hidden;
}*/
/*メニュー開いている時*/
/*body.menu-open header .logo a{
    opacity: 1;
    visibility: visible;
}*/

/*------------------------------

 #hero 冒頭

------------------------------*/
#hero{
	margin-top: 180px;
	/*margin-bottom: 220px;*/
}
.page-top{
	margin-bottom: 80px;
}
.page-top2{
	margin-bottom: 160px;
}
.page-subtop{
	margin-top: 80px;
}

/*---- #hero page-navi ----*/
#hero .page-navi{
	background-color: #fff;
    border: solid 1px #e5e5e5;
    width: 100%;
    max-width: 650px;
    padding: 10px;
    font-size: 12px;
	border-radius: 4px;
	margin: 0 auto 80px;
}
#hero .page-navi li{
	display: inline-block;
}
#hero .page-navi li:after{
	content: "/";
	font-size: 8px;
	margin: 0 10px;
}
#hero .page-navi li:last-child:after{
	content: none;
}
#hero .page-navi li a{
	font-weight: bold;
    color: #494949;
	letter-spacing: 1px;
}
#hero .page-navi li.active{
	color: #bcbcbc;
	font-weight: bold;
	letter-spacing: 1px;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	#hero{
		margin-top: 110px;
	}
	.page-top{
		margin-bottom: 30px;
	}
	.page-top2{
		margin-bottom: 80px;
	}
	.page-subtop{
		margin-top: 50px;
	}
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	
	
	/*---- #hero page-navi ----*/
	#hero .page-navi{
		width: 90%;
		line-height: 2;
		margin-bottom: 30px;
	}
	#hero .page-navi li {
		margin: 5px 0;
	}
}

/*---------パンくず---------*/
.breadcrumbs{
    text-align: left;
    font-size: 0;
    margin: 12px 0;
}
.breadcrumbs li{
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
}
.breadcrumbs li a{
    color: #8c8c8c;
}
.breadcrumbs li a:after{
    content: "\f105";
    font-family: FontAwesome;
    margin: 12px;
}


/*---------メインコンテンツ---------*/
.contents{
    /*margin-top: 150px;*/
}
.room-slide {
    margin-top: 80px;
}
.enjoy-slide {
    margin: 40px auto 80px;
}
.main_img {
    width: 100%;
    text-align: center;
    margin-top: 80px;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
    .contents{
        /*margin-top: 60px;*/
    }
	.main_img {
		margin-top: 30px;
	}
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    .contents{
       /* margin-top: 40px;*/
    }
	.room-slide {
		margin-top: 30px;
	}
	.enjoy-slide {
		margin: 20px auto 40px;
	}
}

/*------------------------------

btn

------------------------------*/

.btn-link{
    display: block;
	max-width: 316px;
    background-color: #74a599;
    border: solid 1px #74a599;
    border-radius: 4px;
    padding: 18px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: auto;
}
.btn-link:hover{
	color: #74a599;
	background-color: #fff;
	opacity: 1;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	a.btn-link {
		padding: 17px;
		width: 70%;
		margin-top: 30px;
	}
}

/*------------------------------

アコーディオン

------------------------------*/
section .list{
    margin: 80px auto;
}
.detail-box{
    width: 100%;
	max-width: 649px;
	margin-left: auto;
    margin-right: auto;
    border-bottom: solid 1px #b8b8b8;
}
.detail-box:first-child{
	border-top: solid 1px #b8b8b8;
}
.detail-box-ttl {
    font-size: 18px;
    color: #595757;
    padding: 20px 25px 20px 0;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    section .list{
        margin: 40px auto;
    }
	.detail-box{
        width: 85%;
    }
}


/*内容*/
.box-tgl {
    display: none;
	text-align: left;
    border-top: solid 1px #eee;
}
.tgl-btn {
    display: block;
    width: 100%;
    text-align: left;
    cursor: pointer;
    position: relative;
}
.tgl-btn:after {
    content: "＋";
    font-weight: normal;
    font-size: 20px;
    line-height: 1;
    position: absolute;
    right: 0;
    top: 36%;
}
.tgl-btn.active:after {
    content: "ー";
}
.box-tgl .box-flex{
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: flex-start;
    text-align: left;
	justify-content: space-between;
    padding-top: 30px;
}
.box-tgl .box-flex div{
    flex: 1 1 50%;
}
.box-tgl .box-flex .txt{
	flex-basis: 40%;
    margin-right: 15px;
    line-height: 2.5;
    letter-spacing: 1px;
}
.detail{
	text-align: left;
	margin-bottom: 30px;
}
.detail dt{
	float: left;
    width: 20%;
	font-weight: bold;
}
.detail dd{
	margin-left: 20%;
	margin-bottom: 20px;
}
.detail dd:last-child{
	margin-bottom: 0;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	.box-tgl .box-flex{
        display: block;
        margin-bottom: 0;
        padding: 20px 0;
    }
    .box-tgl .box-flex .item{
        padding-right: 0;
    }
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.detail dt{
		width: 100%;
	}
	.detail dd{
		margin-left: 0;
		margin-bottom: 10px;
	}
}
/*------------------------------

Section

------------------------------*/
.sec01{
	width: 649px;
	margin-left: auto;
    margin-right: auto;
	margin-bottom: 170px;
}
.sec-lead{
	text-align: left;
	line-height: 2.3;
	margin: 0 auto;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	.sec01 {
		width: 75%;
	}
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.sec01{
		width: 100%;
		margin-bottom: 80px;
	}
	.sec-lead{
		width: 85%;
	}
}

/*------------------------------

RESERVATION 宿泊予約はこちら

------------------------------*/
.reservation a{
    background: #104243;
}
.reservation{
    width: 80px;
    position: fixed;
    top: 38%;
    left: 0;
    z-index: 90;
    opacity: 0;
    
    -webkit-animation: fadeLeft 1s  ease .5s forwards;
    animation: fadeLeft 1s ease .5s forwards;
}
.reservation a{
	color: #fff;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: .1em;
    padding: 30px 0;
    display: block;
}
.reservation a .ttl,
.reservation a .bstr{
    display: inline-block;
    vertical-align: middle;
}
.reservation a .ttl:before{
    content: "\f073";
    font-family: FontAwesome;
}
.reservation a .ttl .i{
    display: block;
}
.reservation a .ttl .fixed-is-hide{
    display: none;
}
.reservation a .bstr{
    display: none;
    
    color: #e1e2be;
    font-size: 14px;
    font-weight: normal;
    text-decoration: underline;
    margin: 5px;
    letter-spacing: 0;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    .reservation{
        width: 100%;
        bottom: 0;
        top: auto;
        box-shadow:0px -4px 2px 0px rgba(0,0,0,0.1);
        
        -webkit-animation: fadeIn 1s  ease .5s forwards;
        animation: fadeIn 1s ease .5s forwards;
    }
    .reservation a {
		padding: 20px 0;
	}
    .reservation a .ttl .i,
    .reservation a .ttl .fixed-is-hide{
        display: inline;
    }
    .reservation a .ttl:before {
        margin-right: 7px;
    }
    .reservation a .bstr{
        display: inline-block;
    }
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .reservation a {
        font-size: 16px;
	}
    .reservation a .bstr{
        font-size: 12px;
    }
}


@-webkit-keyframes fadeLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-85px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}
@keyframes fadeLeft {
    0% {
        opacity: 0;
        -ms-transform: translateX(-85px);
        transform: translateX(-85px);
    }
    100% {
        opacity: 1;
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
        -webkit-transform: translateY(85px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        -ms-transform: translateY(85px);
        transform: translateY(85px);
    }
    100% {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}