* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: #332a20;
  background: #fbf8ef;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 15px 38px 15px 26px;
  border-radius: 999px;
  color: #fff;
  background: #6f935a;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 10px 22px rgba(73, 106, 63, .16);
  transition: background-color .55s ease, box-shadow .55s ease;
}

.button:hover {
  background: #e69a44;
  box-shadow: 0 12px 26px rgba(230, 154, 68, .22);
}

.button::before {
  content: "";
  width: 30px;
  height: 30px;
  margin-right: 16px;
  background: url("../img/btn-leaf.png") center / contain no-repeat;
}

.button--small {
  min-width: 158px;
  padding: 10px 24px 10px 16px;
  font-size: 14px;
}

.button--small::before {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

.section {
  padding: 70px 0;
  position: relative;
}

.section__inner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
}

.section__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 8px;
  color: #332a20;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  text-align: center;
}

.section__label::before,
.section__label::after {
  content: "";
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
}

.section__label::before {
  background: url("../img/icon-leaf.png") center / contain no-repeat;
}

.section__label::after {
  visibility: hidden;
}

.section__label--left {
  justify-content: flex-start;
  text-align: left;
}

.section__title {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.7;
}

.section__title--center {
  text-align: center;
  font-size: clamp(21px, 2.4vw, 27px);
  line-height: 1.5;
}

.header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(12px);
  transform: translateZ(0);
}

.header__inner {
  width: min(1120px, calc(100% - 64px));
  min-height: 86px;
  padding-top: 8px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__title {
  margin: 0;
}

.header__logo {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 134px;
  height: 41px;
  overflow: hidden;
}

.header__logo img {
  position: absolute;
  top: -38px;
  left: -25px;
  width: 200px;
  max-width: none;
}

.header__drawer {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__drawer-button {
  display: none;
}

.header__drawer-close {
  display: none;
}

.header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  animation: headerChromeFade .5s ease .18s both;
}

.header__link {
  transition: color .3s ease;
}

.header__link:hover {
  color: #6f935a;
}

.header__button {
  animation: headerChromeFade .5s ease .18s both;
}

.drawer-toggle,
.drawer-menu {
  display: none;
}

@keyframes headerChromeFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.page-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 18;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
}

.page-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.js-section-heading,
.js-section-content {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1.05s ease, transform 1.05s ease;
}

.js-section-content {
  transform: translateY(26px);
  transition-duration: 1.25s;
}

.js-section-heading.is-visible,
.js-section-content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  overflow: hidden;
  padding: 96px 0 58px;
  min-height: 680px;
  background: radial-gradient(circle at 18% 16%, rgba(255, 255, 255, .95), transparent 34%), linear-gradient(90deg, #fbf8ef 0 42%, #f6f0df 42% 100%);
}

.hero__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  position: relative;
}

.hero__content {
  z-index: 2;
  padding: 0 0 0 8px;
}

.hero__title {
  margin: 0 0 28px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.78;
  letter-spacing: .04em;
  animation: heroFadeUp 1.8s ease-out .35s both;
  will-change: opacity, transform;
}

.hero__title span {
  color: #496a3f;
}

.hero__title-accent {
  color: #e69a44 !important;
}

.hero__lead,
.hero__text {
  font-weight: 400;
}

.hero__lead {
  margin: 0 0 22px;
  animation: heroFadeUp 1.8s ease-out .95s both;
  will-change: opacity, transform;
}

.hero__text {
  margin: 0 0 28px;
  animation: heroFadeUp 1.9s ease-out 1.4s both;
  will-change: opacity, transform;
}

.hero__action {
  position: relative;
  width: fit-content;
  animation: heroFadeUp 1.9s ease-out 1.85s both;
  will-change: opacity, transform;
}

.hero__visual {
  position: relative;
  min-height: 560px;
}

.hero__photo-wrap {
  position: absolute;
  top: -96px;
  right: -130px;
  z-index: 0;
  width: min(900px, 70vw);
  height: 650px;
  overflow: hidden;
  border-radius: 0;
  contain: paint;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, .08) 5%, rgba(0, 0, 0, .65) 18%, #000 32%);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, .08) 5%, rgba(0, 0, 0, .65) 18%, #000 32%);
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
  animation: heroPhotoZoom 3.8s ease-out .6s both;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: opacity, transform;
}

.hero__leaf {
  position: absolute;
  pointer-events: none;
}

.hero__leaf--left {
  top: 28%;
  left: calc(100% + 87px);
  width: 128px;
  transform: translateY(-46%);
  animation: heroLeafFade 2.15s ease-out 2.25s both;
  will-change: opacity, transform;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroPhotoZoom {
  from {
    opacity: .92;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes heroLeafFade {
  from {
    opacity: 0;
    transform: translateY(-42%) translateX(-10px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(-46%) translateX(0) scale(1);
  }
}
.concept {
  background: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .2));
  overflow-x: hidden;
}

.concept__heading {
  margin-bottom: 50px;
  text-align: center;
}

.concept__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 74px;
  align-items: center;
}

.concept__visual {
  position: relative;
  transform: translateX(-18px);
}

.concept__image {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 42% 48% 38% 14% / 18% 38% 20% 16%;
  box-shadow: 0 18px 40px rgba(215, 185, 134, .16);
}

.concept__catch {
  font-size: clamp(23px, 2.5vw, 32px);
}

.concept__text {
  margin: 28px 0 0;
  font-weight: 400;
}

.space {
  background: #fff;
}

.space .section__label {
  margin-bottom: 30px;
}

.space__title {
  font-size: clamp(18px, 2vw, 23px);
}

.space__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.space-card {
  min-height: 206px;
  padding: 22px 14px 18px;
  text-align: center;
  background: rgba(255, 255, 255, .72);
  border: 1px solid #e8ddc8;
  border-radius: 8px;
}

.space-card__icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 10px;
  object-fit: contain;
}

.space-card__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.space-card__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
}

.menu {
  overflow: visible;
}

.menu .section__label {
  margin-bottom: 30px;
}

.menu__title {
  font-size: clamp(18px, 2vw, 23px);
}

.menu__title-break {
  display: none;
}

.menu__tabs {
  width: min(640px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.menu__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  border: 1px solid #e8ddc8;
  background: rgba(232, 228, 216, .72);
  color: #332a20;
  border-radius: 8px 8px 0 0;
  font: 700 15px / 1 "Noto Sans JP", sans-serif;
  cursor: pointer;
}

.menu__tab img {
  width: 22px;
  height: 22px;
}

.menu__tab .menu__tab-icon {
  filter: brightness(0) saturate(100%) invert(70%) sepia(49%) saturate(700%) hue-rotate(340deg) brightness(94%) contrast(91%);
}

.menu__tab .menu__tab-icon--adult {
  width: 32px;
  height: 32px;
}

.menu__tab.is-active {
  background: #6f935a;
  color: #fff;
  border-color: #6f935a;
}

.menu__tab.is-active .menu__tab-icon--adult,
.menu__tab.is-active .menu__tab-icon--child {
  filter: brightness(0) invert(1);
}

.menu__panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 48px 32px;
  background: rgba(255, 255, 255, .78);
  border: 1px solid #e8ddc8;
  border-radius: 8px;
}

.menu__panel[hidden] {
  display: none;
}

.menu__panel.is-fade-out {
  animation: menuPanelFadeOut .24s ease-in-out both;
}

.menu__panel.is-fade-in {
  animation: menuPanelFadeIn .42s ease-in-out both;
}

.menu__allergy {
  width: fit-content;
  margin: -16px auto 0;
  padding: 5px 28px;
  border: 1px solid #e69a44;
  border-radius: 999px;
  background: #fffdf7;
  font-size: 13px;
  font-weight: 700;
}

.menu__decor {
  position: absolute;
  pointer-events: none;
}

.menu__decor--flower {
  left: clamp(-98px, calc(180px - 17.4vw), -16px);
  top: 132px;
  width: 87px;
}

.menu__decor--leaf {
  right: clamp(-98px, calc(180px - 17.4vw), -16px);
  bottom: -24px;
  width: 87px;
}

@keyframes menuPanelFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes menuPanelFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.menu-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .42s ease;
}

.menu-card:hover {
  transform: translateY(-3px);
}

.menu-card__image-frame {
  width: 100%;
  aspect-ratio: 1.48 / 1;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.menu-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  transition: transform .55s ease;
}

.menu-card__image--coffee {
  object-position: 50% 56%;
  transform: scale(1.18);
}

.menu-card__image--cake {
  object-position: 50% 50%;
  transform: scale(1.12);
}

.menu-card__image--quiche {
  object-position: 50% 34%;
  transform: translateY(-10px) scale(1.12);
}

.menu-card__image--plate {
  object-position: 50% 76%;
  transform: scale(1.22);
}

.menu-card__image--snack {
  object-position: 50% 78%;
  transform: scale(1.22);
}

.menu-card__image--drink {
  object-position: 50% 76%;
  transform: scale(1.35);
}

.menu-card__title {
  margin: 0 0 2px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

.menu-card__price {
  margin: 0 0 10px;
  font-weight: 500;
}

.menu-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 400;
}

.information {
  background: #fff;
}

.information__heading {
  margin-bottom: 30px;
  text-align: center;
}

.information__inner {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 24px;
}

.information__reservation,
.information__facility {
  min-height: 190px;
  padding: 26px 30px;
  background: #fbf8ef;
  border: 1px solid #e8ddc8;
  border-radius: 8px;
}

.information__reservation {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 22px;
  align-items: center;
}

.information__calendar {
  width: 80px;
}

.information__title {
  margin: 0 0 12px;
  font-family: "Noto Serif JP", serif;
  font-size: 21px;
  font-weight: 500;
}

.information__subtitle {
  margin: 0 0 12px;
  font-family: "Noto Serif JP", serif;
  font-size: 21px;
  font-weight: 400;
}

.information__text {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 400;
}

.information__facility {
  position: relative;
  overflow: hidden;
  padding-right: 250px;
}

.information__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 400;
}

.information__list li + li {
  margin-top: 6px;
}

.information__list li:last-child {
  white-space: nowrap;
}

.information__image {
  position: absolute;
  right: -72px;
  bottom: -70px;
  width: 375px;
  border-radius: 0 0 8px 0;
}

.access {
  background: #fff;
}

.access__heading {
  margin-bottom: 30px;
  text-align: center;
}

.access__grid {
  display: grid;
  grid-template-columns: 1.15fr 2.05fr;
  gap: 24px;
}

.access__map,
.access__details {
  min-height: 182px;
  padding: 26px 30px;
  background: #fbf8ef;
  border: 1px solid #e8ddc8;
  border-radius: 8px;
}

.access__map {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.access__map iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
}

.access__info {
  font-style: normal;
}

.access__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.access__title {
  margin: 0 0 14px;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 400;
}

.access__info p,
.access__hours dd {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.access__info p + p {
  margin-top: 12px;
}

.access__hours dl,
.access__hours dt {
  margin: 0;
}

.access__hours dt {
  font-weight: 400;
}

.access__hours dd + dt {
  margin-top: 10px;
}

.footer {
  position: relative;
  padding: 34px 0 14px;
  background: linear-gradient(180deg, #edf0d6, #e4e9c7);
}

.footer__inner {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
}

.footer__logo {
  position: relative;
  display: block;
  width: 132px;
  height: 40px;
  overflow: hidden;
  justify-self: start;
}

.footer__logo img {
  position: absolute;
  top: -37px;
  left: -25px;
  width: 197px;
  max-width: none;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 46px;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
}

.footer__nav a {
  transition: color .3s ease;
}

.footer__nav a:hover {
  color: #e69a44;
}

.footer__sns {
  display: flex;
  gap: 14px;
  justify-self: end;
}

.footer__sns-link {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #6f935a;
  transition: color .3s ease, background-color .3s ease;
}

.footer__sns-link:hover {
  color: #e69a44;
}

.footer__sns-link--instagram {
  border-radius: 50%;
  background: #6f935a;
}

.footer__sns-link--instagram:hover {
  background: #e69a44;
}

.footer__sns-link--instagram img {
  filter: brightness(0) invert(1);
}

.footer__sns img {
  width: 20px;
  height: 20px;
}

.footer__sns-link--x img {
  width: 34px;
  height: 34px;
}

.footer__sns-icon {
  width: 34px;
  height: 34px;
  display: block;
}

.footer__copy {
  margin: 8px 0 0;
  text-align: center;
  font-size: 11px;
}

@media (max-width: 950px) {
  .section__inner {
    width: min(100% - 40px, 1080px);
  }

  body.is-drawer-open {
    overflow: hidden;
  }

  .header {
    position: static;
    transform: none;
  }

  .header::before {
    content: none;
  }

  .header__inner {
    width: min(100% - 40px, 1120px);
    height: auto;
    padding: 14px 0 10px;
    justify-content: space-between;
  }

  .header__nav,
  .header__button {
    display: none;
  }

  .drawer-toggle {
    position: fixed;
    top: 20px;
    right: 16px;
    z-index: 10000;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    cursor: pointer;
  }

  .drawer-toggle span {
    position: absolute;
    width: 22px;
    height: 2px;
    background: #496a3f;
    transition: all .5s ease;
  }

  .drawer-toggle span:nth-child(1) {
    transform: translateY(-7px);
  }

  .drawer-toggle span:nth-child(3) {
    transform: translateY(7px);
  }

  body.is-drawer-open .drawer-toggle {
    opacity: 0;
    pointer-events: none;
  }

  .drawer-menu {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 9999;
    min-height: 100vh;
    min-height: 100svh;
    padding: 104px 30px 40px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    color: #fff;
    background: #6f935a;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .62s ease, visibility .62s ease, transform .62s ease;
    overflow-y: auto;
  }

  body.is-drawer-open .drawer-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .drawer-menu__close {
    position: fixed;
    top: 20px;
    right: 16px;
    z-index: 10001;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    cursor: pointer;
  }

  .drawer-menu__close span {
    position: absolute;
    width: 22px;
    height: 2px;
    background: #496a3f;
  }

  .drawer-menu__close span:nth-child(1) {
    transform: rotate(-45deg);
  }

  .drawer-menu__close span:nth-child(2) {
    transform: rotate(45deg);
  }

  .drawer-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    text-align: center;
  }

  .drawer-menu__button {
    color: #6f935a;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 34px 0 60px;
  }

  .hero__inner,
  .concept__inner {
    grid-template-columns: 1fr;
  }

  .hero__content {
    max-width: 560px;
    padding-left: 0;
  }

  .hero__visual {
    min-height: auto;
    margin-top: 32px;
  }

  .hero__photo-wrap {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1.5 / 1;
    border-radius: 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, .1) 4%, rgba(0, 0, 0, .78) 16%, #000 28%);
    mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, .1) 4%, rgba(0, 0, 0, .78) 16%, #000 28%);
  }

  .concept__inner,
  .information__inner,
  .access__grid {
    grid-template-columns: 1fr;
  }

  .access__details {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .concept__visual {
    transform: none;
  }

  .space__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .menu__panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .information__facility {
    padding-right: 30px;
    padding-bottom: 220px;
  }

  .information__list li:last-child {
    white-space: normal;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer__logo,
  .footer__sns {
    justify-self: center;
  }
}

@media (min-width: 521px) and (max-width: 950px) {
  .section {
    padding: 64px 0;
  }

  .section__inner {
    width: min(100% - 56px, 860px);
  }

  .header__inner {
    width: min(100% - 56px, 1120px);
    min-height: 78px;
  }

  .header__drawer {
    width: 100%;
  }

  .hero {
    padding: 40px 0 66px;
  }

  .hero__inner {
    width: min(100% - 56px, 860px);
  }

  .hero__content {
    max-width: 620px;
  }

  .hero__title {
    font-size: clamp(35px, 5vw, 42px);
  }

  .hero__visual {
    margin-top: 38px;
  }

  .hero__photo-wrap {
    aspect-ratio: 1.7 / 1;
  }

  .hero__leaf--left {
    width: clamp(210px, 32vw, 280px);
  }

  .concept__heading {
    margin-bottom: 42px;
  }

  .concept__inner {
    max-width: 820px;
    gap: 46px;
  }

  .concept__visual {
    max-width: 640px;
    margin: 0 auto;
  }

  .concept__body {
    max-width: 620px;
    margin: 0 auto;
  }

  .space__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .space-card {
    min-height: 196px;
    padding: 20px 12px 18px;
  }

  .menu__panel {
    gap: 24px;
  }

  .menu__decor--flower {
    top: 96px;
  }

  .information__inner {
    max-width: 820px;
  }

  .information__reservation {
    grid-template-columns: 86px 1fr;
  }

  .information__reservation-body {
    display: contents;
  }

  .information__title,
  .information__text {
    grid-column: 2;
  }

  .information__button {
    display: flex;
    grid-column: 1 / -1;
    width: fit-content;
    margin: 22px auto 0;
  }

  .information__facility {
    padding-right: 230px;
    padding-bottom: 90px;
  }

  .information__image {
    width: clamp(290px, 42vw, 350px);
    right: -62px;
    bottom: -64px;
  }

  .access__grid {
    max-width: 820px;
    margin: 0 auto;
  }

  .access__details {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__inner {
    width: min(100% - 56px, 860px);
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 14px 34px;
  }
}
@media (max-width: 640px) {
  .section {
    padding: 52px 0;
  }

  .section__inner {
    width: min(100% - 28px, 1080px);
  }

  .header__button {
    width: 100%;
  }

  .hero {
    background: #fbf8ef;
  }

  .hero__inner {
    width: min(100% - 28px, 1180px);
  }

  .hero__button {
    width: 100%;
  }

  .hero__action {
    width: 100%;
  }

  .hero__leaf--left {
    left: auto;
    right: 0;
    width: 192px;
    transform: translateY(-44%);
    animation-name: heroLeafFadeSp;
  }

  .space__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .space-card {
    padding-inline: 10px;
  }

  .menu__tabs {
    grid-template-columns: 1fr;
  }

  .menu__panel {
    grid-template-columns: 1fr;
    padding: 34px 16px 44px;
  }

  .information__reservation {
    grid-template-columns: 1fr;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 14px 24px;
  }
}
@media (min-width: 641px) and (max-width: 950px) {
  .hero__leaf--left {
    top: 22%;
    right: auto;
    left: calc(100% + 85px);
    width: 130px;
    transform: translateY(-46%);
  }
}
@media (min-width: 521px) and (max-width: 640px) {
  .section {
    padding: 60px 0;
  }

  .section__inner {
    width: min(100% - 44px, 860px);
  }

  .hero__inner {
    width: min(100% - 44px, 860px);
  }

  .hero__action {
    width: fit-content;
    margin-inline: auto;
  }

  .hero__button {
    width: auto;
    min-width: 220px;
  }

  .hero__leaf--left {
    top: -115px;
    right: -150px;
    width: 135px;
  }

  .menu__tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu__panel {
    padding: 34px 22px 44px;
  }

  .information__reservation {
    grid-template-columns: 86px 1fr;
  }
}
@media (max-width: 520px) {
  .button {
    min-width: 0;
    padding-inline: 22px;
    font-size: 14px;
  }

  .button::before {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }

  .section {
    padding: 46px 0;
  }

  .section__inner {
    width: min(100% - 28px, 1080px);
  }

  .section__label {
    font-size: 20px;
  }

  .header__inner {
    width: min(100% - 28px, 1120px);
  }

  .header__drawer {
    width: 100%;
    padding: 94px 24px 28px;
  }

  .hero {
    padding-top: 22px;
  }

  .hero__content {
    padding-inline: 14px;
  }

  .hero__action {
    width: fit-content;
    margin-inline: auto;
  }

  .hero__button {
    width: auto;
    min-width: 0;
  }

  .hero__title {
    margin-bottom: 22px;
    font-size: clamp(29px, 8vw, 34px);
    line-height: 1.72;
  }

  .hero__lead {
    margin-bottom: 18px;
  }

  .hero__text {
    margin-bottom: 24px;
    font-size: 14px;
  }

  .hero__visual {
    margin-top: 26px;
  }

  .hero__photo-wrap {
    aspect-ratio: 1.28 / 1;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, .18) 4%, rgba(0, 0, 0, .86) 15%, #000 26%);
    mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, .18) 4%, rgba(0, 0, 0, .86) 15%, #000 26%);
  }

  .hero__photo {
    object-position: 56% 50%;
  }

  .hero__leaf--left {
    top: -36px;
    right: -80px;
    width: 60px;
  }

  .concept__heading {
    margin-bottom: 34px;
  }

  .concept__inner {
    gap: 34px;
  }

  .concept__body {
    padding-inline: 10px;
  }

  .concept__catch {
    font-size: 22px;
    line-height: 1.65;
  }

  .concept__text {
    font-size: 14px;
  }

  .space__grid {
    grid-template-columns: 1fr;
  }

  .space-card {
    min-height: 190px;
    padding: 18px 8px 16px;
  }

  .space-card__icon {
    width: 64px;
    height: 64px;
  }

  .space-card__title {
    font-size: 15px;
  }

  .space-card__text {
    font-size: 12px;
    line-height: 1.7;
  }

  .menu__tabs {
    margin-top: 26px;
  }

  .menu__title-break {
    display: block;
  }

  .menu__tab {
    min-height: 46px;
    font-size: 14px;
  }

  .menu__panel {
    gap: 22px;
    padding: 42px 14px 42px;
  }

  .menu__allergy {
    width: min(100%, 320px);
    padding-inline: 14px;
    text-align: center;
  }

  .menu__decor--flower {
    display: none;
  }

  .menu__decor--leaf {
    right: -26px;
    bottom: -42px;
    width: 58px;
  }

  .information__reservation,
  .information__facility {
    padding: 22px 20px;
  }

  .information__reservation {
    position: relative;
    display: block;
    text-align: left;
  }

  .information__calendar {
    position: absolute;
    top: 22px;
    right: 20px;
    width: 70px;
    margin-top: 0;
  }

  .information__title {
    min-height: 70px;
    margin: 0 0 8px;
    padding-right: 92px;
    display: flex;
    align-items: center;
  }

  .information__subtitle {
    margin-top: 0;
    min-height: 70px;
    display: flex;
    align-items: center;
  }

  .information__text {
    text-align: left;
  }

  .information__button {
    display: flex;
    width: fit-content;
    margin-inline: auto;
  }

  .information__facility {
    padding-bottom: 178px;
  }

  .information__image {
    right: auto;
    left: 50%;
    bottom: -48px;
    width: 270px;
    transform: translateX(-50%);
  }

  .access {
    padding-top: 18px;
  }

  .access__map,
  .access__details {
    padding: 22px 20px;
  }

  .access__map {
    padding: 0;
  }

  .access__title {
    font-size: 21px;
  }

  .footer {
    padding-top: 30px;
  }

  .footer__inner {
    width: min(100% - 28px, 1080px);
    gap: 20px;
  }

  .footer__logo,
  .footer__sns {
    justify-self: center;
  }

  .footer__nav {
    gap: 12px 18px;
    font-size: 13px;
  }

  .page-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 767px) {
  .button:hover {
    background: #6f935a;
    box-shadow: 0 10px 22px rgba(73, 106, 63, .16);
  }

  .header__link:hover,
  .footer__nav a:hover {
    color: inherit;
  }

  .header__button:hover {
    color: #6f935a;
  }

  .menu-card:hover {
    transform: none;
  }

  .footer__sns-link:hover {
    color: #6f935a;
  }

  .footer__sns-link--instagram:hover {
    background: #6f935a;
  }
}
@keyframes heroLeafFadeSp {
  from {
    opacity: 0;
    transform: translateY(-40%) translateX(-8px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(-44%) translateX(0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
