
/* ==============================================
   問い合わせページ専用スタイル
   yoru-art-school-lp.css の末尾に追記
================================================ */

/* ===== HEADER ===== */
.yoru-contact .contact-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(14,12,10,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,146,90,0.15);
}
.yoru-contact .contact-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.yoru-contact .logo-en {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.yoru-contact .logo-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--mid-gray);
}
.yoru-contact .contact-back {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
  text-decoration: none;
  transition: color 0.2s;
}
.yoru-contact .contact-back:hover { color: var(--gold); }

/* ===== HERO ===== */
.yoru-contact .contact-hero {
  padding: 160px 40px 80px;
  position: relative;
  overflow: hidden;
}
.yoru-contact .contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 30% 50%, rgba(184,146,90,0.06) 0%, transparent 70%);
}
.yoru-contact .contact-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}
.yoru-contact .contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.yoru-contact .contact-title em {
  font-style: italic;
  color: var(--gold-light);
}
.yoru-contact .contact-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: var(--light-gray);
  margin-bottom: 28px;
}
.yoru-contact .contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== FLOW MINI ===== */
.yoru-contact .contact-flow {
  border-top: 1px solid rgba(184,146,90,0.1);
  border-bottom: 1px solid rgba(184,146,90,0.1);
  padding: 40px 0;
  background: var(--section-bg);
}
.yoru-contact .contact-flow-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.yoru-contact .contact-flow-step { text-align: center; }
.yoru-contact .cf-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: rgba(184,146,90,0.4);
  line-height: 1;
  margin-bottom: 8px;
}
.yoru-contact .cf-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 4px;
}
.yoru-contact .cf-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--mid-gray);
  line-height: 1.6;
}
.yoru-contact .contact-flow-arrow {
  font-size: 18px;
  color: rgba(184,146,90,0.3);
  flex-shrink: 0;
}

/* ===== FORM SECTION ===== */
.yoru-contact .contact-form-section {
  padding: 80px 0 120px;
}
.yoru-contact .contact-form-section .container {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: start;
}

/* Googleフォーム iframe */
.yoru-contact .gform-wrap {
  border: 1px solid rgba(184,146,90,0.2);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}
.yoru-contact .gform-iframe {
  display: block;
  width: 100%;
  min-height: 800px;
  border: none;
  background: transparent;
}

/* フォーム未設定時のプレースホルダー */
.yoru-contact .form-placeholder {
  border: 1px dashed rgba(184,146,90,0.25);
  padding: 60px 40px;
  text-align: center;
}
.yoru-contact .form-placeholder-icon { font-size: 40px; margin-bottom: 20px; }
.yoru-contact .form-placeholder-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--parchment);
  margin-bottom: 12px;
}
.yoru-contact .form-placeholder-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--mid-gray);
  line-height: 2;
  margin-bottom: 32px;
}
.yoru-contact .form-placeholder-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}
.yoru-contact .fps-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(184,146,90,0.1);
  background: rgba(184,146,90,0.03);
}
.yoru-contact .fps-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.2;
}
.yoru-contact .fps-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--light-gray);
  line-height: 1.8;
}

/* ===== SIDEBAR INFO ===== */
.yoru-contact .contact-info {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(184,146,90,0.15);
}
.yoru-contact .contact-info-block {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(184,146,90,0.1);
}
.yoru-contact .contact-info-block:last-of-type { border-bottom: none; }
.yoru-contact .contact-info-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 6px;
}
.yoru-contact .contact-info-value {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--parchment);
  line-height: 1.8;
}
.yoru-contact .contact-info-value strong {
  color: var(--gold-light);
}
.yoru-contact .contact-info-value small {
  font-size: 11px;
  color: var(--mid-gray);
}
.yoru-contact .contact-info-value a {
  color: var(--gold);
  text-decoration: none;
}
.yoru-contact .contact-info-value a:hover { text-decoration: underline; }
.yoru-contact .contact-info-note {
  padding: 16px 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: var(--mid-gray);
  line-height: 1.9;
  border-top: 1px solid rgba(184,146,90,0.1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .yoru-contact .contact-header { padding: 14px 20px; }
  .yoru-contact .contact-hero { padding: 120px 24px 60px; }
  .yoru-contact .contact-form-section .container {
    grid-template-columns: 1fr;
  }
  .yoru-contact .contact-info { position: static; }
  .yoru-contact .contact-flow-grid { flex-direction: column; }
  .yoru-contact .contact-flow-arrow { transform: rotate(90deg); }
}
