/*
Theme Name: STUDIO No.2
Theme URI: https://no-02.com/
Author: STUDIO No.2
Description: STUDIO No.2 広島レンタルスタジオ 公式テーマ
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: studio-no2
*/

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

:root {
  --ivory:       #F5F7FA;
  --cream:       #E8EDF4;
  --accent:      #1A4B8C;
  --accent-lt:   #2D6BC4;
  --accent-pale: #E6EEF8;
  --charcoal:    #1C1F26;
  --mid:         #5A6272;
  --white:       #FFFFFF;
  --line-green:  #06C755;
  --ff-en: 'DM Sans', sans-serif;
  --ff-ja: 'Noto Sans JP', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-ja);
  background: var(--ivory);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }

/* ─────────────────────────────────────
   NAV
───────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  background: rgba(245,247,250,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,75,140,0.15);
}
.site-logo {
  font-family: var(--ff-en); font-size: 20px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--charcoal); text-decoration: none;
}

.site-logo .custom-logo-link { display: flex; align-items: center; }
.site-logo .custom-logo {
  max-height: 40px;  /* 上限だけ指定、実寸はカスタマイザーで制御 */
  width: auto;
  display: block;
}
.site-logo span { color: var(--accent); }

.primary-nav { display: flex; gap: 40px; list-style: none; }
.primary-nav a {
  font-size: 13px; letter-spacing: 0.06em; color: var(--mid);
  text-decoration: none; transition: color .25s;
}
.primary-nav a:hover,
.primary-nav .current-menu-item a { color: var(--accent); }

.header-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--line-green); color: #fff;
  padding: 9px 20px; border-radius: 6px;
  font-size: 13px; letter-spacing: 0.06em;
  text-decoration: none; transition: opacity .2s;
}
.header-cta:hover { opacity: .85; }
.header-cta svg { flex-shrink: 0; }

/* hamburger (mobile) */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 32px; height: 32px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--charcoal); transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────
   COMMON SECTION PARTS
───────────────────────────────────── */
.section-label {
  font-family: var(--ff-en); font-size: 10px; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.section-title {
  font-family: var(--ff-en); font-size: clamp(26px, 3vw, 40px);
  font-weight: 600; letter-spacing: -0.01em; line-height: 1.15; margin-bottom: 8px;
}
.section-title-ja {
  font-family: var(--ff-ja); font-size: 13px; font-weight: 300;
  color: var(--mid); letter-spacing: 0.12em; margin-bottom: 36px;
}
.section-divider {
  width: 40px; height: 3px;
  background: var(--accent); margin-bottom: 48px; border-radius: 2px;
}

/* ─────────────────────────────────────
   HERO (front-page)
───────────────────────────────────── */
.hero {
  height: 100vh; min-height: 640px;
  display: grid; grid-template-columns: 1fr 1fr;
  padding-top: 72px;
}
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 80px;
  animation: fadeUp .9s ease both;
}
.hero-eyebrow {
  font-family: var(--ff-en); font-size: 11px; font-weight: 600;
  letter-spacing: 0.3em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-title {
  font-family: var(--ff-en); font-size: clamp(42px, 5vw, 64px);
  font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 14px;
}
.hero-title-ja {
  font-family: var(--ff-ja); font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 300; color: var(--mid); letter-spacing: 0.14em; margin-bottom: 36px;
}
.hero-desc {
  font-size: 14px; color: var(--mid);
  line-height: 2; max-width: 360px; margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }

/* ─────────────────────────────────────
   HERO SLIDER
───────────────────────────────────── */
.hero-slider { position: relative; overflow: hidden; animation: fadeIn 1.2s ease both .2s; }
/* .hero-slides { display: flex; width: 100%; height: 100%; transition: transform .9s cubic-bezier(.77,0,.175,1); }
.hero-slide { min-width: 100%; height: 100%; position: relative; flex-shrink: 0; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; } */
  .hero-slides { display: flex; width: 100%; height: 100%; transition: transform .9s cubic-bezier(.77,0,.175,1); will-change: transform; }
  .hero-slide { flex: 0 0 100%; width: 100%; height: 100%; position: relative; overflow: hidden; }
  .hero-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; backface-visibility: hidden; }
.hero-slide.active img { animation: kenburns 8s ease forwards; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1); } }

.hero-badge {
  position: absolute; bottom: 40px; left: -24px;
  background: var(--white); padding: 20px 28px;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
  z-index: 10; border-left: 4px solid var(--accent);
}
.hero-badge-num {
  font-family: var(--ff-en); font-size: 34px; font-weight: 600;
  color: var(--accent); line-height: 1; letter-spacing: -0.01em;
}
.hero-badge-label {
  font-family: var(--ff-ja); font-size: 11px;
  letter-spacing: 0.12em; color: var(--mid); margin-top: 6px;
}
.slider-dots { position: absolute; bottom: 20px; right: 20px; display: flex; gap: 8px; z-index: 10; }
.slider-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.6);
  cursor: pointer; transition: background .3s, transform .3s;
}
.slider-dot.active { background: var(--accent); border-color: var(--accent); transform: scale(1.3); }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.3); color: #fff;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s; font-size: 18px; user-select: none;
}
.slider-arrow:hover { background: rgba(26,75,140,.6); }
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }

/* ─────────────────────────────────────
   STRIP
───────────────────────────────────── */
.strip {
  background: var(--accent); color: #fff;
  display: flex; justify-content: center; gap: 80px; padding: 28px 48px;
}
.strip-item { text-align: center; }
.strip-item strong {
  display: block; font-family: var(--ff-en);
  font-size: 26px; font-weight: 600; color: #fff; letter-spacing: 0.02em;
}
.strip-item span { font-size: 11px; letter-spacing: 0.16em; color: rgba(255,255,255,.7); }

/* ─────────────────────────────────────
   BUTTONS
───────────────────────────────────── */
.btn-primary {
  background: var(--accent); color: #fff;
  padding: 14px 36px; border: none;
  font-family: var(--ff-en); font-size: 13px; font-weight: 500; letter-spacing: 0.1em;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .25s;
}
.btn-primary:hover { background: var(--accent-lt); color: #fff; }
.btn-outline {
  border: 1.5px solid var(--accent); color: var(--accent);
  padding: 14px 36px; display: inline-block;
  font-family: var(--ff-en); font-size: 13px; font-weight: 500; letter-spacing: 0.1em;
  text-decoration: none; transition: all .25s;
}
.btn-outline:hover { background: var(--accent); color: #fff; }

/* ─────────────────────────────────────
   GALLERY
───────────────────────────────────── */
.gallery-section { background: var(--white); padding: 100px 80px; }
.gallery-inner { max-width: 1100px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px; margin-top: 12px;
}
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:first-child { grid-column: 1/2; grid-row: 1/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 18px;
  background: linear-gradient(transparent, rgba(28,31,38,.65));
  color: #fff; font-size: 11px; letter-spacing: 0.18em;
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(18,24,36,.92); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 88vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  color: #fff; font-size: 32px; cursor: pointer; opacity: .7; transition: opacity .2s; line-height: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-caption { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.55); font-size: 12px; letter-spacing: .2em; }

/* ─────────────────────────────────────
   ABOUT
───────────────────────────────────── */
.about-section { background: var(--white); padding: 100px 80px; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto; }
.about-img { position: relative; }
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.about-img::after {
  content: ''; position: absolute; top: 16px; right: -16px; bottom: -16px; left: 16px;
  border: 2px solid rgba(26,75,140,.2); pointer-events: none;
}
.about-body p { font-size: 15px; color: var(--mid); line-height: 2.1; margin-bottom: 20px; }
.about-highlight {
  background: var(--accent-pale); border-left: 4px solid var(--accent);
  padding: 18px 24px; margin: 28px 0;
  font-size: 14px; color: var(--charcoal); line-height: 1.9;
}

/* ─────────────────────────────────────
   FEATURES
───────────────────────────────────── */
.features-section { background: var(--ivory); padding: 100px 80px; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 12px; }
.feature-card {
  background: var(--white); padding: 36px 32px;
  border-top: 3px solid transparent; border-radius: 2px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.feature-card:hover { border-top-color: var(--accent); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(26,75,140,.1); }
.feature-icon { font-size: 26px; margin-bottom: 18px; }
.feature-title { font-family: var(--ff-ja); font-size: 16px; font-weight: 500; letter-spacing: .04em; margin-bottom: 10px; }
.feature-desc { font-size: 13px; color: var(--mid); line-height: 2; }

/* ─────────────────────────────────────
   PRICING (front-page block)
───────────────────────────────────── */
.pricing-section { background: var(--charcoal); color: #fff; padding: 100px 80px; }
.pricing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.pricing-section .section-title { color: #fff; }
.pricing-section .section-title-ja { color: #888; }
.pricing-section .section-divider { background: var(--accent-lt); margin: 0 auto 48px; }
.pricing-card {
  background: rgba(26,75,140,.12); border: 1px solid rgba(45,107,196,.4);
  padding: 56px 64px; margin-top: 48px; border-radius: 4px;
}
.pricing-amount { font-family: var(--ff-en); font-weight: 600; line-height: 1; letter-spacing: -0.03em; color: #fff; }
.pricing-amount .big { font-size: 80px; }
.pricing-amount .yen { font-size: 30px; font-weight: 400; vertical-align: top; padding-top: 16px; display: inline-block; }
.pricing-amount .per { font-size: 20px; font-weight: 400; color: rgba(255,255,255,.55); }
.pricing-note { font-size: 12px; color: #888; letter-spacing: .14em; margin-top: 12px; }
.pricing-items { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-top: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1); }
.pricing-item { text-align: center; }
.pricing-item strong { display: block; font-family: var(--ff-en); font-size: 10px; font-weight: 600; letter-spacing: .22em; color: var(--accent-lt); margin-bottom: 8px; }
.pricing-item span { font-size: 13px; color: #ccc; }

/* ─────────────────────────────────────
   CONTACT
───────────────────────────────────── */
.contact-section { background: var(--white); padding: 100px 80px; }
.contact-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.contact-line-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--line-green); color: #fff;
  padding: 18px 48px; margin-top: 36px;
  font-size: 15px; letter-spacing: .1em; text-decoration: none;
  border-radius: 8px; transition: opacity .2s, transform .2s;
  box-shadow: 0 4px 24px rgba(6,199,85,.25);
}
.contact-line-btn:hover { opacity: .88; transform: translateY(-2px); color: #fff; }
.contact-note { font-size: 12px; color: var(--mid); margin-top: 20px; line-height: 2; }
.qr-wrap { margin-top: 48px; display: flex; justify-content: center; }
.qr-wrap img { width: 140px; height: 140px; border: 8px solid var(--cream); }

/* ─────────────────────────────────────
   ACCESS
───────────────────────────────────── */
.access-section { background: var(--ivory); padding: 100px 80px; }
.access-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.map-embed { width: 100%; aspect-ratio: 4/3; border: 0; filter: grayscale(20%) contrast(1.05); }
.access-row { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--cream); font-size: 14px; }
.access-row:last-child { border-bottom: none; }
.access-row dt { width: 96px; font-family: var(--ff-en); color: var(--accent); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; flex-shrink: 0; padding-top: 3px; }
.access-row dd { color: var(--mid); line-height: 1.9; }

/* ─────────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────────── */
.page-hero {
  padding-top: 72px; background: var(--accent); color: #fff;
  display: flex; align-items: center; min-height: 200px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: url('https://no-02.com/wp-content/uploads/2024/07/DJI_20240705144231_0047_D.jpg') center/cover;
  opacity: .12;
}
.page-hero-inner { position: relative; z-index: 1; padding: 48px 80px; }
.page-hero-label { font-family: var(--ff-en); font-size: 10px; font-weight: 600; letter-spacing: .32em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.page-hero-title { font-family: var(--ff-en); font-size: clamp(30px,4vw,50px); font-weight: 600; letter-spacing: -0.01em; line-height: 1.1; }
.page-hero-title-ja { font-family: var(--ff-ja); font-size: 14px; font-weight: 300; color: rgba(255,255,255,.65); letter-spacing: .12em; margin-top: 8px; }

/* breadcrumb */
.breadcrumb { padding: 14px 80px; background: var(--white); border-bottom: 1px solid var(--cream); font-size: 12px; color: var(--mid); display: flex; gap: 8px; align-items: center; }
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ─────────────────────────────────────
   RENTAL PAGE — STEPS
───────────────────────────────────── */
.flow-section { background: var(--white); padding: 80px; }
.flow-inner { max-width: 960px; margin: 0 auto; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; margin-bottom: 56px; }
.steps::before { content: ''; position: absolute; top: 36px; left: calc(16.6% + 8px); right: calc(16.6% + 8px); height: 2px; background: var(--cream); z-index: 0; }
.step { text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.step-num { width: 72px; height: 72px; border-radius: 50%; background: var(--accent); color: #fff; font-family: var(--ff-en); font-size: 22px; font-weight: 600; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; box-shadow: 0 4px 20px rgba(26,75,140,.25); }
.step-title { font-family: var(--ff-ja); font-size: 15px; font-weight: 500; margin-bottom: 10px; letter-spacing: .04em; }
.step-desc { font-size: 13px; color: var(--mid); line-height: 1.9; }
.step-action { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; background: var(--accent-pale); color: var(--accent); padding: 8px 18px; border-radius: 4px; font-size: 12px; font-weight: 500; letter-spacing: .06em; text-decoration: none; transition: background .2s; }
.step-action:hover { background: var(--cream); }

/* ─────────────────────────────────────
   RENTAL PAGE — CALENDAR
───────────────────────────────────── */
.calendar-section { background: var(--ivory); padding: 80px; }
.calendar-inner { max-width: 960px; margin: 0 auto; }
.calendar-wrap { border: 1px solid var(--cream); border-radius: 8px; overflow: hidden; box-shadow: 0 8px 48px rgba(26,75,140,.08); }
.cal-header { display: flex; align-items: center; justify-content: space-between; background: var(--white); padding: 14px 24px; border-bottom: 1px solid var(--cream); gap: 16px; }
.cal-header-left { display: flex; align-items: center; gap: 16px; font-size: 12px; color: var(--mid); }
.cal-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 4px; }
.cal-dot.booked { background: var(--accent); }
.cal-dot.free   { background: #B0C8F0; }
.cal-external-link { display: flex; align-items: center; gap: 6px; font-family: var(--ff-en); font-size: 12px; font-weight: 500; color: var(--accent); text-decoration: none; padding: 6px 14px; border: 1px solid rgba(26,75,140,.25); border-radius: 4px; transition: background .2s; white-space: nowrap; }
.cal-external-link:hover { background: var(--accent-pale); }
.cal-frame { width: 100%; height: 600px; display: block; border: none; background: var(--ivory); }
.cal-footer { display: flex; align-items: center; justify-content: space-between; background: var(--charcoal); padding: 14px 24px; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(255,255,255,.55); }
.cal-line-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--line-green); color: #fff; padding: 8px 20px; border-radius: 4px; font-size: 13px; text-decoration: none; transition: opacity .2s; white-space: nowrap; }
.cal-line-btn:hover { opacity: .85; color: #fff; }

/* ─────────────────────────────────────
   RENTAL PAGE — FLOOR PLAN
───────────────────────────────────── */
.floorplan-section { background: var(--ivory); padding: 80px; }
.floorplan-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.floorplan-img { position: relative; }
.floorplan-img img { width: 100%; display: block; border: 1px solid var(--cream); }
.floorplan-img::after { content: ''; position: absolute; top: 12px; right: -12px; bottom: -12px; left: 12px; border: 2px solid rgba(26,75,140,.18); pointer-events: none; }
.spec-row { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--cream); }
.spec-row:last-child { border-bottom: none; }
.spec-label { font-family: var(--ff-en); font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); }
.spec-value { font-size: 15px; color: var(--charcoal); text-align: right; }
.spec-value strong { font-family: var(--ff-en); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; }
.spec-note { font-size: 11px; color: var(--mid); margin-top: 2px; }

/* ─────────────────────────────────────
   RENTAL PAGE — PRICE CARDS
───────────────────────────────────── */
.rental-pricing-section { background: var(--charcoal); color: #fff; padding: 80px; }
.rental-pricing-inner { max-width: 960px; margin: 0 auto; }
.rental-pricing-section .section-title { color: #fff; }
.rental-pricing-section .section-title-ja { color: #888; }
.rental-pricing-section .section-divider { background: var(--accent-lt); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.price-card { background: rgba(26,75,140,.15); border: 1px solid rgba(45,107,196,.35); border-radius: 4px; padding: 40px; position: relative; overflow: hidden; }
.price-card.featured { border-color: var(--accent-lt); background: rgba(26,75,140,.25); }
.price-card.featured::before { content: 'BASIC'; position: absolute; top: 16px; right: 16px; font-family: var(--ff-en); font-size: 9px; font-weight: 700; letter-spacing: .2em; color: var(--accent-lt); border: 1px solid var(--accent-lt); padding: 3px 10px; border-radius: 20px; }
.price-unit { font-family: var(--ff-en); font-size: 10px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.price-amount { font-family: var(--ff-en); font-weight: 600; line-height: 1; letter-spacing: -0.02em; margin-bottom: 10px; }
.price-amount .yen { font-size: 24px; font-weight: 400; vertical-align: top; padding-top: 10px; display: inline-block; }
.price-amount .num { font-size: 60px; }
.price-amount .per { font-size: 16px; font-weight: 400; color: rgba(255,255,255,.55); }
.price-desc { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.7; margin-top: 6px; }
.pricing-note-box { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; padding: 24px 32px; font-size: 13px; color: rgba(255,255,255,.65); line-height: 2; }
.pricing-note-box a { color: var(--accent-lt); }

/* ─────────────────────────────────────
   RENTAL PAGE — EQUIPMENT
───────────────────────────────────── */
.equipment-section { background: var(--white); padding: 80px; }
.equipment-inner { max-width: 960px; margin: 0 auto; }
.equip-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.equip-card { border: 1px solid var(--cream); border-radius: 4px; padding: 28px 24px; transition: box-shadow .3s, border-color .3s; }
.equip-card:hover { border-color: rgba(26,75,140,.3); box-shadow: 0 8px 32px rgba(26,75,140,.08); }
.equip-img { width: 100%; aspect-ratio: 4/3; object-fit: contain; margin-bottom: 18px; background: var(--ivory); padding: 12px; display: block; }
.equip-model { font-family: var(--ff-en); font-size: 12px; color: var(--accent); font-weight: 500; letter-spacing: .06em; margin-bottom: 8px; }
.equip-name { font-size: 14px; font-weight: 500; margin-bottom: 6px; letter-spacing: .04em; }
.equip-desc { font-size: 12px; color: var(--mid); line-height: 1.8; }
.equip-tag { display: inline-block; margin-top: 12px; background: var(--accent-pale); color: var(--accent); font-size: 10px; font-weight: 600; font-family: var(--ff-en); letter-spacing: .14em; padding: 4px 12px; border-radius: 20px; }

/* ─────────────────────────────────────
   RESERVATION FORM (shortcode)
───────────────────────────────────── */
.reservation-section { background: var(--ivory); padding: 80px; }
.reservation-inner { max-width: 760px; margin: 0 auto; }
.reservation-wrap {
  background: var(--white);
  border: 1px solid var(--cream);
  border-radius: 8px;
  padding: 56px 64px;
  box-shadow: 0 8px 48px rgba(26,75,140,.07);
}

/* CF7 / WPForms override */
.reservation-wrap .wpcf7-form,
.reservation-wrap form {
  display: flex; flex-direction: column; gap: 24px;
}
.reservation-wrap .wpcf7-form-control-wrap,
.reservation-wrap p {
  display: flex; flex-direction: column; gap: 6px; margin: 0;
}
.reservation-wrap label {
  font-family: var(--ff-en); font-size: 10px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--accent);
}
.reservation-wrap input[type="text"],
.reservation-wrap input[type="email"],
.reservation-wrap input[type="tel"],
.reservation-wrap input[type="date"],
.reservation-wrap input[type="datetime-local"],
.reservation-wrap select,
.reservation-wrap textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cream);
  border-radius: 4px;
  font-family: var(--ff-ja); font-size: 14px; font-weight: 300;
  color: var(--charcoal); background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  appearance: none;
}
.reservation-wrap input:focus,
.reservation-wrap select:focus,
.reservation-wrap textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26,75,140,.1);
}
.reservation-wrap textarea { min-height: 120px; resize: vertical; }
.reservation-wrap .wpcf7-submit,
.reservation-wrap input[type="submit"],
.reservation-wrap button[type="submit"] {
  background: var(--accent); color: #fff;
  padding: 16px 48px; border: none;
  font-family: var(--ff-en); font-size: 14px; font-weight: 600; letter-spacing: .1em;
  cursor: pointer; border-radius: 4px; align-self: flex-start;
  transition: background .25s; margin-top: 8px;
}
.reservation-wrap .wpcf7-submit:hover,
.reservation-wrap input[type="submit"]:hover,
.reservation-wrap button[type="submit"]:hover { background: var(--accent-lt); }

.reservation-wrap .wpcf7-acceptance { display: flex; flex-direction: row; align-items: center; gap: 10px; font-size: 13px; color: var(--mid); }
.reservation-wrap .wpcf7-acceptance input { width: auto; }
.reservation-wrap .wpcf7-acceptance a { color: var(--accent); }

.reservation-wrap .wpcf7-not-valid-tip { color: #e05; font-size: 11px; margin-top: 4px; }
.reservation-wrap .wpcf7-response-output { border: none !important; margin: 0 !important; padding: 14px 20px; border-radius: 4px; font-size: 13px; }
.reservation-wrap .wpcf7-mail-sent-ok { background: rgba(6,199,85,.1); color: #0a7a3a; border-left: 4px solid var(--line-green) !important; }
.reservation-wrap .wpcf7-validation-errors { background: rgba(224,5,5,.06); color: #c00; border-left: 4px solid #e05 !important; }

/* ─────────────────────────────────────
   CTA SECTION
───────────────────────────────────── */
.cta-section { background: var(--accent); padding: 80px; text-align: center; }
.cta-section .section-title { color: #fff; margin-bottom: 8px; }
.cta-section .section-title-ja { color: rgba(255,255,255,.6); margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--accent); padding: 16px 44px; font-family: var(--ff-en); font-size: 14px; font-weight: 600; letter-spacing: .06em; text-decoration: none; transition: opacity .2s; display: inline-block; }
.btn-white:hover { opacity: .88; color: var(--accent); }
.btn-ghost { border: 2px solid rgba(255,255,255,.5); color: #fff; padding: 16px 44px; font-size: 14px; letter-spacing: .08em; text-decoration: none; transition: border-color .2s, background .2s; display: inline-block; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); color: #fff; }

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
.site-footer { background: var(--charcoal); color: #888; padding: 48px 80px 32px; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.footer-logo { font-family: var(--ff-en); font-size: 18px; font-weight: 600; color: #fff; }
.footer-nav { display: flex; gap: 32px; list-style: none; font-size: 12px; }
.footer-nav a { color: #777; text-decoration: none; transition: color .2s; }
.footer-nav a:hover { color: var(--accent-lt); }
.footer-copy { font-size: 11px; }

/* ─────────────────────────────────────
   ANIMATIONS
───────────────────────────────────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 900px) {
  .site-header { padding: 0 24px; }
  .primary-nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); padding: 24px; gap: 20px; border-bottom: 1px solid var(--cream); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
  .primary-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; height: auto; }
  .hero-text { padding: 100px 32px 60px; }
  .hero-slider { height: 55vw; min-height: 260px; }
  .hero-badge { left: 16px; }
  .strip { gap: 40px; flex-wrap: wrap; padding: 24px 32px; }
  .gallery-section, .about-section, .features-section, .pricing-section, .contact-section, .access-section { padding: 72px 32px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .gallery-item:first-child { grid-column: 1/3; grid-row: 1/2; }
  .about-inner, .access-inner, .floorplan-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card { padding: 40px 28px; }
  .pricing-items { gap: 28px; }
  .page-hero-inner, .breadcrumb { padding-left: 32px; padding-right: 32px; }
  .flow-section, .calendar-section, .floorplan-section, .rental-pricing-section, .equipment-section, .reservation-section, .cta-section { padding: 60px 32px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .equip-grid { grid-template-columns: 1fr 1fr; }
  .cal-frame { height: 460px; }
  .cal-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .reservation-wrap { padding: 36px 28px; }
  .site-footer { padding: 40px 24px 28px; }
}
@media (max-width: 560px) {
  .features-grid, .equip-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .gallery-item:first-child { grid-column: 1; grid-row: 1; }
  .hero-title { font-size: 38px; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
