/* ------------------------------------------------------------------------
    Header
------------------------------------------------------------------------  */
header {
    position: absolute;
    left: 0;
    top: 0;
    box-sizing: border-box;
    
    padding-left: 20px;
    
    padding-top: 20px;
    padding-bottom: 20px;
    
    z-index: 15;
    
    transition: all .8s;
}
@media screen and (min-width:769px){
    header {
        position: fixed;
        padding-left: 2.5%;
        
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

/* Logo */
header .Logo {
    display: flex;
    align-items: center;
}
header .Logo img{
    max-width: 110px;
}
@media screen and (max-width:768px){
	header .Logo {
	}
}
@media screen and (min-width:769px){
	header .Logo {
	}
	header .Logo img{
        max-width: 170px;
	}
}

/********** Contents **********/

/* ------------------------------------------------------------------------
    HAMBURGER
------------------------------------------------------------------------  */
#HAMBURGER {
    position: fixed;
    right: 20px;
    top: 18px;
    
	cursor: pointer;
	display: flex;
	align-items: center;
	
	width: 50px;
	height: 50px;
    background: rgba(0,0,0,.2);
    border: 1px solid #fff;
    box-sizing: border-box;
    border-radius: 5px;
    
    z-index: 200;
}
#HAMBURGER span{
	display: block;
	position: absolute;
	left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) rotate(0deg);
	width: 28px;
	height: 3px;
	background: #fff;
    transition: all .3s;
}
#HAMBURGER span:nth-child(1){
    margin-top: -10px;
}
#HAMBURGER span:nth-child(2){
}
#HAMBURGER span:nth-child(3){
    margin-top: 10px;
}
@media screen and (min-width:769px){
	#HAMBURGER {
        display: none;
	}
}

/********** is-Open **********/
#HAMBURGER.is-open {
    background: rgba(255,255,255,1);
}
#HAMBURGER.is-open span{
    background: #333;
}
#HAMBURGER.is-open span:nth-child(1){
    margin-top: 0;
    transform: translate(-50%,-50%) rotate(45deg);
}
#HAMBURGER.is-open span:nth-child(2){
    opacity: 0;
}
#HAMBURGER.is-open span:nth-child(3){
    margin-top: 0;
    transform: translate(-50%,-50%) rotate(-45deg);
}

/* ------------------------------------------------------------------------
    NAVIGATION
------------------------------------------------------------------------  */
nav {
}
nav.is-open {
}
.Nav_Wrap {
}
@media screen and (min-width:769px){
    .Nav_Wrap {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        display: flex;
        justify-content: flex-end;
        z-index: 10;
        box-sizing: border-box;
        padding-right: 20px;
        padding-right: 2.5%;
        height: 130px;
        align-items: center;
        
        transition: .3s;
    }
    .Nav_Wrap.Scrl {
        /*
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
        */
        background: rgba(0,0,0,.3);
    }
}


/* SP */
@media screen and (max-width:768px){
    nav {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        opacity: 0;
	    transition: opacity .4s;
        background: #F6F2EE;
        
        z-index: 100;
    }
    nav.is-open {
	    opacity: 1;
	    pointer-events: auto;
    }
    
    /* container */
    nav .Nav_Container {
        width: 100%;
        height: calc(100% - 85px);
        box-sizing: border-box;
        padding-left: 25px;
        padding-right: 25px;
        padding-bottom: 45px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Logo */
    nav .Logo {
        height: 85px;
        display: flex;
        align-items: center;
        padding-left: 20px;
    }
    nav .Logo img{
        max-width: 110px;
    }
    
	/* menu */
	nav ul{
	}
	nav ul li {
	}
	nav ul li:last-child {
	}
    nav ul li a{
        position: relative;
        width: 100%;
        padding-top: 1em;
        padding-bottom: 1em;
        border-bottom: 1px solid #B3B0A8;
    }
    nav ul li a:after{
        position: absolute;
        right: 15px;
        top: 50%;
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        border-top: 1.5px solid #54565A;
        border-right: 1.5px solid #54565A;
        transform: rotate(45deg) translateY(-50%);
    }
    nav ul li a span{
        font-size: 12px;
    }
    /* Main Nav */
    nav ul.Main_Nav {
        border-top: 1px solid #B3B0A8;
    }
    /* Social */
    nav .Nav_Container .Social {
        display: flex;
        justify-content: center;
        column-gap: 10px;
        margin-top: 30px;
    }
    nav .Nav_Container .Social a{
        width: 80px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    nav .Nav_Container .Social a.insta img{
        max-width: 32px;
    }
    nav .Nav_Container .Social a.tw img{
        max-width: 33px;
    }
    nav .Nav_Container .Social a.fb img{
        max-width: 16.7px;
    }
}
/* PC */
@media screen and (min-width:769px){
	/* menu */
	nav ul{
        display: inline-flex;
	}
	nav ul li{
	}
    nav ul li:not(:last-child){
        margin-right: 2em;
        margin-left: auto;
    }
    nav ul li a {
        position: relative;
        font-size: 1.4rem;
        color: #fff;
        font-weight: 300;
    }
	nav ul li a:after{
		position: absolute;
		left: 0;
		bottom: -10px;
		transform: scale(0,1);
		content: '';
		width: 100%;
		height: 1px;
		background: #fff;
		transition: all .3s;
	}
	nav ul li a.current:after,
    nav ul li a:hover:after{
		transform: scale(1,1);
	}
    nav ul li a.current {
        pointer-events: none;
    }
    
    /* display none */
    nav .Logo,
    nav ul li a span,
    nav .Nav_Container .Social {
        display: none;
    }
}
/* for 1366 */
@media only screen and (min-width: 769px) and (max-width: 1366px) {
    /* menu */
	nav ul{
        display: flex;
	}
    nav ul.Main_Nav {
        margin-bottom: 1em;
    }
}
@media screen and (min-width:1367px){
    /* Main */
    nav ul.Main_Nav {
        padding-right: 2em;
        margin-right: 2em;
        border-right: 1px solid #fff;
    }
}

/* ------------------------------------------------------------------------
    Page Title
------------------------------------------------------------------------  */
#PAGE_TITLE {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#PAGE_TITLE.News {
    height: 250px;
}
#PAGE_TITLE .Title_Container{
    text-align: center;
    color: #fff;
}
/* Title */
#PAGE_TITLE .Title_Container h2{
    font-size: 2.428em;
    margin-bottom: 15px;
}
#PAGE_TITLE .Title_Container p{
    font-size: 1.1rem;
    font-weight: 500;
}
@media screen and (min-width:769px){
    #PAGE_TITLE {
        height: 520px;
    }
    #PAGE_TITLE.News {
        height: 350px;
    }
    /* Title */
    #PAGE_TITLE .Title_Container h2{
        font-size: 3.125em;
        margin-bottom: 20px;
    }
    #PAGE_TITLE .Title_Container p{
        font-size: 1.3rem;
    }
}

/* BG IMAGE */
#PAGE_TITLE:after,
#PAGE_TITLE:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
}
#PAGE_TITLE:after {
    background: rgba(0,0,0,.3);
    z-index: -4;
}
#PAGE_TITLE:before {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    z-index: -5;
}
#PAGE_TITLE.Farm:before {background-image: url("../images/mv_image04_sp.jpg");}
#PAGE_TITLE.Beach:before {background-image: url("../images/mv_image02_sp.jpg");}
#PAGE_TITLE.Island:before {background-image: url("../images/mv_image03_sp.jpg");}
#PAGE_TITLE.News:before {background-image: url("../images/news_mv_sp.jpg");}
#PAGE_TITLE.Sauna:before {background-image: url("../images/sauna_mv_sp.jpg");}
#PAGE_TITLE.Food:before {background-image: url("../images/food_mv_sp.jpg");}
#PAGE_TITLE.Wedding:before {background-image: url("../images/wedding_mv_sp.jpg");}
#PAGE_TITLE.Party:before {background-image: url("../images/party_mv_sp.jpg");}
/* Wedding / Party */
#PAGE_TITLE.Wedding:before,
#PAGE_TITLE.Party:before,
#PAGE_TITLE.Wedding:after,
#PAGE_TITLE.Party:after{
    height: 120%;
}
@media screen and (min-width:769px){
    #PAGE_TITLE.Farm:before {background-image: url("../images/mv_image04_pc.jpg");}
    #PAGE_TITLE.Beach:before {background-image: url("../images/mv_image02_pc.jpg");}
    #PAGE_TITLE.Island:before {background-image: url("../images/mv_image03_pc.jpg");}
    #PAGE_TITLE.News:before {background-image: url("../images/news_mv_pc.jpg");}
    #PAGE_TITLE.Sauna:before {background-image: url("../images/sauna_mv_pc.jpg");}
    #PAGE_TITLE.Food:before {background-image: url("../images/food_mv_pc.jpg");}
    #PAGE_TITLE.Wedding:before {background-image: url("../images/wedding_mv_pc.jpg");}
    #PAGE_TITLE.Party:before {background-image: url("../images/party_mv_pc.jpg");}
    /* Wedding / Party */
    #PAGE_TITLE.Wedding:before,
    #PAGE_TITLE.Party:before,
    #PAGE_TITLE.Wedding:after,
    #PAGE_TITLE.Party:after{
        height: 125%;
    }
}


/* Image Text */
.Image_Text {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #fff;
    font-size: 1.1rem;
    
    z-index: 5;
}
@media screen and (min-width:769px){
    .Image_Text {
        right: 35px;
        bottom: 20px;
        font-size: 1.4rem;
    }
    #MV .Image_Text {
        right: 40px;
        bottom: 30px;
    }
}

/* ------------------------------------------------------------------------
    Main
------------------------------------------------------------------------  */
main {
	position: relative;
}
@media screen and (min-width:769px){
	main {
	}
}

/* ------------------------------------------------------------------------
    Side Reserve
------------------------------------------------------------------------  */
#SIDE_RESERVE a{
    position: fixed;
    top: 50vh;
    right: 0;
    margin-top: -55px;
    
    background: #CE5D51;
    width: 44px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    border-radius: 5px 0 0 5px;
    z-index: 100;
}
#SIDE_RESERVE a span{
    position: relative;
    padding-top: 30px;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    color: #fff;
}
#SIDE_RESERVE a span:before{
    position: absolute;
    left: 50%;
    top:0;
    transform: translateX(-50%);
    content: '';
    width: 21px;
    height: 22px;
    background-image: url("../images/icon_calendar.svg");
    background-repeat: repeat;
    background-size: cover;
}
@media screen and (min-width:769px){
    #SIDE_RESERVE a{
        width: 50px;
        height: 140px;
        margin-top: -70px;
    }
    #SIDE_RESERVE a span{
        padding-top: 35px;
    }
}

/* ------------------------------------------------------------------------
    Footer
------------------------------------------------------------------------  */
/* base */
footer{
    position: relative;
    background: #DFECF2;
    
    padding-top: 30px;
    padding-bottom: 30px;
}
footer:before{
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    height: 0;
    width: 100%;
    z-index: -3;
    
    background-image: url("../images/wave_ft_sp.svg");
    padding-bottom: 12.6%;
    margin-top: -12.6%;
}
@media screen and (min-width:769px){
    footer{
        padding-top: 120px;
        padding-bottom: 70px;
    }
    footer:before{
        background-image: url("../images/wave_ft_pc.svg");
        padding-bottom: 4%;
        margin-top: -4%;
    }
}
footer .container{
    text-align: center;
    padding: 0;
}
/* Logo */
footer .container .FT_Logo {
    display: inline-block;
    margin-bottom: 50px;
}
footer .container .FT_Logo img{
    max-width: 130px;
}
@media screen and (min-width:769px){
    /* Logo */
	footer .container .FT_Logo{
        margin-bottom: 60px;
	}
    footer .container .FT_Logo img{
        max-width: 180px;
    }
}

/* Link */
footer .container .FT_Link{
    margin-bottom: 40px;
}
footer .container .FT_Link a{
    color: #333;
    font-size: 1.3rem;
}
footer .container .FT_Link a span{
}
/* Main Link */
footer .container .FT_Link .Main_Link{
}
/* Sub Link */
footer .container .FT_Link .Sub_Link{
    text-align: center;
}
footer .container .FT_Link .Sub_Link li{
    display: inline-block;
}
@media screen and (max-width:768px){
    footer .container .FT_Link a{
        line-height: 2em;
    }
    /* Main Link */
    footer .container .FT_Link .Main_Link{
        margin-bottom: 1.5em;
    }
    footer .container .FT_Link .Main_Link li:not(:last-child){
        margin-bottom: 1em;
    }
    /* Sub Link */
    footer .container .FT_Link .Sub_Link a{
        padding-left: 1em;
        padding-right: 1em;
        margin-bottom: 1em;
    }
}
@media screen and (min-width:769px){
    /* Link */
    footer .container .FT_Link{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 60px;
    }
    footer .container .FT_Link a{
        font-size: 1.5rem;
        font-weight: 500;
        color: #666;
    }
    footer .container .FT_Link a span{
        display: none;
    }
    /* Main Link */
    footer .container .FT_Link .Main_Link{
        display: inline-flex;
    }
    footer .container .FT_Link .Main_Link li{
        margin-right: 2em;
    }
    /* Sub Link */
    footer .container .FT_Link .Sub_Link a:not(:last-child){
        margin-right: 2em;
    }
    footer .container .FT_Link .Sub_Link br{
        display: none;
    }
}
/* for 1366 */
@media only screen and (min-width: 769px) and (max-width: 1366px) {
    /* menu */
    footer .container .FT_Link .Main_Link{
        margin-bottom: 20px;
    }
}
@media screen and (min-width:1225px){
    footer .container .FT_Link .Main_Link {
        position: relative;
        margin-right: 2em;
    }
    footer .container .FT_Link .Main_Link:after {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        content: '';
        width: 1px;
        height: 1em;
        background: #666;
    }
}

/* Social */
footer .container .Social{
    display: flex;
    justify-content: center;
    column-gap: 40px;
    margin-bottom: 50px;
}
@media screen and (min-width:769px){
    /* Socail */
	footer .container .Social{
        column-gap: 50px;
        margin-bottom: 30px;
	}
    footer .container .Social a{
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    footer .container .Social a.insta img{
        max-width: 32px;
    }
    footer .container .Social a.tw img{
        max-width: 33px;
    }
    footer .container .Social a.fb img{
        max-width: 16.7px;
    }
}

/* Copy */
footer .container .Copy{
    text-align: center;
    font-size: .85em;
}
@media screen and (min-width:769px){
    footer .container .Copy{
        font-size: 1.3rem;
    }
}



