body {
  font-family: "Noto Serif JP", serif;
}
.text-noto-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
.text-libre {
  font-family: "Libre Baskerville", serif;
}
.section-title-wrapper {
  margin-bottom: 80px;
}
.section-title {
  font-family: "Libre Baskerville", serif;
  font-size: 36px;
  letter-spacing: 0.3em;
  line-height: 1.8em;
  text-align: center;
}

.section-subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  letter-spacing: 0.3em;
  line-height: 1.8em;
  text-align: center;
  font-weight: bold;
}

.reservation-btn {
  background-color: var(--accent);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 16px;
  border-radius: 8px;
  margin: auto;
  letter-spacing: 0.15em;
  line-height: 1.4em;
}

.nwl__more-btn,
.view-more-btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--accent);
  padding: 18px 36px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: transparent;
  margin-top: 60px;
}
.nwl__more-btn:hover,
.view-more-btn:hover {
  background: var(--accent);
  color: var(--white);
}

.two-column-page-title-section {
  background-color: #f7f7f7;
  padding: 80px 0;
}

.two-column-page-title-section .title-wrapper {
  display: flex;
  align-items: center;
  width: 1260px;
  max-width: 100%;
  padding: 0 80px 0 80px;
  margin: auto;
  gap: 80px;
}
.two-column-page-title-section .title-wrapper .title {
  font-family: "Libre Baskerville", serif;
  font-size: 42px;
  letter-spacing: 0.3em;
  line-height: 1.8em;
}
.two-column-page-title-section .title-wrapper .sub-title {
  letter-spacing: 0.3em;
  line-height: 1.8em;
  font-size: 20px;
  font-weight: bold;
  margin-left: 5px;
}
.two-column-page-title-section .title-wrapper .text-section {
  width: 38%;
}
.two-column-page-title-section .image-section {
  height: 370px;
  width: 55%;
  flex: 1;
}
.two-column-page-title-section .image-section img {
  border-radius: 20px;
}

.animate {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s ease,
    transform 0.5s ease;
}

.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-opacity {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.animate-opacity.visible {
  opacity: 1;
}

@media screen and (max-width: 960px) {
  .section-title-wrapper {
    margin-bottom: 60px;
  }
  .section-title {
    font-size: 26px;
  }
  .section-subtitle {
    font-size: 14px;
  }

  .two-column-page-title-section {
    padding: 60px 0 0;
  }

  .two-column-page-title-section .title-wrapper {
    padding: 0;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 60px;
  }
  .two-column-page-title-section .title-wrapper .text-section {
    width: 100%;
    padding: 0 40px;
    text-align: center;
    margin: auto;
  }
  .two-column-page-title-section .title-wrapper .title {
    font-size: 28px;
  }
  .two-column-page-title-section .title-wrapper .sub-title {
    font-size: 14px;
    margin: 0;
  }

  .two-column-page-title-section .image-section {
    width: 100%;
    max-height: 370px;
    min-height: 370px;
    height: 370px;
    display: flex;
  }

  .two-column-page-title-section .image-section img {
    border-radius: 0;
    object-fit: cover;
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 540px) {
  .section-title-wrapper {
    margin-bottom: 40px;
  }
  .section-title {
    font-size: 24px;
  }

  .two-column-page-title-section .title-wrapper .title {
    font-size: 24px;
  }
  .two-column-page-title-section .image-section {
    height: 250px;
    min-height: 250px;
    max-height: 250px;
  }
}

:root {
  --bg-main: #e2d7d5;
  --bg-secondary: #f5f1f0;

  --accent: #674c47;
  --accent-dark: #453330;

  --text: #2a1f1d;
  --text-muted: #674c47;

  --border: #d1b89b;
  --white: #ffffff;
}

.menu {
  background: var(--bg-secondary);
  padding: 108px 0;
}
.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.menu__tab {
  padding: 9px 24px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: none;
  cursor: pointer;
  letter-spacing: 0.08em;
  transition: all var(--transition);
}
.menu__tab--active,
.menu__tab:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.menu__panel {
  display: none;
}
.menu__panel--active {
  display: block;
}
.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.menu__note {
  text-align: center;
  margin-top: 44px;
}
.menu__note-inner {
  display: inline-block;
  background: var(--white);
  border-left: 3px solid var(--accent);
  padding: 12px 28px;
  font-size: 0.84rem;
  color: var(--text-muted);
  border-radius: 0 3px 3px 0;
}

.menu-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.menu-card__body {
  padding: 16px 18px 18px;
}
.menu-card__tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 5px;
}
.menu-card__name {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
  line-height: 1.4;
}
.menu-card__desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.menu-card__price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
}
.menu-card__badge {
  font-size: 0.6rem;
  background: var(--accent);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .menu__grid {
    grid-template-columns: 1fr;
  }
}

.menu-card__image {
  height: 160px;
  overflow: hidden;
}
.menu-card__image img {
  height: 100%;
  transition: transform 0.65s var(--transition);
}
.menu-card:hover .menu-card__image img {
  transform: scale(1.07);
}

/* loader */
.nwl__loader {
  display: flex;
  justify-content: center;
  padding: 48px 0;
}

.spinner {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(12, 26, 46, 0.12);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

li {
  list-style: none;
}

.news__category {
  font-size: 0.65rem;
  background: var(--accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 3px;
  width: fit-content;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.22s, transform 0.22s;
}

.nb-item {
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #d1b89b;
  padding: 24px 0;
  text-decoration: none;
  color: inherit;
  gap: 20px;
}

.nb-item:hover {
  background-color: rgba(209, 184, 155, 0.05);
  padding-left: 12px;
}

.nb-item:last-child {
  border-bottom: none;
}

.nb-item p {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 8px;
  color: var(--text);
  font-weight: 500;
}

.nb-item-arrow {
  color: var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.22s,
    transform 0.22s;
  display: flex;
  align-items: center;
  padding: 0.4rem;
  flex-shrink: 0;
}

.nb-item:hover .nb-item-arrow {
  opacity: 1;
  transform: translateX(0);
}

.news__date {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  font-weight: 600;
}

.news__categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
