@charset "UFT-8";

html {
    scroll-padding-top: 85px
}


/*==========================
MV
==========================*/
.MV {
    min-width: 375px;
    height: 715px;
    background-image: url(..//images/TOP/MV1-SP.png);
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
}

.MV::after {
    content: 'scroll';
    position: absolute;
    left: 50%;
    bottom: 150px;
    transform: translateX(-50%);
    color: var(--primary-white);
    font-size: 1.5rem;
    letter-spacing: 2.8px;
    line-height: 1;
    z-index: 2;
    pointer-events: none;
}

/* 棒の設定 */
.MV::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    width: 1px;
    height: 125px;
    background-color: var(--primary-white);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    animation: scrollBarFlow 2s ease-in-out infinite;
}

@keyframes scrollBarFlow {
        0%   { transform: translate(-50%, 0);    opacity: 0; }
        10%  { transform: translate(-50%, 0);    opacity: 1; }   /* フェードイン */
        80%  { transform: translate(-50%, 125px); opacity: 1; }  /* 下へ流れる */
        100% { transform: translate(-50%, 125px); opacity: 0; }  /* フェードアウト */
}


.mv__title {
    display: block;
    width: 100%;
    padding-top: 300px;
    text-align: center;
}


.mv__title.fadeIn {
  opacity: 0;
  transition: 3s;
}

.mv__title.fadeIn.is-show {
  opacity: 1;
}


.btn__reserve__TOP {
    display: none;
}


@media screen and (min-width:769px) {
    .MV {
        height: 100vh;
        background-image: url('..//images/TOP/MV1.png');
        text-align: right;
    }

    .MV::after {
        bottom: 180px;                /* 文字の下寄せ量（お好みで） */
        font-size: 2rem;
        letter-spacing: 0.58em;
    }

    .MV::before {
        bottom: 20px;                
        animation-duration: 2.2s;     /* 少しゆったり */
    }

    @keyframes scrollBarFlow {
            0%   { transform: translate(-50%, 0);    opacity: 0; }
            10%  { transform: translate(-50%, 0);    opacity: 1; }   /* フェードイン */
            80%  { transform: translate(-50%, 200px); opacity: 1; }  /* 下へ流れる */
            100% { transform: translate(-50%, 200px); opacity: 0; }  /* フェードアウト */
    }

    .mv__title {
        position: relative;
        top: 35%;
        padding-top: 0;
    }

    .mv__title img {
        width:50%;
    }

    .btn__reserve__TOP {
        display: inline-block;
        width: 50%;
        height: auto;
        transition: .3s;
        position: relative;
        right: 30%;
        transform: translateY(600%);
    }

    .btn__reserve__TOP :hover {
        opacity: 0.8;
    }

    .btn__reserve__TOP img {
        width: 100%;
    }

}

/*==========================
Consept
==========================*/
.section--consept {
    padding: 30px 0;
    position: relative;
}

.background__image--SP {
    background-image: url(..//images/TOP/back_profile-SP.png);
    background-repeat: no-repeat;
    background-size: cover;
}


.consept__title {
    font-size: 2.4rem;
    padding: 0 8% 22px;
}


.consept__txt {
    display: grid;
    padding-bottom: 30px;
    gap: 4px;
}

.consept__image {
    display: block;
    text-align: center;
}


.fadeIn_up {
  opacity: 0;
  transform: translate(0, 10%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}


@media screen and (min-width:769px) {
    .section--consept {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4%;
        flex-direction: row-reverse;
        padding: 116px 6% 43px
    }

    .section--consept::after {
        display: none;
    }

    .background__image--SP {
        background-image: none;
    }

    .background__image--PC {
        background-image: url('..//images/TOP/back_profile.png');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: right top;
    }

    .consept__title {
        font-size: 3rem;
        padding: 0 0 20px 0;
    }

    .consept__txt {
        padding-bottom: 0;
        gap: 20px;
    }

    .consept__image {
        text-align: unset;
    }

    .consept__detail {
        padding: 40px 0 50px;
    }  

    .btn__SP {
    display: none;
    }

}  /* 769px */

/*==========================
Topics
==========================*/
.section--topics {
    background-image: url(../images/TOP/back_image_y.png);
    background-repeat: no-repeat;
    background-size: cover;
}


.topics__title {
    font-size: 2.6rem;
    padding:50px 0 30px;
    text-align: center;
    position: relative;
    letter-spacing: 0.1em;
}


.topics__title::after {
    content: '';
    display: block;
    background-color: var(--primary-black);
    width: 1.7px;
    height: 33px;
    position: absolute;
    right: 50%;
    transform: translateY(30px);
}

.topics__list {
    margin-top: 93px;
    padding: 0 30px 63px;
}

.date {
    padding-bottom: 8px;
}

.topics__txt {
    margin: 5px 0 11px;
}

.topics__detail {
    padding-top: 19px;
    position: relative;
}

.topics__detail:first-of-type{
    padding-top: 0;
}

.topics__detail::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--primary-gold);
    position: absolute;
}

@media screen and (min-width:769px) {
    .section--topics {
        background-image: none;
        padding-bottom: 50px;
    }

    .topics__title {
        font-size: 3.5rem;
        letter-spacing: 0.3em; 
    }
    
    .topics__list {
        padding: 0 170px;
    }

    .date {
        font-size: 1.8rem;
        padding: 0;
    }

    .topics__txt {
        font-size: 2rem;
        padding: 14px 0 14px 8%;
        margin: 0;
    }

    .topics__detail {
        display: flex;
        align-items: baseline;
        padding-top: 0;
    }

    .topics__detail::after {
        transform: translateY(58px);
    }    
       
} /* 769px */

/*==========================
Cuisine/Drinc/Table common
==========================*/
.section__title,.section__title__drink {
        display: flex;
        justify-content: center;
        font-size: 2.6rem;
        padding-top: 50px;
        position: relative;
    }

    .section__title::after,.section__title__drink::after  {
        content: '';
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        background-image:url('../images/logo/icon.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        top:100%;
        transform: translateY(24px);
    }

    .present__txt,.present__txt__drink {
        margin-top: 68px
    }

    .section__txt,.section__txt__drink {
        padding: 0 8% 0;
    }

    .section__link,.section__link__drink {
        display: flex;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        margin: 24px 0 6px 0;
        position: relative;
    }

    .section__link::after,.section__link__drink::after {
        content: '';
        display: block;
        background-color: var(--primary-gold);
        width: 84%;
        height: 2px;
        position: absolute;
        top:100%;
        transform:translateY(6px)
    }

    .link__image {
        display: flex;
        margin-left: 6px;
        align-items: center;
    }

    .cuisine__image,.drink__image,.table__image {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 30px;
    }

@media screen and (min-width:769px) {
    .section__title {
        display: flex;
        justify-content:flex-start;
        font-size: 3rem;
        padding-top: 0;
        margin-bottom: 15px;
    }

      .section__title__drink {
        display: flex;
        justify-content:start;
        flex-direction: row-reverse;
        font-size: 3rem;
        padding-top: 0;
        margin-bottom: 15px;
    }

    .section__title::after,.section__title__drink::after {
        width: 28px;
        height: 28px;
        transform: translateY(15px);
    }

    .present__txt,.present__txt__drink {
        margin-top: 58px
    }

    .section__txt {
        font-size: 1.8rem;
        padding: 0;
        width: 76%;
    }

    .section__txt__drink {
        font-size: 1.8rem;
        padding: 0;
        width: 92%;
    }

    .section__link {
        width: 90%;
        font-size: 2.2rem;
        justify-content: end;
        margin: 27px 0 10px 0;
        transition: .3s;
    }

    .section__link__drink {
        width: 90%;
        font-size: 2.2rem;
        justify-content: end;
        margin: 27px 0 10px 0;
        transition: .3s;
    }

    .section__link:hover,.section__link__drink:hover {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

    .section__link::after,.section__link__drink::after  {
        width: 100%;
        transform:translateY(10px)
    }

    .cuisine__image,.drink__image,.table__image {
        margin-top: 0;
    }
}

/*==========================
Cuisine
==========================*/
.section--cuisine {
    background-image: url('..//images/TOP/back_image_y.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-20%, 0);
  transition: 2s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(20%, 0);
  transition: 2s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

@media screen and (min-width:769px) {
    .section--cuisine {
        height: 481px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 5%;
    }

    .cuisine__detail {
        width: 54%;
        padding-right: 2%;
    }

    .cuisine__image {
        width: 38%;
    }
}
/* 769px */


/*==========================
Drink
==========================*/
.section--drink {
    background-image: url('..//images/TOP/back_image_y.png');
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (min-width:769px) {
    .section--drink {
        height: 481px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row-reverse;
        padding: 0 5%;
    }

    .drink__detail {
        width: 54%;
        padding-left: 9%;
    }

    .drink__image {
        width: 38%;
    }
}/* 769px */


/*==========================
Table
==========================*/
.section--table {
    background-image: url('..//images/TOP/back_image_y.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.table__image {
    padding-bottom: 30px;
}

@media screen and (min-width:769px) {
    .section--table {
        height: 481px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 5%;
    }

    .table__detail {
        width: 54%;
        padding-right: 2%;
    }

    .table__image {
        width: 38%;
    }
}
/* 769px */



/*==========================
Map
==========================*/
.map {
    background-image: url('..//images/TOP/back_image_w.png');
    width: 92%;
    height: auto;
    padding: 30px 0;
    margin: 0 auto;
}


@media screen and (min-width:769px) {
    .map {
        padding: 50px 210px;
    }
}
/* 769px */