@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;
}

.header-box {
    position: fixed;
    display: flex;
    top: 0;
    width: 100%;
    height: 10vw;
    background-color: rgba(255,255,255,0.8);
    z-index: 1000;
    animation: hedderTop  2s;
    transition: 1S;
}

h1 {
    width: 10vw;
    height: fit-content;
    margin-top: 0.5%;
    margin-left: 3%;
    animation: hedderTop  2s;
}

h1 img {
    width: 100%;
}

/* ハンバーガーボタン */

.hamburger-overlay {
    position: fixed;
    top: 1vw;
    right: 2vw;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  
  .hamburger-overlay__line {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 2px;
    background-color: #544a47;/* ハンバーガーボタンカラー */
    transition: all 0.6s;
  }

  .hamburger-overlay__line:hover {
    background-color: #dddcd6;
    transition: 0.6s;
  }
  
  .hamburger-overlay__line:nth-of-type(1) { top: 14px; }
  .hamburger-overlay__line:nth-of-type(2) { top: 23px; }
  .hamburger-overlay__line:nth-of-type(3) { top: 32px; }
  
  .hamburger-overlay.active .hamburger-overlay__line {
    background-color: #fffffc;/* ×閉じカラー */
    transition: 0.5s;
  }

  .hamburger-overlay.active .hamburger-overlay__line:hover {
    background-color: #dddcd6;
    transition: 0.5s;
  }
  
  .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }
  .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }
  
  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(84, 74, 71, 0.8);/* バックカラー */
    visibility: hidden;
    opacity: 0;
    transition: all .6s;
    z-index: 900;
  }
  
  .nav-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  
  .nav-overlay__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
  }
  
  .nav-overlay__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .nav-overlay__item {
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s;
  }
  
  .nav-overlay.active .nav-overlay__item {
    opacity: 1;
    transform: translateY(0);
  }
  
  .nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
  .nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
  .nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
  .nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }
  
  .nav-overlay__link {
    display: inline-block;
    padding: 20px;
    color: #fffffc;
    font-size: 24px;
    text-decoration: none;
    transform: scale(1,1);
    transition: 0.5s;
  }
  
  .nav-overlay__link:hover {
    color: #a99e93;
    transform: scale(1.2,1.2);
    transition: 0.5s;
  }


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: 45%;
    top: 26%;
    left: 27.3%;
    z-index: 100;
}

.textanimation {
    text-align: center;
    background-color: #fffffc;
    font-size: 6vw;
    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;
}

/* ボタンアニメ */
@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%);
  }
}




/* sec5 予約 */

main .area-reserve {
  width: 100%;
  height: 100vw;
  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: 15%;
  text-align: center;
  letter-spacing: 0.03em;
  color: #fffffc;
  font-size: 8vw;
  font-family: EB_Garamond;
  background-color: #a99e93;
}

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

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

main .area-reserve .reserve-ap a {
  width: 18vw;
  height: 18vw;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fffffc;
  font-size: 2.6vw;
  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: 30vw;
  margin-top: -10vw;

}

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

footer ul li {
  width: 17vw;
  margin-top: 5%;
  margin-right: 5%;
  text-align: center;
  background-color: #dddcd6;
  border-radius: 0.8vw;
  overflow: hidden;
}

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

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


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

@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}



