@charset "UTF-8";

body {
    opacity: .1;
    animation: bodyAppear .3s .3s forwards;
}

@keyframes bodyAppear {
    0% {
        opacity: .1;
    }

    100% {
        opacity: 1;
    }
}

.visually-hidden {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

@media screen and (min-width:768px) {}

@media screen and (min-width:1025px) {}

/*============================
	kv 
============================*/

.kv {
    margin-top: 60px;
    margin-bottom: 70px;
}

.kv__swiper {
    width: 100%;
    margin: 0 auto;
}
    .kv__cap{position:absolute;top:40%;z-index:100; left:5%;width:80%;}

.kv__img {
    width: 100%;

    & img {
        object-fit: cover;
        width: 100%;
        min-height: 300px;
    }
}

.kv__side {
    display: none;
}

.kv__copy {
    max-width: 1025px;
    width: 90%;
    z-index: 99;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.kv__scroll {
    position: absolute;
    max-width: 25px;
    min-width: 15px;
    width: calc((25/1920)*100%);
    left: 5%;
    top: 100%;
    transform: translate(-50%, -50%);

}

.kv__copy .slide-in,
.kv__copy .slide-in_inner {
    animation-duration: 1s;
    animation-delay: .3s;
}

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

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

/* swiper */
.kv__swiper-area {
    position: relative;
}

.swiper__imgwrap {
    overflow: hidden;
    display: block;
}


.kv .swiper-slide-active .swiper__imgwrap img,
.kv .swiper-slide-duplicate-active .swiper__imgwrap img,
.kv .swiper-slide-prev .swiper__imgwrap img {
    animation: zoom-out 6s linear 0s 1 normal both;
}

@keyframes zoom-out {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}


.kv .swiper-pagination {
    left: 50%;
    bottom: 5%;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    transform: translate(-50%);
}


.kv .swiper-pagination-bullet {
    display: block;
    width: 30px;
    height: 2px;
    z-index: 9;
    background: #fff;
    border-radius: 0% !important;
    margin: 0 8px !important;
    opacity: 1;

}

.kv .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ac2d18;
}


.k-swiper-button-prev {
    position: absolute;
    margin: 0;
    width: 40px;
    height: 40px;
    left: 0;
    top: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);

}

.k-swiper-button-next {
    position: absolute;
    margin: 0;
    width: 40px;
    height: 40px;
    left: 100%;
    top: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);

}

.k-swiper-button-prev::before {
    content: "";
    position: absolute;
    background: url(../images/sw_arw_prv.png) no-repeat center center/contain;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.k-swiper-button-next::before {
    content: "";
    position: absolute;
    background: url(../images/sw_arw_next.png) no-repeat center center/contain;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.swiper-button-disabled {
    opacity: .5;
    pointer-events: none;

}


@media screen and (min-width:768px) {
    .kv {
        margin-top: 60px;
    }


    .kv .swiper-pagination-bullet {
        width: 30px;
        height: 2px;
        margin: 0 10px !important;
    }



}



@media screen and (min-width:1025px) {
    .kv {
        max-width:1200px;
        margin:140px auto 0;
    }
    .kv__cap{position:absolute;top:40%;z-index:100; left:5%;width:35%}


    .kv .swiper-pagination-bullet {
        width: 80px;
        height: 2px;
        margin: 0 10px !important;
    }

    .kv__side {
        display: block;
        max-width: 270px;
        width: calc((270/1920)*100%);
        top: 40%;
        left: 5%;
        z-index: 99;
        transform: translate(0, -50%);
    }

    .kv__logo {
        display: block;
        max-width: 105px;
        width: calc((105/270)*100%);
        margin-bottom: 10%;
    }

    .kv__tel {
        display: block;
        margin-bottom: 5%;
    }

    .kv__btn {
        display: block;
        margin-bottom: 5%;
    }

    .kv__sns {
        display: flex;
        align-items: center;
        max-width: 190px;
        width: calc((190/270)*100%);

        & a {
            display: block;
            margin-right: 5%;
        }
    }
}

/*============================
   concept
============================*/
.concept {
    height: 400px;
    background: url(../images/concept_bg.jpg) no-repeat center center/cover;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;

    .inner__large {
        width: 100%;
    }
}

.conc__copy {
    width: 100%;
    line-height: 1.6;
    text-shadow: 0 0 1.5em rgba(65, 34, 15, .36);
}

@media screen and (min-width:768px) {
    .concept {
        height: 600px;
    }

}

@media screen and (min-width:1025px) {
    .concept {
        height: 958px;
    }
}

/*============================
   commitment
============================*/
.commitment {
    padding: 60px 0;
    background: url(../images/commit_bg.jpg) no-repeat center center/cover;
    color: #fff;
}
.drink{
    padding:0px 0px 50px;
}
.drink img{
    width:100%;
    margin:0 auto;
}
.sp_none{
    display:none;
}
.pc_none{
    display:block;
}
@media screen and (min-width:768px) {
    .commitment {
        padding: 80px 0;
    }
}

@media screen and (min-width:1025px) {
    .commitment {
        padding: 170px 0 100px;
    }
    .unagi {
        margin:100px auto;
    }
    .drink {
        margin:100px auto;
    }
.sp_none{
    display:block;
}
.pc_none{
    display:none;
}
    
}

/*============================
   seasonnal
============================*/
.seasonnal {
    padding: 60px 0;
    overflow: hidden;
    background: #ffffff;
}

.ssn__obj01 {
    max-width: 300px;
    width: calc((300/1920)*100%);
    display:none;
    left: 0;
    top: 5%;
    transform: translate(0, -50%);
}

.ssn__obj02 {
    max-width: 598px;
    width: calc((598/1920)*100%);
    right: 0;
    top: 90%;
    transform: translate(0, -50%);
        display:none;

}

.ssn__img {
    width: 105%;
    margin-left: -6%;
    margin-bottom: 30px;
}

.ssn__ttl {
    margin-bottom: 20px;
}

.ssn__txt {
    margin-bottom: 20px;
}

.ssn__btn {
    border-color: #111111;
    color: #111111;

    &::before {
        transform: translate(0, -50%) rotate(-90deg);
        background: url(../images/btn_arw_bk.png) no-repeat center center/contain;

    }

    &:hover {
        &::before {
            transform: translate(-50%);
            bottom: 3%;
            right: auto;
            left: 50%;
            background: url(../images/btn_arw_wh_vt.png) no-repeat center center/contain;
        }
    }
}

@media screen and (min-width:768px) {
    .seasonnal {
        padding: 80px 0;
    }

    .ssn__obj01 {
        width: calc((300/1920)*100%);
        left: 0;
        top: 10%;
    }

    .ssn__obj02 {
        width: calc((598/1920)*100%);
        right: 0;
        top: 65%;
    }

    .ssn__img {
        width: 50%;
        margin-left: -7%;
        margin-bottom: 0;
    }

    .ssn__txtwrap {
        width: 55%;
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .ssn__ttl {
        margin-bottom: 0;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-feature-settings: initial;
    }

    .ssn__txt {
        margin-bottom: 0;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-feature-settings: initial;
        margin-top: 5em;
        max-height: 22em;
    }

    .ssn__btn {
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-feature-settings: initial;
        width: 50px;
        height: 260px;
        margin-top: 250px;

        &::before {
            transform: translate(-50%);
            bottom: 5%;
            left: 50%;
            right: auto;
            top: auto;
        }

    }

}

@media screen and (min-width:1025px) {
    .seasonnal {
        padding: 140px 0 100px;
    }

    .ssn__obj01 {
        width: calc((300/1920)*100%);
        left: 0;
        top: 15%;
        display:none;
    }

    .ssn__obj02 {
        width: calc((598/1920)*100%);
        right: 0;
        top: 70%;
        display:none;
    }

    .ssn__img {
        width: 55%;
        margin-left: -10%;
        margin-bottom: 0;
    }

    .ssn__txtwrap {
        width: 45%;
    }

    .ssn__txt {
        margin-top: 8em;
        max-height: 22em;
    }

    .ssn__btn {
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        font-feature-settings: initial;
        width: 60px;
        height: 270px;
        margin-top: 250px;


    }
}

/*============================
   seasons
============================*/
.gallery__swiper {
    .swiper-wrapper {
        transition-timing-function: linear;
    }
}
.gallery{
    padding:50px 0px;
}
.gallery__img {
    width: 32%;
    display:inline-flex;
}

.ser__ttl {
    width: fit-content;
    background: #fff;
    padding: .25em .5em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.sea__atc {
    margin-bottom: 10px;
    padding: 40px 0 100px;
    background: url(../images/season_bg01.jpg) no-repeat center center/cover;
    color: #fff;

    &:last-child {
        margin-bottom: 0;
    }

}

.sea__atc:nth-child(2) {
    background: url(../images/season_bg02.jpg) no-repeat center center/cover;
}

.sea__atc:nth-child(3) {
    background: url(../images/season_bg03.jpg) no-repeat center center/cover;
}

.sea__atc:nth-child(4) {
    background: url(../images/season_bg04.jpg) no-repeat center center/cover;
}

.sea__logo {
    width: fit-content;
    transform: scale(.6);
    margin: 0 auto;
    mix-blend-mode: overlay;
    display: block;
}

.sea__txtwarp {
    border-top: solid 1px #fff;
    padding: 30px 0 0;
}

p.sea__txt {
    font-size: 13px;
}

.sea__btn {
    margin: 0 0 0 auto;
}

.sea__atc:nth-child(even) {
    .sea__btn {
        margin: 0;
    }
}

@media screen and (min-width:768px) {
    .gallery__img {
        width: 1024px;
    }

    .ser__ttl {
        width: 25%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: .25em .5em;
    }

    .sea__atc {
        margin-bottom: 10px;
        padding: 200px 0 100px;

    }


    .sea__logo {
        transform: scale(.75);
        margin: 0;
    }

    .sea__txtwarp {
        width: 75%;
        border: none;
        border-left: solid 1px #fff;
        padding: 20px 0 20px 5%;
    }

    .sea__atc:nth-child(even) {
        .sea__flex {
            flex-direction: row-reverse;
        }

        .sea__txtwarp {
            border: none;
            border-right: solid 1px #fff;
            padding: 20px 5% 20px 0;
        }


        .sea__btn {
            margin: 0;
        }
    }
}

@media screen and (min-width:1025px) {
    .gallery{margin:150px auto;}
    .gallery__img {
        display:inline-block;
        width:33%;
        padding:0px 20px;
    }


    .ser__ttl {
        width: 25%;
        padding: .25em .5em;
    }

    .sea__atc {
        margin-bottom: 10px;
        padding: 400px 0 200px;

    }


    .sea__logo {
        transform: scale(.75);
        margin: 0;
    }

    .sea__txtwarp {
        width: 75%;
        border: none;
        border-left: solid 1px #fff;
        padding: 20px 0 20px 5%;
    }

    .sea__atc:nth-child(even) {
        .sea__flex {
            flex-direction: row-reverse;
        }

        .sea__txtwarp {
            border: none;
            border-right: solid 1px #fff;
            padding: 20px 5% 20px 0;
        }


        .sea__btn {
            margin: 0;
        }
    }
}

/*============================
   menu
============================*/
.menu__bg {
}

.menu {
    padding: 60px 0;

}

.menu__ttl {
    & img {
        max-width: 305px;
        width: 180px;
            display:none;
        margin: .5em auto 0;
    }
}

.menu__obj {
    max-width: 450px;
    width: calc((450/1920)*100%);
    right: 0;
    bottom: 10px;
        display:none;

}

.menu__atc {
    margin: 0 auto 20px;

    &:last-child {
        margin-bottom: 0;

    }

    & a {
        display: block;
        width: 100%;
        height: 100%;
        background: #0d0d0d;
        color: #fff;
        position: relative;
    }
}

.menu__h3 {
    top: 0;
    left: 0;
    background: #fff;
    color: #111;
    padding: 1em .5em;
    white-space: nowrap;
    text-align: center;
    letter-spacing: .15em;
    min-height: 5em;
}

.menu__txtwarp {
    padding: 1em 5% 2em;
    position: unset;
}

.menu__arw {
    bottom: 1em;
    right: 5%;
    max-width: 100px;
    width: 50px;
}

@media screen and (min-width:768px) {

    .menu {
        padding: 80px 0;

    }

    .menu__ttl {
        & img {
            max-width: 305px;
            width: 200px;
            margin: .5em auto 0;
        }
    }

    .menu__obj {
        width: calc((450/1920)*100%);
        right: 0;
        bottom: 10px;
    }

    .menu__atc {
        width: 48%;
        margin: 0 0 20px;

        &:nth-child(3),
        &:last-child {
            margin-bottom: 0;

        }
    }

    .menu__h3 {
        padding: 1em .5em;
        min-height: 5em;
    }

    .menu__txtwarp {
        padding: 1em 5% 2em;
    }

    .menu__arw {
        bottom: 1em;
        right: 5%;
        max-width: 100px;
        width: 70px;
    }
}

@media screen and (min-width:1025px) {
    .menu {
        padding: 150px 0 200px;

    }

    .menu__ttl {
        & img {
            max-width: 305px;
            width: fit-content;
            margin: .5em auto 0;
            display:none;
        }
    }

    .menu__obj {
        width: calc((450/1920)*100%);
        right: 0;
        bottom: 20px;
        display:none;
    }

    .menu__atc {
        width: 48%;
        margin: 0 0 30px;

    }

    .menu__h3 {
        padding: 1em .5em;
        min-height: 5em;
    }

    .menu__txtwarp {
        padding: 1em 5% 3em;
    }

    .menu__arw {
        bottom: 1.5em;
        right: 5%;
        max-width: 100px;
        width: 70px;
    }
}

/*============================
   room
============================*/
.room__img {
    max-width: 480px;
    width: 250px;
    margin: 0 10px;
}

.room__swiper {
    z-index: 9;

    .swiper-wrapper {
        transition-timing-function: linear;
    }
}

.room__btn {
    z-index: 9;
}

@media screen and (min-width:768px) {
    .room__img {
        max-width: 480px;
        width: 350px;
        margin: 0 15px;
    }

}

@media screen and (min-width:1025px) {
    .room__img {
        max-width: 480px;
        width: 480px;
        margin: 0 30px;
    }

}


/*============================
   access
============================*/
.access {
    padding: 100px 0 60px;

    &::before {
        content: "";
        position: absolute;
        width: 100%;
        height: calc(100% + 150px);
        background:none;
        left: 0;
        bottom: 0;
        display:none;
    }
}

.acc__left {
    margin-bottom: 30px;
}

.acc__logo {
    max-width: 243px;
    width: 160px;
    display: none;
    margin-bottom: 20px;
0}

    p.acc__txt {
        font-size: 13px;
    }
    .acc__left img{
        width:200px;
    }

@media screen and (min-width:768px) {
    .access {
        padding: 60px 0;

        &::before {
            height: calc(100% + 250px);
        }
    }

    .acc__left {
        width: 55%;
        margin-bottom: 0;
    }

    .acc__img {
        width: 45%;
    }

    .acc__logo {
        max-width: 243px;
        width: 180px;
        margin-bottom: 20px;
    }

    p.acc__txt {
        font-size: 15px;
    }
}

@media screen and (min-width:1025px) {
    .access {
        padding: 150px 0;

        &::before {
            height: calc(100% + 400px);
        }
    }

    .acc__left {
        width: 45%;
        margin-bottom: 0;
    }

    .acc__img {
        width: 45%;
    }

    .acc__logo {
        max-width: 243px;
        display:none;
        width: fit-content;
        margin-bottom: 30px;
    }
    .acc__left img{
        width:auto;
    }
}
.cv {
    margin-bottom:50px;
}
.cv .inner__mid{
    border:1px solid #000; padding:40px 20px 20px;
    max-width:94%;
    margin:0 auto;
}
.cv .inner__mid .h2{
    font-size:20px;
}
.cv .inner__mid a{
    margin-bottom:20px;
    display:inline-flex;
    text-align:center;
    width:49%;
    padding:0px 3px;
}
.cv .inner__mid a img{
    width:100%
}

@media screen and (min-width:1025px) {
.cv {
    margin-bottom:50px;
}
.cv .inner__mid{
    border:1px solid #000; padding:60px 100px 40px;
}
.cv .inner__mid .h2{
    font-size:36px;
}
.cv .inner__mid a{
    margin-bottom:20px;
    display:block;
    width: 100%;
}
.cv .inner__mid a img{
    width:auto;
}}
