/* =============================================
   PADMA — UI UX Pro Max Redesign
   ============================================= */

/* --- Design Tokens --- */
:root {
  --navy:       #0B1728;
  --navy-mid:   #0F1F38;
  --navy-light: #162844;
  --gold:       #C4963E;
  --gold-light: #DDB96A;
  --gold-pale:  #F0DEB0;
  --cream:      #FAF8F3;
  --warm:       #F2EDE4;
  --white:      #FFFFFF;
  --text:       #1A1A1A;
  --text-mid:   #4A4A4A;
  --text-muted: #888;
  --serif:      'Cormorant Garamond', 'Noto Serif JP', serif;
  --sans:       'Noto Serif JP', serif;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: none; }

/* =============================================
   CURSOR
   ============================================= */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: normal;
}
.cursor-follower {
  width: 32px; height: 32px;
  border: 1px solid rgba(196,150,62,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out), width 0.35s, height 0.35s, border-color 0.3s;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { transform: translate(-50%, -50%) scale(2); }
body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower { width: 48px; height: 48px; border-color: var(--gold); }

/* --- Progress bar --- */
.progress-bar {
  position: fixed; top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  z-index: 2000;
  transition: width 0.1s linear;
}

/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.5s var(--ease-out), border-color 0.5s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(11, 23, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(196,150,62,0.15);
}
.nav-inner {
  display: flex; align-items: center;
  max-width: 1280px; margin: 0 auto;
  padding: 20px 48px;
  gap: 40px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.logo-en {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 400;
  color: var(--gold); letter-spacing: 0.05em;
  line-height: 1;
}
.logo-sep { color: rgba(196,150,62,0.3); font-weight: 200; }
.logo-jp { font-size: 0.65rem; color: rgba(196,150,62,0.6); letter-spacing: 0.18em; }
.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin-left: auto;
}
.nav-links a {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s; position: relative;
}
.nav-links a span {
  font-family: var(--serif); font-size: 0.62rem;
  color: var(--gold); opacity: 0.6;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-reserve {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  border: 1px solid rgba(196,150,62,0.5);
  color: var(--gold); font-size: 0.78rem; letter-spacing: 0.15em;
  transition: all 0.3s; flex-shrink: 0;
}
.nav-reserve:hover {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.hamburger {
  display: none; flex-direction: column; gap: 7px;
  background: none; border: none; padding: 4px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 1px;
  background: rgba(196,150,62,0.8);
  transition: all 0.4s var(--ease-out);
}
.hamburger.active span:first-child { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:last-child  { transform: rotate(-45deg) translate(5px, -5px); }

.nav-drawer {
  display: none;
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 300px;
  background: var(--navy);
  border-left: 1px solid rgba(196,150,62,0.15);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  z-index: 999;
  padding: 100px 40px 40px;
}
.nav-drawer.open { transform: translateX(0); display: block; }
.nav-drawer ul { list-style: none; }
.nav-drawer li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.drawer-link {
  display: flex; flex-direction: column; gap: 3px;
  padding: 18px 0;
  font-size: 1rem; color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.drawer-link em {
  font-style: normal; font-family: var(--serif);
  font-size: 0.7rem; color: var(--gold); opacity: 0.6;
  letter-spacing: 0.15em;
}
.drawer-link:hover { color: var(--gold-light); }
.drawer-cta { color: var(--gold); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: url('logo.jpg') center 20% / cover no-repeat;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    var(--navy) 0%,
    var(--navy) 6%,
    transparent 18%,
    transparent 50%,
    rgba(11,23,40,0.55) 65%,
    var(--navy) 88%
  );
}
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--navy) 0%, transparent 18%, transparent 82%, var(--navy) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 0 48px 160px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px;
  font-size: 0.68rem; letter-spacing: 0.35em;
  color: rgba(196,150,62,0.8);
}
.eyebrow-line {
  display: block; width: 40px; height: 1px;
  background: rgba(196,150,62,0.5);
}
.hero-copy {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300; line-height: 1.4;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
  letter-spacing: 0.08em; margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.82rem; font-family: var(--sans);
  letter-spacing: 0.1em; font-weight: 500;
  transition: all 0.4s var(--ease-out);
  border: none; cursor: none;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(196,150,62,0.4);
}
.btn-ghost {
  font-size: 0.82rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: all 0.3s;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.hero-scroll-indicator {
  position: absolute; bottom: 36px; left: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.scroll-track {
  width: 1px; height: 48px;
  background: rgba(196,150,62,0.2); position: relative; overflow: hidden;
}
.scroll-thumb {
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 100%; }
}
.hero-scroll-indicator span {
  font-size: 0.55rem; letter-spacing: 0.3em;
  color: rgba(196,150,62,0.5);
  writing-mode: vertical-rl;
}
.hero-counter {
  position: absolute; bottom: 40px; right: 48px;
  z-index: 2;
  font-family: var(--serif); font-size: 0.75rem;
  color: rgba(196,150,62,0.4); letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 4px;
}
.counter-slash { opacity: 0.3; }

/* =============================================
   REVEAL ANIMATION
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* =============================================
   SHARED SECTION STYLES
   ============================================= */
.s-eyebrow {
  font-family: var(--serif); font-size: 0.72rem;
  letter-spacing: 0.3em; color: var(--gold);
  margin-bottom: 12px;
}
.s-eyebrow.light { color: var(--gold-light); }
.s-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300; color: var(--navy);
  letter-spacing: 0.04em; line-height: 1.3;
}
.s-title.light { color: var(--white); }
.s-lead {
  font-size: 0.88rem; color: var(--text-mid);
  margin-top: 12px; line-height: 1.9;
}
.s-lead.light { color: rgba(255,255,255,0.6); }
.s-header { margin-bottom: 60px; }
.s-header--light .s-title { color: var(--white); }

.text-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; letter-spacing: 0.1em;
  color: var(--gold); border-bottom: 1px solid rgba(196,150,62,0.3);
  padding-bottom: 2px;
  transition: all 0.3s; margin-top: 2rem;
}
.text-link:hover { border-color: var(--gold); gap: 10px; }

/* =============================================
   CONCEPT
   ============================================= */
.s-concept {
  position: relative;
  background: var(--cream);
  padding: 120px 0 0;
  overflow: hidden;
}
.s-concept__bg-label {
  position: absolute; right: 40px; top: 60px;
  font-family: var(--serif); font-size: 0.65rem;
  letter-spacing: 0.35em; color: rgba(11,23,40,0.06);
  writing-mode: vertical-rl; font-size: 5rem;
  font-weight: 300; pointer-events: none; user-select: none;
}
.concept-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; max-width: 1280px; margin: 0 auto;
  padding: 0 48px;
  align-items: start;
}
.concept-left { padding-right: 60px; }
.concept-num {
  font-family: var(--serif); font-size: 6rem;
  color: rgba(11,23,40,0.06); font-weight: 300;
  line-height: 1; margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.concept-img-wrap {
  position: relative;
  padding-top: 125%;
  background: var(--navy-light);
  overflow: hidden;
}
.concept-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.concept-img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3060 100%);
}
.img-inner-label {
  font-size: 0.75rem; color: rgba(196,150,62,0.3);
  letter-spacing: 0.15em;
}
.concept-tag {
  position: absolute; bottom: -16px; right: -16px;
  width: 84px; height: 84px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--navy);
  box-shadow: 0 8px 30px rgba(196,150,62,0.35);
}
.concept-tag p { font-size: 0.55rem; letter-spacing: 0.1em; }
.concept-tag-year { font-size: 1.1rem; font-weight: 600; letter-spacing: 0; }

.concept-right { padding: 20px 0 60px 60px; border-left: 1px solid rgba(11,23,40,0.08); }
.concept-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300; color: var(--navy);
  line-height: 1.5; letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.concept-title em { font-style: italic; color: var(--gold); }
.concept-divider {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 24px;
}
.concept-body {
  font-size: 0.9rem; color: var(--text-mid);
  line-height: 2; margin-bottom: 16px;
}
.concept-body strong { color: var(--navy); font-weight: 400; }

.concept-pitch {
  border-left: 2px solid var(--gold);
  padding: 20px 24px;
  margin: 28px 0;
  background: rgba(196,150,62,0.06);
  border-radius: 0 4px 4px 0;
}
.concept-pitch p {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--navy);
  line-height: 1.9;
  letter-spacing: 0.06em;
}
.concept-pitch strong { color: var(--gold); font-weight: 500; }

.s-specialty {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  border: 1px solid var(--gold-light);
  padding: 4px 14px;
  margin-bottom: 14px;
  border-radius: 2px;
}

.features-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 80px;
  border-top: 1px solid rgba(11,23,40,0.08);
}
.feature-item {
  padding: 48px 36px;
  border-right: 1px solid rgba(11,23,40,0.06);
  transition: background 0.4s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--white); }
.feature-sep { display: none; }
.feature-num {
  display: block;
  font-family: var(--serif); font-size: 0.65rem;
  color: var(--gold); letter-spacing: 0.2em;
  margin-bottom: 16px;
}
.feature-item h3 {
  font-family: var(--sans); font-size: 0.95rem;
  color: var(--navy); font-weight: 400;
  margin-bottom: 10px; line-height: 1.4;
}
.feature-item p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.9; }

/* =============================================
   MENU
   ============================================= */
.s-menu {
  background: var(--navy);
  padding: 120px 0;
}
.s-menu__inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.s-menu .s-header .s-eyebrow { color: var(--gold-light); }
.s-menu .s-title { color: var(--white); }
.s-menu .s-lead { color: rgba(255,255,255,0.5); }

.menu-list { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  display: grid; grid-template-columns: 1fr auto;
  align-items: start; gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.4s;
  border-radius: 2px;
}
.menu-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.menu-item:hover { background: rgba(255,255,255,0.025); padding-left: 12px; padding-right: 12px; margin: 0 -12px; }
.menu-item__num {
  font-family: var(--serif); font-size: 2.5rem;
  font-weight: 300; color: rgba(196,150,62,0.2);
  line-height: 1; padding-top: 4px;
}
.menu-item__body h3 {
  font-family: var(--serif); font-size: 1.4rem;
  font-weight: 400; color: var(--gold-light);
  letter-spacing: 0.05em; margin-bottom: 10px;
}
.menu-item__body p {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  line-height: 1.9; margin-bottom: 16px;
  max-width: 480px;
}
.menu-item__body ul {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
}
.menu-item__body ul li {
  font-size: 0.75rem; color: rgba(255,255,255,0.45);
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.03em;
}
.menu-item__cta {
  font-size: 0.75rem; letter-spacing: 0.12em;
  color: var(--gold); white-space: nowrap;
  border-bottom: 1px solid rgba(196,150,62,0.3);
  padding-bottom: 2px; margin-top: 8px;
  transition: all 0.3s; display: inline-block; align-self: center;
}
.menu-item__cta:hover { color: var(--gold-light); border-color: var(--gold-light); }

.menu-desc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 48px;
}
.menu-desc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(196,150,62,0.18);
  padding: 32px;
}
.menu-desc-title {
  font-family: var(--serif); font-size: 1.05rem;
  color: var(--gold-light); font-weight: 400;
  letter-spacing: 0.08em; margin-bottom: 16px;
}
.menu-desc-tags {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 16px;
}
.menu-desc-tags li {
  font-size: 0.75rem; color: var(--gold);
  border: 1px solid rgba(196,150,62,0.4);
  padding: 3px 12px; letter-spacing: 0.05em;
}
.menu-desc-sub {
  font-size: 0.85rem; color: var(--gold);
  margin-bottom: 12px; letter-spacing: 0.05em;
}
.menu-desc-card p:not(.menu-desc-sub) {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  line-height: 2; letter-spacing: 0.03em;
}

.menu-flow { margin-bottom: 16px; }
.menu-flow__title {
  font-size: 0.7rem; letter-spacing: 0.18em;
  color: var(--gold); margin-bottom: 20px;
}
.menu-flow__steps { display: flex; flex-direction: column; gap: 0; }
.menu-flow__item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 12px 0;
}
.menu-flow__num {
  font-family: var(--serif); font-size: 0.75rem;
  color: var(--gold); opacity: 0.7;
  letter-spacing: 0.1em; flex-shrink: 0;
  width: 24px; padding-top: 2px;
}
.menu-flow__body { flex: 1; display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; }
.menu-flow__name {
  font-size: 0.88rem; color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
}
.menu-flow__time {
  font-family: var(--serif); font-size: 0.72rem;
  color: var(--gold-pale); opacity: 0.6; letter-spacing: 0.08em;
}
.menu-flow__desc {
  font-size: 0.75rem !important; color: rgba(255,255,255,0.35) !important;
  line-height: 1.8 !important; margin-top: 4px !important;
}
.menu-flow__arrow {
  font-size: 0.7rem; color: rgba(196,150,62,0.3);
  padding-left: 6px;
}
.menu-flow__total {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(196,150,62,0.15);
  font-size: 0.78rem; color: var(--gold);
  letter-spacing: 0.08em; text-align: right;
}

.menu-cta-wrap {
  margin-top: 60px; text-align: center;
  padding-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.menu-cta-wrap > p {
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em; margin-bottom: 20px;
}

/* =============================================
   PRICE
   ============================================= */
.s-price { background: var(--navy-mid); padding: 120px 0; }
.s-price__inner { max-width: 900px; margin: 0 auto; padding: 0 48px; }
.s-price__inner--wide { max-width: 1200px; }

/* --- 料金カード --- */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.price-card {
  background: var(--navy-light);
  border: 1px solid rgba(196,150,62,0.2);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.price-card:hover {
  border-color: rgba(196,150,62,0.5);
  transform: translateY(-4px);
}
.price-card--featured {
  border-color: rgba(196,150,62,0.5);
  background: linear-gradient(160deg, var(--navy-light) 60%, rgba(196,150,62,0.07));
}
.price-card__featured-badge {
  position: absolute; top: -1px; right: 28px;
  background: var(--gold); color: var(--navy);
  font-family: var(--serif); font-size: 0.65rem;
  letter-spacing: 0.18em; padding: 4px 14px;
}
.price-card__num {
  font-family: var(--serif); font-size: 0.7rem;
  color: var(--gold); opacity: 0.5;
  letter-spacing: 0.15em; margin-bottom: 10px;
}
.price-card__name {
  font-family: var(--serif); font-size: 1.2rem;
  color: var(--gold-light); font-weight: 400;
  letter-spacing: 0.05em; line-height: 1.5;
  margin-bottom: 20px;
}
.price-card__rule {
  height: 1px;
  background: linear-gradient(90deg, rgba(196,150,62,0.5), transparent);
  margin-bottom: 28px;
}
.price-card__list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.price-row {
  display: flex; align-items: baseline; gap: 8px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.price-row:last-child { border-bottom: none; }
.price-row--pick { background: rgba(196,150,62,0.05); margin: 0 -8px; padding: 13px 8px; }
.price-row--pick .price-row__price { color: var(--gold-light); }
.price-row__label {
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em; white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.price-row__dots {
  flex: 1;
  border-bottom: 1px dotted rgba(196,150,62,0.25);
  margin-bottom: 4px; min-width: 20px;
}
.price-row__price {
  font-family: var(--serif); font-size: 1rem;
  color: rgba(255,255,255,0.85); white-space: nowrap;
  letter-spacing: 0.03em;
}
.price-badge {
  font-size: 0.58rem; letter-spacing: 0.08em;
  background: var(--gold); color: var(--navy);
  padding: 2px 6px; white-space: nowrap;
}
.price-card__desc {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(196,150,62,0.18);
  background: rgba(0,0,0,0.2);
}
.price-card__desc-title {
  font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--gold); margin-bottom: 10px;
}
.price-card__desc p:last-child {
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  line-height: 2; letter-spacing: 0.03em;
}

/* 比較テーブル */
.price-compare {
  width: 100%;
  border: 1px solid rgba(196,150,62,0.18);
  overflow: hidden;
}

/* ヘッダー行 */
.pc-head {
  display: grid;
  grid-template-columns: 140px 1fr 1fr 160px;
  background: rgba(196,150,62,0.1);
  border-bottom: 1px solid rgba(196,150,62,0.2);
}
.pc-cell { padding: 20px 24px; }
.pc-label { background: rgba(0,0,0,0.1); }
.pc-col-head { border-left: 1px solid rgba(196,150,62,0.15); text-align: center; }
.pc-col-set { background: rgba(196,150,62,0.08); }
.pc-machine {
  font-family: var(--serif); font-size: 1rem;
  color: var(--gold-light); letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.pc-market { font-size: 0.7rem; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; }

/* データ行 */
.pc-row {
  display: grid;
  grid-template-columns: 140px 1fr 1fr 160px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.25s;
}
.pc-row:last-of-type { border-bottom: none; }
.pc-row:hover { background: rgba(255,255,255,0.03); }
.pc-row-label {
  padding: 20px 24px;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.08);
  border-right: 1px solid rgba(196,150,62,0.1);
}
.pc-price {
  padding: 20px 24px;
  font-family: var(--serif); font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  text-align: center; letter-spacing: 0.03em;
  border-left: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
}
.pc-set {
  color: var(--gold);
  background: rgba(196,150,62,0.05);
  border-left: 1px solid rgba(196,150,62,0.15);
}

/* おすすめ行 */
.pc-row--pick { background: rgba(196,150,62,0.06); }
.pc-row--pick .pc-price { color: var(--gold-light); }
.pc-row--pick .pc-row-label { color: rgba(255,255,255,0.75); }
.pc-badge {
  font-size: 0.6rem; letter-spacing: 0.08em;
  background: var(--gold); color: var(--navy);
  padding: 2px 7px; font-style: normal; white-space: nowrap;
}

/* 備考エリア */
.pc-notes {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(196,150,62,0.15);
  background: rgba(0,0,0,0.15);
}
.pc-note {
  padding: 24px;
  border-right: 1px solid rgba(196,150,62,0.08);
}
.pc-note:last-child { border-right: none; }
.pc-note-label {
  font-size: 0.7rem; letter-spacing: 0.1em;
  color: var(--gold); margin-bottom: 8px;
}
.pc-note p:last-child {
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
  line-height: 1.9;
}

.price-note {
  margin-top: 28px;
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
  line-height: 2; letter-spacing: 0.03em;
  padding-left: 16px;
  border-left: 2px solid rgba(196,150,62,0.2);
}

/* =============================================
   VOICE
   ============================================= */
.s-voice { background: var(--cream); padding: 120px 0; }
.s-voice__inner { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.s-voice .s-title { color: var(--navy); }

.voice-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.voice-card {
  background: var(--white);
  padding: 44px 36px;
  border: 1px solid rgba(11,23,40,0.06);
  position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.voice-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.voice-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(11,23,40,0.1); }
.voice-card:hover::before { transform: scaleX(1); }
.voice-quote {
  font-family: var(--serif); font-size: 5rem;
  color: var(--gold-pale); line-height: 0.8;
  margin-bottom: 20px; font-weight: 300;
}
.voice-text {
  font-size: 0.88rem; color: var(--text-mid);
  line-height: 2; margin-bottom: 28px;
  font-style: italic;
}
.voice-footer { display: flex; justify-content: space-between; align-items: flex-end; }
.voice-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 0.15em; }
.voice-info {
  display: flex; flex-direction: column; align-items: flex-end; gap: 3px;
}
.voice-info span { font-size: 0.72rem; color: var(--text-muted); }
.voice-info span:first-child { color: var(--navy); font-weight: 400; }

/* =============================================
   ACCESS
   ============================================= */
.s-access { background: var(--navy); padding: 120px 0; }
.s-access__inner {
  display: grid; grid-template-columns: 1fr 1.4fr;
  max-width: 1280px; margin: 0 auto; padding: 0 48px;
  gap: 80px; align-items: stretch;
}
.access-map {
  min-height: 400px;
  position: relative;
}
.access-map iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  filter: invert(90%) hue-rotate(180deg) saturate(0.8) brightness(0.85);
}
.access-info .s-eyebrow { color: var(--gold-light); }
.access-info .s-title { color: var(--white); margin-bottom: 40px; }
.access-details { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; }
.access-detail-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: grid; grid-template-columns: 100px 1fr;
  gap: 20px; align-items: baseline;
}
.access-detail-item h4 {
  font-size: 0.72rem; letter-spacing: 0.15em;
  color: var(--gold); font-weight: 300;
}
.access-detail-item p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.8; }
.tel-link { font-family: var(--serif); font-size: 1.4rem; color: var(--white); letter-spacing: 0.05em; }
.tel-link:hover { color: var(--gold); }
.mt-btn { margin-top: 8px; }
.map-ph {
  aspect-ratio: 4/3;
  background: var(--navy-light);
  border: 1px solid rgba(196,150,62,0.15);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; color: rgba(255,255,255,0.2);
  font-size: 0.85rem; letter-spacing: 0.1em;
}
.map-ph-sub { font-size: 0.72rem; text-align: center; line-height: 2; }

/* =============================================
   CONTACT
   ============================================= */
.s-contact { background: var(--cream); padding: 120px 0; }
.s-contact__inner { max-width: 760px; margin: 0 auto; padding: 0 48px; }
.s-contact .s-title { color: var(--navy); }

/* Floating label inputs */
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field {
  position: relative;
  margin-bottom: 32px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(11,23,40,0.2);
  padding: 22px 0 8px;
  font-family: var(--sans); font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.field select {
  background: transparent;
  cursor: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
}
.field label {
  position: absolute; top: 20px; left: 0;
  font-size: 0.82rem; color: var(--text-muted);
  letter-spacing: 0.05em; pointer-events: none;
  transition: all 0.3s var(--ease-out);
}
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label,
.field select:focus ~ label,
.field select:valid ~ label,
.field textarea:focus ~ label,
.field textarea:not(:placeholder-shown) ~ label {
  top: 2px; font-size: 0.68rem; color: var(--gold); letter-spacing: 0.12em;
}
.field label span { color: var(--gold); margin-left: 4px; }
.field--textarea textarea { resize: vertical; min-height: 96px; padding-top: 22px; }
.field--select label { top: 22px; }
.field--select select:focus ~ label,
.field--select select:valid ~ label { top: 2px; font-size: 0.68rem; color: var(--gold); }
.field--select select option { background: var(--white); color: var(--text); }

.form-check {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 32px;
}
.form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--gold); cursor: none; }
.form-check label { font-size: 0.8rem; color: var(--text-mid); }
.gold-link { color: var(--gold); border-bottom: 1px solid rgba(196,150,62,0.4); }

.btn-submit {
  width: 100%; padding: 18px 32px;
  background: var(--navy);
  color: var(--white);
  border: none; border-bottom: 2px solid var(--gold);
  font-family: var(--sans); font-size: 0.88rem;
  letter-spacing: 0.15em;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.4s var(--ease-out); cursor: none;
}
.btn-submit:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.line-cta {
  margin-top: 60px;
  display: flex; flex-direction: column;
  align-items: center; gap: 20px; text-align: center;
}
.line-cta__line { width: 60px; height: 1px; background: rgba(11,23,40,0.12); }
.line-cta p { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.05em; }
.btn-line {
  display: inline-flex; align-items: center; gap: 10px;
  background: #06C755; color: var(--white);
  padding: 13px 30px; border-radius: 3px;
  font-size: 0.88rem; font-family: var(--sans);
  transition: all 0.3s; cursor: none;
}
.btn-line:hover { background: #05b84d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,199,85,0.3); }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--navy); border-top: 1px solid rgba(196,150,62,0.1); }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 64px 48px 32px; }
.footer-top {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 24px;
}
.footer-logo {
  font-family: var(--serif); font-size: 2.2rem;
  color: var(--gold); letter-spacing: 0.08em; font-weight: 300;
}
.footer-tagline { font-size: 0.65rem; color: rgba(196,150,62,0.45); letter-spacing: 0.2em; margin-top: 4px; }
.footer-nav {
  display: flex; justify-content: center;
  gap: 28px; flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.78rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em; transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-sns a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(196,150,62,0.25);
  border-radius: 50%; color: rgba(196,150,62,0.5);
  transition: all 0.3s; cursor: none;
}
.footer-sns a:hover { border-color: var(--gold); color: var(--gold); background: rgba(196,150,62,0.08); }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.7rem; color: rgba(255,255,255,0.2); }
.footer-bottom div { display: flex; gap: 20px; }
.footer-bottom a { font-size: 0.7rem; color: rgba(255,255,255,0.2); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold); }

/* =============================================
   FLOATING ACTION BUTTON
   ============================================= */
.fab {
  position: fixed; bottom: 32px; right: 32px;
  display: flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy); padding: 12px 20px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.08em;
  box-shadow: 0 8px 32px rgba(196,150,62,0.4);
  z-index: 800;
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out); cursor: none;
}
.fab.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.fab:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(196,150,62,0.5); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .nav-inner { padding: 18px 32px; }
  .concept-layout { padding: 0 32px; }
  .s-menu__inner, .s-price__inner, .s-voice__inner,
  .s-access__inner, .s-contact__inner, .footer-inner { padding: 0 32px; }
  .hero-content { padding: 0 32px 80px; }
  .hero-scroll-indicator { left: 32px; }
  .hero-counter { right: 32px; }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .price-cards { grid-template-columns: 1fr 1fr; }
  .price-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-reserve { display: none; }
  .nav-drawer { display: block; }

  .concept-layout { grid-template-columns: 1fr; }
  .concept-left { display: block; padding-right: 0; margin-bottom: 40px; }
  .concept-img-wrap { padding-top: 70%; }
  .concept-right { padding: 0; border-left: none; }

  .features-strip { grid-template-columns: repeat(2, 1fr); }

  .menu-item { grid-template-columns: 1fr auto; }
  .menu-item__cta { grid-column: auto; }

  .voice-grid { grid-template-columns: 1fr; }

  .s-access__inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-top { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-nav { justify-content: center; }
  .footer-sns { display: flex; justify-content: center; }
  .footer-bottom { justify-content: center; flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  button, a { cursor: pointer; }

  .nav-inner { padding: 16px 20px; }
  .hero-content { padding: 0 20px 70px; }
  .hero-scroll-indicator { display: none; }
  .hero-counter { display: none; }

  .s-menu__inner, .s-price__inner, .s-voice__inner,
  .s-access__inner, .s-contact__inner, .footer-inner,
  .concept-layout { padding: 0 20px; }
  .s-concept { padding: 80px 0 0; }
  .s-menu, .s-price, .s-voice, .s-access, .s-contact { padding: 80px 0; }

  .features-strip { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(11,23,40,0.06); }

  .menu-item { grid-template-columns: 1fr; gap: 16px; }
  .menu-item__num { font-size: 1.5rem; }
  .menu-desc-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  /* price compare responsive */
  .pc-head, .pc-row { grid-template-columns: 90px 1fr 1fr 100px; }
  .pc-cell, .pc-price, .pc-row-label { padding: 14px 14px; }
  .pc-machine { font-size: 0.85rem; }
  .pc-price { font-size: 0.9rem; }
  .pc-notes { grid-template-columns: 1fr; }
  .pc-note { border-right: none; border-bottom: 1px solid rgba(196,150,62,0.08); }

  .access-detail-item { grid-template-columns: 80px 1fr; }

  .price-cards { grid-template-columns: 1fr; gap: 16px; }
  .price-card { padding: 28px 20px; }

  .fab { bottom: 20px; right: 20px; padding: 11px 16px; }
}
