@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background: #f5f0e6;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  color: #7a5230;
}
html {
  scroll-behavior: smooth;
}

body {
  display: block;
  position: relative;
}
body::-webkit-scrollbar {
  width: 3px;
}
body::-webkit-scrollbar-track {
  background: transparent;
}
body::-webkit-scrollbar-thumb {
  background: #804f21;
  border-radius: 2px;
}
body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("../images/bg_base.webp") center center no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  body::before {
    top: env(safe-area-inset-top);
  }
}

section, div[id] {
  scroll-margin-top: 48px;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

.sidebar-left {
  display: none;
}
@media (min-width: 768px) {
  .sidebar-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px 4px 72px 28px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
  }
}
@media (max-width: 991px) {
  .sidebar-left {
    justify-content: flex-end;
  }
}
.sidebar-left nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .sidebar-left nav {
    display: none;
  }
}
.sidebar-left nav a {
  font-size: 19px;
  line-height: 1;
  color: #804f21;
  text-decoration: none;
  letter-spacing: 0.075em;
  transition: opacity 0.2s;
}
@media (max-width: 1160px) {
  .sidebar-left nav a {
    font-size: 1.63vw;
  }
}
.sidebar-left nav a:hover {
  color: #3d2b1a;
}
.sidebar-left .flower {
  width: 300px;
  position: absolute;
  bottom: 248px;
  left: 50%;
  transform: translateX(-50%);
}
.sidebar-left .address {
  font-size: 18px;
  color: #804f21;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
@media (max-width: 1160px) {
  .sidebar-left .address {
    font-size: 1.63vw;
  }
}
@media (max-width: 991px) {
  .sidebar-left .address {
    display: none;
  }
}

.center {
  z-index: 1;
  position: relative;
}
@media (min-width: 768px) {
  .center {
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
  }
}
.sidebar-right {
  display: none;
}
@media (min-width: 768px) {
  .sidebar-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px 28px 72px 4px;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
  }
}
.sidebar-right .service-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .sidebar-right .service-list {
    display: none;
  }
}
.sidebar-right .service-list a {
  font-size: 19px;
  line-height: 1;
  color: #804f21;
  letter-spacing: 0.075em;
  text-align: right;
}
@media (max-width: 1160px) {
  .sidebar-right .service-list a {
    font-size: 1.63vw;
  }
}
.sidebar-right .service-list a:hover {
  color: #3d2b1a;
}
.sidebar-right .flower {
  width: 300px;
  position: absolute;
  bottom: 248px;
  left: 50%;
  transform: translateX(-50%);
}
.sidebar-right .bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .sidebar-right .bottom {
    display: none;
  }
}

.sp-header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  z-index: 200;
  display: none;
}
@media (max-width: 991px) {
  .sp-header {
    display: flex;
  }
}
@media (max-width: 767px) {
  .sp-header {
    padding: calc(20px + env(safe-area-inset-top)) 25px 20px;
    top: 0;
    height: calc(68px + env(safe-area-inset-top));
  }
}
.sp-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bg_base.webp") center center no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.sp-header .logo {
  font-size: 20px;
  color: #7a5230;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.sp-header .sns-row {
  display: flex;
  gap: 18px;
}
@media (max-width: 767px) {
  .sp-header .sns-row {
    gap: 10px;
  }
}
.sp-header .sns-icon {
  width: 36px;
  height: 36px;
}
@media (max-width: 767px) {
  .sp-header .sns-icon {
    width: 32px;
    height: 32px;
  }
}
.sp-header__logo {
  width: 73px;
  position: absolute;
  left: calc(50% + 3px);
  top: 16px;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.header-scrolled .sp-header::before {
  opacity: 1;
}
.header-scrolled .sp-header__logo {
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  position: relative;
}
@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
}
.hamburger.hidden {
  opacity: 0;
  pointer-events: none;
}
.hamburger span {
  display: block;
  width: 30px;
  height: 5px;
  background: #804f21;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  padding: 24px 26px 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  background: rgba(0, 0, 0, 0.3);
  top: 68px;
}
@media (min-width: 991px) {
  .drawer {
    display: none;
  }
}
.drawer.open {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 991px) {
  .drawer.open {
    display: none;
  }
}
.drawer nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 16px;
}
.drawer nav a {
  font-size: 14px;
  color: #804f21;
  text-align: right;
  line-height: 1;
}

.drawer-close {
  position: absolute;
  top: -64px;
  right: 28px;
  font-size: 32px;
  font-weight: 900;
  color: #804f21;
  cursor: pointer;
  background: none;
  border: none;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
}
@media (min-width: 991px) {
  .drawer-close {
    display: none;
  }
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
}
.overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 991px) {
  .overlay {
    display: none;
  }
}

.sp-footer-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: #3d2b1a;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
@media (min-width: 768px) {
  .sp-footer-nav {
    display: none;
  }
}
.sp-footer-nav a {
  color: #c9a882;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-decoration: none;
  font-weight: 300;
  border: 1px solid rgba(201, 168, 130, 0.5);
  padding: 9px 32px;
  border-radius: 2px;
}

.sec {
  width: 100%;
  padding: 38px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .sec {
    padding: 56px 0;
  }
}

.sec-title {
  font-size: 25px;
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
  background: #804f21;
  width: 225px;
  height: 34px;
  display: grid;
  place-content: center;
}

.sec-text {
  font-size: 14px;
  color: #804f21;
  text-align: center;
  line-height: 1.94;
  letter-spacing: 0.15em;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
  display: grid;
  gap: 0.5em;
}
@media (max-width: 767px) {
  .sec-text {
    font-size: 13px;
  }
}
.sec-text .lg {
  font-size: 1.32em;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

.img-ph {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.read-more {
  font-size: 18px;
  color: #804f21;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #804f21;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.5;
  padding-inline: 5px;
}
.read-more::before, .read-more::after {
  content: "";
  width: 4px;
  height: 4px;
  background: #804f21;
  border-radius: 50%;
  display: block;
  position: relative;
  bottom: -2px;
}

.access .read-more, .reservation .read-more {
  font-size: 18px;
}

.child-header {
  padding-top: 32px;
  overflow: hidden;
}
.child-header .hero-logo {
  display: block;
  width: 152px;
  margin: 60px auto 40px;
}

.section-header {
  display: grid;
  place-content: center;
  width: 100%;
  aspect-ratio: 2/1;
}
.section-header__title {
  font-size: 34px;
}

.sec-hero {
  padding: 0;
  padding-bottom: 62px;
  gap: 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .sec-hero {
    padding-top: 72px;
  }
}
.sec-hero .leaf-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
  filter: brightness(1.2) contrast(0.9) saturate(0.8) sepia(0.3) hue-rotate(10deg);
}
.sec-hero .hero-kv-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}
.sec-hero .hero-kv {
  width: 100%;
  aspect-ratio: 1;
  position: relative;
}
.sec-hero .hero-kv img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 3s ease;
}
.sec-hero .hero-kv img:first-child, .sec-hero .hero-kv img.active {
  opacity: 1;
}
.sec-hero .hero-kv-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: -42px;
}
.sec-hero .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #804f21;
  opacity: 0.5;
}
.sec-hero .dot.active {
  opacity: 0.8;
}
.sec-hero .hero-body {
  padding: 24px 10px 0;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.sec-hero .hero-logo img {
  width: 264px;
}
@media (max-width: 767px) {
  .sec-hero .hero-logo img {
    width: 146px;
  }
}
.sec-hero .hero-sub {
  font-size: 9px;
  letter-spacing: 0.26em;
  color: #a07c54;
  font-weight: 300;
}
.sec-hero .hero-catch {
  font-size: 19px;
  color: #804f21;
}
.sec-hero .hero-btn a {
  font-size: 19px;
  color: #804f21;
  padding: 0 8px 7px;
  border-bottom: 1px solid #804f21;
}
.about, .menu, .access {
  background: url("../images/bg_white.png") center center no-repeat;
  background-size: cover;
}

.sec-reservation {
  background: #3d2b1a;
}
.sec-reservation .sec-title {
  background: #6b3e1e;
}
.sec-reservation .sec-text {
  color: #c9a882;
}

.reserve-btn {
  display: inline-block;
  border: 1px solid rgba(201, 168, 130, 0.6);
  color: #c9a882;
  font-size: 11px;
  letter-spacing: 0.16em;
  padding: 10px 36px;
  border-radius: 2px;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 300;
  text-decoration: none;
  transition: background 0.2s;
}
.reserve-btn:hover {
  background: rgba(201, 168, 130, 0.15);
}

.site-footer {
  background: #804f21;
  color: white;
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media (max-width: 767px) {
  .site-footer {
    padding-bottom: calc(env(safe-area-inset-bottom) + 40px);
  }
}
.site-footer .footer-logo img {
  display: block;
  width: 124px;
}
.site-footer .footer-sub {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: #a07c54;
  font-weight: 300;
}
.site-footer .footer-desc {
  font-size: 13px;
  line-height: 2.2;
  text-align: center;
  letter-spacing: 0.08em;
}
.site-footer .footer-info {
  font-size: 13px;
  line-height: 2.2;
  text-align: center;
  letter-spacing: 0.08em;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
}
.site-footer .footer-info a {
  color: white;
}
.site-footer .footer-copyright {
  font-size: 11px;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", "Yu Gothic", "游ゴシック", YuGothic, sans-serif;
}

.sns-row {
  display: flex;
  gap: 20px;
  position: relative;
}

.sns-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}
.sns-icon:hover {
  background: rgba(139, 94, 60, 0.1);
}

.follow-label {
  font-size: 19px;
  color: #804f21;
  line-height: 1;
  letter-spacing: 0.075em;
  text-align: center;
}
@media (max-width: 1160px) {
  .follow-label {
    font-size: 1.63vw;
  }
}

.side-reserve-btn {
  width: 100%;
  text-align: center;
  border: 1px solid #804f21;
  color: #804f21;
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 8px 0;
  border-radius: 2px;
  font-family: "fot-tsukubrdgothic-std", sans-serif;
  font-weight: 300;
  text-decoration: none;
  display: block;
  transition: background 0.2s, color 0.2s;
}
.side-reserve-btn:hover {
  background: #804f21;
  color: #fff;
}

.map-ph {
  width: 100%;
  height: 140px;
  background: #dde0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8f7a;
  font-size: 11px;
  letter-spacing: 0.1em;
}

/*# sourceMappingURL=style.css.map */
