*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy-900: #0a0f1e;
  --navy-800: #111832;
  --navy-700: #1a2340;
  --navy-600: #243052;
  --navy-500: #2e3d64;
  --gold-400: #c9a84c;
  --gold-300: #d4b96a;
  --gold-200: #e0ca88;
  --cream: #f5f0e8;
  --cream-light: #faf7f2;
  --warm-gray: #8a8578;
  --text-dark: #1a1a18;
  --text-mid: #4a4a46;
  --text-light: #d8d4cc;
  --border-subtle: rgba(201,168,76,0.15);
}

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text-dark);
  background: var(--cream-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Utility ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ─── Navigation ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,15,30,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: all 0.4s ease;
}
nav.scrolled { background: rgba(10,15,30,0.97); }

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

.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--text-light);
  font-size: 12px; letter-spacing: 1.5px; font-weight: 300;
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold-400);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-300); }
.nav-links a:hover::after { width: 100%; }

.nav-contact {
  padding: 8px 24px; border: 1px solid var(--gold-400);
  color: var(--gold-400); font-size: 11px; letter-spacing: 2px;
  text-decoration: none; transition: all 0.3s;
}
.nav-contact:hover {
  background: var(--gold-400); color: var(--navy-900);
}
.nav-contact::after { display: none !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--text-light); transition: all 0.3s;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 24px; }
}

/* ─── Mobile Menu ─── */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,15,30,0.98); z-index: 200;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 32px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  text-decoration: none; color: var(--text-light);
  font-family: 'Noto Serif JP', serif;
  font-size: 18px; letter-spacing: 3px; font-weight: 300;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold-400); }
.mobile-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; color: var(--text-light);
  font-size: 28px; cursor: pointer;
}

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

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(36,48,82,0.5) 0%, transparent 60%),
    linear-gradient(170deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-900) 100%);
}

.hero-lines {
  position: absolute; inset: 0; overflow: hidden; opacity: 0.08;
}
.hero-lines::before, .hero-lines::after {
  content: ''; position: absolute;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  height: 1px;
}
.hero-lines::before {
  top: 30%; left: -10%; right: 40%;
  animation: lineSlide 8s ease-in-out infinite;
}
.hero-lines::after {
  top: 65%; left: 30%; right: -10%;
  animation: lineSlide 10s ease-in-out 2s infinite;
}

@keyframes lineSlide {
  0%, 100% { opacity: 0.3; transform: translateX(-20px); }
  50% { opacity: 1; transform: translateX(20px); }
}

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

.hero-badge {
  display: inline-block;
  font-size: 10px; letter-spacing: 5px; color: var(--gold-400);
  border: 1px solid rgba(201,168,76,0.3); padding: 8px 28px;
  margin-bottom: 48px; font-weight: 400;
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
}

/* スマホのみ改行を表示 */
.sp-br { display: none; }
@media (max-width: 768px) { .sp-br { display: block; } }

.hero-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 300; color: #fff;
  line-height: 1.6; letter-spacing: 4px;
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 1s 0.6s forwards;
}

.hero-title-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 300; color: var(--gold-300);
  letter-spacing: 6px; margin-bottom: 56px;
  opacity: 0; animation: fadeUp 1s 0.8s forwards;
}

.hero-desc {
  font-size: 14px; line-height: 2.2; color: var(--text-light);
  font-weight: 300; max-width: 640px; margin: 0 auto 56px;
  letter-spacing: 0.5px;
  opacity: 0; animation: fadeUp 1s 1s forwards;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 48px; border: 1px solid var(--gold-400);
  color: var(--gold-400); text-decoration: none;
  font-size: 12px; letter-spacing: 3px;
  transition: all 0.4s; font-weight: 400;
  opacity: 0; animation: fadeUp 1s 1.2s forwards;
}
.hero-cta:hover {
  background: var(--gold-400); color: var(--navy-900);
}
.hero-cta svg { transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 1s 1.5s forwards;
}
.hero-scroll span {
  font-size: 9px; letter-spacing: 3px; color: var(--warm-gray);
}
.scroll-line {
  width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold-400), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 30px; }
  50% { opacity: 1; height: 50px; }
}

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

/* ─── Section base ─── */
.section { padding: 120px 0; }
.section-dark { background: var(--navy-900); color: #fff; }
.section-cream { background: var(--cream); }
.section-white { background: var(--cream-light); }

.section-label {
  font-size: 10px; letter-spacing: 5px; color: var(--gold-400);
  margin-bottom: 16px; font-weight: 400;
}
.section-dark .section-label { color: var(--gold-400); }

.section-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400; letter-spacing: 2px;
  line-height: 1.6; margin-bottom: 20px;
}

.section-heading-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; letter-spacing: 4px; font-weight: 400;
  color: var(--warm-gray); margin-bottom: 48px;
}
.section-dark .section-heading-en { color: var(--gold-300); opacity: 0.6; }

.gold-rule {
  width: 40px; height: 1px; background: var(--gold-400);
  margin-bottom: 48px;
}

/* ─── Concept ─── */
.concept-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 48px; margin-top: 64px;
}

.concept-card {
  padding: 48px 36px;
  border: 1px solid var(--border-subtle);
  background: rgba(255,255,255,0.5);
  transition: all 0.4s;
  position: relative;
}
.concept-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--gold-400);
  transition: width 0.5s ease;
}
.concept-card:hover::before { width: 100%; }
.concept-card:hover { background: #fff; box-shadow: 0 20px 60px rgba(0,0,0,0.04); }

.concept-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 300; color: var(--gold-400);
  margin-bottom: 20px; line-height: 1;
}

.concept-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 17px; font-weight: 500; letter-spacing: 1px;
  margin-bottom: 20px; line-height: 1.6;
}

.concept-text {
  font-size: 13.5px; line-height: 2; color: var(--text-mid);
  font-weight: 300;
}

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

/* ─── Value Proposition ─── */
.value-intro {
  font-size: 15px; line-height: 2.2; color: var(--text-light);
  font-weight: 300; max-width: 720px; margin-bottom: 64px;
}

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

.value-card {
  padding: 40px;
  border: 1px solid rgba(201,168,76,0.12);
  background: rgba(255,255,255,0.03);
  transition: all 0.4s;
}
.value-card:hover { border-color: var(--gold-400); }

.value-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--gold-400); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.value-icon svg { width: 20px; height: 20px; stroke: var(--gold-400); fill: none; stroke-width: 1.5; }

.value-card h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px; font-weight: 500; color: #fff;
  margin-bottom: 16px; letter-spacing: 1px;
}

.value-card p {
  font-size: 13px; line-height: 2; color: var(--text-light);
  font-weight: 300;
}

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

/* ─── Fee ─── */
.fee-table-wrap {
  max-width: 700px; margin: 0 auto;
}

.fee-table {
  width: 100%; border-collapse: collapse;
  margin-bottom: 40px;
}
.fee-table th {
  background: var(--navy-700);
  color: var(--gold-300);
  font-size: 12px; letter-spacing: 2px; font-weight: 400;
  padding: 16px 24px; text-align: left;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.fee-table td {
  padding: 18px 24px;
  font-size: 14px; color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 300;
}
.fee-table td:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 500; color: var(--gold-400);
  text-align: right;
}
.fee-table tr:hover td { background: rgba(201,168,76,0.03); }

.fee-notes {
  font-size: 12px; line-height: 2; color: var(--warm-gray);
  font-weight: 300;
}

/* ─── Process ─── */
.process-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; margin-top: 64px;
}
.process-timeline::before {
  content: ''; position: absolute;
  top: 40px; left: 12.5%; right: 12.5%;
  height: 1px; background: var(--gold-400); opacity: 0.3;
}

.process-step {
  text-align: center; padding: 0 20px;
  position: relative;
}

.process-dot {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid var(--gold-400); background: var(--cream-light);
  margin: 34px auto 32px; position: relative; z-index: 2;
  transition: all 0.3s;
}
.process-step:hover .process-dot {
  background: var(--gold-400); box-shadow: 0 0 20px rgba(201,168,76,0.3);
}

.process-phase {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px; letter-spacing: 3px; color: var(--gold-400);
  font-weight: 500; margin-bottom: 8px;
}

.process-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px; font-weight: 500; letter-spacing: 1px;
  margin-bottom: 24px;
}

.process-items {
  list-style: none; text-align: left;
  font-size: 13px; line-height: 2.2; color: var(--text-mid);
  font-weight: 300;
}
.process-items li { padding-left: 16px; position: relative; }
.process-items li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 4px; height: 4px; background: var(--gold-400);
  border-radius: 50%;
}

.process-duration {
  margin-top: 20px; font-size: 12px; color: var(--warm-gray);
  letter-spacing: 1px;
}

@media (max-width: 900px) {
  .process-timeline { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .process-timeline::before { display: none; }
}
@media (max-width: 600px) {
  .process-timeline { grid-template-columns: 1fr; }
}

/* ─── Profile ─── */
.profile-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}

.profile-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px; font-weight: 500; letter-spacing: 2px;
  margin-bottom: 8px;
}
.profile-title {
  font-size: 13px; color: var(--warm-gray); letter-spacing: 1px;
  margin-bottom: 32px; font-weight: 300;
}
.profile-bio {
  font-size: 14px; line-height: 2.2; color: var(--text-mid);
  font-weight: 300; margin-bottom: 32px;
}
.profile-quals h4 {
  font-size: 12px; letter-spacing: 2px; color: var(--gold-400);
  margin-bottom: 16px; font-weight: 500;
}
.profile-quals ul {
  list-style: none; font-size: 13px; line-height: 2.2;
  color: var(--text-mid); font-weight: 300;
}
.profile-quals li { padding-left: 16px; position: relative; }
.profile-quals li::before {
  content: '─'; position: absolute; left: 0; color: var(--gold-400);
  font-size: 10px;
}

.profile-blog {
  margin-top: 24px;
}
.profile-blog a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 400;
  color: var(--navy-700);
  text-decoration: none;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.profile-blog a::after {
  content: '→';
  color: var(--gold-400);
  font-size: 12px;
}
.profile-blog a:hover {
  color: var(--gold-400);
  border-color: var(--gold-400);
}

.profile-highlights {
  padding: 48px;
  border: 1px solid var(--border-subtle);
  background: #fff;
}
.profile-highlights h4 {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px; font-weight: 500; margin-bottom: 28px;
  letter-spacing: 1px;
}
.highlight-item {
  display: flex; gap: 16px; margin-bottom: 24px;
  align-items: flex-start;
}
.highlight-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  border: 1px solid var(--border-subtle); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.highlight-icon svg { width: 16px; height: 16px; stroke: var(--gold-400); fill: none; stroke-width: 1.5; }
.highlight-item p {
  font-size: 13.5px; line-height: 1.9; color: var(--text-mid);
  font-weight: 300;
}

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

/* ─── Company Info ─── */
.info-table {
  width: 100%; max-width: 700px;
  border-collapse: collapse;
}
.info-table tr {
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.info-table th {
  width: 160px; padding: 20px 24px 20px 0;
  font-size: 13px; font-weight: 500; color: var(--gold-400);
  vertical-align: top; text-align: left;
  letter-spacing: 1px;
}
.info-table td {
  padding: 20px 0;
  font-size: 14px; color: var(--text-light);
  font-weight: 300; line-height: 1.8;
}

/* ─── Contact CTA ─── */
.contact-section {
  padding: 120px 0;
  text-align: center;
}

.contact-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 300; color: var(--text-dark);
  letter-spacing: 3px; margin-bottom: 16px;
}

.contact-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; letter-spacing: 4px; color: var(--warm-gray);
  opacity: 0.8; margin-bottom: 48px;
}

.contact-info-row {
  display: flex; justify-content: center; gap: 64px;
  margin-bottom: 48px; flex-wrap: wrap;
}
.contact-info-item {
  text-align: center;
}
.contact-info-item span {
  display: block; font-size: 10px; letter-spacing: 3px;
  color: var(--gold-400); margin-bottom: 8px;
}
.contact-info-item a, .contact-info-item p {
  font-size: 16px; color: var(--text-light); font-weight: 300;
  text-decoration: none; letter-spacing: 1px;
}
.contact-info-item a:hover { color: var(--gold-400); }

.contact-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 56px;
  background: var(--gold-400); color: var(--navy-900);
  text-decoration: none;
  font-size: 13px; letter-spacing: 3px; font-weight: 500;
  transition: all 0.4s;
}
.contact-btn:hover {
  background: var(--gold-300);
  box-shadow: 0 8px 40px rgba(201,168,76,0.2);
}

/* ─── Footer ─── */
footer {
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 48px 0 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; flex-direction: column;
  align-items: center; gap: 32px;
}

/* パートナーロゴ */
.footer-logos {
  display: flex; align-items: center;
  justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.footer-logos a {
  display: block; opacity: 0.75;
  transition: opacity 0.3s;
}
.footer-logos a:hover { opacity: 1; }
.footer-logos img {
  height: 44px; width: auto; display: block;
}

/* リンク */
.footer-nav {
  display: flex; gap: 32px; flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 12px; color: var(--text-mid);
  text-decoration: none; letter-spacing: 1px;
  font-weight: 300; transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold-400); }

/* コピーライト */
.footer-copy {
  font-size: 11px; color: var(--warm-gray);
  letter-spacing: 1px; font-weight: 300;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-inner { padding: 0 24px; gap: 24px; }
  .footer-logos { gap: 24px; }
  .footer-logos img { height: 36px; }
}

.mobile-logo-img {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 8px;
}
.footer-copy {
  font-size: 11px; color: var(--warm-gray); letter-spacing: 1px;
  font-weight: 300;
}

/* ─── Contact Form ─── */
.form-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 48px;
}
.form-step {
  display: flex; align-items: center; gap: 10px;
  opacity: 0.35; transition: opacity 0.3s;
}
.form-step.active { opacity: 1; }
.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; color: var(--gold-400);
}
.form-step.active .step-num {
  background: var(--gold-400); color: var(--navy-900); font-weight: 600;
}
.step-label {
  font-size: 12px; letter-spacing: 2px; color: var(--text-mid);
}
.step-arrow {
  font-size: 20px; color: rgba(201,168,76,0.3);
}

.contact-form {
  max-width: 720px; margin: 0 auto;
  text-align: left;
}
.form-row {
  display: grid; grid-template-columns: 180px 1fr;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: start;
}
.form-label {
  padding: 24px 0;
  font-size: 13px; color: var(--navy-600);
  letter-spacing: 1px; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
}
.required {
  font-size: 10px; background: rgba(201,168,76,0.15);
  color: var(--gold-400); padding: 2px 6px; letter-spacing: 1px;
}
.form-field {
  padding: 20px 0 20px 16px;
}
.form-field input,
.form-field textarea {
  width: 100%; background: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--text-dark); font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px; font-weight: 300;
  padding: 12px 16px; outline: none;
  transition: border-color 0.3s;
  border-radius: 2px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(80,80,80,0.35);
}

/* ─── Radio group ─── */
.radio-group {
  display: flex; flex-direction: column; gap: 10px;
  padding: 4px 0;
}
.radio-group label {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 300; color: var(--text-dark);
  cursor: pointer;
}
.radio-group input[type="radio"] {
  width: auto; border: none; padding: 0;
  accent-color: var(--gold-400);
  width: 16px; height: 16px; cursor: pointer;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold-400);
}
.form-field input.error,
.form-field textarea.error {
  border-color: #c0392b;
}
.form-error {
  font-size: 12px; color: #e07070;
  margin-top: 8px; display: none;
  letter-spacing: 0.5px;
}
.form-error.show { display: block; }

.form-privacy {
  padding: 28px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  text-align: center;
}
.privacy-check {
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; color: var(--text-light); font-size: 13px;
  font-weight: 300;
}
.privacy-check input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--gold-400);
  cursor: pointer;
}
.privacy-link {
  color: var(--gold-400); text-decoration: underline;
}
#err-privacy { text-align: center; }

.form-submit-row {
  margin-top: 40px; text-align: center;
}
.form-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 48px;
  background: var(--gold-400); color: var(--navy-900);
  border: none; cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px; letter-spacing: 3px; font-weight: 500;
  transition: all 0.3s;
}
.form-btn:hover {
  background: var(--gold-300);
  box-shadow: 0 8px 32px rgba(201,168,76,0.25);
}
.form-btn-back {
  background: none; border: 1px solid rgba(201,168,76,0.4);
  color: var(--text-mid); padding: 14px 32px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px; letter-spacing: 1px; cursor: pointer;
  transition: all 0.3s;
}
.form-btn-back:hover { border-color: var(--gold-400); color: var(--gold-400); }

/* Confirm screen */
.confirm-screen { max-width: 720px; margin: 0 auto; text-align: left; }
.confirm-note {
  font-size: 13px; color: var(--text-mid); font-weight: 300;
  margin-bottom: 32px; text-align: center; letter-spacing: 0.5px;
}
.confirm-table {
  width: 100%; border-collapse: collapse; margin-bottom: 40px;
}
.confirm-table tr {
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.confirm-table th {
  width: 180px; padding: 20px 16px 20px 0;
  font-size: 13px; color: var(--gold-400); font-weight: 400;
  vertical-align: top; letter-spacing: 1px; text-align: left;
}
.confirm-table td {
  padding: 20px 0;
  font-size: 14px; color: var(--text-dark); font-weight: 300;
  line-height: 1.8;
}
.confirm-btn-row {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
}

/* Complete screen */
.complete-screen {
  max-width: 560px; margin: 0 auto; text-align: center; padding: 40px 0;
}
.complete-icon {
  width: 72px; height: 72px; border-radius: 50%;
  border: 1px solid var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 32px;
  stroke: var(--gold-400);
}
.complete-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px; font-weight: 400; color: var(--text-dark);
  letter-spacing: 2px; margin-bottom: 20px;
}
.complete-text {
  font-size: 14px; color: var(--text-mid); font-weight: 300;
  line-height: 2; letter-spacing: 0.5px;
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .form-label { padding: 20px 0 4px; }
  .form-field { padding: 0 0 20px; }
  .confirm-table th { width: 120px; }
}

/* ─── form.run 埋め込み ─── */
.formrun-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,0.97);
  border-radius: 2px;
  overflow: hidden;
}

/* ─── Scroll Animations ─── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
