@import "tailwindcss";

:root {
  --ink: #25231f;
  --muted: #777167;
  --ivory: #f4f1eb;
  --paper: #fbfaf7;
  --stone: #d8d1c7;
  --gold: #ad946c;
  --deep: #92938f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP",
    sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
dd,
summary {
  line-break: strict;
  text-wrap: pretty;
  word-break: auto-phrase;
}

.intentional-break > span {
  display: block;
}

.desktop-intentional-break > span {
  display: inline;
}

@media (min-width: 961px) {
  .desktop-intentional-break > span,
  .desktop-break-confirmed > span {
    display: block;
  }

  .access-info .desktop-break-confirmed {
    font-size: clamp(30px, 3vw, 42px);
  }

  .access-info .desktop-break-confirmed > span {
    white-space: nowrap;
  }
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

button {
  color: inherit;
  font: inherit;
}

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

.site-header {
  align-items: center;
  display: grid;
  grid-template-columns: 210px 1fr 132px;
  height: 90px;
  left: 0;
  padding: 0 3.2vw;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 50;
}

.brand {
  display: block;
  justify-self: start;
  width: 132px;
}

.brand-logo {
  height: auto;
  transform: translateY(18px);
  width: 100%;
}

.desktop-nav {
  backdrop-filter: blur(12px);
  background: rgba(244, 241, 235, 0.72);
  display: flex;
  gap: clamp(22px, 2.6vw, 46px);
  justify-content: center;
  justify-self: center;
  padding: 11px 22px;
}

.desktop-nav a {
  font-family: "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  position: relative;
}

.desktop-nav a::after {
  background: var(--ink);
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
  width: 100%;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-socials {
  bottom: 5px;
  display: flex;
  gap: 22px;
  left: clamp(176px, 16vw, 250px);
  position: absolute;
}

.header-socials a {
  align-items: baseline;
  display: flex;
  font-family: "Times New Roman", serif;
  font-size: 8px;
  gap: 7px;
  letter-spacing: 0.07em;
}

.header-socials small,
.mobile-instagram-links small,
.footer-link-copy small {
  color: var(--gold);
  font-family: "Times New Roman", serif;
  font-size: 7px;
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-reserve {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
  display: flex;
  font-family: "Times New Roman", serif;
  font-size: 12px;
  gap: 18px;
  justify-content: flex-end;
  justify-self: stretch;
  letter-spacing: 0.12em;
  padding: 10px 0;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 49% 51%;
  min-height: 100svh;
  position: relative;
}

.hero-copy {
  align-items: flex-start;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 145px clamp(40px, 6.5vw, 112px) 90px;
}

.eyebrow {
  color: var(--gold);
  font-family: "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  margin: 0 0 30px;
}

.hero h1,
.section-heading h2,
.first-visit h2,
.profile-copy h2,
.closing-cta h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: clamp(30px, 2.6vw, 36px);
  line-height: 1.48;
  margin: 0;
}

.hero-title-line,
.hero-title-location {
  display: block;
  white-space: nowrap;
}

.hero-title-location {
  margin-left: 0.72em;
}

.hero-title-location > span {
  display: block;
}

.hero-lead {
  color: #615c54;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 2.25;
  margin: 38px 0 0;
  max-width: 440px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 32px;
  margin-top: 42px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  justify-content: space-between;
  letter-spacing: 0.12em;
  min-height: 58px;
  padding: 0 22px;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
  width: 220px;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  background: var(--deep);
  color: white;
}

.text-link,
.line-link {
  align-items: center;
  border-bottom: 1px solid var(--stone);
  display: inline-flex;
  font-size: 11px;
  gap: 20px;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding: 10px 0;
}

.hero-note {
  display: flex;
  gap: 26px;
  margin-top: 58px;
}

.hero-note span {
  color: #91897d;
  font-family: "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 0.18em;
}

.hero-visual {
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  transition: transform 1.2s ease;
  width: 100%;
}

.hero-visual:hover img {
  transform: scale(1.015);
}

.hero-visual-shade {
  background:
    linear-gradient(90deg, rgba(34, 32, 28, 0.18), transparent 35%),
    linear-gradient(0deg, rgba(26, 25, 22, 0.5), transparent 40%);
  inset: 0;
  position: absolute;
}

.hero-number {
  color: rgba(255, 255, 255, 0.88);
  font-family: "Times New Roman", serif;
  font-size: 11px;
  left: 34px;
  letter-spacing: 0.18em;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: rotate(-90deg);
}

.hero-caption {
  bottom: 48px;
  color: white;
  font-family: "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 28px);
  font-style: italic;
  left: 48px;
  letter-spacing: 0.02em;
  line-height: 1.3;
  margin: 0;
  position: absolute;
}

.scroll-cue {
  align-items: center;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  left: calc(49% - 14px);
  position: absolute;
  z-index: 5;
}

.scroll-cue span {
  color: #8f877c;
  font-family: "Times New Roman", serif;
  font-size: 7px;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  background: linear-gradient(var(--gold) 50%, rgba(173, 148, 108, 0.18) 50%);
  background-size: 100% 200%;
  display: block;
  height: 44px;
  width: 1px;
}

.trust-bar {
  background: var(--deep);
  color: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 88px;
  padding: 0 4vw;
}

.trust-bar p {
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  font-size: 11px;
  gap: 18px;
  justify-content: center;
  letter-spacing: 0.12em;
  margin: 0;
}

.trust-bar p:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-bar span {
  color: var(--gold);
  font-family: "Times New Roman", serif;
  font-size: 9px;
}

.section-shell {
  margin: 0 auto;
  max-width: 1240px;
  padding-left: 48px;
  padding-right: 48px;
}

.news-section {
  align-items: flex-start;
  border-bottom: 1px solid var(--stone);
  display: grid;
  gap: 80px;
  grid-template-columns: 180px 1fr;
  padding-bottom: 58px;
  padding-top: 58px;
}

.news-title h2 {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin: 10px 0 0;
}

.news-list {
  border-top: 1px solid var(--stone);
}

.news-list a {
  align-items: center;
  border-bottom: 1px solid var(--stone);
  display: grid;
  gap: 24px;
  grid-template-columns: 100px 1fr 24px;
  min-height: 70px;
  transition: color 0.25s ease;
}

.news-list time {
  color: #8f877c;
  font-family: "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.news-list a > span {
  font-size: 13px;
  letter-spacing: 0.05em;
}

.news-list i {
  color: var(--gold);
  font-style: normal;
  text-align: right;
  transition: transform 0.25s ease;
}

.news-list a:hover {
  color: var(--gold);
}

.news-list a:hover i {
  transform: translateX(4px);
}

.about {
  padding-bottom: 140px;
  padding-top: 150px;
}

.section-heading h2 {
  max-width: 15em;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1.65;
  margin: 0;
}

.about .section-heading h2 {
  max-width: 10em;
}

.about-heading-nowrap {
  white-space: nowrap;
}

.about-grid {
  align-items: center;
  display: grid;
  gap: clamp(50px, 8vw, 120px);
  grid-template-columns: 58% 1fr;
  margin-top: 76px;
}

.about-image {
  position: relative;
}

.about-image::before {
  border: 1px solid var(--stone);
  content: "";
  inset: 22px -22px -22px 22px;
  position: absolute;
  z-index: 0;
}

.about-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.about-image span {
  background: var(--paper);
  bottom: -36px;
  color: var(--muted);
  font-family: "Times New Roman", serif;
  font-size: 8px;
  left: 54px;
  letter-spacing: 0.2em;
  padding: 14px 22px;
  position: absolute;
  z-index: 2;
}

.about-copy {
  padding-top: 30px;
}

.about-copy p {
  color: #6c665d;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  line-height: 2.3;
  margin: 0 0 24px;
}

.about-copy .about-intro {
  color: var(--ink);
  font-size: 16px;
}

.about-copy .line-link {
  margin-top: 18px;
  min-width: 220px;
}

.values {
  border-top: 1px solid var(--stone);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 120px;
}

.values article {
  border-right: 1px solid var(--stone);
  min-height: 220px;
  padding: 34px 38px 20px 0;
}

.values article + article {
  padding-left: 38px;
}

.values article:last-child {
  border-right: 0;
}

.value-number {
  color: var(--gold);
  font-family: "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  margin: 0 0 36px;
}

.values h3 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 18px;
}

.values article > p:last-child {
  color: var(--muted);
  font-size: 11px;
  line-height: 2;
  margin: 0;
}

.gallery-preview {
  background: #e9e5de;
  padding: 130px 0 0;
}

.gallery-preview-head {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  padding-bottom: 58px;
}

.gallery-preview-head .eyebrow {
  margin-bottom: 22px;
}

.gallery-preview-head .line-link {
  margin-bottom: 12px;
  min-width: 190px;
}

.gallery-preview-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-preview-row figure {
  background: #d8d2c9;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.gallery-preview-row figure:nth-child(2) {
  margin-top: 70px;
}

.gallery-preview-row img {
  aspect-ratio: 3 / 4;
  height: 100%;
  object-fit: cover;
  transition:
    filter 400ms ease,
    transform 600ms ease;
  width: 100%;
}

.gallery-preview-row figure:hover img {
  filter: brightness(0.88);
  transform: scale(1.025);
}

.gallery-preview-row figcaption {
  align-items: center;
  bottom: 24px;
  color: white;
  display: flex;
  font-family: "Times New Roman", serif;
  font-size: 12px;
  gap: 16px;
  left: 24px;
  letter-spacing: 0.12em;
  position: absolute;
}

.gallery-preview-row figcaption span {
  color: #d8c5a6;
  font-size: 9px;
}

.gallery-section {
  background: #e9e5de;
  padding: 130px 0 120px;
}

.gallery-head {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  padding-bottom: 58px;
}

.gallery-head .eyebrow {
  margin-bottom: 22px;
}

.instagram-update {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-family: "Times New Roman", serif;
  font-size: 10px;
  gap: 10px;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.status-dot {
  background: #75806d;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(117, 128, 109, 0.13);
  display: inline-block;
  height: 6px;
  width: 6px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.instagram-live-feed {
  margin: 0;
  overflow: hidden;
  width: 100%;
}

.instagram-live-feed > * {
  margin-block: 0 !important;
  max-width: none !important;
  width: 100%;
}

.instagram-live-feed {
  margin: 0;
  overflow: hidden;
  width: 100%;
}

.instagram-live-feed > * {
  margin-block: 0 !important;
  max-width: none !important;
  width: 100%;
}

.instagram-card {
  background: #d4cec5;
  display: block;
  overflow: hidden;
  position: relative;
}

.instagram-card img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  transition:
    filter 420ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.instagram-card::after {
  background: linear-gradient(0deg, rgba(28, 27, 24, 0.65), transparent 55%);
  content: "";
  inset: 0;
  opacity: 0.38;
  position: absolute;
  transition: opacity 320ms ease;
}

.instagram-card-number {
  color: rgba(255, 255, 255, 0.86);
  font-family: "Times New Roman", serif;
  font-size: 9px;
  left: 18px;
  letter-spacing: 0.15em;
  position: absolute;
  top: 18px;
  z-index: 2;
}

.instagram-card-hover {
  align-items: center;
  bottom: 22px;
  color: white;
  display: flex;
  font-family: "Times New Roman", serif;
  font-size: 11px;
  gap: 13px;
  left: 20px;
  letter-spacing: 0.1em;
  opacity: 0;
  position: absolute;
  transform: translateY(8px);
  transition:
    opacity 320ms ease,
    transform 320ms ease;
  z-index: 2;
}

.instagram-card-hover b {
  font-weight: 400;
}

.instagram-card:hover img {
  filter: brightness(0.82);
  transform: scale(1.035);
}

.instagram-card:hover::after {
  opacity: 0.8;
}

.instagram-card:hover .instagram-card-hover {
  opacity: 1;
  transform: translateY(0);
}

.gallery-follow {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-top: 54px;
}

.gallery-follow > p {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  line-height: 2;
  margin: 0;
}

.button-outline {
  border: 1px solid #aaa398;
  width: 242px;
}

.button-outline:hover {
  background: var(--deep);
  border-color: var(--deep);
  color: white;
}

.menu-section {
  padding-bottom: 150px;
  padding-top: 150px;
}

.menu-intro {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
}

.menu-intro > p {
  color: var(--muted);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  line-height: 2.2;
  margin: 0 0 16px;
  max-width: 31em;
}

.menu-list {
  border-top: 1px solid var(--stone);
  margin-top: 78px;
}

.menu-group {
  border-bottom: 1px solid var(--stone);
  display: grid;
  grid-template-columns: 38% 62%;
  padding: 48px 0;
}

.menu-title {
  align-items: flex-start;
  display: flex;
  gap: 34px;
}

.menu-title > span {
  color: var(--gold);
  font-family: "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.16em;
  padding-top: 9px;
}

.menu-title h3 {
  font-family: "Times New Roman", serif;
  font-size: 27px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0;
  white-space: nowrap;
}

.menu-title p {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  margin: 8px 0 0;
}

.menu-prices {
  display: grid;
  gap: 0 46px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-prices p {
  align-items: baseline;
  border-bottom: 1px dotted #c9c2b8;
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  margin: 0;
  padding: 12px 0;
}

.menu-prices b {
  font-family: "Times New Roman", serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.menu-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 42px;
}

.menu-footer > p {
  color: var(--muted);
  font-size: 10px;
  line-height: 2;
  margin: 0;
  max-width: 540px;
}

.menu-footer .button {
  width: 250px;
}

.profile-section {
  background: var(--deep);
  color: white;
  overflow: hidden;
  padding: 130px 0;
}

.profile-inner {
  align-items: center;
  display: grid;
  gap: clamp(60px, 9vw, 130px);
  grid-template-columns: minmax(300px, 40%) 1fr;
}

.profile-photo {
  justify-self: start;
  max-width: 440px;
  position: relative;
  width: 88%;
}

.profile-photo::before {
  border: 1px solid rgba(255, 255, 255, 0.17);
  content: "";
  inset: 22px -22px -22px 22px;
  position: absolute;
}

.profile-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  position: relative;
  width: 100%;
}

.profile-copy .eyebrow {
  margin-bottom: 22px;
}

.profile-name {
  align-items: baseline;
  display: flex;
  font-family: "Times New Roman", serif;
  font-size: 36px;
  font-style: italic;
  gap: 20px;
  margin: 0 0 42px;
}

.profile-name span {
  color: #e5e1da;
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.profile-copy h2 {
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.72;
  margin: 0;
}

.profile-copy > p:not(.eyebrow, .profile-name) {
  color: #f0ede7;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 12px;
  line-height: 2.35;
  margin: 28px 0 0;
  max-width: 580px;
}

.profile-copy .line-link {
  border-color: rgba(255, 255, 255, 0.25);
  margin-top: 34px;
  min-width: 180px;
}

.review-section {
  padding-bottom: 150px;
  padding-top: 150px;
}

.review-heading {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
}

.rating-box {
  border-left: 1px solid var(--stone);
  min-width: 220px;
  padding-left: 36px;
}

.rating-box > span {
  color: var(--muted);
  font-family: "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 0.17em;
}

.rating-box p {
  align-items: baseline;
  display: flex;
  gap: 14px;
  margin: 9px 0 0;
}

.rating-box p b {
  font-family: "Times New Roman", serif;
  font-size: 38px;
  font-weight: 400;
}

.rating-box p span {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.rating-box small {
  color: var(--muted);
  display: block;
  font-family: "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.review-grid {
  border-top: 1px solid var(--stone);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
}

.review-grid article {
  border-right: 1px solid var(--stone);
  min-height: 240px;
  padding: 34px 38px;
}

.review-grid article:first-child {
  padding-left: 0;
}

.review-grid article:last-child {
  border-right: 0;
  padding-right: 0;
}

.review-grid article > span {
  color: var(--gold);
  font-family: "Times New Roman", serif;
  font-size: 9px;
}

.review-grid article p {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  line-height: 2.25;
  margin: 38px 0 0;
}

.review-link {
  margin-top: 24px;
  min-width: 185px;
}

.first-visit {
  background: var(--deep);
  color: white;
  margin-top: 140px;
  max-width: 1144px;
  padding-bottom: 96px;
  padding-top: 96px;
  text-align: center;
}

.first-visit .eyebrow {
  margin-bottom: 22px;
}

.first-visit h2 {
  font-size: clamp(27px, 3vw, 42px);
  margin: 0;
}

.first-visit > p:not(.eyebrow) {
  color: #f0ede7;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  line-height: 2.2;
  margin: 28px auto 0;
  max-width: 660px;
}

.button-light {
  border: 1px solid rgba(255, 255, 255, 0.42);
  margin-top: 36px;
}

.button-light:hover {
  background: white;
  color: var(--deep);
}

.journal-section {
  padding-bottom: 150px;
  padding-top: 150px;
}

.journal-head {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
}

.journal-head > p {
  color: var(--muted);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 11px;
  line-height: 2.1;
  margin: 0 0 12px;
  max-width: 390px;
}

.journal-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 66px;
  min-width: 0;
}

.journal-card {
  display: block;
  min-width: 0;
  position: relative;
}

.journal-image {
  aspect-ratio: 40 / 21;
  background: #ded8cf;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.journal-image img {
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: transform 600ms ease;
  width: 100%;
}

.journal-image > span {
  background: rgba(255, 255, 255, 0.88);
  bottom: 0;
  color: var(--gold);
  font-family: "Times New Roman", serif;
  font-size: 9px;
  left: 0;
  letter-spacing: 0.14em;
  padding: 13px 16px;
  position: absolute;
}

.journal-card > p {
  color: var(--gold);
  font-family: "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 0.18em;
  margin: 24px 0 12px;
}

.journal-card h3 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  margin: 0;
  padding-right: 34px;
}

.journal-arrow {
  bottom: 0;
  color: var(--gold);
  position: absolute;
  right: 2px;
  transition: transform 220ms ease;
}

.journal-card:hover .journal-image img {
  transform: scale(1.025);
}

.journal-card:hover .journal-arrow {
  transform: translateX(4px);
}

.journal-more {
  display: flex;
  justify-content: center;
  margin-top: 58px;
}

.column-archive {
  padding-bottom: 150px;
  padding-top: 190px;
}

.column-archive-head {
  border-bottom: 1px solid var(--stone);
  padding-bottom: 62px;
}

.column-archive-head h1 {
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 400;
  line-height: 1.55;
  margin: 18px 0 24px;
}

.column-archive-head > p:last-child {
  color: var(--muted);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  line-height: 2.1;
  margin: 0;
}

.column-archive-grid {
  row-gap: 72px;
}

.column-archive-grid .journal-card h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  margin: 12px 38px 0 0;
}

.single-column {
  max-width: 920px;
  padding-bottom: 150px;
  padding-top: 190px;
}

.single-column article > h1 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.55;
  margin: 24px 0 56px;
}

.single-column-dates {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
  font-size: 11px;
  gap: 10px 22px;
  letter-spacing: 0.08em;
  margin-top: 14px;
}

.single-column-dates span {
  align-items: baseline;
  display: inline-flex;
  gap: 7px;
}

.single-column-dates time {
  color: var(--deep);
  font-family: "Times New Roman", serif;
  letter-spacing: 0.06em;
}

.single-column .post-thumbnail {
  margin-bottom: 64px;
}

.single-column .post-thumbnail img {
  height: auto;
  width: 100%;
}

.entry-content {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 15px;
  line-height: 2.15;
}

.entry-content > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.entry-content h2 {
  border-bottom: 1px solid var(--stone);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 28px;
  margin-top: 72px;
  padding-bottom: 14px;
}

.entry-content h3 {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 20px;
  margin-top: 48px;
}

.entry-content img,
.entry-content figure {
  height: auto;
  max-width: 100%;
}

.entry-content a {
  color: #836c4d;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.single-column-nav {
  border-top: 1px solid var(--stone);
  margin-top: 80px;
  padding-top: 28px;
}

.single-column-nav a {
  display: flex;
  font-size: 12px;
  justify-content: space-between;
  letter-spacing: 0.08em;
}

.not-found {
  min-height: 70vh;
  padding-bottom: 140px;
  padding-top: 210px;
}

.not-found h1 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.6;
  margin: 24px 0;
}

.not-found > p:not(.eyebrow) {
  color: var(--muted);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 13px;
  line-height: 2;
}

.not-found .button {
  margin-top: 36px;
}

.faq-section {
  background: var(--ivory);
  padding: 135px 0;
}

.faq-inner {
  display: grid;
  gap: 9vw;
  grid-template-columns: 35% 1fr;
}

.faq-list {
  border-top: 1px solid var(--stone);
}

.faq-list details {
  border-bottom: 1px solid var(--stone);
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 14px;
  grid-template-columns: 44px 1fr 24px;
  list-style: none;
  min-height: 82px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary > span {
  color: var(--gold);
  font-family: "Times New Roman", serif;
  font-size: 8px;
}

.faq-list summary i {
  height: 16px;
  position: relative;
  width: 16px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  background: var(--ink);
  content: "";
  height: 1px;
  left: 1px;
  position: absolute;
  top: 8px;
  transition: transform 220ms ease;
  width: 14px;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-list details > p {
  color: var(--muted);
  font-size: 11px;
  line-height: 2.1;
  margin: -4px 38px 28px 44px;
}

.access-section {
  padding: 150px 0;
}

.access-inner {
  align-items: stretch;
  display: grid;
  gap: clamp(54px, 8vw, 110px);
  grid-template-columns: 42% 1fr;
}

.access-info dl {
  border-top: 1px solid var(--stone);
  margin: 54px 0 0;
}

.access-info dl > div {
  border-bottom: 1px solid var(--stone);
  display: grid;
  grid-template-columns: 95px 1fr;
  padding: 22px 0;
}

.access-info dt {
  color: var(--gold);
  font-family: "Times New Roman", serif;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.access-info dd {
  font-size: 11px;
  line-height: 2;
  margin: 0;
}

.access-info .line-link {
  margin-top: 24px;
  min-width: 190px;
}

.access-map {
  background: #ddd8cf;
  min-height: 560px;
  overflow: hidden;
}

.access-map iframe {
  border: 0;
  filter: grayscale(1) contrast(0.86) sepia(0.08);
  height: 100%;
  min-height: 560px;
  width: 100%;
}

.closing-cta {
  align-items: flex-end;
  background: var(--deep);
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 105px max(48px, calc((100vw - 1144px) / 2));
}

.closing-cta h2 {
  font-size: clamp(30px, 3.5vw, 50px);
  line-height: 1.65;
  margin: 0;
}

.closing-cta > div:first-child > p:last-child {
  color: #f0ede7;
  font-size: 11px;
  margin: 28px 0 0;
}

.closing-actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.button-light-solid {
  background: white;
  color: var(--deep);
  width: 235px;
}

.button-light-solid:hover {
  background: var(--gold);
  color: white;
}

.text-link-light {
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
  width: 235px;
}

.site-footer {
  background: #7f817d;
  color: white;
  padding: 82px 0 32px;
}

.footer-main {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.footer-brand {
  width: 190px;
}

.footer-logo {
  filter: brightness(0) invert(1);
  height: auto;
  width: 100%;
}

.footer-sub {
  color: #e1ddd6;
  font-family: "Times New Roman", serif;
  font-size: 8px;
  letter-spacing: 0.18em;
  margin: 18px 0 0;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0 48px;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
}

.footer-links a {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  font-family: "Times New Roman", serif;
  font-size: 11px;
  justify-content: space-between;
  letter-spacing: 0.08em;
  min-height: 48px;
}

.footer-links a span {
  color: var(--gold);
}

.footer-links a .footer-link-copy {
  align-items: center;
  color: inherit;
  display: inline-flex;
  gap: 10px;
}

.footer-links .footer-link-copy small {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f4f0e9;
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
  padding: 5px 7px 4px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #d8d4cd;
  display: flex;
  font-family: "Times New Roman", serif;
  font-size: 8px;
  justify-content: space-between;
  letter-spacing: 0.12em;
  margin-top: 70px;
  padding-top: 28px;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.mobile-cta,
.mobile-only {
  display: none;
}

@media (max-width: 960px) {
  body {
    padding-bottom: 64px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    height: 72px;
    padding: 0 20px;
  }

  .brand {
    width: 108px;
  }

  .site-header .menu-toggle {
    color: white;
    transition: color 220ms ease;
  }

  .site-header .brand-logo {
    filter: brightness(0) invert(1);
    transform: translateY(8px);
    transition: filter 220ms ease;
  }

  .site-header .menu-toggle span {
    background: currentColor;
  }

  .site-header--dark-mobile .menu-toggle {
    color: var(--ink);
  }

  .site-header--dark-mobile .brand-logo {
    filter: none;
  }

  .site-header.menu-open .menu-toggle {
    color: var(--ink);
  }

  .site-header.menu-open .brand-logo {
    filter: none;
  }

  .desktop-nav,
  .header-reserve,
  .header-socials {
    display: none;
  }

  .menu-toggle {
    background: transparent;
    border: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    height: 42px;
    justify-content: center;
    padding: 0 2px;
    position: relative;
    width: 38px;
    z-index: 60;
  }

  .menu-toggle span {
    height: 1px;
    transition: transform 260ms ease;
    width: 30px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    background: var(--ivory);
    display: block;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transform: translateY(-12px);
    transition:
      opacity 260ms ease,
      transform 260ms ease;
    z-index: 55;
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav-inner {
    display: flex;
    flex-direction: column;
    padding: 122px 28px 40px;
  }

  .mobile-nav-inner > a:not(.mobile-reserve) {
    align-items: baseline;
    border-bottom: 1px solid var(--stone);
    display: flex;
    font-family: "Times New Roman", serif;
    font-size: 31px;
    gap: 20px;
    padding: 15px 0;
  }

  .mobile-nav-inner > a span {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .mobile-reserve {
    align-items: center;
    background: var(--deep);
    color: white;
    display: flex;
    font-size: 12px;
    justify-content: space-between;
    margin-top: 32px;
    padding: 20px;
  }

  .mobile-instagram-links {
    display: grid;
    gap: 10px;
    margin-top: 26px;
  }

  .mobile-instagram-links a {
    align-items: baseline;
    display: flex;
    font-family: "Times New Roman", serif;
    font-size: 11px;
    gap: 9px;
    letter-spacing: 0.06em;
  }

  .hero {
    display: flex;
    flex-direction: column-reverse;
    min-height: auto;
  }

  .hero-visual {
    min-height: 54svh;
  }

  .hero-visual img {
    object-position: 51% center;
  }

  .hero-number {
    display: none;
  }

  .hero-caption {
    bottom: 24px;
    font-size: 18px;
    left: 20px;
  }

  .hero-copy {
    justify-content: flex-start;
    min-height: 48svh;
    padding: 56px 22px 60px;
  }

  .hero-copy .eyebrow {
    font-size: 8px;
    margin-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(27px, 7.8vw, 36px);
    line-height: 1.52;
  }

  .hero-title-location {
    margin-left: 0.42em;
  }

  .hero-title-location > span {
    display: block;
  }

  .hero-lead {
    font-size: 12px;
    line-height: 2.05;
    margin-top: 24px;
    max-width: 32em;
  }

  .mobile-only {
    display: initial;
  }

  .desktop-only {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .text-link {
    width: 100%;
  }

  .hero-note {
    gap: 16px;
    margin-top: 36px;
  }

  .hero-note span {
    font-size: 7px;
  }

  .scroll-cue {
    display: none;
  }

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    min-height: auto;
    padding: 0;
  }

  .trust-bar p {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 9px;
    justify-content: flex-start;
    min-height: 64px;
    padding-left: 20px;
  }

  .trust-bar p:nth-child(odd) {
    border-left: 0;
  }

  .section-shell {
    padding-left: 22px;
    padding-right: 22px;
  }

  .about {
    padding-bottom: 90px;
    padding-top: 90px;
  }

  .section-heading h2 {
    font-size: 29px;
    line-height: 1.6;
    max-width: 12em;
  }

  .about-heading-nowrap {
    font-size: clamp(24px, 7.2vw, 29px);
  }

  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 62px;
    margin-top: 48px;
  }

  .about-image::before {
    inset: 12px -10px -12px 12px;
  }

  .about-image span {
    bottom: -28px;
    left: 20px;
    padding: 12px 14px;
  }

  .news-section {
    display: block;
    padding-bottom: 54px;
    padding-top: 54px;
  }

  .news-title {
    margin-bottom: 30px;
  }

  .news-list a {
    align-items: start;
    gap: 8px 16px;
    grid-template-columns: 1fr 20px;
    padding: 18px 0;
  }

  .news-list time {
    grid-column: 1;
  }

  .news-list a > span {
    grid-column: 1;
    line-height: 1.8;
  }

  .news-list i {
    align-self: center;
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .about-copy {
    padding-top: 0;
  }

  .about-copy .about-intro {
    font-size: 14px;
  }

  .values {
    display: block;
    margin-top: 70px;
  }

  .values article,
  .values article + article {
    border-bottom: 1px solid var(--stone);
    border-right: 0;
    min-height: auto;
    padding: 28px 0 30px;
  }

  .value-number {
    margin-bottom: 20px;
  }

  .gallery-preview {
    padding-top: 86px;
  }

  .gallery-preview-head {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 42px;
  }

  .gallery-preview-head .line-link {
    margin-top: 20px;
  }

  .gallery-preview-row {
    gap: 3px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-preview-row figure:nth-child(2) {
    margin-top: 34px;
  }

  .gallery-preview-row figure:nth-child(3) {
    display: none;
  }

  .gallery-preview-row figcaption {
    bottom: 14px;
    font-size: 10px;
    left: 12px;
  }

  .gallery-section {
    padding: 86px 0 78px;
  }

  .gallery-head {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 38px;
  }

  .instagram-update {
    margin: 20px 0 0;
  }

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

  .instagram-card-number {
    left: 11px;
    top: 11px;
  }

  .instagram-card-hover {
    bottom: 13px;
    font-size: 8px;
    left: 11px;
    opacity: 1;
    transform: none;
  }

  .gallery-follow {
    align-items: stretch;
    flex-direction: column;
    gap: 26px;
    padding-top: 34px;
  }

  .gallery-follow > p {
    font-size: 13px;
  }

  .menu-section {
    padding-bottom: 90px;
    padding-top: 90px;
  }

  .menu-intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .menu-intro > p {
    font-size: 11px;
    max-width: 29em;
  }

  .menu-list {
    margin-top: 50px;
  }

  .menu-group {
    display: block;
    padding: 36px 0;
  }

  .menu-title {
    gap: 20px;
    margin-bottom: 24px;
  }

  .menu-title h3 {
    font-size: 24px;
  }

  .menu-prices {
    display: block;
    padding-left: 29px;
  }

  .menu-prices p {
    font-size: 11px;
  }

  .menu-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
  }

  .profile-section {
    padding: 86px 0 92px;
  }

  .profile-inner {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .profile-photo {
    align-self: flex-start;
    margin-right: 0;
    max-width: 330px;
    width: 82%;
  }

  .profile-photo::before {
    inset: 12px -10px -12px 12px;
  }

  .profile-name {
    font-size: 31px;
    margin-bottom: 30px;
  }

  .profile-copy h2 {
    font-size: 25px;
    line-height: 1.75;
  }

  .review-section {
    padding-bottom: 90px;
    padding-top: 90px;
  }

  .review-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
  }

  .rating-box {
    border-left: 0;
    border-top: 1px solid var(--stone);
    padding: 22px 0 0;
    width: 100%;
  }

  .review-grid {
    display: block;
    margin-top: 46px;
  }

  .review-grid article,
  .review-grid article:first-child,
  .review-grid article:last-child {
    border-bottom: 1px solid var(--stone);
    border-right: 0;
    min-height: auto;
    padding: 28px 0 32px;
  }

  .review-grid article p {
    font-size: 12px;
    margin-top: 22px;
  }

  .first-visit {
    margin: 88px 16px 0;
    padding: 72px 24px;
  }

  .first-visit h2 {
    font-size: 25px;
    line-height: 1.6;
  }

  .first-visit > p:not(.eyebrow) {
    font-size: 12px;
  }

  .journal-section {
    padding-bottom: 92px;
    padding-top: 92px;
  }

  .journal-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .journal-head > p {
    font-size: 10px;
    line-height: 2.05;
    max-width: 34em;
  }

  .journal-grid {
    display: block;
    margin-top: 42px;
  }

  .journal-card + .journal-card {
    margin-top: 48px;
  }

  .journal-more {
    justify-content: stretch;
    margin-top: 48px;
  }

  .journal-more .button {
    justify-content: space-between;
    width: 100%;
  }

  .column-archive {
    padding-bottom: 96px;
    padding-top: 130px;
  }

  .column-archive-head {
    padding-bottom: 42px;
  }

  .column-archive-head h1 {
    font-size: 34px;
  }

  .column-archive-grid .journal-card h2 {
    font-size: 14px;
  }

  .single-column {
    padding-bottom: 100px;
    padding-top: 130px;
  }

  .single-column article > h1 {
    font-size: 29px;
    margin-bottom: 38px;
  }

  .single-column-dates {
    font-size: 10px;
    gap: 8px 16px;
    margin-top: 12px;
  }

  .single-column .post-thumbnail {
    margin-bottom: 42px;
  }

  .entry-content {
    font-size: 14px;
  }

  /*
   * 旧記事に残っているPC向けの固定改行は、スマホでは自然な
   * 折り返しを妨げるため無効化する。段落・見出し・リストの
   * 区切りはHTML要素としてそのまま維持される。
   */
  .entry-content p br {
    display: none;
  }

  .entry-content p,
  .entry-content li {
    overflow-wrap: break-word;
    text-wrap: wrap;
    word-break: normal;
  }

  .single-column article > h1,
  .entry-content h2,
  .entry-content h3,
  .entry-content h4 {
    overflow-wrap: break-word;
    text-wrap: wrap;
    word-break: normal;
  }

  .entry-content .vieru-keep-mobile-breaks br {
    display: initial;
  }

  .entry-content h2 {
    font-size: 22px;
    margin-top: 58px;
  }

  .entry-content h3 {
    font-size: 18px;
    margin-top: 40px;
  }

  .not-found {
    padding-bottom: 100px;
    padding-top: 150px;
  }

  .not-found h1 {
    font-size: 28px;
  }

  .faq-section {
    padding: 86px 0;
  }

  .faq-inner {
    display: block;
  }

  .faq-list {
    margin-top: 45px;
  }

  .faq-list summary {
    font-size: 12px;
    grid-template-columns: 34px 1fr 20px;
    line-height: 1.8;
    min-height: 78px;
    padding: 12px 0;
  }

  .faq-list details > p {
    margin: -2px 20px 26px 34px;
  }

  .access-section {
    padding: 90px 0;
  }

  .access-inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .access-info dl {
    margin-top: 44px;
  }

  .access-info dl > div {
    grid-template-columns: 76px 1fr;
  }

  .access-map,
  .access-map iframe {
    min-height: 360px;
  }

  .closing-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 42px;
    padding: 78px 22px;
  }

  .closing-cta h2 {
    font-size: 28px;
  }

  .closing-actions,
  .button-light-solid,
  .text-link-light {
    width: 100%;
  }

  .site-footer {
    padding: 72px 0 28px;
  }

  .footer-main {
    display: block;
  }

  .footer-brand {
    width: 170px;
  }

  .footer-links {
    display: block;
    margin-top: 48px;
  }

  .footer-links a {
    font-size: 12px;
    min-height: 56px;
  }

  .footer-links .footer-link-copy small {
    font-size: 9px;
    padding: 5px 7px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 54px;
  }

  .mobile-cta {
    bottom: 0;
    display: grid;
    grid-template-columns: 42% 58%;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 80;
  }

  .mobile-cta a {
    align-items: center;
    background: #e8e3db;
    display: flex;
    font-size: 11px;
    gap: 8px;
    justify-content: center;
    min-height: 64px;
  }

  .mobile-cta a:last-child {
    background: var(--deep);
    color: white;
  }

  .cta-icon {
    align-items: center;
    border: 1px solid currentColor;
    display: inline-flex;
    font-family: Arial, sans-serif;
    font-size: 6px;
    font-weight: 700;
    height: 19px;
    justify-content: center;
    letter-spacing: 0;
    width: 19px;
  }

  .cta-icon-line {
    border-radius: 7px;
  }

  .cta-icon-hotpepper {
    border-radius: 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
