html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  scroll-padding: 100px;
}
body {
}
h1 {
  font-family: "Zen Old Mincho", serif;
}
h2 {
  font-family: "Zen Old Mincho", serif;
  color: #fff;
}
p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: min(calc(20 / 1920 * 100vw), 2rem);
  line-height: 2;
  color: #fff;
}
a {
  text-decoration: unset;
  display: block;
}
img {
  width: 100%;
  max-width: 100%;
  display: block;
}
.pc {
  display: block;
}
.sp {
  display: none;
}

/* -------------
door
------------------*/
.opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 9999;
  overflow: hidden;
}

/* 扉 */
.door {
  flex: 1;
  background: #d4b987;
  /* background: url(../img/door.webp); */
  transition: transform 1.5s ease-in-out;
}
.left-door {
  transform-origin: left center;
}
.right-door {
  transform-origin: right center;
}

/* 開くアニメーション */
.open .left-door {
  transform: perspective(1200px) rotateY(-90deg);
}
.open .right-door {
  transform: perspective(1200px) rotateY(90deg);
}

/* 光のアニメーション */
@keyframes flash {
  0% {
    opacity: 0;
    transform: translateX(-50%) scaleX(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(2);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
  }
}

/* 扉が開いたら非表示 */
.opening.hidden {
  display: none;
}

/* ---------- Main Content ---------- */
.site-content {
  position: relative;
  z-index: 1;
  opacity: 1;
  transition: opacity 1s ease;
}
.open + .site-content {
  opacity: 1;
}
/* --------------
btn
-------------------*/
.c-btn {
  background-color: #d0a735;
  width: calc(296 / 1920 * 100vw);
  padding: calc(16 / 1920 * 100vw) 0;
  margin-top: calc(62 / 1920 * 100vw);
}
.c-btn a {
  color: #fff;
  font-size: min(calc(24 / 1920 * 100vw), 2.4rem);
  text-align: center;
  position: relative;
}

.c-btn a::after {
  content: "";
  background: url(../img/arw_w.png) no-repeat;
  background-size: contain;
  width: calc(59.5 / 1920 * 100vw);
  aspect-ratio: 59.5/4.5;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: calc(-39 / 1920 * 100vw);
}
header {
  position: relative;
}
.header_sp {
  display: none;
}
.h-inner {
  position: fixed;
  width: 100%;
  z-index: 9998;
  display: flex;
  align-items: center;
  padding: calc(20 / 1920 * 100vw) 0;
  justify-content: space-evenly;
}
.h-logo {
  width: calc(357 / 1920 * 100vw);
}
.h-nav ul {
  display: flex;
  gap: calc(36/1920*100vw);

}
.h-nav ul li a {
  color: #fff;
  font-size: min(calc(20 / 1920 * 100vw), 2rem);
  font-family: "Zen Old Mincho", serif;
}
.h-sns ul {
  display: flex;
  align-items: center;
  gap: calc(36/1920*100vw);
}
.h-sns ul li {
}
.h-instagram {
  width: calc(37 / 1920 * 100vw);
}
.h-tabelog {
  width: calc(65 / 1920 * 100vw);
}
footer {
  position: relative;
}
.f-inner {
  background-color: #1d1d1d;
  padding: calc(88 / 1920 * 100vw) 0 calc(40 / 1920 * 100vw);
}
.f-logo {
  width: calc(357 / 1920 * 100vw);
  margin: 0 auto;
}
.f-box {
  display: flex;
  justify-content: center;
  margin: calc(55 / 1920 * 100vw) 0 calc(65 / 1920 * 100vw);
  align-items: center;
}

.f-list ul {
  display: flex;
  gap: calc(36 / 1920 * 100vw);
}
.f-list ul li a {
  color: #fff;
  font-size: min(calc(20 / 1920 * 100vw), 2rem);
}
.f-sns {
  margin-left: calc(53 / 1920 * 100vw);
}
.f-sns ul {
  display: flex;
  justify-content: center;
  gap: calc(36 / 1920 * 100vw);
  align-items: center;
}

.f-instagram {
  width: calc(37 / 1920 * 100vw);
}
.f-tabelog {
  width: calc(65 / 1920 * 100vw);
}
.copy p {
  color: #fff;
  text-align: center;
}
.page_top {
  width: calc(80/1920*100vw);
      position: absolute;
    bottom: calc(60/1920*100vw);
    right: calc(230/1920*100vw);

}
@media screen and (max-width: 768px) {
  p {
    font-size: 2rem;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .c-btn {
    width: 262px;
    margin: 40px auto 0;
  }
  .c-btn a {
    font-size: 2.4rem;
    padding: 16px 0;
  }
  .c-btn a::after {
    width: 60px;
    right: -20px;
  }
  /* -------------
  header
  -----------------*/
  .h-logo {
    width: 234px;
  }
  .h-nav {
    position: fixed;
    top: 0px;
    left: 100vw;
    width: 100%;
    height: 100%;
    transition: left 0.6s ease;
    z-index: 999;
    background-color: #d4b987;
  }
  .h-nav.active {
    left: 0;
  }
  .h-inner {
    padding: 8px 20px;
    z-index: 999;
    width: auto;
  }
  .h-nav ul {
    display: block;
    background-size: cover;
    height: 100vh;
    width: 100%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: relative;
    top: 0;
  }
  .h-nav ul li a {
    font-size: 2.4rem;
    color: #000;
  }
  .menu-btn {
    display: block;
    pointer-events: all;
    position: fixed;
    top: 25px;
    right: 20px;
    width: 57px;
    height: 57px;
    text-align: center;
    cursor: pointer;
    z-index: 1001;
    border: unset;
    background-color: #d0a735;
    padding: 10px;
  }
  .menu-btn p {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 35px;
    font-size: 10px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    font-family: "Zen Old Mincho", serif;
  }
  .menu-btn .bar {
    display: block;
    position: absolute;
    width: 37px;
    height: 5px;
    background: #fff;
  }
  .menu-btn .bar:nth-of-type(1) {
    top: 10px;
    transition: 0.3s;
  }
  .menu-btn .bar:nth-of-type(2) {
    top: 20px;
  }
  .menu-btn .bar:nth-of-type(3) {
    top: 30px;
    transition: 0.3s;
  }
  .menu-btn.active .bar:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
    transition: 0.3s;
  }
  .menu-btn.active .bar:nth-child(2) {
    top: 10px;
    opacity: 0;
  }
  .menu-btn.active .bar:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
    transition: 0.3s;
  }

  /* ---------------
  footer
  ----------------*/
  footer {
    position: relative;
  }
  .f-logo {
    width: 234px;
  }
  .f-inner {
    padding: 48px 0 74px;
  }
  .f-box {
    margin: 56px 0 36px;
    display: block;
  }
  .f-list ul {
    flex-wrap: wrap;
    gap: 36px 50px;
    justify-content: center;
    margin-bottom: 36px;
  }
  .f-list ul li a {
    font-size: 1.6rem;
  }
  .f-sns ul {
    gap: 26px;
  }
  .f-instagram {
    width: 37px;
  }
  .f-tabelog {
    width: 51px;
  }
  .copy {
    margin-bottom: 30px;
  }
  .copy p {
    font-size: 1.4rem;
    font-family: "Zen Old Mincho", serif;
    letter-spacing: .1rem;
  }
  .sp_flooting {
    position: fixed;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 最後だけ固定幅 */
    width: 100%;
    gap: 3px;
    background-color: #232649;
    z-index: 999;
    align-items: center;
    padding: 10px 0;
  }
  .sp_flooting .sp_tel_btn {
    border-right: solid 2px #fff;
    letter-spacing: 0.2rem;
    height: 65px;
  }
  .sp_flooting .sp_web {
    border-right: solid 2px #fff;
    height: 65px;
  }
  .sp_flooting .sp_tel_btn img {
    width: 46px;
    margin: 9px auto;
  }

  .sp_flooting .sp_web img {
    width: 37px;
    margin: 14px auto;
  }
  .sp_tabelog {
    width: 65px;
    margin: 0 auto;
  }
  .page_top {
    width: 50px;
    position: absolute;
    bottom: 130px;
    right: 20px;
  }
}
