@charset "UTF-8";
/*------------------------------
 
HeaderCss
 
------------------------------*/
header{
    height: 100px;
}
header .logo .name,
header.hide .logo .name{
    color: #fff;
    letter-spacing: .1em;
}

header.scroll .logo .name,
header.hide .logo .name{
    visibility: visible;
    font-size: 10px;
    position: fixed;
    top: 45%;
    right: -20px;
    z-index: 90;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
header.fixed .logo .name {
    opacity: 0;
    -webkit-animation: fadeOut .3s  ease;
    animation: fadeOut .3s ease;
}
header.scroll .logo .name {
    color: #595757;
    opacity: 1;
    -webkit-animation: fade .3s  ease;
    animation: fade .3s ease;
}

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


/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    header{
        height: 58px;
    }
    header.scroll .logo .name,
    header.hide .logo .name{
        display: none;
    }
}

/*------------------------------
 
FooterCss
 
------------------------------*/
footer .reservation{
    display: none;
}

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

 #hero メインイメージ

------------------------------*/
#hero{
    height: 90vh;
    min-height: 660px;
    max-height: 860px;
    overflow: hidden;
    position: relative;
    /*margin-bottom: 40px;*/
    margin-top: 100px;
    margin-bottom: 90px;
    padding-bottom: 93px;
    
    background: #fff;
}
#hero .slide{
	position: relative;
    height: 100%;
}
#hero .slide .item{
    height: 100%;
    position: relative;
}
#hero .slide .item:nth-of-type(1){
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    
    -webkit-animation: fadeOut 1s ease 5s forwards;
    animation: fadeOut 1s ease 5s forwards;
}
#hero .slide .item:nth-of-type(2){
    opacity:0;
    -webkit-animation: fade 1s ease 5s forwards;
    animation: fade .5s ease 5s forwards;
}

#hero .slide .item div{
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}
#hero .slide .item .swiper-fade{
    width: 25%;
    height: 33.333%;
    position: absolute;
}
#hero .slide .item .swiper-fade:nth-of-type(1){ width: 50%; height: 66.666%; top: 0; left: 0; }
#hero .slide .item .swiper-fade:nth-of-type(2){ width: 50%; top: 0; right: 0; }
#hero .slide .item .swiper-fade:nth-of-type(3){ top: 33.333%; left: 50%; }
#hero .slide .item .swiper-fade:nth-of-type(4){ top: 33.333%; right: 0; }
#hero .slide .item .swiper-fade:nth-of-type(5){ bottom: 0; left: 0; }
#hero .slide .item .swiper-fade:nth-of-type(6){ width: 50%; bottom: 0; left: 25%; }
#hero .slide .item .swiper-fade:nth-of-type(7){ bottom: 0; right: 0; }

#hero .txt {
    position: absolute;
    top: 34%;
	left: 0;
	right: 0;
    margin: auto;
    z-index: 10;
    text-align: center;
	color: #fff;
	font-size: 16px;
	text-shadow: 1px 2px 6px #252525;
}
#hero .txt p{
    margin: auto;
	line-height: 2.5;
}
#hero .txt p.catch{
	font-size: 36px;
	line-height: 1.4;
	margin-bottom: 30px;
	letter-spacing: 4px;
}
#hero .name{
    font-size: 10px;
    color: #fff;
    position: absolute;
    top: 50%;
    right: -20px;
    z-index: 1;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    #hero{
        min-height: 500px;
        max-height: 50vh;
        margin-bottom: 20px;
        margin-top: 58px;
    }
	#hero .txt {
    	top: 31%;
	}
	#hero .txt p {
		line-height: 2;
	}
    #hero .name{
        display: none;
    }
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    #hero{
        min-height: 350px;
        padding-bottom: 92px;
    }
	#hero .txt {
		top: 16%;
		font-size: 12px;
	}
	#hero .txt p.catch {
		font-size: 22px;
		margin-bottom: 20px;
        letter-spacing: normal;
        line-height: 2;
	}
}
/*------------------------------

RESERVATION 宿泊予約はこちら

------------------------------*/
.reservation a{
    background: #104243;
}
.reservation{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 90;
    opacity: 0;
    
    -webkit-animation: fadeIn 1s ease-in-out .5s forwards;
    animation: fadeIn 1s ease-in-out .5s forwards;
}
.reservation a{
	color: #fff;
    font-size: 20px;
    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;
    margin-right: 7px;
}
.reservation a .bstr{
    color: #e1e2be;
    font-size: 14px;
    font-weight: normal;
    text-decoration: underline;
    margin: 5px;
    letter-spacing: 0;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .reservation a {
        font-size: 16px;
		padding: 20px 0;
	}
    .reservation a .bstr{
        font-size: 12px;
    }
}

/*固定の時*/
.reservation.fixed{
    position: fixed;
    -webkit-animation: fadeLeft 1s  ease .5s forwards;
    animation: fadeLeft 1s ease .5s forwards;
    
    width: 80px;
    bottom: auto;
    top: 38%;
}
.reservation.fixed a{
    font-size: 18px;
}
.reservation.fixed a .ttl:before{
    margin-right: 0;
}
.reservation.fixed a .ttl .i{
    display: block;
}
.reservation.fixed a .ttl .fixed-is-hide{
    display: none;
}
.reservation.fixed a .bstr{
    display: none;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    .reservation.fixed{
        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.fixed a .ttl .i,
    .reservation.fixed a .ttl .fixed-is-hide{
        display: inline;
    }
    .reservation.fixed a .ttl:before {
        margin-right: 7px;
    }
    .reservation.fixed a .bstr{
        display: inline-block;
    }
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .reservation.fixed a{
        font-size: 16px;
    }
}


@-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);
    }
}

@-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);
    }
}

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

SECTION 共通

------------------------------*/
.bg-op{
    background-color: rgba(255,255,255,0.95);
	width: 400px;
    padding: 50px;
	margin-bottom: 220px;
}
.lead{
	text-align: left;
    color: #252525;
	margin-bottom: 30px;
}
.bg-img{
	z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.lead .lead-ttl{
	margin-bottom: 20px;
}
.lead p{
	line-height: 2.5;
}
.en-italic-short{
	font-style: italic;
    font-size: 14px;
	display: flex;
	align-items: center;
	margin: 0 15%;
}
.en-italic-short:before, .en-italic-short:after{
	content: "";
	flex-grow: 1;
	height: 1px;
	background: #595757;
	display: inline-block;
}
.en-italic-short:before{
	margin-right: 30px;
}
.en-italic-short:after{
	margin-left: 30px;
}
.sec-img{
	width: 100%;
    max-width: none;
	margin-top: 120px;
	margin-bottom: 50px;
}
.btn-link{
	color: #74a599;
    font-weight: bold;
    padding: 20px;
    width: 300px;
    border: solid 1px #74A599;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
    letter-spacing: 2px;
}
.btn-link:hover{
	color: #fff;
	background-color: #74a599;
	opacity: 1;
}
.arrow-link{
	color: #74a599;
	font-weight: bold;
	letter-spacing: 2px;
}
.arrow-link:after{
	content: "→";
	display: inline-block;
	margin-left: 5px;
}

.flex-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
	.sec-img{
		margin-top: 50px;
	}
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
	.lead {
		width: 400px;
        margin: 0 auto;
	}
	.lead .lead-ttl {
		font-size: 18px;
		margin-bottom: 30px;
	}
	.lead p {
		line-height: 2;
	}
	.en-italic, section .lead h2 .en-italic {
		margin: 0 30%;
		font-size: 12px;
	}
	.en-italic:before{
		margin-right: 10px;
	}
	.en-italic:after{
		margin-left: 10px;
	}
	a.btn-link {
		padding: 17px;
		width: 35%;
	}
	section .bg-op {
		background-color: rgba(255,255,255,0);
		width: 100%;
		padding: 0;
		margin: 0 auto;
	}
	.bg-img {
		position: static;
		margin: 30px 0;
	}
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
	.sec-img {
		margin-top: 30px;
		margin-bottom: 20px;
	}
    
    .lead {
	    width: 85%;
	}
    
	a.btn-link {
		width: 65%;
	}
}


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

BANNER バナー

------------------------------*/
.banner {
	margin-bottom: 80px;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    .banner {
        width: 90%;
        margin: 0 auto 60px;
    }
}



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

NEWS 新着情報

------------------------------*/
.news{
    background: #e6ebec;
    padding: 80px 0;
}
.news .tabs{
    width: 85%;
	max-width: 1400px;
    margin: 40px auto;
    overflow: hidden;
}
.news .list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    
    text-align: left;
    margin-right: -20px;
}
.news .list li{
    width: 25%;
    
	margin: 30px 0 0;
    padding-right: 20px;
}
.news .list li a{
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
}
.news .list .img{
    max-height: 220px;
    overflow: hidden;
}
.news .list .img img{
    width: 100%;
    max-width: none;
}
.news .list .txt {
    padding: 20px;
}
.news .list .txt time{
    margin-right: 5px;
}
.news .list .txt .cate {
    display: inline-block;
	border: solid 1px #a0a0a0;
    border-radius: 3px;
    color: #a0a0a0;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 20px;
    text-align: center;
}
.news .list .txt .comment {
	margin-top: 10px;
    font-weight: bold;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    .news .tabs{
		width: 85%;
	}
    .news .list li{
        width: 50%;
    }
    .news .list .img{
        height: auto;
    }
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .news .list{
        margin-right: 0;
    }
    .news .list li{
        width: 100%;
        padding-right: 0;
    }
}


/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}
/*選択されているタブのコンテンツのみを表示*/
.tab_content{ display: none; }
#all:checked ~ #all_content,
#news:checked ~ #news_content,
#event:checked ~ #event_content,
#campaign:checked ~ #campaign_content{
  display: block;
}

/*タブボタンStyle*/
.tabs .tab_item{
    width: 25%;
    border: solid 1px #414141;
    border-left: none;
    float: left;
    cursor: pointer;
    padding: 10px;
}
.tabs .tab_item:nth-of-type(1){
    border-left: solid 1px #414141;
}
.tab_content{
    clear: both;
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .tabs .tab_item{
        width: 50%;
    }
    .tabs .tab_item:nth-of-type(odd){
        border-left: solid 1px #414141;
    }
    .tabs .tab_item:nth-of-type(1),
    .tabs .tab_item:nth-of-type(2){
        border-bottom: none;
    }
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
    background: #414141;
    color: #fff;
}


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

attraction 魅力

------------------------------*/
.attraction .photo{
    margin: 0 0 60px;
    position: relative;
}
.attraction .photo:after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: -moz-linear-gradient(bottom, rgba(249,249,248,0) 10%, rgba(249,249,248,1) 80%);
    background: -webkit-linear-gradient(bottom, rgba(249,249,248,0) 10%,rgba(249,249,248,1) 80%);
    background: linear-gradient(to top, rgba(249,249,248,0) 10%,rgba(249,249,248,1) 80%);
}
.attraction .photo img{
    width: 100%;
    max-width: none;
}

.attraction .box-link{
    max-width: 1400px;
    margin: 60px auto;
    overflow: hidden;
}
.attraction .box-link ul{
    margin-right: -30px;
}
.attraction .box-link li{
    padding-right: 30px;
}
.attraction .box-link li:nth-of-type(1){
    margin-top: 30px;
}
.attraction .box-link li:nth-of-type(even){
    margin-top: 90px;
}
.attraction .box-link figure{
    margin: 0;
    position: relative;
}
.attraction .box-link figcaption{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    align-items: center;
}
.attraction .box-link figcaption p{
    min-width: 160px;
    background: rgba(255,255,255,.8);
    padding: 20px;
}

.attraction .box-flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
}
.attraction .box-flex .item{
    width: 25%;
}

/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
    .attraction .box-link{
        width: 85%;
    }
    .attraction .box-link ul{
        margin-right: -20px;
    }
    .attraction .box-link li{
        padding-right: 20px;
    }
    .attraction .box-link li:nth-of-type(1){
        margin-top: 0;
    }
    .attraction .box-link li:nth-of-type(even){
        margin-top: 40px;
    }
    .attraction .box-flex .item{
        width: 50%;
    }
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .attraction .box-link{
        width: 100%;
    }
    .attraction .box-link ul{
        margin-right: -10px;
    }
    .attraction .box-link li{
        padding-right: 10px;
    }
    .attraction .box-link li:nth-of-type(even){
        margin-top: 0;
    }
    .attraction .box-flex .item{
        margin-bottom: 10px;
    }
    .attraction .box-link figcaption {
        align-items: baseline;
        margin-top: 10px;
    }
    .attraction .box-link figcaption p {
        padding: 10px;
    }
}


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

group グループ紹介

------------------------------*/
.group {
    width: 85%;
    max-width: 988px;
    margin: 0 auto;
    overflow: hidden;
}
.group .box-link{
    margin: 40px 0 0;
}

.group .flex-box{
    justify-content: center;
    margin-right: -20px;
}
.group .flex-box .item{
    width: 33.333%;
    padding-right: 20px;
}
.group .flex-box .item figure{
    margin: 0;
}
.group .flex-box .item figcaption{
    margin: 10px 0;
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .group .flex-box{
        margin-right: 0;
    }
    .group .flex-box .item{
        width: 100%;
        margin-bottom: 15px;
        padding-right: 0;
    }
}


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

アニメーション

------------------------------*/
@-webkit-keyframes fade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes fade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@-webkit-keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}