@charset "utf-8";

/*-----------------
COMMON
-----------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 15px;
	font: inherit;
	vertical-align: baseline;
	font-family: 'Noto Sans JP', sans-serif;
    font-display: swap;
	letter-spacing: 0.25em;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	-webkit-text-size-adjust: none;
    background: #faf9f5;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a{
	text-decoration: none;
	transition: all 0.2s linear;
	-o-transition: all 0.2s linear; /* opera */
	-moz-transition: all 0.2s linear; /* firefox */
	-webkit-transition: all 0.2s linear; /* chrome, safari */
	-ms-transition: all 0.2s linear; /* ie */
}
a img{
	opacity: 1;
	transition: all 0.2s linear;
	-o-transition: all 0.2s linear; /* opera */
	-moz-transition: all 0.2s linear; /* firefox */
	-webkit-transition: all 0.2s linear; /* chrome, safari */
	-ms-transition: all 0.2s linear; /* ie */
}
img {
    -ms-interpolation-mode: bicubic;
}
button,input{
    text-decoration: none;
    color: #000;
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear; /* opera */
    -moz-transition: all 0.2s linear; /* firefox */
    -webkit-transition: all 0.2s linear; /* chrome, safari */
    -ms-transition: all 0.2s linear; /* ie */
}
a:hover{
    cursor: pointer;
}
button:hover{
    cursor: pointer;
}
button:hover{
    opacity: 0.7;
}
input:hover{
    cursor: pointer;
}
a:hover img{
    opacity: 0.7;
}
.wrap{
    opacity: 0;
    transition: all 0.2s linear;
    -o-transition: all 0.2s linear; /* opera */
    -moz-transition: all 0.2s linear; /* firefox */
    -webkit-transition: all 0.2s linear; /* chrome, safari */
    -ms-transition: all 0.2s linear; /* ie */
}
.show{
    animation-name: show;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode:forwards;
}

@keyframes show {
    0% { opacity: 0 }
    100% { opacity: 1 }
}
/*
.fade_off {
    opacity: 0;
    margin: 144px 0 0 0;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -o-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
    transition-timing-function:ease-in;
}

.fade_on {
    margin: 0 0 0 0;
    opacity: 1;
}*/


/*-----------------
header
-----------------*/
header{
    width: 100vw;
    height: 114px;
    margin: 0 auto;
    position: fixed;
    background: rgba(255,255,255,0.92);
    z-index: 9999;
}
#headerNav{
    width: 90vw;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 35px 0 35px;
}
#headerNav > div{
    width: 186px;
    margin: 18px 0 0 -30px;
}
#headerNav > div a{
    display: block;
}
#headerNav > div a img{
    width: 100%;
}
#headerNav > nav{
    display: flex;
    justify-content: space-between;
}
#headerNav > nav > ul{
    display: flex;
    justify-content: space-between;
}
#headerNav > nav > ul:nth-child(1){
    margin: 60px 36px 0 0;
}
#headerNav > nav > ul:nth-child(1) li{
    position: relative;
    padding: 0 0 0 68px;
}
#headerNav > nav > ul:nth-child(1) li:nth-child(1){
    padding: 0 0 0 0;
}
#headerNav > nav > ul:nth-child(1) li:nth-child(1):before{
    content:"";
    width: 24px;
    height: 1px;
    background: #96948e;
    position: absolute;
    right: -44px;
    font-size: 20px;
    top: 10px;
    transform: rotate(-74deg);
}
#headerNav > nav > ul:nth-child(1) li a{
    font-size: 13px;
    color: #000;
    font-weight: 300;
}
#headerNav > nav > ul:nth-child(2){
    padding: 60px 0 0 0;
}
#headerNav > nav > ul:nth-child(2) li{
    position: relative;
    padding: 0 0 0 28px;
}
#headerNav > nav > ul:nth-child(2) li:nth-child(1):before{
    content:"/";
    position: absolute;
    right: -19px;
    font-size: 11px;
    top: -1px;
    color: #96948e;
    font-weight: 300;
}
#headerNav > nav > ul:nth-child(2) li span{
    font-size: 11px;
    font-family: 'Comfortaa', cursive;
    font-weight: 300;
    color: #010101;
    line-height: 1em;
    display: block;
    position: relative;
}
#headerNav > nav > ul:nth-child(2) li span:before{
    content:"";
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background: #af3d3d;
    position: absolute;
    top:17px;
    left: 50%;
    margin: 0 0 0 -4px;
}
#headerNav > nav > ul:nth-child(2) li a{
    font-size: 11px;
    font-family: 'Comfortaa', cursive;
    font-weight: 300;
    color: #010101;
    line-height: 1em;
    display: block;
}
@media screen and (max-width: 880px) {
    header{
        width: 100vw;
        height: 84px;
        margin: 0 auto;
        position: fixed;
        background: rgba(255,255,255,0.92);
        z-index: 9999;
    }
    #headerNav{
        width: 90vw;
        max-width: 1080px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        padding: 0 0 0 0;
    }
    #headerNav > div{
        width: 186px;
        margin: 20px 0 0 0;
    }
    #headerNav > nav{
        display: none;
    }
}

/*
-----------------
hmNav @PC
-----------------
*/
#hmNav{
    display: none;
}
.hmNav{
    display: none;
}

/*
-----------------
hmNav @mobile
-----------------
*/
@media screen and (max-width: 880px) {
    #hmNav{
        opacity: 1.0!important;
    }
    #hmNav,.hamburger__icon,.hamburger__icon:after,.hamburger__icon:before{
        -moz-transition-duration:.4!importants;
        -o-transition-duration:.4!importants;
        -webkit-transition-duration:.4!importants
    }
    .hamburger{
        display:block;
        width:95px;
        height:95px;
        position:fixed;
        top:0;
        right:0;
        z-index:10000;
        -moz-box-sizing:border-box;
        -webkit-box-sizing:border-box;
        box-sizing:border-box;
        -webkit-tap-highlight-color:transparent;
        -ms-touch-action:manipulation;
        touch-action:manipulationl;
    }
    .hamburger:hover{
        opacity: 1;
    }
    .hamburger__icon{
        position:relative;
        margin: 38px 25px 0 0;
    }
    .hamburger__icon:before{
        display:block;
        width:24px;
        height:3px;
        background-color:#af3d3d;
        -moz-transition-property:background-color,-moz-transform;
        -o-transition-property:background-color,-o-transform;
        -webkit-transition-property:background-color,-webkit-transform;
        transition-property:height,width,background-color,transform;
        transition-duration:.4s;
    }
    .hamburger:hover .hamburger__icon:before{
        width:47px;
    }
    .hamburger__icon:after{
        display:block;
        width:47px;
        height:3px;
        background-color:#af3d3d;
        -moz-transition-property:background-color,-moz-transform;
        -o-transition-property:background-color,-o-transform;
        -webkit-transition-property:background-color,-webkit-transform;
        transition-property:height,width,background-color,transform;
        transition-duration:.4s;
    }
    .hamburger__icon:before{
        position:absolute;
        content:"";
    }
    .hamburger__icon:before{
        top:0;
        right: 0;
    }
    .hamburger__icon:after{
        position:absolute;
        content:"";
    }
    .hamburger__icon:after{
        top:10px;
        right: 0;
    }
    .hamburger.active .hamburger__icon:before{
        display:block;
        width:47px;
        height:2px;
    }
    .hamburger.active .hamburger__icon:after{
        display:block;
        width:47px;
        height:2px;
    }
    .hamburger.active .hamburger__icon{
        background-color:transparent
    }
    .hamburger.active .hamburger__icon:before{
        -moz-transform:translateY(0)rotate(-198deg);
        -ms-transform:translateY(0)rotate(-198deg);
        -webkit-transform:translateY(0)rotate(-198deg);
        transform:translateY(0)rotate(-198deg);
        top:7px;

    }
    .hamburger.active .hamburger__icon:after{
        -moz-transform:translateY(0)rotate(198deg);
        -ms-transform:translateY(0)rotate(198deg);
        -webkit-transform:translateY(0)rotate(198deg);
        transform:translateY(0)rotate(198deg);
        top:7px;
        right: 0;
    }
    #hmNav{
        z-index:15000;
        display:none;
        width:100%;
        height: 100vh;
        -moz-transform:scale(1);
        -ms-transform:scale(1);
        -webkit-transform:scale(1);
        transform:scale(1);
        -moz-transition-property:-moz-transform;
        -o-transition-property:-o-transform;
        -webkit-transition-property:-webkit-transform;
        transition-property:transform;
        transition-duration:.4s;
        overflow:hidden;
        -webkit-overflow-scrolling:touch;
        padding: 95px 0 137px 0;
        background: rgba(255,255,255, 0.9);
        margin: -95px 0 0 0;
    }
    .hmNav{
        width: 100vw;
        display: block;
        height: 100vh;
    }
    .hmNav li{
    }
    .hmNav li a{
        width: 90vw;
        max-width: 1010px;
        margin: 0 auto;
        padding: 35px;
        display: block;
        color: #000;
        font-size: 13px;
    }
    .hmNav li a:hover{
        background: #af3d3d;
        color: #fff;
    }
    #hmNav.active{
        -moz-transform:scale(1);
        -ms-transform:scale(1);
        -webkit-transform:scale(1);
        transform:scale(1);
    }

}

/*
-----------------
breadcrumbs @PC
-----------------
*/
#breadcrumbs{
}
#breadcrumbs ul{
    display: flex;
    width: 90vw;
    max-width: 1080px;
    margin: 0 auto;
}
#breadcrumbs ul li a{
    font-size: 11px;
    font-family: 'Comfortaa', cursive;
    font-weight: 300;
    color: #010101;
    line-height: 1em;
    display: block;
    position: relative;
    letter-spacing: 0.33em;
    padding: 0 18px 0 22px;
}
#breadcrumbs ul li a:before{
    content:"〉";
    color: #af3d3d;
    position: absolute;
    top: -1px;
    left: 0;
}
@media screen and (max-width: 720px) {
    #breadcrumbs{
        display: none;
    }
}

/*
-----------------
pagetop @PC
-----------------
*/
#pagetop{
    width: 90vw;
    max-width: 1080px;
    margin: -16px auto 0 auto;
    text-align: right;
}
#pagetop a{
    width: 60px;
    height: 98px;
    background: #af3d3d;
    display:inline-block;
    position: relative;
    z-index: 5;
}
#pagetop a img{
    position: absolute;
    top: 24px;
    left: 27px;
}
#pagetop a:hover img{
    position: absolute;
    top: 14px;
    left: 27px;
    opacity: 1;
}
@media screen and (max-width: 720px) {
    #pagetop{
        width: 90vw;
        max-width: 1080px;
        margin: -16px auto 0 auto;
        text-align: center;
    }
}

/*
-----------------
footer @PC
-----------------
*/
footer{
    width: 100%;
    background: #f3f2eb;

}
footer > div:nth-child(1){
    width: 100%;
    background: #fcfcfc;
    margin: -60px 0 0 0;
    padding: 100px 0 100px 0;
}
footer > div:nth-child(1) ul{
    width: 90vw;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
footer > div:nth-child(1) ul li{
    margin: 0 0 0 92px;
}
footer > div:nth-child(1) ul li:nth-child(1){
    margin: 0;
}
@media screen and (max-width: 720px) {
    footer > div:nth-child(1) ul{
        width: 90vw;
        max-width: 1080px;
        margin: 0 auto;
        padding: 28px 0 0 0;
        display: flex;
        align-items: center;
    }
    footer > div:nth-child(1) ul li{
        width: 35vw;
        padding: 0 5vw 0 5vw;
        margin: 0;
    }
    footer > div:nth-child(1) ul li a{
        display: block;
        text-align: center;
    }
    footer > div:nth-child(1) ul li a img{
        max-width: 100%;
        max-height: 42px;
    }
}



footer > div:nth-child(2){
    width: 90vw;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}
footer > div:nth-child(2) > div:nth-child(1){
    margin: 64px 0 0 0;
    display: flex;
}
footer > div:nth-child(2) > div:nth-child(1) > div:nth-child(1){
    width: 66px;
    margin: 0 20px 0 0;
}
footer > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) img{
    width: 100%;
}
footer > div:nth-child(2) > div:nth-child(1) > div:nth-child(2) p{
    font-size: 14px;
    font-family: 'Comfortaa', cursive;
    font-weight: 300;
    letter-spacing: 0.18em;
    padding: 4px 0 2px 0;
}
footer > div:nth-child(2) > div:nth-child(1) > div:nth-child(2) address{
    font-size: 12px;
    font-weight: 300;
    padding: 3px 0 0 0;
    letter-spacing: 0.12em;
}
footer > div:nth-child(2) > div:nth-child(1) > div:nth-child(3){
    padding: 10px 0 0 0;
}
footer > div:nth-child(2) > div:nth-child(1) > div:nth-child(3) ul{
    display: flex;
}
footer > div:nth-child(2) > div:nth-child(1) > div:nth-child(3) ul li{
    margin: 0 0 0 30px;
}
footer > div:nth-child(2) > div:nth-child(1) > div:nth-child(3) ul li a{
    padding: 3px 0 3px 24px;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.16em;
    color: #010101;
}
footer > div:nth-child(2) > div:nth-child(1) > div:nth-child(3) ul li a:hover{
    color: #96948e;
}
footer > div:nth-child(2) > div:nth-child(1) > div:nth-child(3) ul li:nth-child(1) a{
    background: url(../../img/pin.png) 2px 5px no-repeat;
}
footer > div:nth-child(2) > div:nth-child(1) > div:nth-child(3) ul li:nth-child(2) a{
    background: url(../../img/contact.png) 0 7px no-repeat;
}
footer > div:nth-child(2) > div:nth-child(1) > div:nth-child(3) ul li:nth-child(3) a{
    background: url(../../img/booking.png) 0 7px no-repeat;
}

footer > div:nth-child(2) > div:nth-child(2) address{
    display: flex;
    padding: 62px 0 0 0;
}
footer > div:nth-child(2) > div:nth-child(2) address span{
    font-size: 10px;
    padding: 18px 3px 0 0;
}
footer > div:nth-child(2) > div:nth-child(2) address p{
    font-family: 'EB Garamond', serif;
    font-weight: 400;
    font-size: 34px;
    letter-spacing: 0.075em;
    color: #010101;
}


@media screen and (max-width: 1180px) {
    footer > div:nth-child(2){
        width: 90vw;
        max-width: 1080px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        overflow: hidden;
    }
    footer > div:nth-child(2) > div:nth-child(1) > div:nth-child(3){
        padding: 22px 0 0 0;
        display: none;
    }
}




footer > div:nth-child(3){
    width: 90vw;
    max-width: 1080px;
    margin: 0 auto;
    padding: 70px 0 220px 0;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}
footer > div:nth-child(3) > div:nth-child(1) p{
    font-size: 10px;
    font-family: 'Comfortaa', cursive;
    font-weight: 300;
    color: #010101;
    letter-spacing: 0.33em;
    padding: 6px 0 0 0;
}
footer > div:nth-child(3) > div:nth-child(2) ul{
    display: flex;
    justify-content: space-between;
}
footer > div:nth-child(3) > div:nth-child(2) ul li{
    position: relative;
    padding: 0 0 0 52px;
}
footer > div:nth-child(3) > div:nth-child(2) ul li:nth-child(1){
    padding: 0 0 0 0;
}
footer > div:nth-child(3) > div:nth-child(2) ul li:nth-child(1):before{
    content:"";
    width: 16px;
    height: 1px;
    background: #96948e;
    position: absolute;
    right: -33px;
    top: 10px;
    transform: rotate(-74deg);
}
footer > div:nth-child(3) > div:nth-child(2) ul li:nth-child(2):before{
    content:"";
    width: 16px;
    height: 1px;
    background: #96948e;
    position: absolute;
    right: -33px;
    top: 10px;
    transform: rotate(-74deg);
}
footer > div:nth-child(3) > div:nth-child(2) ul li:nth-child(3):before{
    content:"";
    width: 16px;
    height: 1px;
    background: #96948e;
    position: absolute;
    right: -33px;
    top: 10px;
    transform: rotate(-74deg);
}
footer > div:nth-child(3) > div:nth-child(2) ul li a{
    font-size: 11px;
    color: #000;
    font-weight: 300;
}
footer > div:nth-child(3) > div:nth-child(2) ul li a:hover{
    color: #96948e;
}
@media screen and (max-width: 780px) {

    footer > div:nth-child(2) > div:nth-child(1){
        width: 100%;
        margin: 64px 0 0 0;
        display: flex;
        flex-wrap: wrap;
    }
    footer > div:nth-child(2) > div:nth-child(1) > div:nth-child(1){
        width: 100%;
        margin: 0 0 0 0;
        text-align: center;
    }
    footer > div:nth-child(2) > div:nth-child(1) > div:nth-child(1) img{
        width: 60px;
        margin: 20px auto 20px auto;
    }
    footer > div:nth-child(2) > div:nth-child(1) > div:nth-child(2){
        width: 100%;
    }
    footer > div:nth-child(2) > div:nth-child(1) > div:nth-child(2) p{
        width:100%;
        font-size: 15px;
        font-family: 'Comfortaa', cursive;
        font-weight: 300;
        letter-spacing: 0.48em;
        padding: 5px 0 2px 0;
        text-align: center;
    }
    footer > div:nth-child(2) > div:nth-child(1) > div:nth-child(2) address{
        width: 100%;
        font-size: 12px;
        font-weight: 300;
        padding: 5px 0 0 0;
        letter-spacing: 0.22em;
        text-align: center;
    }

    footer > div:nth-child(2) > div:nth-child(2){
        width: 100%;
    }
    footer > div:nth-child(2) > div:nth-child(2) address{
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 36px 0 0 0;
    }
    footer > div:nth-child(2) > div:nth-child(2) address span{
        font-size: 10px;
        padding: 18px 3px 0 0;
    }
    footer > div:nth-child(2) > div:nth-child(2) address p{
        font-family: 'EB Garamond', serif;
        font-weight: 400;
        font-size: 34px;
        letter-spacing: 0.075em;
        color: #010101;
    }


    footer > div:nth-child(3){
        width: 90vw;
        max-width: 1080px;
        margin: 0 auto;
        padding: 70px 0 220px 0;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    footer > div:nth-child(3) > div:nth-child(1){
        width: 100%;
        order: 2;
    }
    footer > div:nth-child(3) > div:nth-child(2){
        width: 100%;
        order: 1;
    }
    footer > div:nth-child(3) > div:nth-child(2) ul{
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0 0 40px 0;
    }

    footer > div:nth-child(3) > div:nth-child(2) ul li{
        width: 100%;
        position: relative;
        padding: 0 0 40px 0;
        text-align: center;
    }
    footer > div:nth-child(3) > div:nth-child(2) ul li:nth-child(1){
        padding: 0 0 40px 0;
    }
    footer > div:nth-child(3) > div:nth-child(2) ul li:nth-child(1):before{
        content:"";
        width: 16px;
        height: 1px;
        background: none;
        position: absolute;
        right: -33px;
        top: 10px;
        transform: rotate(-74deg);
    }
    footer > div:nth-child(3) > div:nth-child(2) ul li:nth-child(2):before{
        content:"";
        width: 16px;
        height: 1px;
        background: none;
        position: absolute;
        right: -33px;
        top: 10px;
        transform: rotate(-74deg);
    }
    footer > div:nth-child(3) > div:nth-child(2) ul li:nth-child(3):before{
        content:"";
        width: 16px;
        height: 1px;
        background: none;
        position: absolute;
        right: -33px;
        top: 10px;
        transform: rotate(-74deg);
    }
    footer > div:nth-child(3) > div:nth-child(2) ul li a{
        display: inline-block;
        text-align: center;
        font-size: 13px;
        color: #000;
        font-weight: 300;
    }
    footer > div:nth-child(3) > div:nth-child(1) p{
        text-align: center;
    }
}

.splink{
    display: none;
}
@media screen and (max-width: 780px) {
    .splink{
        width: 100%;
        display: block;
        position: fixed;
        bottom: 0;
        z-index: 9999;
    }
    .splink ul{
        width: 100%;
        display: flex;
        justify-content: space-between;
    }
    .splink ul li{
        width: 50%;
    }
    .splink ul li:nth-child(1) a{
        background: #000;
    }
    .splink ul li:nth-child(2) a span{
        padding: 0 0 0 40px;
        display: inline-block;
        background: url(/img/booking-sp.png) 0 50% no-repeat;
        background-size: 16px;
    }
    .splink ul li a{
        display: block;
        background: #af3d3d;
        color: #fff;
        text-align: center;
        padding: 20px 0 20px 0;
        font-size: 14px;
        font-weight: 300;
    }
    .splink ul li a:hover{
        opacity: 0.7;
    }
}






