:root {
  --black: #050505;
  --white: #ffffff;
  --paper: #f7f4ec;
  --gold: #a89555;
  --gold-light: #c4b172;
  --gray-300: #c6c0b3;
  --gray-500: #8f897d;
  --gray-700: #45413a;

  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", sans-serif;

  --side: clamp(22px, 5vw, 72px);
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--black);
  font-family: var(--sans);
  line-height: 1.8;
  letter-spacing: 0.04em;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

#concept,
#works,
#artist,
#info,
#reservation {
  scroll-margin-top: 100px;
}

/* Opening */

.opening {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.08), transparent 22%),
    linear-gradient(135deg, #030303 0%, #111111 58%, #242424 100%);
  color: var(--white);
  animation: openingHide 1.05s ease forwards;
  animation-delay: 2.45s;
}

.opening::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 52%;
  width: 1px;
  height: 140%;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.38), transparent);
  transform: rotate(22deg);
  opacity: 0;
  animation: openingLine 1.7s ease forwards;
  animation-delay: 0.35s;
}

.opening-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.opening-sub {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.56);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  opacity: 0;
  transform: translateY(16px);
  animation: openingTextIn 0.9s ease forwards;
  animation-delay: 0.35s;
}

.opening-name {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.22em;
  opacity: 0;
  transform: translateY(22px);
  filter: blur(8px);
  animation: openingNameIn 1.15s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.65s;
}

@keyframes openingTextIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes openingNameIn {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes openingLine {
  0% {
    opacity: 0;
    transform: rotate(22deg) translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: rotate(22deg) translateY(0);
  }
}

@keyframes openingHide {
  to {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.015);
    pointer-events: none;
  }
}

.tm-stage-site-header,
main,
.tm-stage-site-footer,
.mobile-reserve-button {
  opacity: 0;
  animation: pageIn 0.9s ease forwards;
  animation-delay: 2.85s;
}

@keyframes pageIn {
  to {
    opacity: 1;
  }
}

/* Header */

.tm-stage-site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  color: var(--white);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding: 26px var(--side);
}

.site-logo {
  max-width: 280px;
  color: rgba(255,255,255,0.92);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: rgba(255,255,255,0.84);
  font-family: var(--serif);
  font-size: 13px;
}

.site-nav a,
.header-link {
  position: relative;
}

.site-nav a::after,
.header-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: 0.28s ease;
}

.site-nav a:hover::after,
.header-link:hover::after {
  width: 100%;
}

.header-link {
  justify-self: end;
  padding: 10px 28px;
  border: 1px solid rgba(196,177,114,0.6);
  color: var(--white);
  font-family: var(--serif);
  font-size: 13px;
}

/* Mobile fixed reservation button */



/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  padding: 150px var(--side) 70px;
  color: var(--white);
  background: #050505;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 42%;
  z-index: 0;
  background:
    radial-gradient(circle at 70% 38%, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(135deg, #111, #2a271f);
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.56;
  filter: brightness(1.02) contrast(1.05);
  transform: scale(1.02);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 52%, rgba(0,0,0,0.88) 68%, rgba(0,0,0,0.45) 84%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 52%, rgba(0,0,0,0.88) 68%, rgba(0,0,0,0.45) 84%, rgba(0,0,0,0) 100%);
}

.hero-bg:not(.has-image) {
  left: 0;
  background-size: cover;
  opacity: 0.28;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.86) 24%, rgba(0,0,0,0.68) 46%, rgba(0,0,0,0.48) 68%, rgba(0,0,0,0.62) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.30) 100%);
}

.hero-line {
  position: absolute;
  top: 0;
  left: 52%;
  z-index: 2;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(168,149,85,0.22), transparent);
  transform: rotate(18deg);
  transform-origin: top;
}

.hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  align-items: center;
  max-width: var(--max);
  min-height: calc(100svh - 220px);
  margin: 0 auto;
}

.hero-copy {
  max-width: 620px;
  padding-top: clamp(72px, 10vh, 132px);
}

.label {
  margin: 0 0 28px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero h1 {
  margin: 0;
  max-width: 7.2em;
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0.09em;
}

.hero-lead {
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(255,255,255,0.80);
  font-size: clamp(14px, 1.35vw, 17px);
  line-height: 2.1;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
  color: rgba(255,255,255,0.92);
  font-family: var(--serif);
  font-size: clamp(16px, 2vw, 24px);
}

.hero-meta span:nth-child(2) {
  flex-basis: 100%;
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(255,255,255,0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 44px;
}

.gold-button,
.line-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: 0.25s ease;
  writing-mode: horizontal-tb;
  word-break: keep-all;
}

.gold-button {
  min-width: 280px;
  background: linear-gradient(135deg, #8f7f45, #b5a363);
  color: var(--white);
}

.gold-button:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #a89555, #c4b172);
}

.line-button {
  color: rgba(255,255,255,0.88);
}

.gold-button span,
.line-button span,
.outline-button span {
  display: inline-block;
  width: 46px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.hero-copy .label,
.hero-copy h1,
.hero-copy .hero-lead,
.hero-copy .hero-meta,
.hero-copy .hero-actions {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.9s ease forwards;
}

.hero-copy .label {
  animation-delay: 3.05s;
}

.hero-copy h1 {
  animation-delay: 3.25s;
}

.hero-copy .hero-lead {
  animation-delay: 3.48s;
}

.hero-copy .hero-meta {
  animation-delay: 3.68s;
}

.hero-copy .hero-actions {
  animation-delay: 3.86s;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Common */

.section {
  padding: clamp(84px, 10vw, 150px) var(--side);
}

.light-section {
  background:
    radial-gradient(circle at 82% 45%, rgba(0,0,0,0.08), transparent 24%),
    var(--paper);
  color: var(--black);
}

.dark-section {
  background:
    radial-gradient(circle at 88% 24%, rgba(196,177,114,0.08), transparent 24%),
    var(--black);
  color: var(--white);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(150px, 0.25fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  max-width: var(--max);
  margin: 0 auto;
}

.section-index {
  align-self: start;
  padding-right: 36px;
  border-right: 1px solid rgba(168,149,85,0.28);
}

.section-num {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
}

.section-en {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
}

.section-ja {
  margin: 8px 0 0;
  color: var(--gray-500);
  font-size: 13px;
}

.dark-section .section-ja {
  color: rgba(255,255,255,0.54);
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.large-text {
  max-width: 830px;
  margin: 28px 0 0;
  color: var(--gray-700);
  font-size: clamp(14px, 1.45vw, 17px);
  line-height: 2.2;
  white-space: pre-line;
}

.dark-section .large-text {
  color: rgba(255,255,255,0.74);
}

/* Works */

.works-section {
  overflow: visible;
}

.works-section .section-grid {
  grid-template-columns: minmax(130px, 0.18fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 64px);
  overflow: visible;
}

.works-section .section-main {
  min-width: 0;
  overflow: visible;
}

.works-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
  margin-bottom: 18px;
}

.works-slider-head p {
  margin: 0;
  color: rgba(255,255,255,0.56);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.works-slider-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.works-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(196,177,114,0.5);
  background: transparent;
  color: #ffffff;
  font-family: var(--serif);
  font-size: 16px;
  cursor: pointer;
  transition: 0.25s ease;
}

.works-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.works-viewport {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 18px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
  overscroll-behavior-x: auto;
}

.works-viewport::-webkit-scrollbar {
  height: 6px;
}

.works-viewport::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.08);
}

.works-viewport::-webkit-scrollbar-thumb {
  background: rgba(196,177,114,0.56);
}

.works-track {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(20px, 2.4vw, 32px);
  width: max-content;
  min-width: 100%;
}

.work-card {
  flex: 0 0 min(420px, 78vw);
  width: min(420px, 78vw);
  max-width: min(420px, 78vw);
  min-width: 0;
  scroll-snap-align: start;
  overflow-wrap: anywhere;
}

.work-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(circle at 46% 40%, rgba(255,255,255,0.18), transparent 16%),
    linear-gradient(145deg, #222, #5c574a);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.48);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.16em;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.work-card:hover .work-image {
  transform: translateY(-4px);
}

.work-image.has-image span {
  display: none;
}

.work-card-text {
  padding-top: 20px;
  min-width: 0;
}

.work-card-text p {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 14px;
}

.work-card-text h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.work-card-text span {
  display: block;
  margin-top: 9px;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  line-height: 1.9;
  white-space: pre-line;
  overflow-wrap: anywhere;
}

/* Artist */

.artist-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}

.artist-photo {
  width: 100%;
  max-width: 460px;
  min-height: 500px;
  aspect-ratio: 4 / 5;
  justify-self: start;
  background:
    linear-gradient(135deg, #202020, #777);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.64);
  font-family: var(--serif);
}

.artist-photo.has-image span {
  display: none;
}

.artist-content h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.artist-name-en {
  margin: 12px 0 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Info */

.info-content {
  width: 100%;
  max-width: 900px;
}

.info-list {
  margin: 34px 0 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.info-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.info-row dt,
.info-row dd {
  margin: 0;
  padding: 14px 0;
}

.info-row dt {
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  font-weight: 700;
}

.info-row dd {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.75;
  white-space: pre-line;
}

.info-row dd a {
  border-bottom: 1px solid rgba(255,255,255,0.48);
}

.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.outline-button {
  min-width: 190px;
  border: 1px solid rgba(196,177,114,0.5);
  color: var(--white);
}

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

/* Reservation */

.final-section {
  position: relative;
  padding: clamp(78px, 9vw, 120px) var(--side);
  background:
    radial-gradient(circle at 82% 20%, rgba(168,149,85,0.16), transparent 24%),
    linear-gradient(135deg, #050505 0%, #111111 62%, #1d1a13 100%);
  color: #ffffff;
  overflow: hidden;
}

.final-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  text-align: left;
}

.final-content {
  min-width: 0;
  max-width: 760px;
}

.final-label {
  margin: 0 0 22px;
  color: rgba(196,177,114,0.88);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.final-inner h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.45;
  letter-spacing: 0.08em;
  writing-mode: horizontal-tb;
}

.final-inner p {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 15px;
  line-height: 2.1;
  writing-mode: horizontal-tb;
  white-space: pre-line;
}

.benefit-visual {
  width: 190px;
  max-width: 190px;
  height: 270px;
  min-height: 270px;
  margin: 28px auto 0;
  aspect-ratio: 2 / 3;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(168,149,85,0.22)),
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.14), transparent 28%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(196,177,114,0.34);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.54);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.16em;
  overflow: hidden;
  justify-self: center;
}

.benefit-visual.has-image span {
  display: none;
}

/* Reservation Form */

.reservation-form {
  width: 100%;
  max-width: 520px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(196,177,114,0.34);
  background: rgba(255,255,255,0.04);
}

.form-row {
  margin-bottom: 14px;
}

.form-row label {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 700;
}

.form-row label span {
  display: inline-block;
  margin-left: 6px;
  color: var(--gold-light);
  font-size: 11px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 0;
  background: rgba(0,0,0,0.28);
  color: #ffffff;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.03em;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(196,177,114,0.78);
  background: rgba(0,0,0,0.42);
}

.form-row textarea {
  resize: vertical;
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 4px 0 20px;
  color: rgba(255,255,255,0.64);
  font-size: 12px;
  line-height: 1.8;
}

.consent-row input {
  margin-top: 5px;
  flex-shrink: 0;
}

.form-submit {
  width: 100%;
  border: none;
  cursor: pointer;
}

.form-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  min-height: 1.6em;
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.8;
}

.form-message.success {
  color: var(--gold-light);
}

.form-message.error {
  color: #ffb4b4;
}

/* Access Modal */

.access-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  padding: 24px;
}

.access-modal.is-open {
  display: grid;
  place-items: center;
}

.access-modal-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(6px);
}

.access-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(86vh, 820px);
  overflow-y: auto;
  padding: clamp(22px, 4vw, 42px);
  background:
    radial-gradient(circle at 82% 20%, rgba(168,149,85,0.13), transparent 24%),
    #0b0b0b;
  border: 1px solid rgba(196,177,114,0.38);
  color: #ffffff;
  box-shadow: 0 28px 80px rgba(0,0,0,0.45);
}

.access-modal-close {
  position: sticky;
  top: 0;
  float: right;
  z-index: 20;
  width: 40px;
  height: 40px;
  margin: -12px -12px 8px 12px;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(0,0,0,0.78);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
}

.access-modal-label {
  clear: both;
  margin: 0 0 12px;
  color: rgba(196,177,114,0.88);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.access-modal-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(26px, 4vw, 42px);
}

.access-map {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.16);
  overflow: hidden;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.access-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  margin-top: 24px;
}

.access-detail p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.9;
}

.access-detail strong {
  color: rgba(196,177,114,0.95);
  font-size: 13px;
}

.access-note {
  grid-column: 1 / -1;
  color: rgba(255,255,255,0.66) !important;
}

/* Footer */

.tm-stage-site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px var(--side);
  background: #030303;
  color: rgba(255,255,255,0.62);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.tm-stage-site-footer p {
  margin: 0;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.tm-stage-site-footer small {
  font-size: 11px;
}

/* Reveal */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

/* Tablet */

@media (max-width: 1000px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-copy {
    padding-top: clamp(82px, 12vh, 140px);
  }

  .hero-bg,
  .hero-bg.has-image {
    left: 0;
    right: 0;
    background-size: cover;
    background-position: 68% center;
    opacity: 0.54;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.62) 42%, rgba(0,0,0,0.82) 100%),
      linear-gradient(90deg, rgba(0,0,0,0.76) 0%, rgba(0,0,0,0.48) 52%, rgba(0,0,0,0.62) 100%);
  }

  .section-grid,
  .artist-layout,
  .final-inner {
    grid-template-columns: 1fr;
  }

  .works-section .section-grid {
    grid-template-columns: 1fr;
  }

  .section-index {
    padding-right: 0;
    border-right: none;
  }

  .artist-photo {
    max-width: 420px;
    min-height: 500px;
    justify-self: start;
  }

  .reservation-form {
    max-width: 100%;
  }

  .benefit-visual {
    margin-left: auto;
    margin-right: auto;
    justify-self: center;
  }
}

/* Mobile */

@media (max-width: 640px) {
  :root {
    --side: 20px;
  }

  .opening-name {
    font-size: 42px;
    letter-spacing: 0.15em;
  }

  .opening-sub {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .header-inner {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 14px var(--side);
  }

  .site-logo {
    max-width: 145px;
    min-width: 0;
    font-size: 10px;
    line-height: 1.35;
    overflow-wrap: break-word;
  }

  .header-link {
    max-width: 120px;
    padding: 7px 10px;
    font-size: 10px;
    text-align: center;
  }



  .hero {
    min-height: 100svh;
    padding-top: 90px;
    padding-bottom: 42px;
  }

  .hero-layout {
    min-height: calc(100svh - 132px);
    align-items: start;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 108px;
  }

  .hero-bg,
  .hero-bg.has-image {
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0.66;
    background-size: cover;
    background-position: 82% center;
    transform: scale(1.01);
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.34) 0%, rgba(0,0,0,0.52) 42%, rgba(0,0,0,0.82) 100%),
      linear-gradient(90deg, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.42) 52%, rgba(0,0,0,0.56) 100%);
  }

  .label {
    margin-bottom: 18px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(31px, 9.6vw, 46px);
    line-height: 1.34;
    max-width: 6.8em;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.9;
  }

  .hero-meta {
    margin-top: 24px;
    gap: 10px;
    font-size: 16px;
  }

  .hero-meta span:nth-child(2) {
    font-size: 12px;
  }

  .hero-actions {
    margin-top: 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .gold-button,
  .line-button,
  .outline-button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 48px;
    padding: 0 14px;
    font-size: 11px;
  }

  .gold-button span,
  .line-button span,
  .outline-button span {
    width: 28px;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 50px;
  }

  .section-grid {
    width: 100%;
    max-width: 100%;
    gap: 20px;
  }

  .section-num {
    margin-bottom: 10px;
    font-size: 38px;
  }

  .section-en {
    font-size: 15px;
  }

  .section-ja {
    font-size: 12px;
  }

  h2 {
    font-size: 26px;
    line-height: 1.45;
  }

  .large-text {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.9;
  }

  .works-slider-head {
    align-items: flex-end;
    margin-top: 32px;
  }

  .works-slider-head p {
    font-size: 12px;
    line-height: 1.7;
  }

  .works-arrow {
    width: 38px;
    height: 38px;
  }

.works-viewport {
  width: calc(100vw - 20px);
  max-width: none;
  margin-left: 0;
  margin-right: -20px;
  padding-right: 20px;
  overflow-x: auto;
  overflow-y: visible;
  touch-action: auto;
  overscroll-behavior-x: auto;
  scroll-snap-type: x proximity;
}

  .works-track {
    gap: 18px;
    width: max-content;
    min-width: max-content;
  }

  .work-card {
    flex: 0 0 82vw;
    width: 82vw;
    max-width: 82vw;
  }

  .work-image {
    width: 100%;
    min-height: 260px;
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .work-card-text {
    padding-top: 14px;
  }

  .work-card-text h3 {
    font-size: 20px;
  }

  .work-card-text span {
    font-size: 13px;
    line-height: 1.8;
  }

  .artist-layout {
    gap: 24px;
  }

  .artist-photo {
    max-width: 330px;
    min-height: 410px;
    aspect-ratio: 4 / 5;
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .info-list {
    margin-top: 24px;
  }

  .info-row {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 12px 0;
  }

  .info-row dt,
  .info-row dd {
    padding: 0;
  }

  .info-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
  }

  .info-actions .outline-button {
    width: 100%;
  }

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

  .final-inner {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .final-label {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .final-inner h2 {
    font-size: 26px;
    line-height: 1.45;
  }

  .final-inner p {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.9;
  }

  .benefit-visual {
    width: 150px;
    max-width: 150px;
    height: 220px;
    min-height: 220px;
    margin: 22px auto 0;
    justify-self: center;
  }

  .reservation-form {
    margin-top: 30px;
    padding: 20px;
  }

  .form-row {
    margin-bottom: 12px;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    font-size: 13px;
  }

  .access-modal {
    padding: 14px;
  }

  .access-modal-panel {
    max-height: 88vh;
    padding: 22px;
  }

  .access-map {
    aspect-ratio: 4 / 3;
  }

  .access-detail {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .access-modal-close {
    width: 38px;
    height: 38px;
    margin: -8px -8px 8px 12px;
  }

  .tm-stage-site-footer {
    flex-direction: column;
    padding-top: 22px;
    padding-bottom: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .opening {
    display: none;
  }

  .tm-stage-site-header,
  main,
  .tm-stage-site-footer,
  .mobile-reserve-button,
  .hero-copy .label,
  .hero-copy h1,
  .hero-copy .hero-lead,
  .hero-copy .hero-meta,
  .hero-copy .hero-actions {
    opacity: 1;
    transform: none;
    animation: none;
    filter: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ========================================
   Final clean overrides
   ここから下は重複整理済みの最終調整
======================================== */

/* Works slider touch fix */
.works-viewport {
  touch-action: auto !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  scroll-snap-type: x proximity !important;
}

.works-track,
.work-card {
  touch-action: auto !important;
}

.mobile-reserve-button {
  display: none !important;
}

/* Works clean slider */
.works-section .work-card,
.works-section .work-image,
.works-section .work-card-text {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}

.work-card:hover .work-image {
  transform: none !important;
}

.works-slider-head {
  margin-top: 36px !important;
  margin-bottom: 14px !important;
}

.works-slider-head p {
  color: rgba(255,255,255,0.46) !important;
  font-size: 12px !important;
  letter-spacing: 0.06em !important;
}

.works-arrow {
  width: 36px !important;
  height: 36px !important;
  font-size: 14px !important;
  border-color: rgba(196,177,114,0.36) !important;
}

.works-track {
  gap: 22px !important;
}

.work-card-text {
  padding-top: 14px !important;
}

.work-card-text p {
  margin-bottom: 5px !important;
  font-size: 12px !important;
}

.work-card-text h3 {
  font-size: clamp(17px, 1.5vw, 21px) !important;
  line-height: 1.45 !important;
}

.work-card-text span {
  margin-top: 6px !important;
  font-size: 12px !important;
  line-height: 1.75 !important;
  color: rgba(255,255,255,0.58) !important;
}

.works-viewport::-webkit-scrollbar {
  height: 4px !important;
}

.works-viewport::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.04) !important;
}

.works-viewport::-webkit-scrollbar-thumb {
  background: rgba(196,177,114,0.34) !important;
}

/* Hero visual responsive position */
@media (min-width: 1001px) {
  .hero-bg,
  .hero-bg.has-image {
    left: 42% !important;
    right: 0 !important;
    width: auto !important;
    background-size: contain !important;
    background-position: right center !important;
    background-repeat: no-repeat !important;
    transform: scale(1.02) !important;
    opacity: 0.72 !important;
    filter: brightness(1.08) contrast(1.08) !important;
  }
}

@media (min-width: 641px) and (max-width: 1000px) {
  .hero-bg,
  .hero-bg.has-image {
    left: 28% !important;
    right: 0 !important;
    width: auto !important;
    background-size: contain !important;
    background-position: right center !important;
    background-repeat: no-repeat !important;
    transform: scale(1.02) !important;
    opacity: 0.76 !important;
    -webkit-mask-image: linear-gradient(
      to left,
      rgba(0,0,0,1) 48%,
      rgba(0,0,0,0.78) 70%,
      rgba(0,0,0,0) 100%
    ) !important;
    mask-image: linear-gradient(
      to left,
      rgba(0,0,0,1) 48%,
      rgba(0,0,0,0.78) 70%,
      rgba(0,0,0,0) 100%
    ) !important;
  }
}

@media (max-width: 640px) {
  .hero-bg,
  .hero-bg.has-image {
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background-size: contain !important;
    background-position: center 18% !important;
    background-repeat: no-repeat !important;
    transform: scale(1.08) !important;
    opacity: 0.82 !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
}

/* Text responsive balance */
.hero-lead,
.large-text,
.final-inner p,
.work-card-text span,
.info-row dd {
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}

@media (min-width: 1001px) {
  .hero-lead {
    max-width: 520px;
  }

  .large-text {
    max-width: 760px;
  }

  .final-inner p {
    max-width: 680px;
  }

  .work-card-text span {
    max-width: 100%;
  }
}

@media (min-width: 641px) and (max-width: 1000px) {
  .hero-lead {
    max-width: 480px;
  }

  .large-text,
  .final-inner p {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .hero-lead,
  .large-text,
  .final-inner p,
  .work-card-text span,
  .info-row dd {
    max-width: 100%;
    line-height: 1.85;
    letter-spacing: 0.03em;
  }

  .hero-lead,
  .large-text,
  .final-inner p {
    font-size: 13px;
  }
}

/* PC/SP line break control */
.pc-br {
  display: inline;
}

.sp-br {
  display: none;
}

@media (max-width: 640px) {
  .pc-br {
    display: none;
  }

  .sp-br {
    display: inline;
  }

  .hero-lead,
  .large-text,
  .final-inner p,
  .work-card-text span,
  .info-row dd {
    white-space: normal !important;
  }
}

/* スプシのAlt+Enter改行を反映 */
.large-text {
  white-space: pre-line !important;
}

/* Reservation title size adjustment */
.final-content h3 {
  font-size: clamp(28px, 3.4vw, 46px) !important;
  line-height: 1.35 !important;
  letter-spacing: 0.04em !important;
}

@media (max-width: 640px) {
  .final-content h3 {
    font-size: 27px !important;
    line-height: 1.45 !important;
  }
}

/* Scrollbar design */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
  background: #080808;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
  background: rgba(196, 177, 114, 0.45);
  border-radius: 999px;
  border: 2px solid #080808;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
*::-webkit-scrollbar-thumb:hover {
  background: rgba(196, 177, 114, 0.72);
}

html,
body {
  scrollbar-width: thin;
  scrollbar-color: rgba(196, 177, 114, 0.55) #080808;
}

/* Opening stable fix */
html.is-opening,
body.is-opening {
  overflow: hidden !important;
  height: 100% !important;
  scrollbar-width: none !important;
}

html.is-opening::-webkit-scrollbar,
body.is-opening::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* body/html自体は固定しない。固定するのはopeningだけ */
.opening {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100svh !important;
  overflow: hidden !important;
  z-index: 99999 !important;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.08), transparent 22%),
    linear-gradient(135deg, #030303 0%, #111111 58%, #242424 100%) !important;
  overscroll-behavior: none !important;
  touch-action: none !important;
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: paint;
}

.opening-inner {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: min(90vw, 720px) !important;
  text-align: center !important;
}

.opening-name,
.opening-sub {
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.opening.is-hidden {
  display: none !important;
}

@media (max-width: 640px) {
  .opening-inner {
    top: 47% !important;
  }
}

@media (max-width: 640px) {
  .works-slider-head {
    margin-top: 28px !important;
    margin-bottom: 12px !important;
  }

  .works-slider-head p {
    font-size: 11px !important;
  }

  .works-arrow {
    width: 34px !important;
    height: 34px !important;
  }

  .works-track {
    gap: 16px !important;
  }

  .work-card {
    flex: 0 0 80vw !important;
    width: 80vw !important;
    max-width: 80vw !important;
  }

  .work-card-text {
    padding-top: 12px !important;
  }

  .work-card-text h3 {
    font-size: 18px !important;
  }

  .work-card-text span {
    font-size: 12px !important;
    line-height: 1.7 !important;
  }
}

/* ========================================
   Basic content protection
   画像・テキストの簡易保護
======================================== */

.hero-bg,
.artist-photo,
.benefit-visual,
.work-image,
.opening,
.hero,
.works-section {
  -webkit-user-select: none !important;
  user-select: none !important;
  -webkit-user-drag: none !important;
  -webkit-touch-callout: none !important;
}

input,
textarea,
select,
button,
.reservation-form,
.reservation-form * {
  -webkit-user-select: text !important;
  user-select: text !important;
  -webkit-touch-callout: default !important;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* WordPress固定ページ側の余白・外枠を解除 */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
  background: #000 !important;
}

.wp-site-blocks,
.wp-block-post-content,
.entry-content,
article,
main.wp-block-group,
.wp-block-post-content > * {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

.wp-site-blocks > header,
.wp-site-blocks > footer,
.entry-header,
.entry-title,
.page-title {
  display: none !important;
}

#wpadminbar {
  z-index: 1000000;
}

/* WordPressテーマとの競合を解除 */
header.tm-stage-site-header {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
}

/* スクロール演出が動かない場合でも内容を表示 */
.reveal,
.reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* LP本体がWordPress側で隠されないようにする */
main,
.tm-stage-site-footer {
  opacity: 1 !important;
  visibility: visible !important;
}

/* 背景画像エリアを確実に表示 */
.hero-bg,
.artist-photo,
.benefit-visual,
.work-image {
  visibility: visible !important;
}


/* ========================================
   v1.5 Mobile hero vertical balance
   ファーストビュー下部の空白を活かし、コピーを自然に下げる
======================================== */
@media (max-width: 640px) {
  .hero {
    min-height: 100svh !important;
    padding-top: 90px !important;
    padding-bottom: 24px !important;
  }

  .hero-layout {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: stretch !important;
    min-height: calc(100svh - 114px) !important;
  }

  .hero-copy {
    width: 100% !important;
    max-width: 100% !important;
    padding-top: 0 !important;
    padding-bottom: 16px !important;
  }
}

/* 高さが低い端末では、内容が詰まりすぎないよう通常フローへ戻す */
@media (max-width: 640px) and (max-height: 720px) {
  .hero {
    min-height: auto !important;
  }

  .hero-layout {
    display: block !important;
    min-height: auto !important;
  }

  .hero-copy {
    padding-top: 96px !important;
    padding-bottom: 18px !important;
  }
}
