@charset "utf-8";
/* CSS Document */

/*===========================================
                    common
============================================*/
body{
    font-family:a-otf-futo-min-a101-pr6n,"游明朝","Yu Mincho",YuMincho,serif;
    font-size:14px;
    line-height: 1.6;
    color:#B3B9C0;
    background-color:#050927;
}
p{
    line-break: strict;
}
a{
    text-decoration: none;
}
.btn,.description{
    font-family:"游ゴシック","Yu Gothic",YuGothic,sans-serif;
    font-weight:500;
}
img{
    vertical-align: bottom;
}
section img{
    width:100%;
    box-shadow:0 0 20px 0 #053a5d;
}
.start {
	height: 100%;
	width: 100%;
	background: #050927;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9000;
}
.start p {
	width: 150px;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: none;
	z-index: 9999;
}
/*===========================================
                    ヘッダー
============================================*/
/*ナビメニュー*/
.gnav{
    opacity:0;
    visibility: hidden;
    padding-top:50px;
    position:fixed;
    width:100%;
    height:100vh;
    z-index:1000;
    background-color:rgba(5,9,39,0.9);
    text-align:center;
    transition:all 0.6s ease;
}
.gnav.show{
    opacity:1;
    visibility: visible;
}
.header-logo{
    width:75px;
    height:auto;
    margin:0 auto 20px;
}
.header-logo a{
    display:block;
}
.gnav .menu{
    width:50%;
    margin:0 auto;
}
.gnav .menu a{
    color:#B3B9C0;
    font-size:20px;
    display:block;
    padding:20px ;
    white-space: nowrap;
}
.gnav .menu a:hover{
    color:#fff;
}

/*ハンバーガーボタン*/
.burger{
    background-color:transparent;
    width:40px;
    height:16px;
    border:none;
    position:fixed;
    top:20px;
    right:20px;
    z-index: 1001;
    cursor:pointer;
}
.burger span{
    display: block;
    width:100%;
    height:2px;
    background-color:#fff;
    position:absolute;
    transition: .5s;
}
.burger span:nth-child(1){
    top:0;
}
.burger span:nth-child(2){
    top:0;
    bottom:0;
    margin:auto;
}
.burger span:nth-child(3){
    bottom:0;
}
.burger.show span:nth-child(1){
    transform: rotate(45deg) translateY(10px);
    transform-origin: center;
}
.burger.show span:nth-child(2){
    opacity:0;
}
.burger.show span:nth-child(3){
    transform: rotate(-45deg) translateY(-10px);
}
.header-search{
    width:80%;
    max-width:420px;
    text-align: center;
    margin:20px auto 40px;
}
.header-search a{
    display:block;
    padding:10px 0;
    color:#050927;
    background-color:#c1a970;
    font-size:20px;
    transition:all 0.6s ease;
}
.header-search a:hover,.footer-search a:hover{
    background-color:#F8F9EA;
}
.header-reservation{
    width:80%;
    max-width:420px;
    text-align: center;
    margin-right:auto;
    margin-left:auto;
}
.header-reservation a{
    display:block;
    padding:10px 0;
    color:#fff;
    background-color:#053a5d;
    font-size:20px;
    transition:all 0.6s ease;
}
.header-reservation a:hover{
    background-color:#3D7193;
}
/*===========================================
            　　ヒーロー領域
============================================*/
.hero-container{
    width:100%;
    height:100vh;
    position:relative;
	/*scroll-snap-align: start;*/
}
.logo{
    position:absolute;
    z-index:100;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
.logo img{
    width:150px;
    height:auto;
}
.slider img{
    width:100%;
    height:100vh;
    object-position:center center;
    object-fit:cover;
    transform: scale(1.0);
    transition:6s ease-in-out;
}
.slider .slick-active img{
    transform: scale(1.1);
}
/*スクロール*/
.scroll{
	position:absolute;
	left:50%;
	bottom:0;
}
.scrollbar{
	position:absolute;
	bottom:0;
	width:1px;
	height:80px;
	background-color:rgba(0,0,0,0.3);
	overflow: hidden;
}
.scrolltxt{
    font-family:"游ゴシック","Yu Gothic",YuGothic,sans-serif;
    font-size:14px;
	color:rgba(255,255,255,0.8);
	position:absolute;
	bottom:90px;
	left:-1.25em;
}
.scrollbar::after{
	content:"";
	position:absolute;
	bottom:0;
	width:1px;
	height:90px;
    background:rgba(255,255,255,0.8);
	animation: scrollmove 2.5s infinite;
}
@keyframes scrollmove{
	0%{
		transform: translate3d(0,-100%,0)
	}
	50%{
		transform: translate3d(0,0,0)
	}
	60%{
		transform: translate3d(0,0,0)
	}
	100%{
		transform: translate3d(0,100%,0)
	}
}

/*===========================================
            　コンセプト領域
============================================*/
.concept{
    color:#fff;
    height:100vh;
    background-image:url("../img/sea2.jpg");
    background-size:cover;
    background-position: center center;
    text-align:center;
    display:flex;
    justify-content: center;
    align-items: center;
	position:relative;
	/*scroll-snap-align: start;*/
}
.concept-contents{
    padding:0 20px;
}
.concept h2{
   font-size:24px;
    letter-spacing: 0.15em;
}
.concept-txt{
    letter-spacing: 0.1em;
    line-height: 2;
    margin-top:60px;
    margin-bottom:60px;
}
.concept .btn{
    width:100%;
    max-width:350px;
    margin:0 auto;
    border:1px solid #fff;
    background-color:rgba(255,255,255,0.1);
    box-sizing: border-box;
    transition:all 0.8s ease;
}
.concept .btn a{
    padding:12px 0;
    display:block;
    font-size:16px;
    color:#fff;
}
.concept .btn:hover{
    background-color:rgba(89,122,140,0.8);
    box-shadow: 0 0 20px 0 rgb(89,122,140);
}
/*===========================================
                メイン領域
============================================*/
/*main{
	scroll-snap-type: y mandatory;
	overflow: auto;
	height:100vh;
}*/
/*フェードインアニメ*/
.fadeIn{
    opacity:0;
    transform: translateY(50px);
}
.up{
    animation: fadeInUp 3s forwards;
}
@keyframes fadeInUp{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}
/*セクション間余白*/
.stay,.relaxed,.dining{
    text-align:center;
    margin-top:100px;
}
.access{
    margin:100px 0;
    padding-right:20px;
    padding-left:20px;
}
/*コンテンツ左右余白*/
.message-container{
    padding-right:20px;
    padding-left:20px;
}
/*画像装飾*/
.img-decoration{
    display:none;
}
/*見出しスタイル*/
.heading{
	text-align: center;
    font-size:16px;
    color:#356a8d;
	letter-spacing: 0.05em;
    position:relative;
    margin-top:40px;
    margin-bottom:45px;
}
.heading::after{
    position:absolute;
    bottom:-5px;
    left:calc(50% - 10px);
    content:"";
    display:inline-block;
    width:20px;
    height:3px;
    background-color:#053a5d;
}
/*コンテンツテキスト*/
.heading-message{
    font-size:22px;
    letter-spacing: 0.05em;
    margin-bottom:40px;
}
.heading-txt{
    margin-bottom:40px;
    letter-spacing: 0.1em;
}
/*詳細ボタン*/
.see-more{
    width:50%;
    max-width:250px;
    margin:0 auto;
    position:relative;
    cursor:pointer;
}
.see-more a{
    color:#c1a970;
    border:1px solid #c1a970;
    line-height:3em;
    display:block;
    position:relative;
    z-index:-1;
    transition:all 0.8s ease;
}
.see-more:hover a{
    box-shadow: 0 0 10px 0 #c1a970;
}
.see-more a::after{
    content:"";
    display: inline-block;
    width:5px;
    height:5px;
    border-top:1px solid #c1a970;
    border-right:1px solid #c1a970;
    transform: rotate(45deg);
    position: absolute;
    right:15px;
    top:1.25em;
}
.see-more span{
    position:relative;
    display:block;
    width:100%;
    height:100%;
}
.see-more::before,.see-more::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    background-color:#c1a970;
    transition:all 0.6s ease;
}
.see-more span::before,.see-more span::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    background-color:#c1a970;
    transition:all 0.6s ease;
}
.see-more::before{
    height:0%;
    width:2px;
}
.see-more::after{
    height:2px;
    width:0%;
}
.see-more span::before{
    height:0%;
    width:2px;
}
.see-more span::after{
    height:2px;
    width:0%;
}
.see-more:hover::before{
    height:100%;
}
.see-more:hover::after{
    width:100%;
}
.see-more span:hover::before{
    height:100%;
}
.see-more span:hover::after{
    width:100%;
}
/*stayセクション*/
.stay-detail{
    padding-right:20px;
    padding-left:20px;
}
.stay-detail-img{
    display:flex;
	align-items:  flex-start;
}
.stay-detail-img img{
    width:calc(50% - 10px);
    height:auto;
}
.stay-detail-img img:first-child{
    margin-right:20px;
}
.stay-detail-description{
    margin-top:40px;
    margin-bottom:40px;
    margin-left:auto;
    margin-right:auto;
    width:85%;
    text-align: justify;
    letter-spacing: 0.05em;
}
/*accessセクション*/
.map{
    height:0;
    position:relative;
    padding-top:66.66%;
}
iframe{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
	max-width:1200px;
    max-height:800px;
    box-shadow:0 0 20px 0 #053a5d;
}
.access-detail{
    margin:20px 0 10px;
}
.access-detail dt{
    letter-spacing: 1px;
    display: inline-block;
    border-bottom:3px solid #053a5d;
    margin-bottom:3px;
}
.access-detail dd{
    margin-bottom:10px;
}
/*===========================================
                フッター領域
============================================*/
footer{
    background-color:#053a5d;
    padding:40px 20px 20px;
    position: relative;
}
.page-top{
	background:none;
	border:none;
	position:absolute;
	top:-10px;
	right:-20px;
	transform: rotate(90deg);
	color:#fff;
	padding-left:40px;
	cursor: pointer;
}
.page-top::before{
	content:"";
	display: block;
	width:10px;
	height:10px;
	border-left:1px solid #fff;
	position:absolute;
	left:3px;
	bottom:-10px;
	transform-origin:top right;
	transform: rotate(45deg);
	transition: all 0.5s;
}
.page-top::after{
	content:"";
	display: block;
	height:1px;
	width:100px;
	background-color:#fff;
	position:absolute;
	left:0px;
	transition: all 0.5s;
}
.page-top:hover::before{
	left:-12px;
}
.page-top:hover::after{
	left:-15px;
}
.footer-logo{
    width:125px;
    height:auto;
    margin:0 auto 40px;
}
.footer-logo a{
    display: inline-block;
    height:100%;
    width:100%;
}
.footer-nav{
    width:200px;
    margin:0 auto 40px;
}
.footer-nav li{
    border-bottom:1px solid #B3B9C0;
    margin-bottom:20px;
    padding-bottom:5px;
}
.footer-nav li a{
    color:#CDDBEB;
    font-size:16px;
    margin-left:10px;
}
.footer-nav li a:hover{
    color:#fff;
}
.sns-icons{
    display: flex;
    justify-content: space-between;
    width:180px;
    margin:0 auto 40px;
}
.sns{
    color:#CDDBEB;
    font-size:22px;
}
.sns:hover{
    color:#fff;
}
.footer-search{
    width:100%;
    max-width:420px;
    text-align: center;
    margin-bottom:30px;
    margin-right:auto;
    margin-left:auto;
}
.footer-search a{
    display:block;
    padding:10px 0;
    color:#050927;
    background-color:#c1a970;
    font-size:20px;
    transition:all 0.6s ease;
}
.footer-reservation{
    width:100%;
    max-width:420px;
    text-align: center;
    margin-right:auto;
    margin-left:auto;
}
.footer-reservation a{
    display:block;
    padding:10px 0;
    color:#fff;
    background-color:#195E8B;
    font-size:20px;
    transition:all 0.6s ease;
}
.footer-reservation a:hover{
    background-color:#3A86B7;
}
.copylight{
    color:#CDDBEB;
    font-size:12px;
    text-align:center;
    margin-top:60px;
}
/*===========================================
                pcデザイン
============================================*/
@media screen and (min-width: 768px){
    body{
        font-size:16px;
    }
    /*ヘッダー領域*/
    .gnav{
        opacity:1;
        visibility: visible;
        background:linear-gradient(rgba(0,50,100,0.3),rgba(0,0,0,0));
        display:flex;
        justify-content: space-between;
        padding:20px;
        height:auto;
        box-sizing: border-box;
        position:absolute;
    }
    .gnav.fixed{
    top: 0;
    position: fixed;
    animation: top-fadein 1s;
}
@keyframes top-fadein{
        0%{
            opacity: 0;
            transform: translateY(-50px);
        }
        100%{
            opacity: 1;
            transform: translateY(0);
        }
}
    .header-logo{
        margin:0;
    }
    .gnav ul{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .gnav .menu{
        margin-right:20px;
        width:inherit;
    }
    .gnav .menu a{
        font-size:15px;
        color:#fff;
        padding:0;
        transition:all 1s;
    }
.gnav .menu a:hover{
        text-shadow: #FFF9BB 1px 1px 20px,#FFF9BB 1px -1px 20px,#FFF9BB -1px 1px 20px,#FFF9BB -1px -1px 20px;
    }
    .header-search{
        width:100%;
        margin:0 20px 0 0;
    }
    .header-reservation{
        width:100%;
        margin:0;
    }
    .header-search a,.header-reservation a{
        padding:13px 20px;
        font-size:15px;
    }
    .burger{
        display:none;
    }
    /*コンセプト領域*/
    .concept h2{
        font-size:32px;
    }
    .concept-txt{
        margin-top:40px;
    }
    /*メイン領域*/
    .stay, .relaxed, .dining{
		text-align: start;
        margin-top:200px;
    }
    .access{
        margin:200px 0;
    }
    .col2{
        display:flex;
    }
    .section-col2,.section-col2-even{
        display: flex;
		align-items: center;
    }
    .section-col2{
        flex-flow: row-reverse;
    }
    .img-box{
        flex-basis: 60%;
		position:relative;
    }
	.img-box .img-decoration{
		display:block;
		width:97.22%;
		height:83.33%;
		box-shadow:0 0 20px 0 #053a5d; 
		position:absolute;
		background-color:#053A5D;
		z-index:-10;
	}
	.stay .img-box .img-decoration,.dining .img-box .img-decoration{
		bottom:-3.33vw;
		left:-16.66vw;
	}
	.relaxed .img-box .img-decoration{
		bottom:-3.33vw;
		right:-16.66vw;
	}
	.stay-detail .img-decoration{
		display:block;
		width:91.66%;
		height:16.66%;
		box-shadow:0 0 20px 0 #053a5d; 
		position:absolute;
		bottom:8.33vw;
		left:0;
		background-color:#053A5D;
		z-index:-10;
	}
    .message-container{
        flex-basis: 40%;
		max-width:336px;
		margin:0 auto;
    }
	.see-more{
		max-width:initial;
		width:100%;
		text-align: center;
	}
	.heading{
		margin-bottom:90px;
	}
	section:not(.access) .heading{
		text-align: start;
	}
	.heading::after{
		bottom:-10px;
	}
	section:not(.access) .heading::after{
		left:0;
	}
	.heading-message{
		font-size:26px;
		margin-bottom:80px;
	}
	.heading-txt{
		margin-bottom:80px;
	}
	.heading-txt br{
		display:none;
	}
    /*stay*/
    .stay-detail{
        margin-top:120px;
        padding:0;
		align-items: center;
    }
    .stay-detail-img{
        flex-flow: column;
        width:50%;
    }
	.stay-detail-img img:first-child{
        margin-right:auto;
		margin-bottom:20px;
    }
    .stay-detail-img img{
        margin:0 auto;
    }
    .stay-detail-txt{
		max-width:336px;
		margin-left:30px;
    }
	.stay-detail-description{
		margin:0 0 60px 0;
		width:100%;
	}
	/*access*/
	.access-container{
		max-width:840px;
		margin:0 auto;
	}
	.map{
		height:420px;
		padding-top:0;
	}
	.access-detail{
		margin:60px 0 20px;
	}
	/*フッター領域*/
    .page-top{
        position:fixed;
        top:auto;
        bottom:10vh;
        right:-20px;
    }
	.footer-logo{
		margin:0 auto 60px;
	}
	.footer-col2-box{
		max-width:1200px;
		margin:0 auto;
		display: flex;
	}
	.footer-nav{
		width:50%;
		margin:0;
	}
	.footer-nav ul{
		max-width:273px;
		margin:0 auto;
	}
	.footer-btns{
		width:50%;
	}
	.footer-search{
		max-width:350px;
		margin-bottom:60px;
	}
	.footer-reservation{
		max-width:350px;
	}
	.footer-nav li{
		margin-bottom:40px;
	}
	.footer-nav li:last-child{
		margin-bottom:0;
	}
	.sns-icons{
		margin:0 auto 60px;
	}
	.copylight{
		margin-top:100px;
	}
}
@media screen and (min-width: 900px){
    .gnav .menu{
        margin-right:40px;
    }
}
@media screen and (min-width:1060px){
    .heading-message{
        white-space: nowrap;
    }
}
/*===========================================
                icomoon
============================================*/
@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?a8epdz');
  src:  url('fonts/icomoon.eot?a8epdz#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?a8epdz') format('truetype'),
    url('fonts/icomoon.woff?a8epdz') format('woff'),
    url('fonts/icomoon.svg?a8epdz#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-facebook:before {
  content: "\ea90";
}
.icon-instagram:before {
  content: "\ea92";
}
.icon-twitter:before {
  content: "\ea96";
}
