html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: #e3d8c6;
  background-color: #1c1815;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.l-inner {
  width: 100%;
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: 24px;
}

.l-section {
  padding-block: 80px;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding-block: 140px;
  }
}

.l-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  background-color: rgba(28, 24, 21, 0.95);
}
@media screen and (min-width: 768px) {
  .l-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
}

.l-header__logo {
  position: relative;
  z-index: 51;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: clamp(18px, 18px + (100vw - 375px) * (22 - 18) / (1440 - 375), 22px);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #f4ecdc;
}

.l-header__nav {
  position: fixed;
  inset: 0;
  z-index: 49;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background-color: rgba(28, 24, 21, 0.97);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.92);
  transform-origin: center;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.l-header__nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

@media screen and (min-width: 768px) {
  .l-header__nav {
    position: static;
    inset: auto;
    z-index: auto;
    flex-direction: row;
    justify-self: center;
    gap: 28px;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}
.l-header__link {
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: #f4ecdc;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-header__link {
    font-size: 0.9375rem;
  }
}
@media (hover: hover) {
  .l-header__link:hover {
    color: #d8694a;
  }
}

.l-header__burger {
  position: relative;
  z-index: 51;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .l-header__burger {
    display: none;
  }
}

.l-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #f4ecdc;
  transition: 0.3s ease;
}

.l-header__burger.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.l-header__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.l-header__burger.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.l-footer {
  padding-block: 64px;
  background-color: #2c2620;
  text-align: center;
}

.l-footer__name {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: clamp(22px, 22px + (100vw - 375px) * (30 - 22) / (1440 - 375), 30px);
  letter-spacing: 0.1em;
  color: #f4ecdc;
}

.l-footer__info {
  margin-top: 16px;
  font-size: 0.875rem;
  line-height: 2;
}

.l-footer__copy {
  display: block;
  margin-top: 24px;
  font-size: 0.75rem;
  color: rgba(233, 223, 208, 0.5);
}

.l-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1c1815;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.18, 1), visibility 0.9s;
}

.l-loader.is-loaded {
  transform: translateY(-100%);
  visibility: hidden;
}

.l-loader__logo {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: clamp(24px, 24px + (100vw - 375px) * (44 - 24) / (1440 - 375), 44px);
  letter-spacing: 0.12em;
  color: #f4ecdc;
  opacity: 0;
  transform: translateY(8px);
  animation: loader-in 0.9s ease 0.1s forwards;
}

@keyframes loader-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .l-loader {
    transition: none;
  }
  .l-loader__logo {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.c-title {
  position: relative;
  text-align: center;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: clamp(30px, 30px + (100vw - 375px) * (52 - 30) / (1440 - 375), 52px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  color: #f4ecdc;
}

.c-title::before {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 0 auto 20px;
  background-color: #d8694a;
}

.c-title__sub {
  display: block;
  margin-top: 8px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", system-ui, sans-serif;
  font-size: clamp(11px, 11px + (100vw - 375px) * (13 - 11) / (1440 - 375), 13px);
  letter-spacing: 0.25em;
  color: #d8694a;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 999px;
  background-color: #d8694a;
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.08em;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .c-button:hover {
    opacity: 0.85;
  }
}

.c-button--ghost {
  background-color: transparent;
  border: 1px solid #f4ecdc;
  color: #f4ecdc;
}

.c-img {
  overflow: hidden;
  background-color: #2c2620;
}

.c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-card {
  overflow: hidden;
  border-radius: 6px;
  background-color: #2c2620;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.c-card__inner {
  padding: 16px;
}

.c-card__wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.c-card__img {
  aspect-ratio: 4/3;
  margin: -16px -16px 8px;
  border-radius: 6px 6px 0 0;
}

.c-card__title {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  color: #f4ecdc;
}

.c-card__price {
  color: #d8694a;
  font-size: 1rem;
}

.c-card__text {
  font-size: 0.875rem;
  line-height: 1.7;
}

.c-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.c-fade.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .c-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.p-fv {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 92svh;
  overflow: hidden;
  color: #ffffff;
  background-color: #1c1815;
}

.p-fv__bg {
  position: absolute;
  top: -8%;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 116%;
  will-change: transform;
}

.p-fv__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 20, 16, 0.72), rgba(26, 20, 16, 0.1));
}

.p-fv__inner {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
  animation: fade-up 0.9s ease both;
}

.p-fv__catch {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: clamp(38px, 38px + (100vw - 375px) * (74 - 38) / (1440 - 375), 74px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.p-fv__lead {
  margin-top: 20px;
  font-size: clamp(15px, 15px + (100vw - 375px) * (20 - 15) / (1440 - 375), 20px);
  letter-spacing: 0.04em;
}

.p-fv__hours {
  margin-top: 22px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
}

.p-about {
  background-color: #f4f5f6;
  color: #25262a;
  text-align: center;
}

.p-about .c-title {
  color: #1c1815;
}

.p-about__wrapper {
  max-width: 720px;
  margin-inline: auto;
}

.p-about__lead {
  margin-top: 32px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: clamp(18px, 18px + (100vw - 375px) * (24 - 18) / (1440 - 375), 24px);
  line-height: 2;
  color: #1c1815;
}

.p-about__text {
  margin-top: 24px;
  font-size: 1rem;
  line-height: 2.1;
}

.p-about__welcome {
  display: inline-block;
  margin-top: 32px;
  padding: 8px 24px;
  border: 1px solid #d8694a;
  border-radius: 999px;
  color: #d8694a;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
}

.p-family {
  position: relative;
  overflow: hidden;
  background-color: #2c2620;
}

.p-family__wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: clamp(28px, 5vw, 64px);
  line-height: 0;
}

.p-family__wave svg {
  width: 100%;
  height: 100%;
}

.p-family__wave path {
  fill: #f4f5f6;
}

.p-family__wrapper {
  position: relative;
  max-width: 960px;
  margin-inline: auto;
}

.p-family__container {
  margin-top: 40px;
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-family__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.p-family__img {
  aspect-ratio: 4/3;
  border-radius: 8px;
}

.p-family__name {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: clamp(20px, 20px + (100vw - 375px) * (26 - 20) / (1440 - 375), 26px);
  color: #f4ecdc;
}

.p-family__role {
  margin-top: 4px;
  font-size: 0.875rem;
  color: #d8694a;
}

.p-family__text {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 2;
}

.p-menu {
  background-color: #f4f5f6;
  color: #25262a;
}

.p-menu .c-title {
  color: #1c1815;
}

.p-menu__wrapper {
  max-width: 680px;
  margin-inline: auto;
}

.p-menu__list {
  margin-top: 40px;
}

.p-menu__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.p-menu__thumb {
  flex-shrink: 0;
  width: 76px;
  aspect-ratio: 1/1;
  border-radius: 4px;
}

.p-menu__name {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: clamp(17px, 17px + (100vw - 375px) * (21 - 17) / (1440 - 375), 21px);
  color: #1c1815;
  white-space: nowrap;
}

.p-menu__leader {
  flex: 1 1 auto;
  border-bottom: 1px dotted rgba(37, 38, 42, 0.4);
}

.p-menu__price {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  color: #d8694a;
  white-space: nowrap;
}

.p-menu__note {
  margin-top: 20px;
  text-align: center;
  font-size: 0.8125rem;
}

.p-gallery {
  background-color: #1c1815;
}

.p-gallery__wrapper {
  max-width: 1100px;
  margin-inline: auto;
}

.p-gallery__container {
  width: 100%;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .p-gallery__container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-gallery__item {
  aspect-ratio: 1/1;
  overflow: hidden;
  transition: transform 0.5s ease;
}

.p-gallery__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

@media (hover: hover) {
  .p-gallery__item:hover {
    transform: scale(1.05);
  }
}
.p-news {
  background-color: #f4f5f6;
  color: #25262a;
}

.p-news .c-title {
  color: #1c1815;
}

.p-news__wrapper {
  max-width: 760px;
  margin-inline: auto;
}

.p-news__list {
  margin-top: 32px;
}

.p-news__item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(42, 33, 26, 0.15);
}

.p-news__date {
  flex-shrink: 0;
  color: #d8694a;
  font-size: 0.875rem;
}

.p-news__text {
  font-size: 0.9375rem;
}

.p-access {
  background-color: #2c2620;
}

.p-access__wrapper {
  max-width: 1024px;
  margin-inline: auto;
}

.p-access__container {
  margin-top: 40px;
  display: grid;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .p-access__container {
    grid-template-columns: 1fr 1fr;
  }
}

.p-access__map {
  aspect-ratio: 16/10;
  border-radius: 8px;
}

.p-access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.p-access__info dt {
  margin-top: 16px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  color: #f4ecdc;
}

.p-access__info dt:first-child {
  margin-top: 0;
}

.p-access__info dd {
  font-size: 0.9375rem;
  line-height: 1.9;
}

.p-visit {
  background-color: #f4f5f6;
  color: #25262a;
  text-align: center;
}

.p-visit .c-title {
  color: #1c1815;
}

.p-visit__wrapper {
  max-width: 600px;
  margin-inline: auto;
}

.p-visit__lead {
  margin-top: 24px;
  font-size: clamp(15px, 15px + (100vw - 375px) * (18 - 15) / (1440 - 375), 18px);
  line-height: 1.9;
}

.p-visit__tel {
  margin-top: 24px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  font-size: clamp(28px, 28px + (100vw - 375px) * (40 - 28) / (1440 - 375), 40px);
  letter-spacing: 0.06em;
  color: #1c1815;
}

.p-visit__telnote {
  font-size: 0.8125rem;
  color: rgba(42, 33, 26, 0.6);
}

.p-visit__form {
  margin-top: 32px;
  display: grid;
  gap: 16px;
  text-align: left;
}

.p-visit__field {
  display: grid;
  gap: 6px;
  font-size: 0.875rem;
}

.p-visit__field input,
.p-visit__field textarea {
  padding: 12px;
  border: 1px solid rgba(42, 33, 26, 0.2);
  border-radius: 6px;
  background-color: #ffffff;
  color: #25262a;
  font: inherit;
}

.p-visit__submit {
  justify-self: center;
  margin-top: 8px;
}
