@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500&family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Serif+JP:wght@500;600;700&display=swap');

:root {
  --color-bg: #fbf8f4 !important;
  --color-surface: #f3ebe6 !important;
  --color-text: #2c2024 !important;
  --color-accent: #7d173b !important;
  --color-accent-2: #b9925f !important;
  --color-divider: color-mix(in srgb, #8f745f 32%, transparent) !important;
  --color-accent-100: #f9e9ef !important;
  --color-accent-200: #f2cfdb !important;
  --color-accent-300: #dda7ba !important;
  --color-accent-400: #c87995 !important;
  --color-accent-500: #a84568 !important;
  --color-accent-600: #68102f !important;
  --color-accent-700: #570c28 !important;
  --color-accent-800: #43071d !important;
  --color-accent-900: #2c0312 !important;
  --font-heading: 'Noto Serif JP', 'Yu Mincho', 'Hiragino Mincho ProN', serif !important;
  --font-heading-weight: 600 !important;
  --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif !important;
  --font-display: 'Cormorant Garamond', 'Yu Mincho', 'Hiragino Mincho ProN', serif;
}

html {
  background: #fbf8f4;
  overflow-x: hidden;
}

body {
  background: radial-gradient(circle at 10% 0%, rgba(185, 146, 95, .08), transparent 30rem), var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  font-synthesis: none;
  overflow-x: hidden;
}

h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 500 !important;
  letter-spacing: .015em;
}

h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600 !important;
  letter-spacing: .015em;
}

header h1 {
  font-family: var(--font-display);
  font-weight: 500 !important;
  letter-spacing: -.025em;
}

blockquote {
  font-family: var(--font-heading) !important;
  font-weight: 500 !important;
}

[style*="font-family: var(--font-heading)"][style*="font-weight: 800"] {
  font-weight: 600 !important;
}

.hero-luxe h1 {
  font-weight: 500 !important;
}

.site-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grayscale { filter: none !important; }

.nav {
  padding: 13px clamp(22px, 3.5vw, 68px) !important;
  border-bottom: 1px solid rgba(185, 146, 95, .38);
  background: rgba(251, 248, 244, .9) !important;
  box-shadow: 0 8px 28px rgba(71, 42, 48, .05);
  backdrop-filter: blur(18px) saturate(1.25);
}

.nav > div {
  max-width: none !important;
  gap: clamp(18px, 2vw, 34px) !important;
  flex-wrap: nowrap !important;
}

.nav-brand {
  display: inline-flex !important;
  min-width: 190px;
  align-items: center;
  gap: 11px;
  color: var(--color-text) !important;
}

.brand-emblem {
  width: 48px;
  height: 48px;
  flex: none;
  object-fit: contain;
}

.brand-lockup { display: grid; line-height: 1; }

.brand-lockup strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .16em;
}

.brand-lockup small {
  margin-top: 5px;
  color: #8b6a73;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .28em;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
  text-decoration: none;
}

.footer-brand-emblem {
  width: 60px;
  height: 60px;
  flex: none;
  object-fit: contain;
}

.footer-brand-lockup {
  display: grid;
  line-height: 1;
}

.footer-brand-lockup strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: .16em;
}

.footer-brand-lockup small {
  margin-top: 6px;
  color: #8b6a73;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .28em;
}

.nav > div > a:not(.nav-brand):not(.btn) {
  position: relative;
  padding: 12px 0 10px;
  color: #4a383d;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .04em;
}

.nav > div > a:not(.nav-brand):not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b9925f, transparent);
  content: '';
  transform: scaleX(0);
  transition: transform .3s ease;
}

.nav > div > a:not(.nav-brand):not(.btn):hover::after,
.nav > div > a[aria-current='page']:not(.nav-brand)::after { transform: scaleX(1); }

.btn {
  border-radius: 999px !important;
  letter-spacing: .06em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease !important;
}

.btn-primary {
  border: 1px solid rgba(255, 255, 255, .18) !important;
  background: linear-gradient(135deg, #8b1d46, #62102e) !important;
  color: #fffaf7 !important;
  box-shadow: 0 10px 26px rgba(98, 16, 46, .2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #9a2853, #72163a) !important;
  box-shadow: 0 14px 30px rgba(98, 16, 46, .28);
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: rgba(125, 23, 59, .28) !important;
  background: rgba(255, 255, 255, .44) !important;
}

.nav .btn-primary {
  padding: 12px 22px !important;
  font-size: 12px !important;
}

.hero-luxe {
  position: relative;
  min-height: calc(100svh - 75px);
  overflow: hidden;
  isolation: isolate;
}

/* 重なり順: ヒーロー画像 -4 → 内側の枠線 -1 → 文字 */
.hero-luxe-image {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroReveal 1.3s cubic-bezier(.2, .7, 0, 1) both;
}

.hero-luxe::after {
  position: absolute;
  inset: 22px;
  z-index: -1;
  border: 1px solid rgba(44, 32, 36, .26);
  content: '';
  pointer-events: none;
}

/* 寄りの写真は表示幅で隅の明暗が入れ替わり、白抜きも濃い文字も安定しない。
   ロゴは薄い和紙のようなプレートに載せ、どの幅でも下地を一定にする */
.hero-luxe-content {
  position: absolute;
  right: clamp(26px, 4vw, 68px);
  bottom: clamp(24px, 4vh, 54px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 15px 22px 13px;
  border: 1px solid rgba(44, 32, 36, .16);
  background: rgba(253, 250, 247, .86);
  backdrop-filter: blur(7px) saturate(1.05);
  text-align: right;
}

.hero-luxe h1 {
  display: flex;
  margin: 0;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  color: #2c2024;
  font-family: var(--font-display);
  font-weight: 600;
}

/* ヒーローは overflow:hidden なので、右下のロゴを大きく動かすと
   登場中に枠外へ出てクリップされる。動きは10pxまでに留める */
.hero-luxe h1 span {
  animation: heroMark .9s cubic-bezier(.2, .7, 0, 1) both;
}

.hero-luxe-name {
  display: block;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: .14em;
  line-height: 1;
  text-indent: .14em;
}

.hero-luxe-sub {
  display: block;
  font-size: clamp(9px, .8vw, 11px);
  font-weight: 600;
  letter-spacing: .38em;
  text-indent: .38em;
  text-transform: uppercase;
  animation-delay: .16s;
  opacity: .92;
}

@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes heroMark {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.style-filters {
  display: flex;
  gap: 12px 10px;
  flex-wrap: wrap;
}

.filter-chip {
  min-height: 44px;
  padding: 11px 22px;
  border: 1px solid rgba(125, 23, 59, .35);
  border-radius: 999px;
  background: transparent;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.filter-chip:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.filter-chip.is-active {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fffaf7;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--color-divider);
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .25s ease;
}

.mobile-menu {
  display: none;
}

@media (max-width: 760px) {
  .nav {
    padding: 12px 18px !important;
  }

  .nav > div {
    flex-wrap: nowrap !important;
    gap: 10px !important;
  }

  .nav-brand {
    min-width: auto;
    gap: 7px;
  }

  .brand-emblem {
    width: 38px;
    height: 38px;
  }

  .brand-lockup strong { font-size: 22px; }
  .brand-lockup small { font-size: 6px; }

  .footer-brand-emblem {
    width: 50px;
    height: 50px;
  }

  .footer-brand-lockup strong { font-size: 28px; }

  .nav > div > a:not(.nav-brand):not(.btn) {
    display: none;
  }

  .nav > div > .btn {
    display: none !important;
  }

  .nav-toggle {
    position: absolute;
    top: 10px;
    right: 18px;
    display: flex !important;
    border: 0;
    border-radius: 50%;
    background: #7d173b;
    color: #fffaf7;
    flex: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(98, 16, 46, .2);
  }

  .mobile-menu {
    position: fixed;
    inset: 66px 0 auto;
    z-index: 49;
    padding: 18px;
    border-bottom: 2px solid var(--color-divider);
    background: var(--color-bg);
    box-shadow: var(--shadow-md);
  }

  .mobile-menu.is-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-menu a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--color-divider);
    color: var(--color-text);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-menu .mobile-reserve {
    grid-column: 1 / -1;
    margin-top: 12px;
    border: 0;
    background: linear-gradient(135deg, #8b1d46, #62102e) !important;
    color: #fffaf7 !important;
    text-align: center;
  }

  main section div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  main section div[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  main :is(section, footer) div[style*="grid-template-columns: minmax(0, 3fr)"],
  main :is(section, footer) div[style*="grid-template-columns: minmax(0px, 3fr)"],
  main :is(section, footer) div[style*="grid-template-columns: minmax(0, 4fr)"],
  main :is(section, footer) div[style*="grid-template-columns: minmax(0px, 4fr)"],
  main :is(section, footer) div[style*="grid-template-columns: minmax(0, 5fr)"],
  main :is(section, footer) div[style*="grid-template-columns: minmax(0px, 5fr)"],
  main :is(section, footer) div[style*="grid-template-columns: minmax(0, 6fr)"],
  main :is(section, footer) div[style*="grid-template-columns: minmax(0px, 6fr)"] {
    grid-template-columns: 1fr !important;
  }

  main section div[style*="grid-template-columns: 120px"] {
    grid-template-columns: 48px 1fr !important;
  }

  main section div[style*="grid-template-columns: 120px"] > :last-child {
    grid-column: 2;
  }

  main section dl[style*="grid-template-columns: 88px"] {
    grid-template-columns: 1fr !important;
  }

  main section a[style*="grid-template-columns: 110px"],
  main section article[style*="grid-template-columns: 130px"] {
    grid-template-columns: 88px 1fr !important;
  }

  main section a[style*="grid-template-columns: 110px"] > :last-child,
  main section article[style*="grid-template-columns: 130px"] > :last-child {
    grid-column: 1 / -1;
  }

  main section a[style*="grid-template-columns: 110px"] > :last-child {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .table {
    display: block;
    overflow-x: auto;
  }

  /* 1枚の写真で見せるヒーローなので、スマホでは画面を埋め尽くさない高さに抑える */
  .hero-luxe {
    min-height: clamp(380px, 64svh, 520px);
  }

  .hero-luxe::after { inset: 12px; }

  .hero-luxe-content {
    right: 22px;
    bottom: 22px;
  }

  .hero-luxe h1 { gap: 5px; }

  .hero-luxe-name {
    font-size: 26px;
    letter-spacing: .12em;
    text-indent: .12em;
  }

  .hero-luxe-sub {
    font-size: 9px;
    letter-spacing: .32em;
    text-indent: .32em;
  }

  footer[style*="border-top"] {
    padding-top: 48px !important;
  }

  footer div[style*="grid-template-columns: minmax(0px, 5fr)"] {
    gap: 36px !important;
  }

  footer div[style*="grid-template-columns: minmax(0px, 5fr)"] > div + div {
    padding-top: 32px;
    border-top: 1px solid var(--color-divider);
  }

  footer a:not(.footer-brand) {
    display: block;
    padding: 6px 0;
  }

  footer div[style*="display: grid; gap: 10px"] {
    gap: 4px !important;
  }
}

@media (max-width: 420px) {
  .nav > div > .btn span {
    display: none;
  }

  .brand-lockup small { display: none; }
}
