/* ============================================
   OYA PLANNING - Page Styles
   Header, Hero, Strengths, Services, CTA, Footer
   ============================================ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HEADER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.oya-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.oya-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-logo img {
  height: 68px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  font-weight: 400;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-out-expo);
}

.header-nav a:hover {
  color: var(--gold);
}

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

.header-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 28px;
  margin-left: 8px;
}

.header-tel svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-secondary);
}

.header-tel .tel-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.header-tel .tel-hours {
  font-size: 0.6rem;
  color: var(--text-muted);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

/* Mobile Nav */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 24, 33, 0.97);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
  display: flex;
  opacity: 1;
}

.mobile-nav-overlay a {
  font-family: var(--font-serif-jp);
  font-size: 1.2rem;
  color: var(--text-on-dark);
  letter-spacing: 0.15em;
  transition: color 0.3s ease;
}

.mobile-nav-overlay a:hover {
  color: var(--gold);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(80px, 12vh, 140px);
  overflow: hidden;
}

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

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(12, 24, 33, 0.65) 0%,
      rgba(12, 24, 33, 0.50) 40%,
      rgba(12, 24, 33, 0.75) 75%,
      rgba(12, 24, 33, 0.92) 100%
    );
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(182, 157, 106, 0.08) 0%, transparent 60%);
  z-index: 2;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

/* Grid overlay for depth */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 120px,
      rgba(182, 157, 106, 0.03) 120px,
      rgba(182, 157, 106, 0.03) 121px
    );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  width: 100%;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.3s forwards;
}

.hero-tagline::before {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.hero-heading {
  font-family: var(--font-serif-jp);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.5s forwards;
}

.hero-heading .accent {
  color: var(--white);
}

.hero-sub {
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  color: var(--text-on-dark);
  line-height: 2;
  max-width: 600px;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.7s forwards;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 0.9s forwards;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STRENGTHS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.strengths {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
  position: relative;
}

.strengths-header {
  text-align: center;
  margin-bottom: clamp(48px, 8vw, 80px);
}

.strengths-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 20px auto 0;
  line-height: 2;
  letter-spacing: 0.03em;
}

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

.strength-card {
  background: var(--white);
  position: relative;
  transition: all 0.5s var(--ease-out-expo);
  overflow: hidden;
  border-radius: 2px;
}

.strength-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
  z-index: 1;
}

.strength-card:hover::before {
  transform: scaleX(1);
}

.strength-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.strength-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.strength-card:hover .strength-card-img {
  transform: scale(1.05);
}

.strength-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.strength-card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

.strength-card-body {
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 36px);
}

.strength-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  opacity: 0.7;
}

.strength-title {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--navy-deep);
}

.strength-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 2;
  letter-spacing: 0.02em;
}

.strength-stat {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.strength-stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 600;
  color: var(--navy-deep);
  line-height: 1;
}

.strength-stat .unit {
  font-size: 0.78rem;
  color: var(--text-muted);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.services {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--white);
}

.services-header {
  margin-bottom: clamp(48px, 8vw, 72px);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 4vw, 48px);
  background: var(--cream);
  border: 1px solid transparent;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-out-expo);
}

.service-card:hover {
  border-color: var(--gold-muted);
  background: var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  background: none;
  border-radius: 0;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.05);
}

.service-icon img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

.service-card-title {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy-deep);
  margin-bottom: 14px;
  line-height: 1.5;
}

.service-card-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 2;
  flex: 1;
}

.service-card-link {
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.06em;
  transition: gap 0.3s ease;
}

.service-card:hover .service-card-link {
  gap: 14px;
}

.service-card-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  transition: transform 0.3s ease;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta {
  padding: clamp(72px, 10vw, 110px) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 100px,
      rgba(182, 157, 106, 0.02) 100px,
      rgba(182, 157, 106, 0.02) 101px
    );
  pointer-events: none;
}

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

.cta .section-label {
  justify-content: center;
}

.cta .section-label::before { display: none; }

.cta-heading {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 0.85rem;
  color: var(--text-on-dark);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 44px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-tel-block {
  margin-top: 32px;
  text-align: center;
}

.cta-tel-num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: var(--white);
  letter-spacing: 0.08em;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta-tel-num svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}

.cta-tel-hours {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.06em;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   REPRESENTATIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.representative {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.representative::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(182, 157, 106, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.rep-inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.rep-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 56px);
}

.rep-header .section-label {
  justify-content: center;
}

.rep-header .section-label::before {
  display: none;
}

.rep-name {
  margin-top: 8px;
  margin-bottom: 6px;
}

.rep-header .section-label {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
}

.rep-name .position {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  font-weight: 400;
  display: block;
  margin-bottom: 8px;
}

.rep-name .name {
  font-family: var(--font-serif-jp);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
}

.rep-name .name-en {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-top: 4px;
  display: block;
}

.rep-text {
  margin-top: 24px;
  font-size: 1.02rem;
  color: var(--text-on-dark);
  line-height: 2.2;
  letter-spacing: 0.03em;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Career grid */
.rep-career-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 2px;
}

.rep-career-block {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(182, 157, 106, 0.1);
  padding: clamp(24px, 3vw, 36px);
  transition: all 0.4s ease;
}

.rep-career-block:hover {
  background: rgba(182, 157, 106, 0.05);
  border-color: rgba(182, 157, 106, 0.2);
}

.rep-career-block-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(182, 157, 106, 0.12);
}

.rep-career-block-label svg {
  stroke: var(--gold);
  flex-shrink: 0;
}

/* Timeline */
.rep-career-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rep-tl-item {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
}

.rep-tl-item:last-child {
  border-bottom: none;
}

.rep-tl-item::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 22px;
  width: 6px;
  height: 6px;
  background: rgba(182, 157, 106, 0.4);
  border-radius: 50%;
}

.rep-tl-item.current::before {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(182, 157, 106, 0.4);
}

.rep-tl-period {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  font-weight: 500;
  min-width: 104px;
  padding-top: 2px;
  line-height: 1.5;
}

.rep-tl-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rep-tl-company {
  font-size: 0.86rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.rep-tl-role {
  font-size: 0.76rem;
  color: rgba(232, 228, 220, 0.55);
  line-height: 1.7;
}

/* Tags */
.rep-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.rep-tag {
  padding: 6px 14px;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  background: rgba(182, 157, 106, 0.1);
  border: 1px solid rgba(182, 157, 106, 0.15);
  color: var(--gold-light);
  font-weight: 500;
}

.rep-tag-note {
  font-size: 0.72rem;
  color: rgba(232, 228, 220, 0.45);
  letter-spacing: 0.04em;
}

.rep-invest-text {
  font-size: 0.82rem;
  color: var(--text-on-dark);
  line-height: 2;
  font-weight: 300;
}

.rep-btn-row {
  margin-top: 44px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FLOW
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.flow {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--cream);
}

.flow-header {
  text-align: center;
  margin-bottom: clamp(48px, 8vw, 72px);
}

.flow-header .section-label::before {
  display: none;
}

.flow-block {
  margin-bottom: 56px;
}

.flow-block:last-child {
  margin-bottom: 0;
}

.flow-block-title {
  font-family: var(--font-serif-jp);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--navy-deep);
  margin-bottom: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.flow-block-title::before,
.flow-block-title::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--border-light);
}

.flow-steps {
  display: flex;
  gap: 0;
  position: relative;
}

.flow-step {
  flex: 1;
  text-align: center;
  padding: 32px 16px;
  background: var(--white);
  position: relative;
  border: 1px solid var(--border-light);
  border-right: none;
  transition: all 0.4s ease;
}

.flow-step:last-child {
  border-right: 1px solid var(--border-light);
}

.flow-step:hover {
  background: var(--gold-muted);
  border-color: var(--gold);
}

.flow-step:hover + .flow-step {
  border-left-color: var(--gold);
}

/* Flow step icon */
.flow-step-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-step-icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.flow-step-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.flow-step-title {
  font-family: var(--font-serif-jp);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy-deep);
  line-height: 1.5;
}

.flow-step-desc {
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.flow-step-arrow {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  z-index: 1;
  color: var(--gold);
}

.flow-step:last-child .flow-step-arrow {
  display: none;
}

.flow-btn-row {
  text-align: center;
  margin-top: 48px;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.oya-footer {
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text-primary);
}

.footer-bottom {
  padding: clamp(24px, 4vw, 40px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

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


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .header-tel { display: none; }
  .hamburger { display: flex; }

  .strengths-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .rep-career-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .flow-steps {
    flex-direction: column;
    gap: 0;
  }

  .flow-step {
    border-right: 1px solid var(--border-light);
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 20px 24px;
  }

  .flow-step:last-child {
    border-bottom: 1px solid var(--border-light);
  }

  .flow-step-icon {
    width: 88px;
    height: 88px;
    margin: 0;
    flex-shrink: 0;
  }

  .flow-step-icon img {
    width: 88px;
    height: 88px;
  }

  .flow-step-arrow {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -8px;
    transform: translateX(-50%) rotate(90deg);
  }

}

@media (max-width: 640px) {
  .hero-heading {
    font-size: 1.7rem;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary, .btn-outline {
    justify-content: center;
  }

  .cta-btns {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }

  .strength-card-img {
    height: 160px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SUB-PAGE HERO (取引業務 / Service)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-hero {
  padding-top: 100px;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 120px,
      rgba(182, 157, 106, 0.015) 120px,
      rgba(182, 157, 106, 0.015) 121px
    );
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182, 157, 106, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(64px, 10vw, 100px) 0 clamp(48px, 8vw, 72px);
}

.page-hero .breadcrumb {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-hero .breadcrumb a {
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.page-hero .breadcrumb a:hover {
  color: var(--gold);
}

.page-hero .breadcrumb .sep {
  font-size: 0.6rem;
  opacity: 0.4;
}

.page-hero-title {
  font-family: var(--font-serif-jp);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.page-hero-title-en {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1vw, 0.82rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 12px;
  font-weight: 500;
}

.page-hero-lead {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-on-dark);
  line-height: 2.1;
  max-width: 640px;
  font-weight: 300;
  letter-spacing: 0.03em;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICE SECTIONS (page-service.php)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.service-section {
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
  background: var(--cream);
}

.service-section--alt {
  background: var(--white);
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.service-layout.reverse {
  direction: rtl;
}

.service-layout.reverse > * {
  direction: ltr;
}

.service-visual {
  position: relative;
}

.service-img-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--cream-dark);
  overflow: hidden;
  position: relative;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--border-light) 100%);
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.service-img-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold);
  opacity: 0.4;
}

.service-visual-accent {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid var(--gold);
  opacity: 0.15;
  pointer-events: none;
}

.service-visual-accent.top-right {
  top: -16px;
  right: -16px;
}

.service-visual-accent.bottom-left {
  bottom: -16px;
  left: -16px;
}

.service-content {
  padding-top: 8px;
}

.service-num-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-num-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
  max-width: 60px;
}

.service-title {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: var(--navy-deep);
  margin-bottom: 20px;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 2.2;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.service-tag {
  padding: 6px 16px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  background: var(--gold-muted);
  color: var(--gold);
  font-weight: 500;
  border: 1px solid rgba(182, 157, 106, 0.15);
}

.service-points {
  margin-bottom: 32px;
}

.service-points-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--navy-deep);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-points-title::before {
  content: '';
  width: 3px;
  height: 14px;
  background: var(--gold);
  flex-shrink: 0;
}

.service-point-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
}

.service-point-list li {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
  letter-spacing: 0.02em;
}

.service-point-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}

.service-info-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 24px 28px;
  margin-bottom: 28px;
}

.service-section--alt .service-info-box {
  background: var(--cream);
}

.service-info-row {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(224, 220, 212, 0.5);
  font-size: 0.82rem;
}

.service-info-row:last-child {
  border-bottom: none;
}

.service-info-label {
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: 0.06em;
  min-width: 90px;
  flex-shrink: 0;
}

.service-info-value {
  color: var(--text-secondary);
  line-height: 1.7;
}

.service-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: var(--navy-deep);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  text-decoration: none;
}

.service-cta-btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(12, 24, 33, 0.15);
}

.service-cta-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.service-cta-btn:hover svg {
  transform: translateX(4px);
}

.service-cta-btn.gold {
  background: var(--gold);
  color: var(--navy-deep);
}

.service-cta-btn.gold:hover {
  background: var(--gold-light);
  color: var(--navy-deep);
  box-shadow: 0 8px 30px rgba(182, 157, 106, 0.25);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROPERTY LINKS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.property-links {
  padding: clamp(64px, 8vw, 96px) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.property-links::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(182, 157, 106, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

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

.property-title {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.3rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.property-sub {
  font-size: 0.85rem;
  color: var(--text-on-dark);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

.property-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.property-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 44px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.property-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
}

.property-btn:hover {
  border-color: var(--gold);
  color: var(--navy-deep);
}

.property-btn:hover::before {
  transform: scaleX(1);
}

.property-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.property-btn:hover svg {
  transform: translateX(4px);
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICE PAGE - RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1024px) {
  .service-layout,
  .service-layout.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 32px;
  }

  .service-layout.reverse > * {
    direction: ltr;
  }
}

@media (max-width: 640px) {
  .property-btns {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }

  .property-btn {
    justify-content: center;
  }

  .service-info-row {
    flex-direction: column;
    gap: 4px;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FLOW PAGE (page-flow.php)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-hero--flow {
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.page-hero--flow::after {
  background: radial-gradient(circle, rgba(182, 157, 106, 0.08) 0%, transparent 70%);
}

.flow-intro {
  padding: clamp(64px, 8vw, 96px) 0;
  background: var(--white);
  text-align: center;
}

.flow-intro-heading {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.flow-intro-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 2.2;
  max-width: 640px;
  margin: 0 auto;
  letter-spacing: 0.03em;
}

.flow-tabs {
  margin-top: clamp(36px, 5vw, 56px);
  display: flex;
  justify-content: center;
  gap: 0;
}

.flow-tab {
  padding: 18px clamp(28px, 4vw, 56px);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  background: var(--cream);
  border: 1px solid var(--border-light);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  text-decoration: none;
}

.flow-tab:first-child {
  border-right: none;
}

.flow-tab.active {
  background: var(--white);
  color: var(--navy-deep);
  border-bottom-color: var(--gold);
}

.flow-tab:hover:not(.active) {
  background: var(--cream-dark);
  color: var(--navy-deep);
}

.flow-tab-icon {
  display: block;
  margin: 0 auto 8px;
  width: 28px;
  height: 28px;
}

.flow-tab-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.flow-section {
  padding: clamp(80px, 12vw, 130px) 0;
  position: relative;
}

.flow-section.purchase {
  background: var(--cream);
}

.flow-section.sell {
  background: var(--white);
}

.flow-section-header {
  margin-bottom: clamp(36px, 5vw, 56px);
}

.flow-section-title {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.08em;
}

.flow-audience {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.flow-audience-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy-deep);
  letter-spacing: 0.06em;
}

.flow-audience-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--gold-muted);
  border: 1px solid rgba(182, 157, 106, 0.15);
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
}

.flow-audience-tag svg {
  width: 12px;
  height: 12px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.flow-cards {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: clamp(32px, 4vw, 48px);
}

.flow-card-wrapper {
  display: flex;
  align-items: stretch;
  flex: 1;
  min-width: 0;
}

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  color: var(--gold);
  opacity: 0.45;
}

.flow-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.flow-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: clamp(20px, 2vw, 28px);
  position: relative;
  transition: all 0.5s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.flow-section.sell .flow-card {
  background: var(--cream);
}

.flow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.flow-card:hover {
  border-color: rgba(182, 157, 106, 0.3);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}

.flow-card:hover::before {
  transform: scaleX(1);
}

.flow-card-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy-deep);
  margin-bottom: 16px;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.flow-card:hover .flow-card-num {
  background: var(--gold);
}

.flow-card-num .num-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  transition: color 0.4s ease;
}

.flow-card:hover .flow-card-num .num-text {
  color: var(--navy-deep);
}

.flow-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.flow-card-title {
  font-family: var(--font-serif-jp);
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-bottom: 12px;
}

.flow-card-desc {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.9;
  letter-spacing: 0.02em;
  flex: 1;
}

.flow-card-chips {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.flow-card-chip {
  padding: 3px 10px;
  font-size: 0.62rem;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.35);
}

.flow-promise {
  padding: clamp(72px, 10vw, 110px) 0;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}

.flow-promise::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(182, 157, 106, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(182, 157, 106, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.flow-promise-inner {
  position: relative;
  z-index: 1;
}

.flow-promise-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.flow-promise-title {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
}

.flow-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.flow-promise-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(182, 157, 106, 0.1);
  padding: clamp(32px, 3.5vw, 44px) clamp(24px, 3vw, 36px);
  text-align: center;
  transition: all 0.4s ease;
}

.flow-promise-card:hover {
  background: rgba(182, 157, 106, 0.06);
  border-color: rgba(182, 157, 106, 0.25);
}

.flow-promise-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(182, 157, 106, 0.25);
  border-radius: 50%;
}

.flow-promise-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.flow-promise-card-title {
  font-family: var(--font-serif-jp);
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 12px;
}

.flow-promise-card-text {
  font-size: 0.78rem;
  color: rgba(232, 228, 220, 0.68);
  line-height: 1.9;
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .flow-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .flow-tab:first-child {
    border-right: 1px solid var(--border-light);
    border-bottom: none;
  }

  .flow-cards {
    flex-wrap: wrap;
    gap: 16px;
  }

  .flow-card-wrapper {
    flex: 0 0 calc(33.333% - 11px);
  }

  .flow-arrow {
    display: none;
  }

  .flow-promise-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 640px) {
  .page-hero--flow {
    background-position: center;
  }

  .flow-cards {
    flex-direction: column;
    gap: 12px;
  }

  .flow-card-wrapper {
    flex: 1 1 100%;
  }

  .flow-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .flow-card-num {
    width: 44px;
    height: 44px;
    margin-bottom: 0;
  }

  .flow-audience {
    flex-direction: column;
    align-items: flex-start;
  }

  .flow-tab {
    padding: 16px 20px;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SNS / CONTACT CHANNELS
   Footer SNS / CTA 3-channel / Mobile floating LINE / Mobile nav SNS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* --- Footer SNS block --- */
.footer-sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: clamp(36px, 5vw, 56px) 0 clamp(20px, 3vw, 32px);
  border-bottom: 1px solid var(--border-light);
}

.footer-sns-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.footer-sns-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-sns-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-out-expo);
  text-decoration: none;
  position: relative;
}

.footer-sns-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.footer-sns-icon--line {
  background: var(--line-green);
}

.footer-sns-icon--line:hover {
  background: var(--line-green-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(6, 199, 85, 0.35);
}

.footer-sns-icon--ig {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
}

.footer-sns-icon--ig:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(193, 53, 132, 0.25);
  border-color: transparent;
}


/* --- CTA: 3-channel grid (form / tel / line) --- */
.cta-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 940px;
  margin: 0 auto;
}

.cta-channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 36px 24px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.4s var(--ease-out-expo);
}

.cta-channel:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

.cta-channel-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-channel-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  fill: none;
}

.cta-channel--line .cta-channel-icon {
  background: var(--line-green);
  border-color: var(--line-green);
}

.cta-channel--line .cta-channel-icon svg {
  stroke: none;
  fill: var(--white);
  width: 30px;
  height: 30px;
}

.cta-channel-title {
  font-family: var(--font-serif-jp);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  text-align: center;
}

.cta-channel-meta {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
  min-height: 2.4em;
}

.cta-channel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 1px solid;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
  margin-top: auto;
}

.cta-channel-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.cta-channel-btn:hover svg {
  transform: translateX(3px);
}

.cta-channel--form .cta-channel-btn {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}

.cta-channel--form .cta-channel-btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(182, 157, 106, 0.3);
}

.cta-channel--tel .cta-channel-btn {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.cta-channel--tel .cta-channel-num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--white);
  font-weight: 500;
  text-align: center;
}

.cta-channel--line .cta-channel-btn {
  background: var(--line-green);
  color: var(--white);
  border-color: var(--line-green);
}

.cta-channel--line .cta-channel-btn:hover {
  background: var(--line-green-dark);
  border-color: var(--line-green-dark);
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.4);
}


/* --- Mobile floating LINE button --- */
.line-floating-btn {
  position: fixed;
  bottom: 20px;
  right: 16px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 12px 14px;
  background: var(--line-green);
  color: var(--white);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(6, 199, 85, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.4s var(--ease-out-expo),
    transform 0.4s var(--ease-out-expo),
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.line-floating-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  animation: lineFloatPulse 2.4s ease-in-out 1.5s infinite;
}

.line-floating-btn:hover {
  background: var(--line-green-dark);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(6, 199, 85, 0.5);
  animation: none;
}

.line-floating-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
  display: block;
}

@keyframes lineFloatPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.03); }
}

@media (min-width: 992px) {
  .line-floating-btn { display: none; }
}


/* --- Mobile nav SNS --- */
.mobile-nav-sns {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: center;
}

.mobile-nav-sns-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out-expo);
  text-decoration: none;
}

.mobile-nav-sns-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.mobile-nav-sns-icon--line {
  background: var(--line-green);
}

.mobile-nav-sns-icon--line:hover {
  background: var(--line-green-dark);
  transform: scale(1.05);
}

.mobile-nav-sns-icon--ig {
  background: var(--white);
}

.mobile-nav-sns-icon--ig:hover {
  transform: scale(1.05);
}


/* --- Responsive: CTA channels stack --- */
@media (max-width: 768px) {
  .cta-channels {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 8px;
  }

  .cta-channel {
    padding: 28px 20px;
  }

  .footer-sns {
    padding: clamp(28px, 6vw, 40px) 0 20px;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   COMPANY PAGE (page-company.php)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.header-nav a.active {
  color: var(--gold);
}

.header-nav a.active::after {
  width: 100%;
}

.mobile-nav-overlay a.active {
  color: var(--gold);
}

.page-hero--company {
  background:
    linear-gradient(135deg, rgba(12, 24, 33, 0.98) 0%, rgba(21, 34, 50, 0.94) 55%, rgba(30, 48, 68, 0.9) 100%);
}

.company-page {
  background: var(--cream);
}

.company-greeting,
.company-career,
.company-access {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--cream);
}

.company-greeting-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1.18fr;
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
}

.company-greeting-visual {
  position: relative;
  max-width: 440px;
}

.company-greeting-img {
  position: relative;
  z-index: 2;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-dark);
  box-shadow: 0 28px 70px rgba(12, 24, 33, 0.14);
}

.company-greeting-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-greeting-frame {
  position: absolute;
  inset: 22px -22px -22px 22px;
  z-index: 1;
  border: 1px solid rgba(182, 157, 106, 0.42);
  pointer-events: none;
}

.company-name-card {
  position: relative;
  z-index: 3;
  width: min(82%, 320px);
  margin: -54px 0 0 auto;
  padding: 24px 28px;
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: 0 18px 45px rgba(12, 24, 33, 0.22);
}

.company-name-card span {
  display: block;
}

.company-name-card .position {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.company-name-card .name {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  letter-spacing: 0.14em;
  line-height: 1.4;
}

.company-name-card .name-en {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 6px;
}

.company-heading {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.08em;
  color: var(--navy-deep);
  margin-bottom: 30px;
  position: relative;
}

.company-heading::after {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin-top: 24px;
}

.company-text-block {
  display: grid;
  gap: 18px;
}

.company-text-block p,
.company-philosophy-text,
.company-value-card p,
.company-timeline-body p,
.company-stat p,
.company-access-block p {
  font-size: 0.88rem;
  line-height: 2.05;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
}

.company-signature {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 34px;
  color: var(--navy-deep);
}

.company-signature span {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.company-signature strong {
  font-family: var(--font-serif-jp);
  font-size: 1.25rem;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.company-philosophy {
  padding: clamp(78px, 11vw, 128px) 0;
  background: var(--navy-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.company-philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 120px, rgba(182, 157, 106, 0.025) 120px, rgba(182, 157, 106, 0.025) 121px);
  pointer-events: none;
}

.company-philosophy .oya-container {
  position: relative;
  z-index: 1;
}

.company-philosophy-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.company-section-header {
  margin-bottom: clamp(34px, 5vw, 52px);
}

.company-section-header .section-label--centered,
.company-philosophy .section-label--centered {
  justify-content: center;
}

.company-section-title {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--navy-deep);
}

.company-philosophy .company-section-title {
  color: var(--white);
}

.company-mission {
  display: inline-block;
  margin: clamp(28px, 5vw, 44px) auto 26px;
  padding: 24px 38px;
  border-top: 1px solid rgba(182, 157, 106, 0.42);
  border-bottom: 1px solid rgba(182, 157, 106, 0.42);
  font-family: var(--font-serif-jp);
  font-size: clamp(1.45rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

.company-philosophy-text {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(232, 228, 220, 0.82);
}

.company-values {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(48px, 7vw, 76px);
  background: rgba(182, 157, 106, 0.2);
  border: 1px solid rgba(182, 157, 106, 0.2);
}

.company-value-card {
  min-height: 270px;
  padding: 30px 24px;
  background: rgba(255, 255, 255, 0.035);
  transition: background 0.35s ease, transform 0.35s var(--ease-out-expo);
}

.company-value-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.company-value-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: rgba(182, 157, 106, 0.56);
  margin-bottom: 18px;
}

.company-value-card h3 {
  min-height: 58px;
  font-family: var(--font-serif-jp);
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 14px;
}

.company-value-card p {
  font-size: 0.78rem;
  line-height: 1.95;
  color: rgba(232, 228, 220, 0.72);
}

.company-career {
  background: var(--white);
}

.company-career .company-section-header {
  text-align: center;
}

.company-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.company-timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 160px;
  width: 1px;
  background: var(--border-light);
}

.company-timeline-item {
  display: grid;
  grid-template-columns: 130px 60px 1fr;
  gap: 0;
  position: relative;
  padding: 0 0 34px;
}

.company-timeline-item:last-child {
  padding-bottom: 0;
}

.company-timeline-year {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  padding-top: 6px;
}

.company-timeline-dot {
  width: 14px;
  height: 14px;
  margin: 8px auto 0;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.company-timeline-item.current .company-timeline-dot {
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(182, 157, 106, 0.16);
}

.company-timeline-body {
  padding: 28px 32px;
  background: var(--cream);
  border: 1px solid var(--border-light);
}

.company-timeline-body h3 {
  font-family: var(--font-serif-jp);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.company-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: clamp(44px, 6vw, 64px) auto 0;
  background: var(--navy-deep);
}

.company-stat {
  padding: 30px 24px;
  text-align: center;
  border-right: 1px solid rgba(182, 157, 106, 0.22);
}

.company-stat:last-child {
  border-right: none;
}

.company-stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--gold);
}

.company-stat .unit {
  margin-left: 6px;
  color: var(--gold-light);
  font-size: 0.85rem;
}

.company-stat p {
  margin-top: 12px;
  font-size: 0.78rem;
  color: rgba(232, 228, 220, 0.78);
}

.company-info-page {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--cream);
}

.company-data-table {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.company-data-row {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  border-bottom: 1px solid var(--border-light);
}

.company-data-row:last-child {
  border-bottom: none;
}

.company-data-label {
  padding: 22px 28px;
  background: rgba(12, 24, 33, 0.035);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
}

.company-data-value {
  padding: 22px 30px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.company-note {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.company-access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
}

.company-map {
  min-height: 430px;
  background: var(--cream-dark);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.company-map iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  display: block;
  filter: grayscale(0.12) contrast(0.98);
}

.company-access-details {
  display: grid;
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}

.company-access-block {
  background: var(--white);
  padding: 24px 28px;
}

.company-access-block .label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
}

.company-access-block .label::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.company-access-block small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

@media (max-width: 1100px) {
  .company-values {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .company-greeting-layout,
  .company-access-layout {
    grid-template-columns: 1fr;
  }

  .company-greeting-visual {
    margin: 0 auto;
  }

  .company-values {
    grid-template-columns: 1fr;
  }

  .company-value-card {
    min-height: auto;
  }

  .company-value-card h3 {
    min-height: auto;
  }

  .company-timeline::before {
    left: 7px;
  }

  .company-timeline-item {
    grid-template-columns: 34px 1fr;
    gap: 0;
  }

  .company-timeline-year {
    grid-column: 2;
    padding: 0 0 8px;
  }

  .company-timeline-dot {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 5px 0 0;
  }

  .company-timeline-body {
    grid-column: 2;
  }
}

@media (max-width: 768px) {
  .company-greeting,
  .company-career,
  .company-access,
  .company-info-page,
  .company-philosophy {
    padding: clamp(56px, 14vw, 78px) 0;
  }

  .company-greeting-frame {
    inset: 14px -10px -14px 14px;
  }

  .company-name-card {
    width: calc(100% - 28px);
    margin-top: -38px;
    padding: 20px 22px;
  }

  .company-heading {
    font-size: clamp(1.35rem, 7vw, 1.72rem);
  }

  .company-signature {
    display: block;
    text-align: right;
  }

  .company-signature strong {
    display: block;
    margin-top: 6px;
  }

  .company-mission {
    width: 100%;
    padding: 20px 10px;
    font-size: clamp(1.2rem, 6.2vw, 1.55rem);
  }

  .company-timeline-body {
    padding: 22px 20px;
  }

  .company-stats {
    grid-template-columns: 1fr;
  }

  .company-stat {
    border-right: none;
    border-bottom: 1px solid rgba(182, 157, 106, 0.22);
  }

  .company-stat:last-child {
    border-bottom: none;
  }

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

  .company-data-label,
  .company-data-value {
    padding: 18px 20px;
  }

  .company-data-label {
    padding-bottom: 8px;
    background: var(--white);
    color: var(--gold);
  }

  .company-data-value {
    padding-top: 0;
  }

  .company-map,
  .company-map iframe {
    min-height: 320px;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-hero--contact {
  background:
    linear-gradient(90deg, rgba(12, 24, 33, 0.96) 0%, rgba(12, 24, 33, 0.86) 52%, rgba(12, 24, 33, 0.68) 100%),
    radial-gradient(circle at 80% 30%, rgba(182, 157, 106, 0.14) 0%, transparent 34%),
    var(--navy-deep);
}

.contact-page,
.contact-page *,
.contact-page *::before,
.contact-page *::after {
  box-sizing: border-box;
}

.contact-page {
  overflow-x: hidden;
}

.contact-page .oya-container {
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}

.contact-page p,
.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page label {
  overflow-wrap: anywhere;
}

.contact-methods,
.contact-form-section,
.contact-access {
  padding: clamp(72px, 10vw, 120px) 0;
}

.contact-methods {
  background: var(--cream);
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 32px);
  width: 100%;
  min-width: 0;
}

.contact-method-card {
  min-height: 360px;
  min-width: 0;
  padding: clamp(32px, 5vw, 48px);
  background: var(--white);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s ease, box-shadow 0.4s ease;
}

.contact-method-card:hover {
  transform: translateY(-4px);
  border-color: rgba(182, 157, 106, 0.4);
  box-shadow: 0 18px 50px rgba(12, 24, 33, 0.08);
}

.contact-method-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(182, 157, 106, 0.12);
  border: 1px solid rgba(182, 157, 106, 0.22);
  margin-bottom: 26px;
}

.contact-method-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
}

.contact-method-icon--line {
  background: var(--line-green);
  border-color: var(--line-green);
}

.contact-method-icon--line svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
  stroke: none;
}

.contact-method-title {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 16px;
}

.contact-method-main {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.contact-method-text {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.contact-method-note {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.9;
  margin-top: auto;
}

.contact-method-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
  padding: 14px 24px;
  background: var(--line-green);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-method-btn:hover {
  background: var(--line-green-dark);
  transform: translateY(-2px);
}

.contact-method-btn svg {
  width: 14px;
  height: 14px;
}

.contact-form-section {
  background: var(--white);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(30px, 5vw, 48px);
  justify-items: center;
  width: 100%;
  min-width: 0;
}

.contact-form-header {
  width: min(100%, 960px);
  text-align: center;
}

.contact-form-title {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.8rem, 3.4vw, 2.55rem);
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.08em;
  line-height: 1.45;
  margin-bottom: 20px;
}

.contact-form-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 2.15;
  letter-spacing: 0.03em;
  margin-bottom: 34px;
}

.contact-form-steps {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 54px);
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-form-steps li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  min-width: 0;
}

.contact-form-steps span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--navy-deep);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.contact-form-card {
  width: min(100%, 920px);
  min-width: 0;
  padding: clamp(28px, 5vw, 48px);
  background: var(--cream);
  border: 1px solid var(--border-light);
}

.contact-form-card .wpcf7 form {
  display: grid;
  gap: 18px;
}

.contact-form-card .wpcf7 form p {
  margin: 0;
}

.oya-cf7-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
}

.oya-cf7-field,
.oya-cf7-field-wide {
  display: block;
  color: var(--navy-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.oya-cf7-required,
.oya-cf7-optional {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-left: 8px;
  padding: 2px 8px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.oya-cf7-optional {
  background: var(--border-light);
  color: var(--text-muted);
}

.contact-form-card .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}

.contact-form-card .wpcf7-form-control-wrap br,
.oya-cf7-field br,
.oya-cf7-field-wide br {
  display: none;
}

.contact-form-card input[type="text"],
.contact-form-card input[type="email"],
.contact-form-card input[type="tel"],
.contact-form-card textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(182, 157, 106, 0.12);
}

.contact-form-card .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-form-card .wpcf7-radio .wpcf7-list-item,
.oya-cf7-radio .wpcf7-list-item {
  margin: 0;
}

.contact-form-card .wpcf7-radio .wpcf7-list-item label,
.oya-cf7-radio .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.oya-cf7-privacy {
  display: flex;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  text-align: center;
}

.oya-cf7-privacy .wpcf7-list-item {
  margin: 0;
}

.oya-cf7-privacy label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.8;
  padding-right: 80px;
}

.oya-cf7-privacy a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form-card .wpcf7 form > .oya-cf7-privacy + p {
  display: flex;
  justify-content: center;
}

.contact-form-card .wpcf7-submit {
  display: inline-flex;
  justify-content: center;
  width: min(100%, 260px);
  padding: 16px 36px;
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card .wpcf7-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(182, 157, 106, 0.28);
}

.contact-form-card .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #b42318;
  font-size: 0.75rem;
}

.contact-form-card .wpcf7-response-output {
  margin: 8px 0 0;
  padding: 14px 16px;
  border-width: 1px;
  font-size: 0.82rem;
  line-height: 1.8;
}

.contact-access {
  background: var(--cream);
}

.contact-access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

.contact-map {
  min-height: 430px;
  background: var(--cream-dark);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  display: block;
  filter: grayscale(0.12) contrast(0.98);
}

.contact-access-details {
  display: grid;
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}

.contact-access-block {
  background: var(--white);
  padding: 24px 28px;
}

.contact-access-block .label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
}

.contact-access-block .label::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.contact-access-block small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .contact-methods-grid,
  .contact-access-layout,
  .oya-cf7-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .contact-page .oya-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-method-card,
  .contact-form-card {
    padding: 28px 22px;
    width: 100%;
    max-width: 100%;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 320px;
  }

  .oya-cf7-privacy label {
    align-items: flex-start;
    text-align: left;
    padding-right: 0;
  }

  .contact-form-card .wpcf7 form > .oya-cf7-privacy + p {
    display: block;
    width: 100%;
  }

  .contact-form-card .wpcf7-submit {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-hero--faq {
  background:
    linear-gradient(90deg, rgba(12, 24, 33, 0.96) 0%, rgba(12, 24, 33, 0.84) 52%, rgba(12, 24, 33, 0.62) 100%),
    radial-gradient(circle at 78% 34%, rgba(182, 157, 106, 0.16) 0%, transparent 34%),
    var(--navy-deep);
}

.faq-page,
.faq-page *,
.faq-page *::before,
.faq-page *::after {
  box-sizing: border-box;
}

.faq-page {
  overflow-x: hidden;
}

.faq-page .oya-container {
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}

.faq-page p,
.faq-page h1,
.faq-page h2,
.faq-page h3,
.faq-page button,
.faq-page a {
  overflow-wrap: anywhere;
}

.faq-section {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--cream);
}

.faq-layout {
  max-width: 960px;
  margin: 0 auto;
}

.faq-main {
  display: grid;
  gap: clamp(44px, 6vw, 72px);
  width: 100%;
  min-width: 0;
}

.faq-category {
  scroll-margin-top: 118px;
}

.faq-category-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.faq-category-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--navy-deep);
  border: 1px solid rgba(182, 157, 106, 0.28);
}

.faq-category-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.faq-category-title {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-bottom: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border-light);
}

.faq-item.open {
  border-color: rgba(182, 157, 106, 0.42);
  box-shadow: 0 14px 40px rgba(12, 24, 33, 0.06);
}

.faq-question {
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
  background: transparent;
  border: 0;
  color: inherit;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
}

.faq-q-badge,
.faq-a-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
}

.faq-q-badge {
  background: var(--navy-deep);
  color: var(--gold);
}

.faq-a-badge {
  background: var(--gold);
  color: var(--navy-deep);
}

.faq-q-text {
  color: var(--navy-deep);
  font-family: var(--font-serif-jp);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.7;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out-expo);
}

.faq-answer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 24px;
  align-items: start;
  gap: 18px;
  padding: 0 clamp(20px, 3vw, 28px) clamp(24px, 3.5vw, 34px);
}

.faq-a-text {
  grid-column: 2;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 2.05;
  letter-spacing: 0.03em;
}

.faq-a-text .highlight {
  color: var(--navy-deep);
  font-weight: 700;
  background: linear-gradient(transparent 64%, rgba(182, 157, 106, 0.24) 64%);
}

.faq-more {
  padding: clamp(72px, 9vw, 110px) 0;
  background: var(--white);
}

.faq-more-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 32px);
}

.faq-more-card {
  position: relative;
  min-width: 0;
  padding: clamp(34px, 5vw, 48px);
  background: var(--cream);
  border: 1px solid var(--border-light);
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s ease, box-shadow 0.4s ease;
}

.faq-more-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s var(--ease-out-expo);
}

.faq-more-card:hover {
  transform: translateY(-4px);
  border-color: rgba(182, 157, 106, 0.42);
  box-shadow: 0 14px 42px rgba(12, 24, 33, 0.08);
}

.faq-more-card:hover::after {
  transform: scaleX(1);
}

.faq-more-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold-muted);
}

.faq-more-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
}

.faq-more-title {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.08em;
  line-height: 1.55;
  margin-bottom: 12px;
}

.faq-more-text {
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.95;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.faq-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  border: 1px solid;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform 0.35s var(--ease-out-expo), box-shadow 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.faq-more-btn.dark {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: var(--white);
}

.faq-more-btn.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.faq-more-btn:hover {
  transform: translateY(-2px);
}

.faq-more-btn.dark:hover {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 8px 24px rgba(12, 24, 33, 0.16);
}

.faq-more-btn.gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(182, 157, 106, 0.28);
}

.faq-more-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.faq-more-btn:hover svg {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .faq-more-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .faq-page .oya-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .faq-more-card {
    padding: 26px 22px;
  }

  .faq-question {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    padding: 20px 18px;
  }

  .faq-q-badge,
  .faq-a-badge {
    width: 30px;
    height: 30px;
  }

  .faq-answer-inner {
    grid-template-columns: auto minmax(0, 1fr) 24px;
    gap: 12px;
    padding: 0 18px 24px;
  }
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRIVACY POLICY (page-privacy.php)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-hero--privacy {
  background:
    linear-gradient(90deg, rgba(12, 24, 33, 0.96) 0%, rgba(12, 24, 33, 0.82) 50%, rgba(12, 24, 33, 0.6) 100%),
    radial-gradient(circle at 82% 28%, rgba(182, 157, 106, 0.14) 0%, transparent 36%),
    var(--navy-deep);
}

.privacy-page,
.privacy-page *,
.privacy-page *::before,
.privacy-page *::after {
  box-sizing: border-box;
}

.privacy-page {
  overflow-x: hidden;
}

.privacy-page .oya-container {
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}

.privacy-page p,
.privacy-page li,
.privacy-page h2 {
  overflow-wrap: anywhere;
}

.privacy-content {
  padding: clamp(72px, 10vw, 120px) 0;
  background: var(--cream);
}

.privacy-inner {
  max-width: 880px;
  margin: 0 auto;
}

.privacy-intro {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--gold);
  padding: clamp(24px, 4vw, 36px) clamp(24px, 4vw, 40px);
  margin-bottom: clamp(48px, 7vw, 72px);
}

.privacy-intro p {
  font-size: 0.95rem;
  line-height: 2.0;
  color: var(--navy-deep);
  letter-spacing: 0.04em;
  font-weight: 400;
  margin: 0;
}

.privacy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(40px, 5vw, 56px);
}

.privacy-item {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 44px);
  position: relative;
}

.privacy-item-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
}

.privacy-item-num {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  flex-shrink: 0;
  line-height: 1;
}

.privacy-item-title {
  font-family: var(--font-serif-jp);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin: 0;
}

.privacy-item-body p {
  font-size: 0.93rem;
  line-height: 2.0;
  color: var(--navy-deep);
  letter-spacing: 0.03em;
  margin: 0 0 14px;
  font-weight: 400;
}

.privacy-item-body p:last-child {
  margin-bottom: 0;
}

.privacy-bullets {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 12px;
}

.privacy-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--navy-deep);
  letter-spacing: 0.03em;
}

.privacy-bullets li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 0.8em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.privacy-contact {
  margin-top: 18px;
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: clamp(20px, 3vw, 28px) clamp(20px, 3vw, 32px);
  display: grid;
  gap: 12px;
}

.privacy-contact-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: baseline;
  font-size: 0.9rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.privacy-contact-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.privacy-contact-value {
  color: var(--navy-deep);
  font-weight: 400;
}

.privacy-meta {
  margin-top: clamp(40px, 5vw, 56px);
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  text-align: right;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .privacy-intro {
    border-left-width: 2px;
  }

  .privacy-intro p {
    font-size: 0.88rem;
    line-height: 1.95;
  }

  .privacy-item-head {
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 14px;
  }

  .privacy-item-body p,
  .privacy-bullets li {
    font-size: 0.88rem;
    line-height: 1.95;
  }

  .privacy-contact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .privacy-contact-label {
    font-size: 0.68rem;
  }
}
