body {
  min-width: 320px;
  color: #2b211c;
  background: #fffaf2;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.9;
  letter-spacing: 0;
}

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

.container {
  width: min(1120px, 100% - 48px);
  margin-inline: auto;
}
@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 640px);
  }
}

.section {
  padding: 88px 0;
}
@media (max-width: 720px) {
  .section {
    padding: 64px 0;
  }
}

.section-title {
  position: relative;
  padding-bottom: 22px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  font-weight: 600;
  line-height: 1.65;
}
.section-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 2px;
  background: #d95f75;
  content: "";
}
.section-title--center {
  text-align: center;
}
.section-title--center::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 188px;
  min-height: 56px;
  padding: 14px 24px;
  border: 1px solid #3a2319;
  border-radius: 2px;
  font-weight: 700;
  line-height: 1.4;
  -webkit-transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.button::after {
  margin-left: 18px;
  content: ">";
}
.button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.button--primary {
  color: #fff;
  background: #3a2319;
}
.button--outline {
  color: #3a2319;
  background: rgba(255, 255, 255, 0.72);
}
.button--light {
  border-color: #fff;
  color: #3a2319;
  background: #fff;
}
.button--wide {
  width: 100%;
}

.icon-calendar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 250, 242, 0.94);
  -webkit-box-shadow: 0 1px 0 rgba(58, 35, 25, 0.08);
          box-shadow: 0 1px 0 rgba(58, 35, 25, 0.08);
  backdrop-filter: blur(12px);
}
.header.is-scrolled {
  -webkit-box-shadow: 0 10px 30px rgba(58, 35, 25, 0.12);
          box-shadow: 0 10px 30px rgba(58, 35, 25, 0.12);
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 76px;
  padding-left: clamp(18px, 4vw, 70px);
}
.header__reserve {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  gap: 10px;
  margin-left: 24px;
  padding: 0 28px;
  color: #fff;
  background: #d95f75;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 68px;
    padding: 0 16px;
  }
  .header__reserve {
    display: none;
  }
}

.logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1;
}
.logo__small {
  font-size: 0.95rem;
}
.logo__main {
  font-size: clamp(1.65rem, 2vw, 2.15rem);
}
.logo__mark {
  position: relative;
  width: 24px;
  height: 24px;
  margin-left: 6px;
}
.logo__mark::before, .logo__mark::after {
  position: absolute;
  inset: 3px;
  border-radius: 50% 50% 45% 45%;
  background: #f7d9d8;
  content: "";
  -webkit-box-shadow: 0 -8px 0 #f7d9d8, 8px 0 0 #f7d9d8, 0 8px 0 #f7d9d8, -8px 0 0 #f7d9d8;
          box-shadow: 0 -8px 0 #f7d9d8, 8px 0 0 #f7d9d8, 0 8px 0 #f7d9d8, -8px 0 0 #f7d9d8;
}
.logo__mark::after {
  inset: 9px;
  background: #d95f75;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.global-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: clamp(16px, 2.6vw, 34px);
  width: 100%;
  margin-left: 42px;
  font-size: 0.92rem;
  font-weight: 700;
}
.global-nav a {
  position: relative;
  padding: 28px 0;
}
.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: #d95f75;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  content: "";
}
.global-nav a:hover::after, .global-nav a.is-current::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
@media (max-width: 960px) {
  .global-nav {
    position: fixed;
    z-index: 19;
    inset: 68px 0 auto 0;
    display: grid;
    gap: 0;
    margin-left: 0;
    padding: 16px;
    background: #fffaf2;
    -webkit-box-shadow: 0 20px 40px rgba(58, 35, 25, 0.16);
            box-shadow: 0 20px 40px rgba(58, 35, 25, 0.16);
    -webkit-transform: translateY(-130%);
            transform: translateY(-130%);
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
    transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  }
  .global-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid #e8dccb;
  }
  body.is-nav-open .global-nav {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.nav-toggle {
  display: none;
}
@media (max-width: 960px) {
  .nav-toggle {
    display: grid;
    place-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
  }
  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: #3a2319;
    -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
    transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
    transition: transform 0.25s ease, opacity 0.25s ease;
    transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
  }
  body.is-nav-open .nav-toggle span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(35deg);
            transform: translateY(8px) rotate(35deg);
  }
  body.is-nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  body.is-nav-open .nav-toggle span:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-35deg);
            transform: translateY(-8px) rotate(-35deg);
  }
}

.fv {
  position: relative;
  min-height: 720px;
  margin-top: 76px;
  overflow: hidden;
  background: #fbf6ed;
}
.fv__image {
  position: absolute;
  inset: 0 0 0 33.8%;
}
.fv__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fbf6ed 0%, #fbf6ed 1px, rgba(251, 246, 237, 0.92) 18%, rgba(251, 246, 237, 0.22) 48%, rgba(251, 246, 237, 0) 76%);
  content: "";
}
.fv__content {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(48%, 560px);
  min-height: 720px;
  margin-left: clamp(24px, 6vw, 88px);
  padding: 64px 0;
}
.fv__flower {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: min(390px, 51vw);
  height: auto;
  opacity: 0.72;
  pointer-events: none;
}
.fv h1 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.2rem, 3.45vw, 3.45rem);
  font-weight: 600;
  line-height: 1.65;
}
.fv h1 span {
  white-space: nowrap;
}
.fv p {
  margin-top: 28px;
  font-weight: 700;
}
.fv__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
}
@media (max-width: 960px) {
  .fv {
    min-height: 640px;
    margin-top: 68px;
  }
  .fv__image {
    inset: 0;
  }
  .fv__image::after {
    background: -webkit-gradient(linear, left top, right top, from(rgba(251, 246, 237, 0.95)), color-stop(52%, rgba(251, 246, 237, 0.72)), to(rgba(251, 246, 237, 0.18)));
    background: linear-gradient(90deg, rgba(251, 246, 237, 0.95) 0%, rgba(251, 246, 237, 0.72) 52%, rgba(251, 246, 237, 0.18) 100%);
  }
  .fv__content {
    width: min(680px, 100% - 32px);
    min-height: 640px;
    margin-inline: auto;
  }
}
@media (max-width: 720px) {
  .fv {
    min-height: 590px;
  }
  .fv__content {
    min-height: 590px;
    padding: 48px 0;
  }
  .fv h1 {
    font-size: clamp(2rem, 10vw, 2.55rem);
    line-height: 1.55;
  }
  .fv p {
    margin-top: 22px;
    line-height: 1.8;
  }
  .fv__flower {
    top: 0;
    left: 0;
    width: min(270px, 58vw);
  }
  .fv__buttons {
    display: grid;
  }
  .fv .button {
    width: 100%;
  }
}

.intro {
  position: relative;
  background: radial-gradient(circle at 6% 22%, rgba(205, 113, 69, 0.18) 0 2px, transparent 3px), -webkit-gradient(linear, left top, left bottom, from(#fffaf2), to(#fbf6ed));
  background: radial-gradient(circle at 6% 22%, rgba(205, 113, 69, 0.18) 0 2px, transparent 3px), linear-gradient(180deg, #fffaf2 0%, #fbf6ed 100%);
}
.intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42%;
  gap: clamp(36px, 6vw, 80px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.intro__text {
  max-width: 560px;
  margin-inline: auto;
  text-align: center;
}
.intro__text .section-title::after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.intro__text p {
  margin-top: 30px;
  font-weight: 600;
}
.intro__image img {
  aspect-ratio: 4/3;
  border-radius: 2px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 18px 45px rgba(62, 38, 23, 0.12);
          box-shadow: 0 18px 45px rgba(62, 38, 23, 0.12);
}
@media (max-width: 960px) {
  .intro__inner {
    grid-template-columns: 1fr;
  }
  .intro__image {
    max-width: 620px;
    margin-inline: auto;
  }
}
@media (max-width: 720px) {
  .intro__text {
    text-align: left;
  }
  .intro__text .section-title {
    text-align: center;
  }
  .intro__text p {
    max-width: 31em;
    margin-inline: auto;
    line-height: 2.05;
    font-size: 0.92rem;
  }
}

.features {
  padding: 0 0 88px;
  background: #fbf6ed;
}
.features__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 720px) {
  .features {
    padding-bottom: 64px;
  }
  .features__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.feature {
  position: relative;
  padding: 0 38px;
  text-align: center;
}
.feature + .feature {
  border-left: 1px solid rgba(58, 35, 25, 0.32);
}
.feature__icon {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: #7d4f38;
  background: #f7d9d8;
}
.feature__icon img {
  width: 42px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
}
.feature__number {
  display: inline;
  margin-right: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.feature h3 {
  display: inline;
  font-family: "Noto Serif JP", serif;
  font-size: 1.35rem;
}
.feature > p:last-child {
  margin-top: 18px;
  font-weight: 600;
}
.feature > p:last-child span {
  display: block;
}
@media (max-width: 720px) {
  .feature {
    padding: 0 10px 28px;
  }
  .feature + .feature {
    border-top: 1px solid rgba(58, 35, 25, 0.18);
    border-left: 0;
    padding-top: 28px;
  }
  .feature > p:last-child span {
    display: block;
  }
}

.menu {
  background: #fffaf2;
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 56px;
}
@media (max-width: 960px) {
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .menu__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }
  .menu .menu-card p:last-child span {
    display: block;
  }
}

.menu-card {
  background: #f4ebdc;
  -webkit-box-shadow: 0 10px 30px rgba(58, 35, 25, 0.08);
          box-shadow: 0 10px 30px rgba(58, 35, 25, 0.08);
}
.menu-card img {
  width: 100%;
  aspect-ratio: 16/11;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu-card__body {
  padding: 28px 24px 32px;
  text-align: center;
}
.menu-card h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
}
.menu-card__price {
  margin-top: 6px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.45rem;
  font-weight: 700;
}
.menu-card p:last-child {
  margin-top: 10px;
  font-weight: 600;
}
.menu-card p:last-child span {
  display: block;
}

.section__button {
  margin-top: 42px;
  text-align: center;
}

.space {
  display: grid;
  grid-template-columns: 52% 1fr;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  background: #fbf6ed;
}
.space__image {
  min-height: 430px;
}
.space__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.space__content {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(110px, 150px);
  gap: clamp(28px, 4vw, 52px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(100%, 700px);
  max-width: none;
  padding: 72px clamp(48px, 5vw, 84px) 72px clamp(58px, 6vw, 92px);
}
.space__text {
  position: relative;
  z-index: 1;
}
.space__text p {
  margin-top: 28px;
  font-weight: 600;
}
.space__flower {
  position: relative;
  z-index: 0;
  justify-self: end;
  -ms-flex-item-align: end;
      align-self: end;
  width: clamp(92px, 12vw, 148px);
  opacity: 0.76;
  pointer-events: none;
}
@media (max-width: 960px) {
  .space {
    grid-template-columns: 1fr;
  }
  .space__image {
    min-height: auto;
  }
  .space__image img {
    aspect-ratio: 16/10;
  }
  .space__content {
    grid-template-columns: minmax(0, 1fr) 110px;
    width: min(100%, 720px);
    padding: 56px 24px 64px;
    margin-inline: auto;
  }
  .space__flower {
    width: 110px;
  }
}
@media (max-width: 720px) {
  .space__image {
    min-height: 300px;
  }
  .space__content {
    grid-template-columns: minmax(0, 1fr) 88px;
    gap: 14px;
    padding-bottom: 64px;
  }
  .space__text p {
    line-height: 2;
    font-size: 0.92rem;
  }
  .space__flower {
    width: 88px;
  }
}

.info {
  background: #fffaf2;
}
.info__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 7vw, 72px);
}
.info h2 {
  margin-bottom: 28px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
}

.news__list {
  margin-bottom: 22px;
  border-top: 1px solid #e8dccb;
}
.news li {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e8dccb;
  font-weight: 600;
}
.news time {
  color: #d95f75;
  font-size: 0.92rem;
}
.news a::after {
  float: right;
  content: ">";
}
@media (max-width: 720px) {
  .news li {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

.access__body {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: stretch;
}
.access__text {
  font-weight: 600;
}
.access__map {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid #e8dccb;
}
.access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}
.access__image {
  margin-top: 22px;
  overflow: hidden;
}
.access__image img {
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 960px) {
  .access__body {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .access__body {
    grid-template-columns: 1fr;
  }
  .access__map,
  .access__map iframe {
    min-height: 300px;
  }
}

.reserve {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  color: #fff;
  background: #e39487;
}
.reserve__image {
  position: absolute;
  inset: 0 auto 0 0;
  width: 54%;
  overflow: hidden;
}
.reserve__image::after {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(227, 148, 135, 0)), color-stop(48%, rgba(227, 148, 135, 0)), color-stop(73%, rgba(227, 148, 135, 0.48)), to(rgb(227, 148, 135)));
  background: linear-gradient(90deg, rgba(227, 148, 135, 0) 0%, rgba(227, 148, 135, 0) 65%, rgba(227, 148, 135, 0.48) 85%, rgb(227, 148, 135) 98%);
  content: "";
  pointer-events: none;
}
.reserve__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reserve__content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 220px;
  margin-left: 50%;
  padding: 40px clamp(24px, 6vw, 86px);
}
.reserve h2 {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 600;
}
.reserve p {
  margin-top: 10px;
  font-weight: 600;
}
.reserve__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}
@media (max-width: 720px) {
  .reserve {
    min-height: 0;
  }
  .reserve__image {
    position: relative;
    width: 100%;
    height: 240px;
  }
  .reserve__image::after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(227, 148, 135, 0)), color-stop(64%, rgba(227, 148, 135, 0.16)), to(rgb(227, 148, 135)));
    background: linear-gradient(180deg, rgba(227, 148, 135, 0) 0%, rgba(227, 148, 135, 0.16) 64%, rgb(227, 148, 135) 100%);
  }
  .reserve__image img {
    max-height: 260px;
  }
  .reserve__content {
    min-height: 0;
    margin-left: 0;
    padding: 36px 24px 44px;
  }
  .reserve h2 {
    font-size: 1.35rem;
    line-height: 1.7;
  }
  .reserve__buttons {
    display: grid;
  }
}

.footer {
  padding: 32px 0 28px;
  background: #fffaf2;
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 34px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 8px 18px;
  font-size: 0.86rem;
}
.footer__nav a + a::before {
  margin-right: 18px;
  color: #e8dccb;
  content: "|";
}
.footer__copy {
  grid-column: 1/-1;
  text-align: center;
  font-size: 0.78rem;
}
@media (max-width: 720px) {
  .footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .footer__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
