@charset "utf-8";
/* 共通設定 */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#vdbanner {
  width: 0;
  height: 0;
}
main,
body {
  margin: -10px 0;
}
ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}
body {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: #000;
  background-color: #fff;
}
img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ここからheader */
header {
  color: #fff;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 10px 0px;
  transition: background-color 0.3s, color 0.3s;
}
.header-inner {
  display: flex;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header.is-scrolled {
  background-color: #fff;
  color: #000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
header:not(.is-scrolled) .main-nav a {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.7);
}
.main-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 450px;
}

.top-nav {
  display: flex;
  justify-content: center;
  align-items: centers;
  gap: 40px;
}

.btn {
  display: none;
}
.header-logo {
  width: 200px;
}

/* ナビホバーアニメーション */
.main-nav a {
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
  padding: 5px 0;
}
.main-nav a::before,
.main-nav a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center center;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.main-nav a:hover::before,
.main-nav a:hover::after {
  width: 40px;
  height: 40px;
  opacity: 1;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.main-nav a:hover::before {
  animation-name: rotateccw;
  animation-duration: 3s;
}
.main-nav a:hover::after {
  animation-name: rotatecw;
  animation-duration: 2s;
}

@keyframes rotatecw {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotateccw {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

/* スクロール後（白背景）用の調整 */
header.is-scrolled .main-nav a::before,
header.is-scrolled .main-nav a::after {
  border-color: rgba(0, 0, 0, 0.4);
}

/* ここからフッター */
footer {
  background-color: #767ec9;
  color: #fff;
  padding: 50px 20px 10px;
  text-align: center;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 45px;
}
.footer-sub-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}
.footer-reservation-ex {
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.footer-reception {
  margin-bottom: 30px;
  font-size: 0.9rem;
}
.footer-tel {
  font-size: 1.5rem;
}
.address-info {
  font-size: 0.9rem;
}
.adress {
  margin: 30px 0 30px;
}
.out-time {
  margin-bottom: 40px;
}
.footer-credit {
  font-size: 0.8rem;
}
.footer-search-booking {
  margin: 20px auto;
  width: fit-content;
}
.footer-search-booking a {
  background-color: #bfa16f;
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  width: 200px;
  height: 60px;
  line-height: 60px;
  border: 1px solid #fff;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.footer-search-booking a:hover {
  color: #bfa16f;
  border: 1px solid #bfa16f;
}

.footer-search-booking a:after {
  position: absolute;
  content: "";
  width: 120%;
  height: 100%;
  top: 0;
  left: -340px;
  -webkit-transform: skewX(69deg);
  transform: skewX(69deg);
  background-color: #fff;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.footer-search-booking a:before {
  position: absolute;
  content: "";
  width: 120%;
  height: 100%;
  top: 0;
  left: 300px;
  -webkit-transform: skewX(69deg);
  transform: skewX(69deg);
  background-color: #fff;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.footer-search-booking a:hover:after {
  left: -136px;
}

.footer-search-booking a:hover:before {
  left: 99px;
}
.mobile-fixed-footer {
  position: fixed;
  top: 80px;
  right: 0;
}

.search-booking a {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: center;
  background-color: #bfa16f;
  color: #fff;
  border: 1px solid #fff;
  font-size: 1.1rem;
  font-weight: 500;
  width: 60px;
  height: 200px;
  line-height: 60px;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.search-booking a:hover {
  color: #bfa16f;
  border: 1px solid #bfa16f;
}
.search-booking a:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 120%;
  top: -20px;
  left: 0;
  transform: skewY(69deg);
  background-color: #fff;
  z-index: -1;
  transition: all 0.5s;
  top: -320px;
}

.search-booking a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 120%;
  top: 0;
  left: 0;
  transform: skewY(69deg);
  background-color: #fff;
  z-index: -1;
  transition: all 0.5s;
  top: 300px;
}

.search-booking a:hover:after {
  top: -130px;
}

.search-booking a:hover:before {
  top: 100px;
}

.mobile-btn {
  display: none;
}

.footer-nav a,
.footer-sub-nav a {
  position: relative;
  text-decoration: none;
  color: inherit;
}

.footer-nav a::after,
.footer-sub-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-nav a:hover::after,
.footer-sub-nav a:hover::after {
  transform: scaleX(1);
}
.to-top {
  position: fixed;
  right: 5px;
  bottom: 70px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  opacity: 0; /* 初期は非表示 */
  transition: opacity 0.3s ease;
  z-index: 200;
}

.to-top img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* アイコン画像をきれいに収める */
}

.to-top.show {
  opacity: 0.5; /* スクロールしたら表示 */
}

.main-view {
  margin-bottom: 200px;
}

/* フェード */
.content {
  opacity: 0;
  pointer-events: none;
}

body:not(.appear) .content {
  opacity: 0;
  pointer-events: none;
}
body.appear .content {
  animation-name: PageAnime-content;
  animation-duration: 0.5s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  pointer-events: auto;
}
.animation .content {
  opacity: 1;
  pointer-events: auto;
}
@keyframes PageAnime-content {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-in,
.fade-right,
.fade-left {
  opacity: 0;
  transition: all 1s ease;
}

/* ▼ 下から */
.fade-in {
  transform: translateY(20px);
}

/* ▼ 右から登場 */
.fade-right {
  transform: translateX(40px);
}

/* ▼ 左から登場 */
.fade-left {
  transform: translateX(-40px);
}

/* ▼ 画面に入ったら表示 */
.fade-in.active,
.fade-right.active,
.fade-left.active {
  opacity: 1;
  transform: translate(0, 0);
}
/* モバイル */
@media screen and (max-width: 768px) {
  header {
    height: 70px;
  }
  .header-inner {
    position: relative;
    z-index: 100;
  }
  .btn {
    display: block;
    z-index: 150;
    width: 25px;
    aspect-ratio: 1 / 1;
    background-color: transparent;
    border: none;
    outline: none;
  }
  .line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: relative;
    transition: all 0.5s 0.5s, rotate 0.5s 0s;
  }
  .line::before {
    display: block;
    width: 200%;
    height: 3px;
    background-color: #fff;
    position: relative;
    top: -15px;
    transition: all 0.5s 0.5s, rotate 0.5s 0s;
  }
  .line::after {
    display: block;
    width: 150%;
    height: 3px;
    background-color: #fff;
    position: relative;
    top: 15px;
    transition: all 0.5s 0.5s, rotate 0.5s 0s;
  }
  .line::before,
  .line::after {
    content: "";
    position: absolute;
    right: 0;
  }
  header.is-scrolled .line,
  header.is-scrolled .line::before,
  header.is-scrolled .line::after {
    background-color: #000;
  }
  .is-show .line,
  header.is-scrolled .btn.is-show .line {
    background-color: inherit;
    transition: all 0.2s 0s, rotate 0.2s 0s;
  }

  .is-show .line::before,
  header.is-scrolled .is-show .line::before {
    top: 0;
    width: 150%;
    transition: all 0.5s 0s, rotate 0.5s 0.5s;
    transform: rotate(45deg);
    background-color: #fff;
  }

  .is-show .line::after,
  header.is-scrolled .is-show .line::after {
    top: 0;
    width: 150%;
    transition: all 0.5s 0s, rotate 0.5s 0.5s;
    transform: rotate(-45deg);
    background-color: #fff;
  }

  .main-nav {
    min-width: auto;
    transform: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #767ec9;
    transition: clip-path 2s ease;
    clip-path: circle(0% at 100% 0);
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .main-nav ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .main-nav a {
    color: #fff;
    font-size: 1.1rem;
  }
  .top-nav-item a {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .main-nav.is-show {
    clip-path: circle(150% at 50% 50%);
  }
  .main-nav.is-show a {
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav.is-show .top-nav-item:nth-child(1) a {
    transition-delay: 0.5s;
  }
  .main-nav.is-show .top-nav-item:nth-child(2) a {
    transition-delay: 0.6s;
  }
  .main-nav.is-show .top-nav-item:nth-child(3) a {
    transition-delay: 0.7s;
  }
  .main-nav.is-show .top-nav-item:nth-child(4) a {
    transition-delay: 0.8s;
  }
  .main-nav.is-show .top-nav-item:nth-child(5) a {
    transition-delay: 0.9s;
  }

  .main-nav:not(.is-show) .top-nav-item:nth-child(1) a {
    transition-delay: 0.7s;
  }
  .main-nav:not(.is-show) .top-nav-item:nth-child(2) a {
    transition-delay: 0.6s;
  }
  .main-nav:not(.is-show) .top-nav-item:nth-child(3) a {
    transition-delay: 0.5s;
  }
  .main-nav:not(.is-show) .top-nav-item:nth-child(4) a {
    transition-delay: 0.4s;
  }
  .main-nav:not(.is-show) .top-nav-item:nth-child(5) a {
    transition-delay: 0.3s;
  }

  .footer-nav,
  .footer-sub-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }
  .mobile-btn {
    display: flex;
  }

  footer {
    padding-bottom: 70px;
  }
  .mobile-fixed-footer {
    display: flex;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 100;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  }
  .search-booking a:before,
  .search-booking a:after {
    content: none;
    display: none;
  }

  .search-booking a:hover {
    background-color: #bfa16f !important;
  }
  .mobile-fixed-footer .search-booking {
    width: 50%;
  }
  .mobile-fixed-footer .tel,
  .mobile-fixed-footer .access {
    width: 25%;
    background-color: #fff;
  }
  .search-booking a {
    position: relative;
    writing-mode: horizontal-tb;
    width: 100%;
    height: 100%;
    border: none;
  }
  .mobile-fixed-footer a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    text-align: center;
  }
  .mobile-btn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 4px;
  }
  .main-nav a:hover::before,
  .main-nav a:hover::after {
    opacity: 0;
  }

  .header-logo {
    width: 180px;
  }

  .main-view {
    margin-bottom: 100px;
  }
}
