/* =============================================
   ReelCraft Academy - Main Stylesheet
   ============================================= */

/* --- CSS Variables --- */
:root {
  --red: #FF3D5A;
  --red-dark: #E0213E;
  --yellow: #FFD600;
  --dark: #0D0D0D;
  --dark-2: #181818;
  --dark-3: #242424;
  --gray: #888888;
  --gray-light: #F5F5F5;
  --white: #FFFFFF;
  --text: #1A1A1A;
  --text-muted: #666666;
  --border: rgba(255,255,255,0.1);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
  --font-en: 'Montserrat', 'Bebas Neue', sans-serif;
  --font-ja: 'Noto Sans JP', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ja);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font-ja); }

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

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,61,90,0.35);
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,61,90,0.45);
}
.btn--hero {
  background: var(--red);
  color: var(--white);
  padding: 18px 40px;
  font-size: 16px;
  box-shadow: 0 6px 24px rgba(255,61,90,0.4);
}
.btn--hero:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255,61,90,0.5);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 16px 32px;
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.btn--outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn--outline:hover {
  background: var(--red);
  color: var(--white);
}

/* --- Section Helpers --- */
.section-label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--red);
  background: rgba(255,61,90,0.08);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--dark);
}
.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 600px;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-desc {
  margin: 12px auto 0;
}

/* --- Image Placeholders --- */
.img-placeholder, .hero__img-placeholder, .avatar-placeholder, .photo-placeholder {
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.5;
  border: 2px dashed #ccc;
}
.img-placeholder { width: 100%; aspect-ratio: 4/3; }
.hero__img-placeholder { width: 100%; height: 100%; min-height: 420px; border-radius: 24px; }
.avatar-placeholder { width: 64px; height: 64px; border-radius: 50%; font-size: 28px; border: none; background: #f0f0f0; flex-shrink: 0; }
.photo-placeholder { width: 100%; aspect-ratio: 1/1; border-radius: 50%; font-size: 48px; background: #f0f0f0; border: none; }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo__icon { width: 36px; height: 36px; }
.logo__text {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo__sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 700;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.header__nav a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.header__nav a:hover { color: var(--white); }
.header__cta { flex-shrink: 0; }
.header__cta .btn { padding: 10px 24px; font-size: 14px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }
.sp-nav { display: none; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: var(--dark);
  padding-top: 68px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 50%, rgba(255,61,90,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(255,214,0,0.06) 0%, transparent 60%);
}
.hero__inner {
  padding: 80px 0 80px 60px;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,61,90,0.15);
  border: 1px solid rgba(255,61,90,0.3);
  color: #FF8099;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeInDown 0.6s ease both;
}
.hero__title {
  margin-bottom: 24px;
  animation: fadeInUp 0.7s 0.1s ease both;
}
.hero__title-en {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.05em;
  line-height: 1;
}
.hero__title-ja {
  display: block;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-top: 8px;
}
.hero__desc {
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s 0.2s ease both;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s 0.3s ease both;
}
.hero__stats {
  display: flex;
  gap: 40px;
  animation: fadeInUp 0.7s 0.4s ease both;
}
.hero__stat { text-align: center; }
.hero__stat-num {
  display: block;
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.hero__stat-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.hero__visual {
  padding: 80px 60px 80px 40px;
  position: relative;
  z-index: 1;
  animation: fadeIn 1s 0.3s ease both;
  align-self: center;
  overflow: hidden;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__content .section-title { margin-bottom: 20px; }
.about__text {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
}
.about__text strong { color: var(--text); font-weight: 700; }
.about__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,61,90,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

/* =============================================
   CURRICULUM
   ============================================= */
.curriculum {
  padding: 100px 0;
  background: var(--gray-light);
}
.curriculum-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  border: 2px solid transparent;
  transition: var(--transition);
}
.tab-btn:hover { border-color: var(--red); color: var(--red); }
.tab-btn.active {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255,61,90,0.3);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow);
}
.tab-panel__text h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--dark);
}
.tab-panel__text > p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}
.curriculum-detail { display: flex; flex-direction: column; gap: 20px; }
.curriculum-point h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 6px;
}
.curriculum-point p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   RESULTS
   ============================================= */
.results {
  padding: 100px 0;
  background: var(--dark);
}
.results .section-label { background: rgba(255,61,90,0.2); }
.results .section-title { color: var(--white); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.result-card {
  background: var(--dark-3);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.06);
}
.result-card__avatar { margin-bottom: 16px; }
.result-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.result-card__name span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
  margin-top: 2px;
}
.result-card__income {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.result-card__income strong {
  font-size: 22px;
  font-weight: 900;
  color: var(--yellow);
}
.result-card__text {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* =============================================
   INSTRUCTORS
   ============================================= */
.instructors {
  padding: 100px 0;
  background: var(--white);
}
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.instructor-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  border: 1px solid #eee;
  transition: var(--transition);
}
.instructor-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.instructor-card__photo {
  width: 100px;
  margin: 0 auto 20px;
}
.instructor-card h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 6px;
}
.instructor-card__role {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 12px;
}
.instructor-card__meta {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 16px;
}
.instructor-card__career {
  text-align: left;
  list-style: disc;
  padding-left: 18px;
}
.instructor-card__career li {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

/* =============================================
   SUPPORT
   ============================================= */
.support {
  padding: 100px 0;
  background: var(--gray-light);
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.support-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}
.support-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.support-card__icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.support-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.support-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =============================================
   PRICING
   ============================================= */
.pricing {
  padding: 100px 0;
  background: var(--dark);
}
.pricing .section-title { color: var(--white); }
.pricing .section-desc { color: rgba(255,255,255,0.5); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--dark-3);
  border-radius: var(--radius);
  padding: 28px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  border-color: rgba(255,61,90,0.4);
  transform: translateY(-4px);
}
.pricing-card--gold {
  background: var(--dark-2);
  border: 2px solid var(--red);
  transform: scale(1.03);
}
.pricing-card--gold:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card--keep {
  border-color: rgba(255,214,0,0.3);
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-card__badge--keep { background: var(--yellow); color: var(--dark); }
.pricing-card__tier {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.pricing-card__label {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 20px;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.price-currency {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}
.price-amount {
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
}
.pricing-card__period {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 20px;
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.pricing-card__features li {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.pricing-card__features li:has(✗) {
  color: rgba(255,255,255,0.25);
}
.pricing-card__cta { width: 100%; text-align: center; font-size: 14px; padding: 12px 16px; }

/* =============================================
   FAQ
   ============================================= */
.faq {
  padding: 100px 0;
  background: var(--white);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid #eee;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  transition: var(--transition);
}
.faq-question::after {
  content: "+";
  font-size: 24px;
  color: var(--red);
  flex-shrink: 0;
  line-height: 1;
  transition: var(--transition);
}
.faq-item.open .faq-question::after { content: "−"; }
.faq-question:hover { background: var(--gray-light); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--red) 0%, #C0001F 100%);
  text-align: center;
}
.final-cta__title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.4;
}
.final-cta__desc {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  margin-bottom: 36px;
}
.final-cta .btn--hero {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.final-cta .btn--hero:hover {
  background: var(--yellow);
  color: var(--dark);
  transform: translateY(-3px);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark-2);
  padding: 48px 24px 32px;
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.footer__logo .logo__text { font-size: 18px; }
.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.footer__nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer__nav a:hover { color: var(--white); }
.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* =============================================
   INNER PAGE (Policy / Terms / Tokushoho)
   ============================================= */
.page-hero {
  background: var(--dark);
  padding: 120px 24px 64px;
  text-align: center;
}
.page-hero__label {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 12px;
}
.page-hero__title {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  color: var(--white);
}
.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px;
}
.legal-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 12px;
}
.legal-body ul { padding-left: 20px; list-style: disc; }
.legal-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.legal-body table th, .legal-body table td {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  text-align: left;
  line-height: 1.7;
}
.legal-body table th {
  background: var(--gray-light);
  font-weight: 700;
  color: var(--dark);
  width: 32%;
}
.legal-body table td { color: var(--text-muted); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .header__nav, .header__cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .sp-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--dark-2);
    border-top: 1px solid var(--border);
  }
  .sp-nav.open { display: flex; }
  .sp-nav a { color: rgba(255,255,255,0.8); font-size: 15px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__inner { padding: 60px 24px 40px; }
  .hero__visual { display: none; }
  .hero__actions { flex-direction: column; }
  .hero__stats { gap: 24px; }

  .about__inner,
  .tab-panel__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px;
  }
  .tab-panel__visual { order: -1; }

  .results-grid,
  .instructors-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .pricing-card--gold { transform: none; }

  .curriculum-tabs { flex-direction: column; align-items: stretch; }
  .tab-btn { text-align: center; }
}

/* =============================================
   IMAGE STYLES
   ============================================= */
.hero__img { width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; border-radius: 24px; max-height: 80vh; }
.about__img { width: 100%; height: auto; aspect-ratio: 4/3; border-radius: 16px; object-fit: cover; }
.tab-img { width: 100%; height: auto; aspect-ratio: 4/3; border-radius: 12px; object-fit: cover; }
.avatar-img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.instructor-img { width: 100%; height: auto; aspect-ratio: 1/1; border-radius: 50%; object-fit: cover; }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-body {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 24px;
}
.contact-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  text-align: center;
  margin-bottom: 48px;
}
.contact-msg {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 1.7;
}
.contact-msg--success {
  background: rgba(34,197,94,0.08);
  color: #15803d;
  border: 1px solid rgba(34,197,94,0.25);
}
.contact-msg--error {
  background: rgba(239,68,68,0.08);
  color: #b91c1c;
  border: 1px solid rgba(239,68,68,0.25);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.form-required {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--red);
  padding: 1px 8px;
  border-radius: 50px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: var(--font-ja);
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255,61,90,0.1);
}
.form-input::placeholder { color: #bbb; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-textarea { resize: vertical; min-height: 160px; }
.form-group--agree { flex-direction: row; align-items: center; }
.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
}
.form-checkbox a { color: var(--red); font-weight: 600; text-decoration: underline; }
.form-group--submit { align-items: center; margin-top: 8px; }
.btn--submit { min-width: 240px; padding: 18px 48px; font-size: 16px; }
