/* ============================================
   LA FÁBRICA — Main Stylesheet
   Black × Gold Luxury Design
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --gold: #D4AF37;
  --gold-light: #E8C96A;
  --gold-dark: #A07830;
  --gold-pale: rgba(201, 168, 76, 0.12);
  --black: #080808;
  --black-2: #111111;
  --black-3: #181818;
  --black-4: #222222;
  --white: #FFFFFF;
  --white-soft: #F5F5F5;
  --gray: #888888;
  --gray-light: #BBBBBB;
  --font-en: 'Montserrat', 'Cormorant Garamond', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --font-ja: 'Noto Serif JP', serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, 0.18);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-ja);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.lang-en {
  font-family: var(--font-en);
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---------- Container ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Section Defaults ---------- */
.section-dark { background-color: var(--black-2); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
}

.section-desc {
  font-size: 16px;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
}

.section-desc-gold {
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--gold);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.03em;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transition: left var(--transition);
}

.btn-primary:hover::before { left: 0; }
.btn-primary:hover { color: var(--black); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-primary span, .btn-primary { position: relative; z-index: 1; }

.btn-secondary {
  display: inline-block;
  padding: 13px 36px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all var(--transition);
  background: transparent;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-full { width: 100%; text-align: center; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo .logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
  max-width: 220px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray);
  cursor: pointer;
  transition: color var(--transition);
  padding: 4px;
}

.lang-btn.active, .lang-btn:hover { color: var(--gold); }
.lang-divider { color: var(--gray); font-size: 10px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: rgba(8,8,8,0.98);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 20px 40px 30px;
}

.mobile-menu.open { display: block; }

.mobile-menu ul { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.mobile-menu a:hover { color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(201,168,76,0.04) 0%, transparent 60%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(201,168,76,0.02) 60px,
      rgba(201,168,76,0.02) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(201,168,76,0.02) 60px,
      rgba(201,168,76,0.02) 61px
    );
  background-size: cover, 60px 60px, 60px 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.3) 0%,
    rgba(8,8,8,0) 40%,
    rgba(8,8,8,0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 120px 40px 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.gold-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.hero-title {
  display: block;
  text-align: center;
  margin-bottom: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 11vw, 140px);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #FFFFFF;
  white-space: nowrap;
}

.title-la {
  display: inline;
  color: #C9A75B;
  -webkit-text-fill-color: #C9A75B;
}

.title-fabrica {
  display: inline;
  color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
  background: none;
  filter: none;
}

@media (max-width: 768px) {
  .hero-title {
    white-space: normal;
    font-size: clamp(52px, 14vw, 80px);
  }
}

.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(10px, 1.4vw, 13px);
  font-weight: 400;
  letter-spacing: 0.45em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.85;
}

.hero-sub {
  font-size: clamp(14px, 1.8vw, 18px);
  color: var(--gray-light);
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.9;
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: scrollPulse 2.5s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.scroll-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   CATCHCOPY
   ============================================ */
.catchcopy {
  padding: 80px 0;
  background: var(--black-3);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.catchcopy::before {
  content: 'FÁBRICA';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.03);
  letter-spacing: 0.1em;
  white-space: nowrap;
  pointer-events: none;
}

.catch-main {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 34px);
  font-weight: 400;
  color: var(--gray-light);
  letter-spacing: 0.04em;
  line-height: 1.5;
  position: relative;
}

.catch-sub {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 46px);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-top: 12px;
  position: relative;
}

/* ============================================
   SUPERVISOR
   ============================================ */
.supervisor {
  padding: 120px 0;
  background: var(--black);
}

.supervisor-catch {
  text-align: center;
  margin-bottom: 80px;
  padding: 40px 48px;
  background: var(--black-3);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-top: 2px solid var(--gold);
  position: relative;
}

.supervisor-catch p {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.2vw, 26px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.supervisor-catch p:last-child {
  font-size: clamp(18px, 2.8vw, 32px);
  font-weight: 500;
  color: var(--gold);
  margin-top: 8px;
}

/* Profile grid */
.supervisor-profile {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
  margin-bottom: 80px;
}

.supervisor-photo {
  position: relative;
}

.supervisor-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(20%) contrast(1.05);
  display: block;
}

.photo-frame {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 168, 76, 0.25);
  pointer-events: none;
  transform: translate(10px, 10px);
  z-index: -1;
}

.supervisor-name-block {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.supervisor-name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 6px;
}

.supervisor-name-en {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.supervisor-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.supervisor-tags span {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.supervisor-tags span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--gray);
}

.supervisor-tags .tag-gold {
  color: var(--gold);
  font-weight: 500;
}

.supervisor-tags .tag-gold::before {
  background: var(--gold);
}

.supervisor-section {
  margin-bottom: 28px;
}

.supervisor-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.supervisor-section h4::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.supervisor-section p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.95;
}

/* INEFC block */
.inefc-block {
  background: var(--black-3);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 56px;
  margin-bottom: 64px;
}

.inefc-header {
  text-align: center;
  margin-bottom: 48px;
}

.inefc-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.inefc-header h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}

.inefc-body {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
}

.inefc-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.inefc-map {
  border: 1px solid rgba(201, 168, 76, 0.2);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  align-items: stretch;
}

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

.inefc-map-inner .map-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.5);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 8px;
}

.inefc-map-inner .map-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--gray);
  text-transform: uppercase;
}

.inefc-abbr {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 16px;
  font-style: italic;
}

.inefc-text p:last-child {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 2;
}

/* Quote */
.supervisor-quote {
  text-align: center;
  padding: 56px 48px;
  background: linear-gradient(135deg, rgba(201,168,76,0.07), rgba(201,168,76,0.02));
  border: 1px solid rgba(201, 168, 76, 0.2);
  position: relative;
}

.quote-icon {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.6;
  margin-bottom: 16px;
  display: block;
}

.supervisor-quote p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* Responsive */
@media (max-width: 1024px) {
  .supervisor-profile {
    grid-template-columns: 300px 1fr;
    gap: 48px;
  }
  .inefc-body {
    grid-template-columns: 240px 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  .supervisor { padding: 80px 0; }
  .supervisor-catch { padding: 28px 24px; }
  .supervisor-profile {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .supervisor-photo { max-width: 320px; margin: 0 auto; }
  .inefc-block { padding: 36px 24px; }
  .inefc-body { grid-template-columns: 1fr; gap: 32px; }
  .supervisor-quote { padding: 40px 24px; }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-lead {
  font-size: 18px;
  color: var(--white);
  line-height: 2;
  margin-bottom: 32px;
  font-weight: 300;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.notice-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 24px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  background: var(--gold-pale);
  margin-bottom: 32px;
}

.notice-box i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.notice-box p { font-size: 14px; color: var(--gray-light); line-height: 1.7; }

.about-checks {
  background: var(--black-3);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 48px;
}

.about-checks h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 32px;
  line-height: 1.5;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.check-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: var(--black);
  margin-top: 2px;
}

.check-item p {
  font-size: 16px;
  color: var(--white);
  line-height: 1.7;
}

/* ============================================
   MISSION
   ============================================ */
.mission {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--black-4) 0%, var(--black-3) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.mission-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.mission-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 8px 24px;
  border: 1px solid rgba(201, 168, 76, 0.4);
}

.mission-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.mission-text-2 {
  font-size: clamp(26px, 4.5vw, 52px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1.3;
  margin-top: 4px;
}

/* ============================================
   SERVICE
   ============================================ */
.service {
  padding: 120px 0;
}

.no-training-box {
  margin-bottom: 60px;
}

.no-training-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 40px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(201,168,76,0.02));
  border-left: 3px solid var(--gold);
}

.no-training-inner > i {
  color: var(--gold);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 4px;
}

.no-training-inner h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 12px;
}

.no-training-inner p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.8;
}

.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(201, 168, 76, 0.1);
}

.fit-card {
  padding: 48px;
  background: var(--black-2);
}

.fit-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.fit-no h3 { color: var(--gray); }
.fit-yes h3 { color: var(--gold); }

.fit-card li {
  font-size: 16px;
  color: var(--white);
  line-height: 1.7;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-left: 20px;
  position: relative;
}

.fit-card li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.fit-no li::before { content: '×'; color: var(--gray); font-size: 14px; }
.fit-yes li::before { content: '◆'; color: var(--gold); font-size: 8px; }

.no-training-bottom {
  margin-top: 2px;
  padding: 28px 40px;
  background: var(--black-2);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  text-align: center;
}

.no-training-line1 {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.9;
  max-width: 760px;
  margin: 0 auto;
}

.no-training-line2 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1.5;
  max-width: 760px;
  margin: 12px auto 0;
  letter-spacing: 0.03em;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 120px 0;
  background: var(--black);
}

.process-steps {
  position: relative;
}

.process-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: all var(--transition);
}

.process-step:last-child { border-bottom: none; }

.process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: rgba(201, 168, 76, 0.04);
  transition: width 0.5s ease;
}

.process-step:hover::before { width: 100%; }

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.25);
  line-height: 1;
  transition: color var(--transition);
  align-self: flex-start;
  padding-top: 4px;
}

.process-step:hover .step-number { color: rgba(201, 168, 76, 0.6); }

.step-content h3 {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.step-content p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 20px;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.step-list li {
  font-size: 14px;
  color: var(--gray-light);
  padding-left: 20px;
  position: relative;
  line-height: 1.7;
}

.step-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.step-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: var(--gold-pale);
  border-left: 2px solid var(--gold);
  margin-top: 20px;
}

.step-note i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.step-note p { font-size: 14px; color: var(--gray-light); line-height: 1.7; }

.step-highlight {
  display: inline-block;
  padding: 16px 24px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: var(--gold-pale);
  margin-top: 20px;
}

.step-highlight span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy {
  padding: 120px 0;
}

.philosophy-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-quote {
  font-family: var(--font-display);
  line-height: 1.8;
  margin-bottom: 60px;
  padding: 40px 48px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-left: 3px solid var(--gold);
  text-align: left;
  background: rgba(201, 168, 76, 0.03);
}

.quote-line1 {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  color: var(--gray-light);
  font-style: italic;
  margin-bottom: 6px;
  line-height: 1.6;
}

.quote-line1b {
  margin-bottom: 0;
}

.quote-spacer {
  height: 28px;
}

.quote-line2 {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  line-height: 1.6;
}

.quote-line2b {
  margin-bottom: 0;
}

.philosophy-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.ph-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 150px;
  max-width: 200px;
}

.ph-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-pale);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
}

.ph-step p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.6;
}

.ph-arrow { color: var(--gold); opacity: 0.5; font-size: 18px; }

.philosophy-result {
  font-size: 17px;
  color: var(--gray-light);
  line-height: 2;
  text-align: left;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding-top: 40px;
}

/* ============================================
   VALUE
   ============================================ */
.value {
  padding: 120px 0;
  background: var(--black);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201, 168, 76, 0.08);
  margin-bottom: 2px;
}

.value-card {
  background: var(--black-2);
  padding: 48px 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.value-card:hover { background: var(--black-3); }
.value-card:hover::before { transform: scaleX(1); }

.value-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 24px;
  transition: all var(--transition);
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-color: var(--gold);
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.4;
}

.value-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.9;
}

.value-closing {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 48px;
  text-align: center;
}

.value-closing p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1.7;
  letter-spacing: 0.04em;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 120px 0;
}

.pricing-card {
  max-width: 860px;
  margin: 0 auto 64px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: var(--black-3);
  overflow: hidden;
}

.pricing-header {
  text-align: center;
  padding: 56px 48px 40px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02));
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.pricing-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 6px 20px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.pricing-price {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
  line-height: 1;
}

.price-currency {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  padding-bottom: 8px;
}

.price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: -0.02em;
}

.price-unit {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-light);
  padding-bottom: 14px;
}

.price-note {
  font-size: 15px;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.price-tax {
  font-size: 12px;
  color: var(--gray);
  font-family: 'Montserrat', sans-serif;
}

.pricing-features {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-feature:last-child { border-bottom: none; }

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.feature-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.feature-text p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.feature-sub {
  font-size: 12px !important;
  color: var(--gray) !important;
  margin-top: 2px;
  line-height: 1.5 !important;
}

.pricing-footer {
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: rgba(201, 168, 76, 0.03);
}

.pricing-initial {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--gray-light);
}

.pricing-initial i { color: var(--gold); font-size: 18px; }

/* Contract Notice */
.contract-notice {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(201, 168, 76, 0.08);
}

.contract-item {
  background: var(--black-3);
  padding: 40px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.contract-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(201, 168, 76, 0.25);
  line-height: 1;
  flex-shrink: 0;
}

.contract-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.4;
}

.contract-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.9;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 120px 0;
  background: var(--black-2);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--black-3);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 36px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover { background: rgba(201, 168, 76, 0.04); }

.faq-question span {
  font-family: var(--font-ja);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
  flex: 1;
}

.faq-icon {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding: 0 36px 32px;
  font-size: 15px;
  color: var(--gray);
  line-height: 2;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing { padding: 80px 0; }
  .pricing-header { padding: 40px 24px 32px; }
  .price-amount { font-size: 60px; }
  .pricing-features { padding: 28px 24px; }
  .pricing-footer { padding: 28px 24px; flex-direction: column; align-items: flex-start; }
  .contract-notice { grid-template-columns: 1fr; }
  .contract-item { padding: 28px 24px; }
  .faq { padding: 80px 0; }
  .faq-question { padding: 22px 24px; }
  .faq-answer p { padding: 0 24px 24px; padding-top: 16px; }
}

/* ============================================
   ANYWHERE
   ============================================ */
.anywhere {
  padding: 100px 0;
}

.anywhere-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.anywhere-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.anywhere-item i {
  font-size: 32px;
  color: var(--gold);
}

.anywhere-item span {
  font-size: 18px;
  color: var(--white);
  font-family: var(--font-display);
}

.anywhere-desc {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 8px;
}

.anywhere-desc-gold {
  color: var(--gold);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.anywhere-complement {
  text-align: center;
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-item > i {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.info-item p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.7;
}

.info-item a:hover { color: var(--gold); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 24px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  background: var(--black-3);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-ja);
  font-size: 15px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  border-radius: 0;
  width: 100%;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--black-4);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-success {
  text-align: center;
  padding: 48px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: var(--gold-pale);
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-success i {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 16px;
}

.form-success p {
  font-size: 16px;
  color: var(--gray-light);
  line-height: 1.7;
}

.form-notice {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
  margin-top: 12px;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black-2);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 64px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.05);
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--gray);
  transition: color var(--transition);
}

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

.footer-contact p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 4px;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-bottom p {
  font-size: 12px;
  color: var(--gray);
  font-family: 'Montserrat', sans-serif;
}

.footer-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px !important;
  letter-spacing: 0.2em;
  color: rgba(201, 168, 76, 0.4) !important;
  text-transform: uppercase;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-4px);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 60px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { grid-template-columns: 80px 1fr; gap: 32px; }
}

/* ============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {

  /* --- Base --- */
  .container { padding: 0 18px; }

  /* --- Navbar --- */
  .nav-container { padding: 0 18px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo .logo-img { height: 36px; }

  /* --- Hero --- */
  .hero-content { padding: 110px 18px 70px; }
  .hero-title { white-space: normal; font-size: clamp(44px, 14vw, 72px); }
  .hero-eyebrow { gap: 12px; }
  .gold-line { width: 30px; }
  .hero-label { font-size: 9px; letter-spacing: 0.2em; }
  .hero-sub { font-size: 14px; }
  .hero-cta { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 300px; text-align: center; }
  .hero-scroll { display: none; }

  /* --- Catchcopy --- */
  .catchcopy { padding: 52px 0; }
  .catchcopy::before { font-size: 70px; }
  .catch-main { font-size: clamp(16px, 4.5vw, 24px); }
  .catch-sub { font-size: clamp(18px, 5.5vw, 28px); }

  /* --- Section共通 --- */
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: clamp(24px, 6vw, 36px); }

  /* --- About --- */
  .about { padding: 64px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-lead { font-size: 16px; }
  .about-checks { padding: 28px 20px; }
  .about-checks h3 { font-size: 18px; }
  .check-item p { font-size: 15px; }

  /* --- Mission --- */
  .mission { padding: 56px 0; }
  .mission-text { font-size: clamp(17px, 4.5vw, 24px); }
  .mission-text-2 { font-size: clamp(22px, 6vw, 34px); }

  /* --- Supervisor --- */
  .supervisor { padding: 64px 0; }
  .supervisor-catch { padding: 24px 18px; }
  .supervisor-catch p { font-size: clamp(14px, 3.5vw, 18px); }
  .supervisor-profile { grid-template-columns: 1fr; gap: 32px; }
  .supervisor-photo { max-width: 280px; margin: 0 auto; }
  .supervisor-name { font-size: clamp(28px, 7vw, 44px); }
  .supervisor-tags span { font-size: 14px; }
  .supervisor-section p { font-size: 14px; }
  .inefc-block { padding: 28px 18px; }
  .inefc-body { grid-template-columns: 1fr; gap: 24px; }
  .inefc-header h3 { font-size: clamp(18px, 4.5vw, 26px); }
  .inefc-text p:last-child { font-size: 14px; }
  .supervisor-quote { padding: 36px 20px; }
  .supervisor-quote p { font-size: clamp(16px, 4vw, 22px); }
  .quote-icon { font-size: 56px; }

  /* --- Service --- */
  .service { padding: 64px 0; }
  .no-training-inner { flex-direction: column; padding: 24px 18px; gap: 16px; }
  .no-training-inner h3 { font-size: 18px; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-card { padding: 28px 20px; }
  .fit-card li { font-size: 15px; }
  .no-training-bottom { padding: 24px 18px; }
  .no-training-line1 { font-size: 14px; }
  .no-training-line2 { font-size: clamp(16px, 4.5vw, 22px); }

  /* --- Pricing --- */
  .pricing { padding: 64px 0; }
  .pricing-header { padding: 36px 20px 28px; }
  .price-amount { font-size: 52px; }
  .price-currency { font-size: 22px; }
  .price-unit { font-size: 14px; }
  .price-note { font-size: 13px; }
  .pricing-features { padding: 24px 20px; }
  .pricing-feature { gap: 16px; padding: 18px 0; }
  .feature-icon { width: 36px; height: 36px; font-size: 14px; }
  .feature-text h4 { font-size: 12px; }
  .feature-text p { font-size: 13px; }
  .pricing-footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .pricing-initial { font-size: 14px; }
  .contract-notice { grid-template-columns: 1fr; }
  .contract-item { padding: 24px 20px; gap: 16px; }
  .contract-num { font-size: 36px; }
  .contract-item h4 { font-size: 16px; }
  .contract-item p { font-size: 13px; }

  /* --- FAQ --- */
  .faq { padding: 64px 0; }
  .faq-question { padding: 20px 18px; }
  .faq-question span { font-size: 15px; }
  .faq-answer p { padding: 0 18px 20px; padding-top: 14px; font-size: 14px; }

  /* --- Process --- */
  .process { padding: 64px 0; }
  .process-step { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .step-number { font-size: 40px; }
  .step-content h3 { font-size: clamp(16px, 4vw, 22px); }
  .step-content p { font-size: 14px; }
  .step-list li { font-size: 13px; }
  .step-note p { font-size: 13px; }
  .step-highlight span { font-size: 15px; }

  /* --- Philosophy --- */
  .philosophy { padding: 64px 0; }
  .philosophy-quote { padding: 24px 18px; }
  .quote-line1 { font-size: 15px; }
  .quote-line2 { font-size: clamp(17px, 4.5vw, 24px); }
  .philosophy-steps { gap: 10px; flex-wrap: wrap; justify-content: center; }
  .ph-arrow { display: none; }
  .ph-step { min-width: 120px; }
  .philosophy-result { font-size: 14px; }

  /* --- Value --- */
  .value { padding: 64px 0; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { padding: 28px 20px; }
  .value-card h3 { font-size: 18px; }
  .value-card p { font-size: 14px; }
  .value-closing { padding: 28px 20px; }
  .value-closing p { font-size: clamp(16px, 4.5vw, 22px); }

  /* --- Anywhere --- */
  .anywhere { padding: 56px 0; }
  .anywhere-grid { gap: 32px; flex-direction: column; align-items: center; }
  .anywhere-item i { font-size: 26px; }
  .anywhere-item span { font-size: 16px; }
  .anywhere-desc { font-size: clamp(16px, 4vw, 22px); }
  .anywhere-complement { font-size: 14px; }

  /* --- Contact --- */
  .contact { padding: 64px 0; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .info-item p { font-size: 14px; }
  .form-group input,
  .form-group textarea { font-size: 16px; /* iOSズーム防止 */ padding: 12px 14px; }

  /* --- Footer --- */
  .footer { padding: 48px 0 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-logo { height: 36px; }
  .footer-brand p { font-size: 13px; }

  /* --- Back to top --- */
  .back-to-top { bottom: 20px; right: 16px; width: 40px; height: 40px; font-size: 13px; }
}

/* ============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: clamp(38px, 13vw, 60px); }
  .hero-content { padding: 100px 16px 60px; }
  .hero-sub { font-size: 13px; }
  .catchcopy { padding: 48px 0; }
  .catchcopy::before { font-size: 56px; }
  .about-checks { padding: 20px 16px; }
  .supervisor-photo { max-width: 240px; }
  .pricing-card { margin: 0; }
  .price-amount { font-size: 44px; }
  .mission-text { font-size: 15px; }
  .mission-text-2 { font-size: clamp(20px, 6vw, 28px); }
  .section-title { font-size: clamp(22px, 6vw, 30px); }
  .btn-primary, .btn-secondary { padding: 12px 24px; font-size: 12px; }
}
