/* ============ Reset & Base ============ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

:root {
  --ink: #1c1a1a;
  --ink-soft: #4f4c4a;
  --btn-hover: #5c5956;
  --footer-bg: #1c1a1a;
  --sub: #5a5854;
  --faint: #8a8880;
  --line: #ebe4e6;
  --line-dark: #dccfd2;
  --bg: #faf9f7;
  --bg2: #f3f2ef;
  --bg3: #ebe9e6;
  --cl-red: #96222d;
  --cl-red-soft: rgba(150, 34, 45, 0.06);
  --cl-blue: #4b7ea3;
  --cl-blue-soft: rgba(75, 126, 163, 0.08);
  --shadow-sm: 0 1px 3px rgba(28, 26, 26, 0.04);
  --shadow-md: 0 8px 32px rgba(28, 26, 26, 0.06);
  --shadow-lg: 0 20px 60px rgba(28, 26, 26, 0.08);
  --radius: 8px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  /* typography — body を大きく、見出しは控えめなジャンプ率 */
  --text-2xs: 10.5px;
  --text-xs: 12px;
  --text-sm: 13.5px;
  --text-base: 17px;
  --text-md: 15px;
  --text-lg: 16px;
  --text-title: clamp(22px, 2.8vw, 28px);
  --text-catch: clamp(21px, 2.6vw, 27px);
  --text-subtitle: clamp(20px, 2.5vw, 25px);
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.9;
  font-size: var(--text-base);
  letter-spacing: 0.04em;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

i,
em,
address {
  font-style: normal;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 0 28px;
}

/* Text-heavy pages (FAQ / news / 404): readable line length */
.container--reading {
  max-width: 720px;
}

/* ============ Pattern background sections ============ */
.pattern-bg {
  position: relative;
  background-color: #f5f4f1;
  background-image:
    radial-gradient(at 15% 20%, rgba(150, 34, 45, 0.035) 0%, transparent 48%),
    radial-gradient(at 85% 15%, rgba(75, 126, 163, 0.03) 0%, transparent 42%),
    radial-gradient(at 70% 85%, rgba(120, 118, 114, 0.045) 0%, transparent 50%),
    radial-gradient(at 25% 75%, rgba(255, 255, 255, 0.55) 0%, transparent 45%),
    radial-gradient(at 50% 50%, rgba(245, 244, 241, 0.4) 0%, transparent 70%),
    linear-gradient(155deg, #f0eeeb 0%, #f8f7f4 38%, #f3f1ee 72%, #edebe8 100%);
}

.pattern-bg > .container {
  position: relative;
  z-index: 1;
}

/* ============ Header ============ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

#header.over-hero {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}

/* Soft top scrim: keeps white nav readable on any hero photo */
#header.over-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 148px;
  background: linear-gradient(
    180deg,
    rgba(18, 16, 14, 0.52) 0%,
    rgba(18, 16, 14, 0.28) 42%,
    rgba(18, 16, 14, 0.08) 72%,
    rgba(18, 16, 14, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

#header.over-hero .logo,
#header.over-hero + .nav-menu a:not(.nav-contact):not(.nav-drawer-logo):not(.nav-sns) {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28), 0 0 18px rgba(0, 0, 0, 0.18);
}

#header.over-hero + .nav-menu a:not(.nav-contact):not(.nav-drawer-logo):not(.nav-sns)::after {
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

#header.over-hero + .nav-menu a:not(.nav-contact):not(.nav-drawer-logo):not(.nav-sns):hover {
  color: #fff;
  opacity: 1;
}

#header.over-hero + .nav-menu .nav-contact {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: none;
  box-shadow: none;
}

#header.over-hero + .nav-menu .nav-contact:hover {
  background: #fff;
  color: var(--ink) !important;
  border-color: #fff;
  box-shadow: none;
  opacity: 1;
}

#header.over-hero + .nav-menu .nav-sns {
  color: #fff;
  text-shadow: none;
}

#header.over-hero + .nav-menu .nav-sns:hover {
  color: #fff;
  opacity: 1;
}

#header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

#header:not(.over-hero) .logo,
#header:not(.over-hero) + .nav-menu a {
  text-shadow: none;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 110;
}

.brand {
  display: flex;
  align-items: center;
  transition: opacity 0.3s var(--ease);
  position: relative;
  z-index: 120;
}

.brand:hover {
  opacity: 0.78;
}

.logo {
  color: var(--ink);
  display: block;
}

.brand .logo {
  height: 26px;
  width: auto;
  transition: height 0.35s var(--ease);
}

nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13.5px;
  letter-spacing: 0.14em;
  font-weight: 600;
}

nav a {
  color: var(--sub);
  transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
  position: relative;
}

nav a:not(.nav-contact):not(.nav-sns)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

nav a:not(.nav-contact):not(.nav-sns):hover {
  color: var(--ink);
}

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

.nav-sns {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: inherit;
  opacity: 0.88;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}

.nav-sns:hover {
  opacity: 1;
  color: var(--ink);
}

.nav-sns-icon {
  display: block;
}

.nav-contact {
  border: 1px solid currentColor;
  padding: 10px 32px;
  color: var(--sub) !important;
  background: transparent;
  letter-spacing: 0.16em;
  border-radius: var(--radius);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-contact:hover {
  background: var(--ink-soft);
  color: #fff !important;
  border-color: var(--ink-soft);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
  flex-shrink: 0;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), background 0.3s var(--ease);
  transform-origin: center;
}

#header.over-hero .nav-toggle-bar {
  background: #fff;
}

@media (max-width: 860px) {
  #header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 130;
    background: #2e2e2e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 72px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  }

  .nav-drawer-close {
    display: block;
    position: absolute;
    top: calc(12px + var(--wp-admin-bar, 0px));
    right: 16px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 2;
  }

  .nav-drawer-close-bar {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 1px;
  }

  .nav-drawer-close-bar:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav-drawer-close-bar:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .nav-drawer-logo {
    display: block;
    padding: 0 28px 64px;
    flex-shrink: 0;
  }

  .nav-drawer-logo .logo {
    height: 28px;
    width: auto;
    color: #fff;
    display: block;
    margin: 0 auto;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    max-width: 320px;
    padding: 0 28px 24px;
    flex-shrink: 0;
  }

  .nav-sns {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 8px auto 0;
    padding: 0 !important;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s var(--ease);
  }

  .nav-sns:hover {
    color: #fff;
  }

  .nav-sns-icon {
    display: block;
  }

  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu li:has(.nav-sns) {
    border-bottom: none;
    display: flex;
    justify-content: center;
    padding: 8px 0 4px;
  }

  .nav-menu li:last-child {
    border-bottom: none;
    margin-top: 12px;
  }

  .nav-menu a {
    display: block;
    padding: 18px 8px;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-align: center;
    color: rgba(255, 255, 255, 0.88);
  }

  .nav-menu a:not(.nav-contact):not(.nav-sns):hover {
    color: #fff;
  }

  .nav-menu a:not(.nav-contact):not(.nav-sns)::after {
    display: none;
  }

  .nav-menu .nav-contact {
    border-color: rgba(255, 255, 255, 0.85);
    color: rgba(255, 255, 255, 0.88) !important;
    background: transparent;
    padding: 14px 36px;
    text-align: center;
    display: block;
  }

  .nav-menu .nav-contact:hover {
    background: transparent;
    color: #fff !important;
    border-color: #fff;
  }

  body.nav-open .nav-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  #header.nav-open {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    pointer-events: none;
  }

  #header.nav-open .brand,
  #header.nav-open .nav-toggle {
    opacity: 0;
    visibility: hidden;
  }
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 861px) {
  .nav-drawer-logo,
  .nav-drawer-close {
    display: none !important;
  }

  .nav-toggle {
    display: none !important;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 1200px);
    height: 76px;
    padding: 0 28px;
    z-index: 101;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .nav-menu ul {
    pointer-events: auto;
    height: 76px;
  }
}

/* ============ WP Admin Bar ============ */
/* --wp-admin-bar is updated in navigation.js (handles absolute bar on mobile) */
body.admin-bar #header,
body.admin-bar .nav-menu {
  top: var(--wp-admin-bar, 32px);
}

@media (max-width: 860px) {
  body.admin-bar .nav-menu {
    height: calc(100dvh - var(--wp-admin-bar, 32px));
  }
}

html:has(body.admin-bar) {
  scroll-padding-top: calc(72px + var(--wp-admin-bar, 32px));
}

/* ============ Section common ============ */
section {
  padding: 100px 0;
}

.sec-head {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  margin-bottom: 60px;
  min-height: 72px;
  overflow: hidden;
}

.sec-head--left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  place-items: unset;
  text-align: left;
  margin-bottom: 56px;
  min-height: 56px;
}

.sec-en {
  grid-area: 1 / 1;
  margin: 0;
  font-size: clamp(56px, 11vw, 112px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(28, 26, 26, 0.045);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.sec-head--left .sec-en {
  position: absolute;
  top: 50%;
  left: 0;
  grid-area: unset;
  transform: translate(0, -50%);
}

.sec-title {
  grid-area: 1 / 1;
  font-size: var(--text-title);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 1;
  transform: translateY(0.22em);
}

.sec-lead {
  color: var(--sub);
  font-size: var(--text-lg);
  line-height: 2;
  margin: -36px auto 60px;
  text-align: center;
}

@media (max-width: 640px) {
  section {
    padding: 72px 0;
  }

  .sec-head {
    margin-bottom: 48px;
    min-height: 60px;
  }

  .sec-title {
    margin-bottom: 0;
  }

  .sec-lead {
    margin: -24px 0 40px;
  }
}

/* ============ Hero ============ */
.hero {
  padding: 0;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  z-index: 0;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-bg img.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-bg:not(.is-ready) img.is-active {
  animation: heroBgIn 1.8s var(--ease) forwards;
}

.hero-bg.is-ready img {
  animation: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(28, 26, 26, 0.35) 0%,
    rgba(28, 26, 26, 0.2) 50%,
    rgba(28, 26, 26, 0.45) 100%
  );
  pointer-events: none;
  opacity: 0;
  animation: heroFadeIn 1.4s 0.1s var(--ease) forwards;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 100px 28px 80px;
  width: 100%;
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  line-height: 1;
  opacity: 0;
  animation: heroFadeUp 1.05s 0.35s var(--ease) forwards;
}

.hero h1 .logo {
  width: min(480px, 76vw);
  height: auto;
  color: #fff;
  margin: 0 auto;
}

.hero .en {
  font-size: clamp(11px, 1.4vw, 14px);
  letter-spacing: 0.48em;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 28px;
  font-weight: 700;
  opacity: 0;
  animation: heroFadeUp 1.05s 0.5s var(--ease) forwards;
}

.hero .ja {
  font-size: clamp(15px, 1.8vw, 18px);
  letter-spacing: 0.22em;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  opacity: 0;
  animation: heroFadeUp 1.05s 0.65s var(--ease) forwards;
}

.hero-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  font-size: var(--text-2xs);
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  font-weight: 600;
}

/* Latest news — in-hero */
.hero-news-bar {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: stretch;
  width: min(560px, calc(100% - 120px));
  max-width: calc(100% - 120px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
  opacity: 0;
  animation: heroNewsIn 1s 1s var(--ease) forwards;
}

.hero-news-bar:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-news {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1 1 auto;
  padding: 16px 10px 16px 18px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.hero-news-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 20px 0 18px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: lowercase;
  transition: color 0.3s var(--ease);
}

.hero-news-more::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22%;
  bottom: 22%;
  width: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-news-more::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 20px;
  bottom: 28%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
  opacity: 0.7;
}

.hero-news-more:hover {
  color: #fff;
}

.hero-news-more:hover::after {
  transform: scaleX(1);
}

.hero-news-label {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  padding: 5px 8px 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.92);
}

.hero-news-date {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  font-variant-numeric: tabular-nums;
}

.hero-news-title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 28px;
  left: auto;
  font-size: var(--text-2xs);
  letter-spacing: 0.36em;
  color: rgba(255, 255, 255, 0.6);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: heroFadeIn 0.9s 1.15s var(--ease) forwards;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
  display: block;
  margin-top: 10px;
  animation: scroll-line 2s ease-in-out 1.6s infinite;
}

@keyframes scroll-line {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.6);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes heroBgIn {
  from {
    opacity: 0;
    transform: scale(1.06) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroNewsIn {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg img,
  .hero-overlay,
  .hero h1,
  .hero .en,
  .hero .ja,
  .hero-news-bar,
  .hero-scroll {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }

  .hero-bg img {
    transform: none;
  }

  .hero-bg img:not(.is-active) {
    opacity: 0;
  }

  .hero-news-bar {
    transform: translateX(-50%);
  }

  .hero-scroll::after {
    animation: none;
  }
}

@media (max-width: 720px) {
  .hero-inner {
    padding-bottom: 120px;
  }

  .hero-news-bar {
    left: 20px;
    right: 20px;
    bottom: 24px;
    transform: none;
    width: auto;
    max-width: none;
    animation-name: heroFadeUp;
  }

  .hero-news {
    gap: 10px;
    padding: 14px 8px 14px 14px;
  }

  .hero-news-date {
    display: none;
  }

  .hero-news-title {
    font-size: 14px;
  }

  .hero-news-label {
    font-size: 10px;
  }

  .hero-news-more {
    padding: 0 14px 0 12px;
    letter-spacing: 0.24em;
    font-size: 11px;
  }

  .hero-news-more::after {
    left: 12px;
    right: 14px;
  }

  .hero-scroll {
    display: none;
  }
}

/* ============ Photo ============ */
.photo {
  position: relative;
  background: var(--bg3);
  overflow: hidden;
  border-radius: var(--radius);
}

.photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.8s var(--ease);
}

.photo:hover > img {
  transform: scale(1.03);
}

.photo .ph-note {
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: var(--text-2xs);
  letter-spacing: 0.2em;
  color: var(--sub);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  font-weight: 600;
  z-index: 2;
}

.photo-hero {
  aspect-ratio: 21 / 9;
  box-shadow: var(--shadow-lg);
}

.photo-room {
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}

.photo-g {
  aspect-ratio: 4 / 3;
}

/* ============ Concept ============ */
.concept {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.concept > .container {
  position: relative;
  z-index: 1;
}

.concept-body {
  font-size: var(--text-md);
  line-height: 2.1;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: var(--sub);
  text-align: left;
}

.concept-body p + p {
  margin-top: 1.35em;
}

.concept-catch {
  font-size: var(--text-catch);
  line-height: 2.05;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--ink);
  text-align: left;
}

.concept-sai {
  margin-top: 1.8em;
  font-size: var(--text-sm);
  color: var(--faint);
  letter-spacing: 0.12em;
  padding-top: 1.4em;
  border-top: 1px solid var(--line);
  text-align: left;
}

.concept-sai b {
  color: var(--ink);
  font-weight: 700;
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: none;
  margin: 0;
  text-align: left;
}

@media (max-width: 800px) {
  .concept-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sec-head--left {
    align-items: center;
    text-align: center;
  }

  .sec-head--left .sec-en {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/* ============ Space ============ */

#space .sec-lead {
  margin-bottom: 48px;
}

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}

.room-card {
  text-align: center;
}

.room-card .photo-room {
  margin-bottom: 22px;
}

.room-card h3 {
  font-size: var(--text-subtitle);
  letter-spacing: 0.16em;
  margin: 0 0 8px;
  font-weight: 700;
}

.room-card .room-sub {
  font-size: var(--text-md);
  color: var(--sub);
  margin: 0;
  line-height: 1.8;
}

button.btn-price {
  font-family: inherit;
  background: var(--ink-soft);
  cursor: pointer;
}

.btn-price {
  display: inline-block;
  margin: 12px 0;
  padding: 14px 48px;
  border: 1px solid var(--ink-soft);
  border-radius: var(--radius);
  font-size: 14px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: #fff;
  background: var(--ink-soft);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn-price:hover {
  background: var(--btn-hover);
  color: #fff;
  border-color: var(--btn-hover);
}

@media (max-width: 800px) {
  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ============ Possibility ============ */
#possibility .sec-lead {
  margin: -20px 0 40px;
}

.poss-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.poss-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-top: 16px;
}

.poss-card p {
  font-size: 14px;
  color: var(--sub);
  margin-top: 6px;
  line-height: 1.75;
}

.poss-photo {
  aspect-ratio: 3 / 2;
}

.poss-card {
  text-align: center;
}

.poss-card-link {
  display: block;
  color: inherit;
  transition: opacity 0.3s var(--ease);
}

.poss-card-link:hover {
  opacity: 0.86;
}

.poss-card-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}

.poss-tags {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.poss-tags-label {
  font-size: var(--text-xs);
  letter-spacing: 0.28em;
  color: var(--faint);
  font-weight: 700;
  margin-bottom: 16px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tags-compact .tag {
  padding: 5px 20px;
  font-size: var(--text-sm);
  border-radius: 999px;
}

.tag {
  border: 1px solid var(--line);
  padding: 6px 24px;
  font-size: 14.5px;
  letter-spacing: 0.06em;
  background: var(--bg);
  border-radius: 999px;
}

.poss-more {
  margin-top: 32px;
  font-size: 14px;
  color: var(--sub);
  text-align: center;
  letter-spacing: 0.06em;
}

@media (max-width: 800px) {
  .poss-highlights {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ============ Price ============ */
.price-page {
  padding: 0;
  min-height: 60vh;
  transition: background-color 0.45s var(--ease);
}

.price-page-intro {
  padding: 100px 0 0;
}

.price-page-intro .sec-head {
  margin-bottom: 28px;
}

.price-page-body {
  padding-top: 36px;
}

.price-page-lead {
  text-align: center;
  font-size: 15.5px;
  color: var(--sub);
  line-height: 2;
  max-width: 560px;
  margin: 0 auto;
}


.price-page.is-rate-switching .price-sheet:not(.is-hidden) {
  animation: priceSheetIn 0.4s var(--ease);
}

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

.price-rate-bar {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 440px;
  margin: 0 auto;
  padding: 5px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}


.price-rate-btn,
.price-rate-link {
  appearance: none;
  border: none;
  background: transparent;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border-radius: calc(var(--radius) - 2px);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.price-rate-bar .price-rate-btn::after,
.price-rate-bar .price-rate-link::after {
  display: none;
}

.price-rate-bar .price-rate-btn:hover,
.price-rate-bar .price-rate-link:hover {
  color: #fff;
}

.price-rate-btn.is-active,
.price-rate-link.is-active {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.price-rate-bar .price-rate-btn.is-active:hover,
.price-rate-bar .price-rate-link.is-active:hover {
  color: var(--ink);
}


.price-rate-status {
  text-align: center;
  max-width: 460px;
  margin: 0 auto 28px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}


.price-rate-status-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}

.price-rate-status-label.is-hidden,
.price-rate-note.is-hidden,
.price-sheet.is-hidden {
  display: none;
}

.price-rate-chip {
  display: inline-block;
  padding: 3px 8px;
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #fff;
  background: var(--ink);
}


.price-rate-status-text {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--ink);
}


.price-rate-note {
  font-size: 12.5px;
  color: var(--faint);
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin: 0;
}


.price-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 36px;
  margin: 0 auto 8px;
  max-width: 720px;
}

.price-jump a {
  display: inline-block;
  padding: 14px 4px 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--sub);
  border-bottom: 1px solid var(--line-dark);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.price-jump a::after {
  display: none;
}

.price-jump a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
  background: transparent;
}


.price-room {
  scroll-margin-top: 88px;
  margin-bottom: 28px;
  padding-top: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}


.price-room:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.price-room-title {
  font-size: var(--text-subtitle);
  letter-spacing: 0.16em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
}

.price-room-desc {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--sub);
  margin-bottom: 12px;
  line-height: 1.8;
}

.price-room-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  max-width: 480px;
  margin: 0 auto;
  font-size: 13px;
  color: var(--sub);
  text-align: left;
  line-height: 1.7;
}

.price-room-features li {
  position: relative;
  padding-left: 14px;
  line-height: 1.7;
}

.price-room-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 6px;
  height: 1px;
  background: var(--cl-red);
  opacity: 0.45;
}

.price-room-equip {
  max-width: 520px;
  margin: 28px auto 0;
  padding: 22px 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.price-room-equip-label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 14px;
}

.price-room-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--sub);
  line-height: 1.7;
  margin: 14px auto 0;
}

.price-room-photo {
  max-width: 720px;
  margin: 0 auto 20px;
  aspect-ratio: 16 / 10;
}

.price-sheet {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-room-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 16px;
}

.price-room-photos .price-room-photo {
  max-width: none;
  margin: 0;
  aspect-ratio: 4 / 3;
}

.price-option {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px 16px;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}


.price-option-title {
  font-size: 12.5px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-align: center;
  color: var(--ink);
  margin: 0 0 14px;
}


.price-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.price-sheet > .price-pair {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}


.price-day {
  text-align: center;
  padding: 16px 10px;
  background: rgba(250, 249, 247, 0.9);
  transition: background 0.35s var(--ease);
}

.price-day.is-holiday {
  background: rgba(150, 34, 45, 0.04);
}


.price-day-label {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--faint);
  margin-bottom: 10px;
}

.price-day.is-holiday .price-day-label {
  color: var(--cl-red);
}


.price-day-main {
  margin-bottom: 6px;
  line-height: 1.2;
}

.price-day-main .yen {
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  transition: color 0.35s var(--ease);
}


.price-day-main .unit,
.price-day-sub .unit {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: var(--faint);
  font-weight: 600;
  margin-left: 2px;
}

.price-day-sub {
  line-height: 1.3;
}

.price-day-sub .yen {
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--sub);
}

.price-page-cta {
  text-align: center;
  margin-top: 48px;
}

.price-page-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-top: 22px;
}

.price-page-links a {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--sub);
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.price-page-links a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}


@media (max-width: 640px) {
  .price-room-photos {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .price-room-equip {
    padding: 18px 16px 16px;
  }

  .price-room-features {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .price-rate-bar {
    max-width: none;
  }

  .price-rate-btn,
  .price-rate-link {
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 11px 8px;
  }

  .price-jump {
    gap: 8px 20px;
  }

  .price-jump a {
    padding: 12px 2px 8px;
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .price-pair {
    gap: 8px;
  }

  .price-day {
    padding: 14px 8px;
  }
}

.price-block + .price-block {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}

.price-block > h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  text-align: center;
}

.price-block > .desc {
  font-size: var(--text-sm);
  color: var(--sub);
  margin-bottom: 20px;
  line-height: 1.75;
  text-align: center;
}

.price-tables {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  min-width: 0;
}

.equip-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.price-tables > *,
.equip-split > * {
  min-width: 0;
}

.table-panel-label {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--sub);
  margin-bottom: 8px;
  text-align: center;
  line-height: 1.6;
}

.table-panel-label.is-holiday {
  color: var(--cl-red);
}

.table-wrap {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  max-width: 100%;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.data-table th,
.data-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
  line-height: 1.5;
}

.data-table thead th {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  color: var(--sub);
  font-weight: 700;
  background: rgba(240, 239, 236, 0.95);
  border-bottom: 1px solid var(--ink);
  white-space: nowrap;
}

.data-table th.text-right,
.data-table td.num {
  text-align: right;
}

.data-table td.num {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  font-weight: 600;
}

.data-table tbody tr {
  transition: background 0.2s var(--ease);
}

.data-table tbody tr:hover {
  background: rgba(150, 34, 45, 0.04);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

.data-table td.center {
  text-align: center;
}

@media (max-width: 900px) {
  .equip-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .data-table.table-price {
    min-width: 0;
  }

  .data-table.table-price thead {
    display: none;
  }

  .data-table.table-price tbody tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
  }

  .data-table.table-price tbody tr:last-child {
    border-bottom: none;
  }

  .data-table.table-price tbody td {
    border: none;
    padding: 0;
  }

  .data-table.table-price tbody td:first-child {
    grid-column: 1 / -1;
    font-weight: 700;
    font-size: 14.5px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 2px;
    padding-bottom: 8px;
  }

  .data-table.table-price tbody td.num {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    text-align: right;
    white-space: normal;
  }

  .data-table.table-price tbody td.num::before {
    content: attr(data-label);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--faint);
    font-weight: 700;
  }

  .data-table.table-equip {
    min-width: 300px;
    font-size: 13px;
  }

  .data-table.table-equip th,
  .data-table.table-equip td {
    padding: 10px 12px;
  }
}

.price-cancel {
  margin-top: 56px;
  text-align: center;
}

.price-cancel-title {
  font-size: var(--text-subtitle);
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 28px;
  color: var(--ink);
}

.price-cancel-table-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.price-cancel-table {
  width: 100%;
  margin: 0 auto;
}

.price-cancel-table th,
.price-cancel-table td {
  text-align: center;
}

.price-cancel-extra {
  margin: 22px auto 0;
  max-width: 520px;
  font-size: var(--text-sm);
  color: var(--sub);
  line-height: 1.9;
  text-align: center;
}

.price-note {
  margin-top: 20px;
  font-size: var(--text-sm);
  color: var(--sub);
  line-height: 2;
  text-align: center;
}

.price-note p {
  margin: 0;
  text-align: center;
}

.price-cancel .price-note {
  margin-top: 8px;
}

.price-terms-link {
  margin-top: 18px;
  text-align: center;
  font-size: var(--text-sm);
}

.price-terms-link a {
  color: var(--sub);
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 2px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.price-terms-link a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

/* ============ Terms ============ */
.terms-page .terms-section {
  padding: 100px 0 0;
}

.terms-page .contact-cta {
  margin-top: 96px;
}

.terms-page .sec-head {
  margin-bottom: 28px;
  min-height: 0;
  text-align: center;
}

.terms-lead {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: left;
  color: var(--sub);
  line-height: 1.85;
  font-size: var(--text-base);
}

.terms-body {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
}

.terms-block {
  margin-bottom: 11px;
  padding-top: 11px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
}

.terms-block:first-child {
  padding-top: 0;
}

.terms-block:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-block-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
  color: var(--ink);
  line-height: 1.5;
  text-align: left;
}

.terms-block-body {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.85;
  text-align: left;
}

.terms-block-body p {
  margin: 0 0 0.65em;
}

.terms-block-body p:last-child {
  margin-bottom: 0;
}

.terms-block-body ul {
  margin: 0.25em 0 0.65em;
  padding-left: 1.15em;
}

.terms-block-body li {
  margin-bottom: 0.25em;
}

.terms-updated {
  max-width: 760px;
  margin: 28px auto 0;
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--faint);
}

/* ============ Wedding promo banner ============ */
.promo-wedding {
  position: relative;
  display: block;
  min-height: clamp(220px, 32vw, 280px);
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  text-decoration: none;
  margin: 100px 0;
}

.promo-wedding-bg {
  position: absolute;
  inset: 0;
}

.promo-wedding-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 1.2s var(--ease);
}

.promo-wedding:hover .promo-wedding-bg img {
  transform: scale(1.04);
}

.promo-wedding-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(22, 20, 18, 0.78) 0%,
    rgba(22, 20, 18, 0.45) 55%,
    rgba(22, 20, 18, 0.28) 100%
  );
}

.promo-wedding-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: inherit;
  padding: 36px 40px;
}

.promo-wedding-title {
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.45;
  margin-bottom: 16px;
}

.promo-wedding-text {
  font-size: clamp(15px, 1.5vw, 16.5px);
  line-height: 1.95;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 22px;
}

.promo-wedding-cta {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  transition: border-color 0.3s var(--ease);
}

.promo-wedding:hover .promo-wedding-cta {
  border-bottom-color: #fff;
}

.promo-wedding-mark {
  position: absolute;
  right: -6%;
  bottom: -14%;
  z-index: 1;
  margin: 0;
  padding: 0;
  font-family: "Caveat", "Yomogi", cursive;
  font-size: clamp(96px, 20vw, 220px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.18);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  transform: rotate(-6deg);
}

@media (max-width: 720px) {
  .promo-wedding-mark {
    right: -14%;
    bottom: -10%;
    font-size: clamp(80px, 28vw, 140px);
  }
}

/* ============ Welfare / non-profit notice ============ */
.price-support-section {
  padding: 72px 0 100px;
  background: var(--bg2);
}

.price-support-panel {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 32px;
  background:
    linear-gradient(180deg, rgba(28, 26, 26, 0.04) 0%, rgba(255, 255, 255, 0.96) 38%, rgba(255, 255, 255, 0.88) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.price-support-en {
  font-size: 11px;
  letter-spacing: 0.36em;
  font-weight: 700;
  color: var(--faint);
  margin-bottom: 12px;
}

.price-support-title {
  font-size: var(--text-subtitle);
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 18px;
}

.price-support-lead {
  font-size: var(--text-md);
  color: var(--sub);
  line-height: 2;
  margin-bottom: 24px;
}

.price-support-rate {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid rgba(28, 26, 26, 0.16);
  background: rgba(243, 242, 239, 0.85);
  margin: 0 auto 22px;
}

.price-support-rate-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--sub);
  font-weight: 700;
}

.price-support-rate-num {
  font-size: clamp(40px, 6vw, 58px);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
}

.price-support-rate-percent {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
  transform: translateY(-4px);
}

.price-support-rate-sub {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--sub);
  font-weight: 700;
}

.price-support-body {
  max-width: 34em;
  margin: 0 auto 22px;
  text-align: left;
}

.price-support-note {
  margin-top: 14px;
  text-align: center;
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.9;
}

.price-support-cta {
  margin-top: 28px;
}

.price-support-points {
  text-align: left;
  max-width: 34em;
  margin: 0 auto 32px;
  display: grid;
  gap: 12px;
}

.price-support-points li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--sub);
  line-height: 1.85;
}

.price-support-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 1px;
  background: var(--ink);
  opacity: 0.45;
}

@media (max-width: 640px) {
  .promo-wedding {
    margin: 72px 0;
  }

  .promo-wedding-inner {
    padding: 32px 24px;
  }

  .price-support-panel {
    padding: 36px 20px;
  }
}

/* ============ Contact inline CTA ============ */
.contact-inline-cta {
  margin: 28px auto 40px;
  max-width: 720px;
  text-align: center;
  padding: 22px 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.contact-inline-text {
  font-size: 14.5px;
  color: var(--sub);
  line-height: 2;
  margin-bottom: 16px;
}

/* ============ FAQ pages & helpers ============ */
.faq-more-wrap {
  margin-top: 40px;
  text-align: center;
}

.btn-faq-more {
  display: inline-block;
  margin: 12px 0;
  padding: 14px 48px;
  border: 1px solid var(--ink-soft);
  border-radius: var(--radius);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.16em;
  font-weight: 700;
  background: var(--ink-soft);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn-faq-more:hover {
  background: var(--btn-hover);
  color: #fff;
  border-color: var(--btn-hover);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.faq-row:hover {
  border-color: var(--ink);
  background: #fff;
}

.faq-row-q {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 14.5px;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.faq-row-q .q {
  color: var(--cl-red);
  font-size: 16px;
  letter-spacing: 0.14em;
  font-weight: 800;
  flex-shrink: 0;
}

.faq-row-arrow {
  font-size: 18px;
  color: rgba(28, 26, 26, 0.6);
  flex-shrink: 0;
}

.faq-detail-item {
  display: none;
}

.faq-detail-item.is-active {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  overflow: hidden;
}

.faq-detail-q {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.7;
  margin: 0;
  padding: 22px 24px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
}

.faq-detail-q .q {
  color: var(--cl-red);
  font-size: 16px;
  letter-spacing: 0.14em;
  font-weight: 800;
  flex-shrink: 0;
}

.faq-detail-a {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: none;
  border-top: 1px dotted var(--line-dark);
  background: rgba(255, 255, 255, 0.55);
  padding: 22px 24px;
}

.faq-detail-a .mark {
  color: var(--cl-blue);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.14em;
  flex-shrink: 0;
  display: inline-block;
  line-height: 1.7;
}

.faq-detail-body {
  flex: 1;
  min-width: 0;
  color: var(--sub);
  line-height: 1.9;
  font-size: var(--text-md);
}

.faq-detail-a p,
.faq-detail-body p {
  color: var(--sub);
  line-height: 1.9;
  margin: 0;
}

.faq-detail-body p + p {
  margin-top: 1em;
}

.faq-detail-back {
  margin-top: 56px;
  margin-bottom: 64px;
  text-align: center;
}

/* ============ News ============ */
.news-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.news-row {
  display: grid;
  grid-template-columns: 7.5em 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  transition: opacity 0.25s var(--ease);
}

.news-row:hover {
  opacity: 0.65;
}

.news-row-date {
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--faint);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.news-row-title {
  font-size: 15px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 600;
}

.news-row-arrow {
  font-size: 16px;
  color: rgba(28, 26, 26, 0.45);
}

.news-detail-item {
  display: none;
}

.news-detail-item.is-active {
  display: block;
}

.news-detail-meta {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--faint);
  font-weight: 600;
  margin-bottom: 18px;
}

.news-detail-title {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.news-detail-body {
  font-size: 15px;
  color: var(--sub);
  line-height: 2.15;
  letter-spacing: 0.04em;
}

.news-detail-body p + p {
  margin-top: 1.4em;
}

.news-detail-back {
  margin-top: 72px;
  margin-bottom: 56px;
  text-align: center;
}

.news-more-wrap {
  margin-top: 40px;
  text-align: center;
}

body.page-news .news-list-page {
  padding-bottom: 100px;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 56px;
  margin-bottom: 24px;
}

.pagination-btn,
.pagination-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--sub);
  text-decoration: none;
  border: 1px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.pagination-btn {
  font-size: 18px;
  letter-spacing: 0;
  color: var(--faint);
}

a.pagination-btn:hover,
a.pagination-num:hover {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.85);
}

.pagination-num.is-current {
  color: var(--ink);
  border-color: var(--ink);
  background: #fff;
  pointer-events: none;
}

.pagination-btn.is-disabled {
  opacity: 0.28;
  pointer-events: none;
}

/* Top page news preview */
.news-preview .news-list {
  max-width: 720px;
  margin: 0 auto;
}

/* ============ 404 ============ */
.error-page {
  min-height: calc(100svh - 200px);
  display: flex;
  align-items: center;
}

.error-page-inner {
  text-align: center;
  padding: 40px 0 80px;
}

.error-code {
  font-size: clamp(64px, 12vw, 96px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: rgba(28, 26, 26, 0.1);
  margin-bottom: 12px;
}

.error-title {
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}

.error-text {
  font-size: 14.5px;
  color: var(--sub);
  line-height: 2;
  margin-bottom: 40px;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 8px;
}

@media (max-width: 640px) {
  .news-row {
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    padding: 18px 2px;
  }

  .news-row-date {
    grid-column: 1 / -1;
  }
}

/* ============ Sub-page header spacing ============ */
body.page-contact #contact,
body.page-faq .faq-list-page,
body.page-faq-detail .faq-detail,
body.page-news .news-list-page,
body.page-news-detail .news-detail,
body.page-404 .error-page {
  padding-top: calc(76px + 48px);
}

/* ============ Space map (within rental section) ============ */
.space-map {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.space-map-open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--sub);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.space-map-open::after {
  content: "→";
  font-size: 12px;
  transition: transform 0.25s var(--ease);
}

.space-map-open:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.space-map-open:hover::after {
  transform: translateX(3px);
}

/* ============ Map modal ============ */
.map-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}

.map-modal[hidden] {
  display: none;
}

.map-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.map-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 20, 18, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}

.map-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(90vh, 860px);
  overflow: auto;
  background: #fff;
  padding: 28px 28px 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.map-modal.is-open .map-modal-panel {
  opacity: 1;
  transform: translateY(0);
}

.map-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.map-modal-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.map-modal-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 24px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.map-modal-close:hover {
  background: var(--bg2);
  border-color: var(--ink);
}

.map-placeholder--modal {
  max-width: none;
  aspect-ratio: 4 / 3;
}

body.map-modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .map-modal {
    padding: 12px;
    align-items: flex-end;
  }

  .map-modal-panel {
    width: 100%;
    max-height: 88vh;
    padding: 20px 16px 24px;
  }

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

/* ============ Contact CTA (top page, after access) ============ */
.contact-cta {
  padding: 0;
  background: var(--ink);
}

.contact-cta-banner {
  position: relative;
  display: block;
  min-height: clamp(280px, 42vw, 380px);
  overflow: hidden;
  color: #fff;
}

.contact-cta-bg {
  position: absolute;
  inset: 0;
}

.contact-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-cta-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(22, 20, 18, 0.78) 0%, rgba(22, 20, 18, 0.45) 55%, rgba(22, 20, 18, 0.28) 100%);
}

.contact-cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  min-height: inherit;
  padding: clamp(40px, 6vw, 72px) 28px;
}

.contact-cta-en {
  font-size: 12px;
  letter-spacing: 0.36em;
  font-weight: 700;
  opacity: 0.85;
  margin: 0 0 10px;
}

.contact-cta-title {
  font-size: clamp(22px, 3.2vw, 30px);
  font-weight: 700;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
}

.contact-cta-text {
  font-size: 14.5px;
  line-height: 2;
  opacity: 0.92;
  margin: 0 0 22px;
  max-width: 28em;
}

.contact-cta-btn {
  display: inline-block;
  padding: 12px 40px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.16em;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.contact-cta-btn:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.contact-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 36px 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

/* ============ FAQ contact guidance ============ */
.faq-contact-cta {
  padding: 0 0 60px;
}

.faq-contact-cta-inner {
  max-width: 640px;
  margin: 48px auto 0;
  text-align: center;
  padding: 36px 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.85);
}

.faq-contact-cta-text {
  font-size: 14.5px;
  color: var(--sub);
  line-height: 2;
  margin-bottom: 28px;
}

body.page-faq-detail .faq-contact-cta-inner {
  margin-top: 56px;
}

@media (max-width: 640px) {
  body.page-contact #contact,
  body.page-faq .faq-list-page,
  body.page-faq-detail .faq-detail,
  body.page-news .news-list-page,
  body.page-news-detail .news-detail,
  body.page-404 .error-page {
    padding-top: calc(76px + 32px);
  }

  .space-map {
    margin-top: 32px;
    padding-top: 24px;
  }

  .contact-cta-content {
    padding: 40px 20px;
  }

  .faq-row {
    padding: 16px 16px;
  }
}

/* ============ Equipment ============ */
.table-equip td.center {
  width: 56px;
  white-space: nowrap;
}

.table-equip th.center {
  width: 56px;
}

.table-equip .ok {
  color: var(--ink);
  font-weight: 700;
}

.table-equip .no {
  color: #c5c3be;
}

.table-equip .ask {
  font-size: 11.5px;
  color: var(--cl-blue);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.table-equip small {
  color: var(--sub);
  font-weight: 500;
}

@media (max-width: 640px) {
  .data-table.table-equip thead {
    display: table-header-group;
  }

  .data-table.table-equip tbody tr {
    display: table-row;
    padding: 0;
    border: none;
  }

  .data-table.table-equip tbody td {
    display: table-cell;
    border-bottom: 1px solid var(--line);
    padding: 10px 14px;
    text-align: inherit;
    flex: none;
  }

  .data-table.table-equip tbody td:first-child {
    font-weight: inherit;
    border-bottom: 1px solid var(--line);
    margin: 0;
    padding: 10px 14px;
  }

  .data-table.table-equip tbody td.center {
    width: 56px;
  }
}

/* ============ Map ============ */
.map-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: #f9f6f1;
}

.map-placeholder p {
  position: relative;
  z-index: 1;
  font-size: 14.5px;
  letter-spacing: 0.2em;
  color: var(--sub);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.75);
  padding: 14px 28px;
  border: 1px solid var(--line);
}

.map-caption {
  font-size: 12.5px;
  color: var(--faint);
  margin-top: 16px;
  letter-spacing: 0.1em;
  text-align: center;
}

/* ============ FAQ ============ */
.faq .container > .reveal {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 10px;
}

.faq details {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0;
}

.faq details[open] {
  background: #fff;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 22px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: var(--ink);
  position: relative;
  display: flex;
  gap: 14px;
  align-items: baseline;
}

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

.faq summary .q {
  color: var(--cl-red);
  font-size: 16px;
  letter-spacing: 0.14em;
  font-weight: 800;
  flex-shrink: 0;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: rgba(28, 26, 26, 0.6);
  font-weight: 600;
  transition: transform 0.35s var(--ease), color 0.3s var(--ease);
  line-height: 1;
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--ink);
}

.faq .a {
  padding: 0 22px 22px 52px;
  font-size: var(--text-md);
  color: var(--sub);
  display: flex;
  gap: 14px;
  line-height: 1.9;
  border-top: 1px dotted var(--line-dark);
  margin-top: 0;
  padding-top: 18px;
}

.faq .a .mark {
  color: var(--cl-blue);
  font-size: 16px;
  letter-spacing: 0.14em;
  font-weight: 800;
  flex-shrink: 0;
}

/* ============ Contact ============ */
#contact {
  background: var(--bg);
}

.contact-lead {
  font-size: 15.5px;
  color: var(--sub);
  margin-bottom: 14px;
  line-height: 2;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.br-pc {
  display: none;
}

.br-sp {
  display: inline;
}

@media (min-width: 801px) {
  .br-pc {
    display: inline;
  }

  .br-sp {
    display: none;
  }
}

.contact-attention {
  font-size: 14px;
  background: var(--cl-red-soft);
  padding: 18px 22px;
  margin: 0 auto 52px;
  color: var(--ink);
  line-height: 1.9;
  max-width: 720px;
  text-align: left;
  border-radius: 4px;
}

form {
  display: grid;
  gap: 36px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.field label.title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.req,
.opt {
  font-size: 11px;
  padding: 3px 9px;
  letter-spacing: 0.1em;
  font-weight: 700;
  border-radius: 4px;
}

.req {
  background: var(--cl-red);
  color: #fff;
}

.opt {
  background: var(--bg3);
  color: var(--sub);
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  border: 1px solid rgba(28, 26, 26, 0.35);
  background: #fff;
  padding: 14px 18px;
  font-size: 15.5px;
  font-family: inherit;
  letter-spacing: 0.04em;
  color: var(--ink);
  border-radius: var(--radius);
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s var(--ease);
}

input::placeholder,
textarea::placeholder {
  color: rgba(28, 26, 26, 0.32);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-width: 2px;
  border-color: var(--ink);
  padding: 13px 17px;
}

select:focus {
  padding-right: 39px;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238a8880' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

textarea {
  min-height: 128px;
  resize: vertical;
  line-height: 1.8;
}

.checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: var(--text-md);
}

.checks label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.checks label:hover {
  color: var(--cl-red);
}

.checks input {
  accent-color: var(--cl-red);
  width: 16px;
  height: 16px;
}

.dates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.field .hint {
  font-size: 13px;
  color: var(--faint);
  margin-top: 10px;
  line-height: 1.7;
}

.agree-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg2);
  padding: 24px;
  font-size: 14px;
  color: var(--sub);
  line-height: 1.9;
}

.agree-box label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: var(--text-md);
  color: var(--ink);
  font-weight: 700;
  margin-top: 16px;
  cursor: pointer;
}

.agree-box input {
  accent-color: var(--cl-red);
  width: 16px;
  height: 16px;
}

.submit {
  justify-self: center;
  margin-top: 16px;
  border: 1px solid var(--ink-soft);
  border-radius: var(--radius);
  background: var(--ink-soft);
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.32em;
  padding: 22px 88px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.2s var(--ease);
}

.submit:hover {
  background: var(--btn-hover);
  color: #fff;
  border-color: var(--btn-hover);
}

.submit:active {
  transform: scale(0.98);
}

@media (max-width: 640px) {
  .dates {
    grid-template-columns: 1fr;
  }

  .submit {
    width: 100%;
    padding: 20px 40px;
  }
}

/* ============ Access ============ */

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.access dl {
  font-size: 15.5px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px 24px;
}

.access dt {
  color: var(--faint);
  font-size: var(--text-xs);
  letter-spacing: 0.22em;
  padding-top: 4px;
  font-weight: 700;
}

.access dd {
  line-height: 1.8;
}

.access dd a {
  border-bottom: 1px solid var(--line-dark);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.access dd a:hover {
  border-color: var(--ink);
  color: var(--cl-red);
}

.access .map-embed {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.access .map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.5s var(--ease);
}

.access .map-embed:hover iframe {
  filter: grayscale(0%);
}

@media (max-width: 800px) {
  .access-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============ Footer ============ */
footer {
  padding: 72px 0 48px;
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.75);
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-brand .logo {
  height: 32px;
  width: auto;
  margin: 0 auto;
  color: #fff;
}

.footer-company {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  text-align: center;
}

.footer-tagline {
  margin: 0;
  line-height: 1.7;
}

.footer-operator {
  margin: 0;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
  line-height: 1.7;
}

.footer-address {
  margin: 18px 0 0;
  line-height: 1.75;
}

.footer-operator a,
.footer-company a {
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.footer-operator a:hover,
.footer-company a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.copyright {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.16em;
  margin: 0;
}

/* ============ Reveal animation ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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


/* ============ Contact Form 7 ============ */
.wpcf7 {
  max-width: 720px;
  margin: 0 auto;
}

.wpcf7-form,
.sai-cf7-form {
  display: grid;
  gap: 36px;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.wpcf7-form .field,
.sai-cf7-form .field {
  margin: 0;
}

/* Neutralize leftover autop wrappers / CF7 chrome */
.wpcf7-form p,
.sai-cf7-form p {
  margin: 0;
}

.wpcf7-form .field > p,
.sai-cf7-form .field > p,
.wpcf7-form .checks > p,
.sai-cf7-form .checks > p,
.wpcf7-form .dates > p,
.sai-cf7-form .dates > p,
.wpcf7-form .agree-box > p:has(.wpcf7-form-control-wrap),
.sai-cf7-form .agree-box > p:has(.wpcf7-form-control-wrap) {
  display: contents;
}

.wpcf7-form .dates br,
.sai-cf7-form .dates br {
  display: none;
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  position: relative;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea,
.sai-cf7-form input[type="text"],
.sai-cf7-form input[type="tel"],
.sai-cf7-form input[type="email"],
.sai-cf7-form input[type="number"],
.sai-cf7-form input[type="date"],
.sai-cf7-form select,
.sai-cf7-form textarea {
  width: 100%;
  max-width: 100%;
}

.wpcf7-form .checks,
.sai-cf7-form .checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: var(--text-md);
}

.wpcf7-form .checks .wpcf7-form-control-wrap,
.sai-cf7-form .checks .wpcf7-form-control-wrap,
.wpcf7-form .checks .wpcf7-checkbox,
.sai-cf7-form .checks .wpcf7-checkbox {
  display: contents;
}

.wpcf7-list-item {
  display: inline-flex;
  margin: 0 !important;
}

.wpcf7-form .checks .wpcf7-list-item,
.sai-cf7-form .checks .wpcf7-list-item {
  display: inline-flex;
}

.wpcf7-form .checks .wpcf7-list-item label,
.sai-cf7-form .checks .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.wpcf7-form .checks .wpcf7-list-item label:hover,
.sai-cf7-form .checks .wpcf7-list-item label:hover {
  color: var(--cl-red);
}

.wpcf7-form .checks input,
.sai-cf7-form .checks input {
  accent-color: var(--cl-red);
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
}

.wpcf7-checkbox .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item-label {
  font-size: inherit;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: none;
}

.wpcf7-form .dates,
.sai-cf7-form .dates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.wpcf7-form .agree-box .wpcf7-form-control-wrap,
.sai-cf7-form .agree-box .wpcf7-form-control-wrap,
.wpcf7-form .agree-box .wpcf7-acceptance,
.sai-cf7-form .agree-box .wpcf7-acceptance,
.wpcf7-form .agree-box .wpcf7-list-item,
.sai-cf7-form .agree-box .wpcf7-list-item {
  display: block;
  width: 100%;
}

.wpcf7-form .agree-box .wpcf7-list-item label,
.sai-cf7-form .agree-box .wpcf7-list-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: var(--text-md);
  color: var(--ink);
  font-weight: 700;
  margin-top: 16px;
  cursor: pointer;
}

.wpcf7-form .agree-box input,
.sai-cf7-form .agree-box input {
  accent-color: var(--cl-red);
  width: 16px;
  height: 16px;
  margin: 0;
  flex-shrink: 0;
}

.wpcf7-form .field-turnstile,
.sai-cf7-form .field-turnstile {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.wpcf7-form .wpcf7-turnstile,
.wpcf7-form .cf-turnstile {
  margin-inline: auto;
}

.wpcf7-form .submit,
.wpcf7-form .wpcf7-submit,
.sai-cf7-form .submit {
  justify-self: center;
  width: auto;
  margin-top: 16px;
  border: 1px solid var(--ink-soft);
  border-radius: var(--radius);
  background: var(--ink-soft);
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.32em;
  padding: 22px 88px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.2s var(--ease);
}

/* Submit may sit inside .field from CF7 editor markup */
.wpcf7-form .field:has(.wpcf7-submit),
.sai-cf7-form .field:has(.wpcf7-submit) {
  display: flex;
  justify-content: center;
}

.wpcf7-form .submit:hover,
.wpcf7-form .wpcf7-submit:hover,
.sai-cf7-form .submit:hover:not(:disabled) {
  background: var(--btn-hover);
  color: #fff;
  border-color: var(--btn-hover);
}

.wpcf7-form .submit:active,
.wpcf7-form .wpcf7-submit:active {
  transform: scale(0.98);
}

.wpcf7-spinner {
  margin: 0 0 0 16px;
  vertical-align: middle;
}

.wpcf7-not-valid-tip {
  font-size: 12.5px;
  color: var(--cl-red);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

.wpcf7-response-output {
  margin: 0 !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius);
  background: var(--bg2);
  padding: 16px 18px !important;
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--ink) !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  border-color: var(--cl-red) !important;
}

.contact-admin-notice {
  max-width: 720px;
  margin: 24px auto 0;
  padding: 14px 16px;
  background: var(--bg2);
  border: 1px dashed var(--line-dark);
  border-radius: var(--radius);
  font-size: 13px;
  color: var(--sub);
  line-height: 1.7;
}

.sai-cf7-form--fallback {
  opacity: 0.85;
}

@media (max-width: 640px) {
  .wpcf7-form .dates,
  .sai-cf7-form .dates {
    grid-template-columns: 1fr;
  }

  .wpcf7-form .submit,
  .wpcf7-form .wpcf7-submit,
  .sai-cf7-form .submit {
    width: 100%;
    padding: 20px 40px;
  }
}
