@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans|Noto+Serif');
@import url('https://fonts.googleapis.com/css?family=Lato:400,900');

/*  ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
共通
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------  */
body {
    color: #281e1b;
    /* 文字色 */
    font-family: 'Noto Sans', sans-serif !important;
    font-size: 13px;
    letter-spacing: 0.08em;
    line-height: 1.8;
}

a {
    color: #281e1b;
    /* リンクカラー */
}

#page-top a {
    color: #393e4f;
    /* ページトップリンクカラー */
    z-index: 9999;
}

.btn {
    position: relative;
    z-index: 1;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
}

footer {
    background: #f0f0f0;
}

.cnt {
    text-align: center;
}

/*  ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
menu
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------  */

.second .ttl {
    border-bottom: solid 1px rgba(0, 0, 0, 0.35);
    /*下線*/
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 30px;
    padding: 10px 0 13px 0;
    position: relative;
}

.second .ttl:after {
    border-bottom: solid 5px #393e4f;
    /*下線*/
    bottom: -5px;
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
}

dl.menu-list dt,
dl.menu-list dd,
dl.menu-list dt.multi,
dl.menu-list dd.multi {
    border-bottom: solid 1px rgba(0, 0, 0, 0.15);
    /* メニュー下線カラー */
}

dl.menu-list dt:first-child,
dl.menu-list dt:first-child + dd {
    border-top: solid 1px rgba(0, 0, 0, 0.15);
    /* メニュー上線カラー */
}

dl.menu-list dt:nth-of-type(odd),
dl.menu-list dt:nth-of-type(odd) + dd {
    background: rgba(0, 0, 0, 0.025);
    /*     メニュー背景色 */
}

ul.lcmenu {
	   font-family: 'Sorts Mill Goudy', serif;
}

dl.menu-list dd span:nth-child(1) {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
}


/*  ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
menu new
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------  */
.current {
    color: #393e4f;
    /* メニューカレント */
    border-bottom: dotted 2px #393e4f;
    /* ボーダードット*/
    font-weight: bold;
    padding-bottom: 2px;
}

.c-heading3 {
    color: #393e4f;
    /*下層タイトル文字色*/
    border-bottom: solid 1px rgba(0, 0, 0, 0.35);
    /*下線*/
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 30px;
    padding: 10px 0 13px 0;
    position: relative;
}

.c-heading3:after {
    border-bottom: solid 5px #393e4f;
    /*下線*/
    bottom: -5px;
    content: " ";
    display: block;
    position: absolute;
    width: 25%;
}

/*
div.rstdtl-menu-lst__contents {
	border-bottom: solid 1px rgba(0,0,0,0.15);  メニュー下線カラー 
}
*/
/*
div.rstdtl-menu-lst__contents :first-child {
	border-top: solid 1px rgba(0,0,0,0.15);  メニュー上線カラー 
}
*/
/*
div.rstdtl-menu-lst__contents :nth-of-type(odd){
	background:rgba(0,0,0,0.025);  メニュー背景色 
}
*/
ul.lcmenu {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
}

div.rstdtl-menu-lst__contents :nth-child(1) {
    font-family: 'Sorts Mill Goudy', serif;
    /* 料金フォント */
}


/*  ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
scene
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------  */
.slide-1 {
    background-image: url(../img/scene1.jpg);
    position: relative;
}

.slide-2 {
    background-image: url(../img/scene2.jpg);
    position: relative;
}

.slide-3 {
    background-image: url(../img/scene3.jpg);
    position: relative;
}

.slide-4 {
    background-image: url(../img/scene4.jpg);
    position: relative;
}

.slide-5 {
    background-image: url(../img/scene5.jpg);
    position: relative;
}

.bx-pager img {
    width: 80px;
    height: auto;
}

.bx-pager a img {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

.bx-pager a.active img {
    opacity: 1;
    filter: alpha(opacity=100);
}

/*  ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
access
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------  */
.access dl {
    margin-top: 30px;
}

dl.shop-info dd:last-child {
    border-bottom: none;
}

dl.shop-info dd {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    /* ショップ情報下線カラー */
}

/*  ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
animation
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------  */
.box {
    width: 100%;
    overflow: hidden;
}

.box .boxInner {
    width: inherit;
    height: inherit;
    background-color: #fff;
    opacity: 0;
}

.isPlay {
    animation-name: play;
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8, 0, .5, 1);
    position: relative;
    opacity: 1 !important;
}

.isPlay:before {
    animation-name: maskOut;
    animation-duration: .8s;
    animation-delay: .5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.8, 0, .5, 1);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(109.6deg, rgba(255, 255, 255, 1) 11.2%, rgba(255, 255, 255, 1) 91.1%);
}

@keyframes play {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes maskOut {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(100%);
    }
}

/*  ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
fadeInUp
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------  */
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-ms-keyframes fadeInUp {
    0% {
        opacity: 0;
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation: fadeInUp 0.6s ease;
    -moz-animation: fadeInUp 0.6s ease;
    -ms-animation: fadeInUp 0.6s ease;
    animation: fadeInUp 0.6s ease;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both
}

.fade {
    opacity: 0;
}

.delay1 {
    animation-delay: 0.2s;
    -moz-animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
    -o-animation-delay: 0.2s;
}

.delay2 {
    animation-delay: 0.35s;
    -moz-animation-delay: 0.35s;
    -webkit-animation-delay: 0.35s;
    -o-animation-delay: 0.35s;
}

.delay3 {
    animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -webkit-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
}

.delay4 {
    animation-delay: 0.65s;
    -moz-animation-delay: 0.65s;
    -webkit-animation-delay: 0.65s;
    -o-animation-delay: 0.65s;
}

.delay4 {
    animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
}
