@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: Source_Serif_4;
    src: url(../font/Source_Serif_4/static/SourceSerif4-Medium.ttf);
}

@font-face {
    font-family: Noto_Serif_JP;
    src: url(../font/Noto_Serif_JP/static/NotoSerifJP-Regular.ttf);
}

@@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: Source_Serif_4;
    src: url(../font/Source_Serif_4/static/SourceSerif4-Medium.ttf);
}

@font-face {
    font-family: Noto_Serif_JP;
    src: url(../font/Noto_Serif_JP/static/NotoSerifJP-Regular.ttf);
}

@font-face {
    font-family: EB_Garamond;
    src: url(../font/EB_Garamond/static/EBGaramond-Regular.ttf);
}

body {
    color: #544a47;
}

ul li {
    list-style-type: none;
}



@keyframes hedderTop {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

header {
    display:  block;
    position: relative;
    width: 100%;
    height: 60vw;
    overflow: hidden;
    animation: hedderTop  2s;
    transition: 0.5s;
}

.header-box {
    position: fixed;
    display: flex;
    top: 0;
    width: 100%;
    height: 5vw;
    background-color: #fff;
    z-index: 1000;
    animation: hedderTop  2s;
    transition: 1S;
}

h1 {
    width: 5%;
    margin-left: 3%;
    animation: hedderTop  2s;
}

h1 img {
    width: 100%;
}


header .header-box .header .hamburger-overlay {
    display: none;
}


header .header-box .header {
    width: 50%;
    margin-top: 1.5vw;
    margin-left: auto;
    margin-right: 5%;
}

header .header-box .header nav {
    width: 100%;
    animation: hedderTop  2s;
}

header .header-box .header nav .nav-overlay__content {
    width: 100%;
}

header .header-box .header nav .nav-overlay__content ul {
    display: flex;
}

header .header-box .header nav .nav-overlay__content ul li {
    width: calc( 100% / 7 );
    padding-right: 8%;
    transform: scale(1,1);
    transition: 1s;
}

header .header-box .header nav .nav-overlay__content ul li:hover {
    transform: scale(1.1,1.1);
    transition: 0.8s;
}


header .header-box .header nav .nav-overlay__content ul li a {
    display: block;
    text-decoration: none;
    font-size: 1.3vw;
    font-family: Source_Serif_4;
    color: #544a47;
    transition: 1s;
}

header .header-box .header nav .nav-overlay__content ul li a:hover {
    color: #a99e93;
    transition: 0.8s;
}


/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
header.scroll-nav .header-box {
    background-color: rgba(0,0,0,0);
    box-shadow: 0 0.5rem 1rem rgba(84,74,71,0.1);
    transition: 1s;
}


/* ヘッダー中央文字 */
.top-ttl{
    position: absolute;
    width: 25%;
    top: 35%;
    left: 69%;
    z-index: 100;
}

.textanimation {
    font-size: 2.8vw;
    color: #544a47;
    font-family: EB_Garamond;
}

@keyframes showText {
0%{
    transform: translateY(100%);
    opacity: 0;
}
100%{
    transform: translateY(0px);
    opacity: 1;
}
}

.textanimation span {
animation: showText 3s backwards;
display: inline-block;
}
.textanimation > span {
overflow: hidden;
}
.textanimation > span > span {
animation: showText 0.5s backwards;
}

/* ヘッダー画像 */

.main_visual {
    width: 100%;
    height: 60vw;
    position: absolute;
    background-image: url(../images/main_visual4.png);
    opacity: 0.8;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 10;
    animation: hedderTop  5s;
}

/* ボタンアニメ */
@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 #a99e93;
    }
    70% {
        box-shadow: 0 0 0 10px rgb(169 158 147 / 0%);
    }
    100% {
        box-shadow: 0 0 0 0 rgb(169 158 147 / 0%);
    }
  }


/* スライドイン */
.box {
    aspect-ratio: 16 / 9;
    background-color: #fffffc;
    /* opacity: 0; visibility: hidden;で要素を非表示にする。
    display: noneでも非表示にできるが、transitionが効かなくなる */
    opacity: 0;
    visibility: hidden;
    transition: all 3s;
    transform: translateY(150px);
}
.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}




/* sec5 予約 */

main .area-reserve {
    width: 100%;
    height: 36vw;
    margin-top: 8%;
    background: rgb(255,255,252);
    background: linear-gradient(0deg, rgba(255,255,252,1) 0%, rgba(209,203,196,1) 22%, rgba(187,179,169,1) 38%, rgba(179,169,159,1) 50%, rgba(169,158,147,1) 61%);
}

main .area-reserve h2 {
    width: 100%;
    padding-top: 4%;
    text-align: center;
    color: #fffffc;
    font-size: 7vw;
    font-family: EB_Garamond;
    background-color: #a99e93;
}

main .area-reserve p {
    width: 100%;
    margin-top: 3%;
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.1em;
    white-space: pre-wrap;
    color: #fffffc;
    font-size: 1.2vw;
    font-family: Noto_Serif_JP;
}

main .area-reserve .reserve-ap {
    width: 8vw;
    margin-top: 3%;
    margin-left: auto;
    margin-right: auto;
}

main .area-reserve .reserve-ap a {
    width: 8vw;
    height: 8vw;
    border-radius: 4vw;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fffffc;
    font-size: 1.1vw;
    transition: 1s;
    background-color: #a99e93;
}

main .area-reserve .reserve-ap a:hover {
    color: #dddcd6;
    animation: ripple 1.5s infinite;
    transition: 1s;
}

main .ist {
    width: 100%;
}

main .ist img {
    width: 100%;
}




footer {
    width: 100%;
    height: 10vw;
    margin-top: -5vw;
    background-color: #fffffc;
}

footer ul {
    width: 46%;
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

footer ul li {
    width: calc( 100% / 7 );
    margin-right: 2%;
    text-align: center;
    background-color: #dddcd6;
    border-radius: 0.8vw;
    overflow: hidden;
}

footer ul li a {
    display: block;
    text-decoration: none;
    line-height: 3;
    transform: scale(1,1);
    font-size: 1.1vw;
    color: #544a47;
    transition: 1s;
}

footer ul li a:hover {
    transform: scale(2,2);
    color: #a99e93;
    transition: 1s;
}
  

footer ul + p {
    padding-top: 3%;
    padding-bottom: 5%;
    text-align: center;
    font-size: 0.9vw;
}
