/*
Theme Name: デパそら Child
Template: Divi
*/

/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  このstyle.cssについて
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  front-page.phpがDiviのget_header/get_footerを
  使わないスタンドアロン構成になったため、
  !important による競合対策は一切不要になりました。
  CSSはほぼ元のHTMLファイルのまま使えます。
*/

/* ═══════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════ */
:root {
  --navy:         #1E3D6B;
  --navy-dark:    #152C50;
  --sky:          #7BB8D4;
  --sky-light:    #C4DFED;
  --salmon:       #E8A096;
  --salmon-soft:  #F3CEC9;
  --bg:           #F8F7F4;
  --bg-white:     #FFFFFF;
  --text:         #1C1C1C;
  --text-mid:     #555555;
  --text-light:   #888888;
  --border:       #E2E2DC;

  --font-serif: 'Noto Serif JP', '游明朝', serif;
  --font-sans:  'Noto Sans JP', 'ヒラギノ角ゴ ProN', sans-serif;

  --radius-card:  16px;
  --radius-btn:   8px;
  --shadow-card:  0 4px 24px rgba(30,61,107,0.09);
  --shadow-hover: 0 8px 40px rgba(30,61,107,0.16);
  --max-w:        1160px;
  --transition:   0.28s ease;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.depasora-front {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 15px;
  font-weight: 300;
}
.depasora-wrap img { display: block; max-width: 100%; }
.depasora-wrap a { color: inherit; text-decoration: none; }
.depasora-wrap ul { list-style: none; }
.depasora-wrap *, .depasora-wrap *::before, .depasora-wrap *::after {
  box-sizing: border-box;
}

/* ═══════════════════════════════════════
   UTILITY
═══════════════════════════════════════ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}
.section-subtitle {
  color: var(--text-mid);
  font-size: 14px;
  margin-top: 10px;
  max-width: 520px;
}
.depasora-wrap section { padding: 96px 0; }

/* ═══════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(248,247,244,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(30,61,107,0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 102px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.logo img { height: 80px; }
.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav a {
  font-size: 13px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.03em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.nav a:hover { border-color: var(--salmon); color: var(--navy-dark); }
.nav-reserve {
  background: var(--navy);
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-btn) !important;
  border-bottom: none !important;
  font-weight: 500 !important;
  transition: background var(--transition) !important;
}
.nav-reserve:hover { background: var(--sky) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.depasora.com/wp-content/uploads/2024/03/%E3%83%87%E3%83%91%E3%81%9D%E3%82%89%E3%83%93%E3%82%B8%E3%83%A5%E3%82%A2%E3%83%AB_202403.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,35,75,0.72) 0%,
    rgba(15,35,75,0.45) 55%,
    rgba(15,35,75,0.18) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding-top: 102px;
}
.hero-tag {
  display: inline-block;
  background: var(--salmon);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero-catch {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 20px;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.6),
    0 4px 24px rgba(0,0,0,0.45),
    0 0 80px rgba(30,61,107,0.5);
  letter-spacing: 0.04em;
}
.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 36px;
  letter-spacing: 0.05em;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--salmon); color: #fff !important; border: 2px solid var(--salmon); }
.btn-primary:hover { background: #d4887d; border-color: #d4887d; transform: translateY(-2px); }
.btn-outline { background: transparent; color: #fff !important; border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.12); color: #fff !important; }
.btn-navy { background: var(--navy); color: #fff !important; border: 2px solid var(--navy); }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--navy) !important; border: 2px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff !important; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: depasora-bounce 2s infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
}
@keyframes depasora-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ═══════════════════════════════════════
   TICKER
═══════════════════════════════════════ */
.ticker {
  background: var(--sky-light);
  border-bottom: 1px solid rgba(123,184,212,0.3);
  overflow: hidden;
}
.ticker-inner { display: flex; align-items: center; height: 42px; }
.ticker-label {
  background: var(--sky);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-text {
  padding: 0 20px;
  font-size: 13px;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about { background: var(--bg-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-text p { color: var(--text-mid); margin-top: 20px; line-height: 1.9; font-size: 14.5px; }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: var(--radius-card); object-fit: cover; aspect-ratio: 4/3; }
.about-img-badge {
  position: absolute;
  bottom: -16px; left: -16px;
  background: var(--salmon-soft);
  border: 3px solid #fff;
  border-radius: 12px;
  padding: 14px 20px;
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--navy);
  box-shadow: var(--shadow-card);
  line-height: 1.5;
  z-index: 1;
}
.about-img-badge strong { display: block; font-size: 22px; color: var(--salmon); font-weight: 700; }
.about-img-badge-2026 {
  position: absolute;
  bottom: -16px; right: -16px;
  background: var(--navy);
  border: 3px solid #fff;
  border-radius: 12px;
  padding: 14px 20px;
  font-family: var(--font-serif);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  box-shadow: var(--shadow-card);
  line-height: 1.5;
  z-index: 1;
}
.about-img-badge-2026 strong { display: block; font-size: 22px; color: var(--sky); font-weight: 700; }

/* ═══════════════════════════════════════
   PLANS
═══════════════════════════════════════ */
.plans { background: var(--bg); }
.plans-header { text-align: center; margin-bottom: 56px; }
.plans-header .section-subtitle { margin: 10px auto 0; }
.plans-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.plan-card {
  background: var(--bg-white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.plan-img { aspect-ratio: 16/9; overflow: hidden; }
.plan-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.plan-card:hover .plan-img img { transform: scale(1.04); }
.plan-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.plan-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--sky-light); color: var(--navy);
  border-radius: 50%; font-size: 11px; font-weight: 700;
  margin-bottom: 10px; flex-shrink: 0;
}
.plan-name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.35; }
.plan-desc { font-size: 13px; color: var(--text-mid); line-height: 1.75; margin-bottom: 18px; flex: 1; }
.plan-topics { display: flex; flex-direction: column; gap: 6px; margin-bottom: 22px; border-top: 1px solid var(--border); padding-top: 14px; }
.plan-topic { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-mid); }
.plan-topic::before { content: ''; display: block; width: 6px; height: 6px; background: var(--salmon); border-radius: 50%; flex-shrink: 0; }
.plan-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.plan-actions .btn { font-size: 13px; padding: 9px 18px; flex: 1; justify-content: center; }

/* ═══════════════════════════════════════
   USE CASES
═══════════════════════════════════════ */
.case { background: var(--bg-white); }
.case-header { text-align: center; margin-bottom: 48px; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.case-item { border-radius: 12px; overflow: hidden; position: relative; aspect-ratio: 4/3; }
.case-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.case-item:hover img { transform: scale(1.06); }
.case-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,61,107,0.65) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 18px;
}
.case-item-label { color: #fff; font-size: 13px; font-weight: 500; font-family: var(--font-serif); }
.case-youtube-thumb { text-decoration: none; display: block; }
.case-youtube-thumb:hover .case-item-overlay {
  background: linear-gradient(to top, rgba(30,61,107,0.82) 0%, rgba(30,61,107,0.2) 55%);
}
.case-item-overlay.yt-overlay {
  flex-direction: column; justify-content: center; align-items: center;
  background: rgba(0,0,0,0.42);
}
.yt-play-icon {
  font-size: 3rem; color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
  line-height: 1; margin-bottom: 8px;
  transition: transform 0.2s ease;
}
.case-youtube-thumb:hover .yt-play-icon { transform: scale(1.2); }

/* ═══════════════════════════════════════
   SNS / INSTAGRAM
═══════════════════════════════════════ */
.sns { background: var(--bg); }
.sns-header { text-align: center; margin-bottom: 48px; }
.sns-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.sns-insta-title { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.sns-insta-title svg { width: 22px; height: 22px; fill: var(--salmon); }
.sns-insta-title h3 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--navy); }
.sns-insta-title a { font-size: 12px; color: var(--sky); margin-left: auto; border-bottom: 1px solid var(--sky); }
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border); }
.news-item:first-child { border-top: 1px solid var(--border); }
.news-thumb { width: 72px; height: 72px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-info { flex: 1; }
.news-date { font-size: 11px; color: var(--text-light); letter-spacing: 0.05em; margin-bottom: 4px; }
.news-title { font-size: 13.5px; font-weight: 500; color: var(--navy); line-height: 1.5; transition: color var(--transition); }
.news-item:hover .news-title { color: var(--sky); }

/* チラシグリッド */
.flyer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.flyer-item { position: relative; border-radius: 10px; overflow: visible; cursor: zoom-in; }
.flyer-item img { width: 100%; border-radius: 10px; display: block; box-shadow: var(--shadow-card); transition: transform var(--transition), box-shadow var(--transition); }
.flyer-item:hover img { transform: scale(1.03); box-shadow: var(--shadow-hover); }
.flyer-item::after { content: attr(data-label); position: absolute; bottom: 8px; left: 0; right: 0; text-align: center; font-size: 11px; color: rgba(255,255,255,0.9); background: rgba(30,61,107,0.65); padding: 4px 8px; border-radius: 0 0 10px 10px; pointer-events: none; }
.flyer-zoom-overlay { display: none; position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,0.82); align-items: center; justify-content: center; cursor: zoom-out; padding: 24px; }
.flyer-zoom-overlay.active { display: flex; }
.flyer-zoom-overlay img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 80px rgba(0,0,0,0.5); }

/* ═══════════════════════════════════════
   EVENT & WORKSHOP
═══════════════════════════════════════ */
.event-workshop { background: var(--salmon-soft); }
.event-workshop-header { text-align: center; margin-bottom: 48px; }
.event-workshop-header .section-subtitle { text-align: center; max-width: 640px; margin: 12px auto 0; }
.event-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.event-card { background: var(--bg-white); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); transition: transform var(--transition), box-shadow var(--transition); }
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.event-card-img { aspect-ratio: 4/3; overflow: hidden; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.event-card:hover .event-card-img img { transform: scale(1.05); }
.event-card-body { padding: 20px 22px 24px; }
.event-tag { display: inline-block; background: var(--sky-light); color: var(--navy); font-size: 10.5px; font-weight: 500; letter-spacing: 0.1em; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.event-card-body h3 { font-family: var(--font-serif); font-size: 1rem; color: var(--navy); margin-bottom: 8px; }
.event-card-body p { font-size: 13px; color: var(--text-mid); line-height: 1.8; }
.event-cta { text-align: center; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq { background: var(--bg-white); }
.faq-header { text-align: center; margin-bottom: 52px; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-list details { border-bottom: 1px solid var(--border); }
.faq-list details:first-of-type { border-top: 1px solid var(--border); }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 22px 4px;
  cursor: pointer; list-style: none;
  font-family: var(--font-serif); font-size: 15px; font-weight: 600;
  color: var(--navy); user-select: none;
  transition: color var(--transition);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--sky); }
.summary-q { display: flex; align-items: flex-start; gap: 12px; }
.q-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: var(--sky-light); color: var(--navy);
  border-radius: 50%; font-size: 12px; font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.summary-icon {
  width: 28px; height: 28px;
  border: 2px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all var(--transition); color: var(--navy);
}
.summary-icon::after { content: '+'; font-size: 18px; line-height: 1; font-weight: 300; }
.faq-list details[open] .summary-icon { background: var(--navy); border-color: var(--navy); color: #fff; }
.faq-list details[open] .summary-icon::after { content: '−'; }
.faq-list details[open] summary { color: var(--navy); }
.faq-answer {
  padding: 4px 4px 24px 36px;
  font-size: 14px; color: var(--text-mid); line-height: 1.9;
  animation: depasora-fadeSlide 0.22s ease;
}
@keyframes depasora-fadeSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-answer a { color: var(--sky); border-bottom: 1px solid var(--sky); }

/* ═══════════════════════════════════════
   ACCESS
═══════════════════════════════════════ */
.access { background: var(--bg); }
.access-header { text-align: center; margin-bottom: 52px; }
.access-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.access-info h3 { font-family: var(--font-serif); font-size: 1rem; color: var(--navy); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--sky-light); }
.access-row { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 13.5px; }
.access-row:last-child { border-bottom: none; }
.access-key { font-weight: 500; color: var(--navy); width: 80px; flex-shrink: 0; font-size: 12px; padding-top: 2px; }
.access-val { color: var(--text-mid); line-height: 1.7; }
.access-val .highlight { color: var(--salmon); font-weight: 500; }
.access-map { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-card); height: 340px; }
.access-map iframe { width: 100%; height: 100%; border: none; display: block; }
.access-note { margin-top: 18px; background: var(--sky-light); border-radius: 10px; padding: 14px 16px; font-size: 12.5px; color: var(--navy); line-height: 1.7; }

/* ═══════════════════════════════════════
   CONTACT / CF7
═══════════════════════════════════════ */
.contact { background: var(--bg-white); }
.contact-header { text-align: center; margin-bottom: 52px; }
.contact-wrap { max-width: 640px; margin: 0 auto; }
.contact-wrap .form-group,
.contact-wrap .wpcf7-form p { margin-bottom: 20px; }
.contact-wrap label,
.contact-wrap .wpcf7-form label {
  display: block; font-size: 12.5px; font-weight: 500;
  color: var(--navy); margin-bottom: 6px; letter-spacing: 0.03em;
}
.required { display: inline-block; background: var(--salmon); color: #fff; font-size: 10px; padding: 1px 6px; border-radius: 3px; margin-left: 6px; vertical-align: middle; }
.contact-wrap input[type="text"],
.contact-wrap input[type="email"],
.contact-wrap textarea,
.contact-wrap select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--font-sans); font-size: 14px;
  color: var(--text); background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none; -webkit-appearance: none;
}
.contact-wrap input:focus,
.contact-wrap textarea:focus,
.contact-wrap select:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(123,184,212,0.18);
  background: #fff;
}
.contact-wrap select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231E3D6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.contact-wrap textarea { min-height: 120px; resize: vertical; }
.contact-wrap .form-submit,
.contact-wrap .wpcf7-form p:last-child { text-align: center; margin-top: 28px; }
.contact-wrap input[type="submit"],
.contact-wrap .wpcf7-submit {
  display: inline-flex; align-items: center;
  padding: 14px 48px;
  background: var(--navy); color: #fff;
  border: 2px solid var(--navy); border-radius: var(--radius-btn);
  font-size: 15px; font-weight: 500; cursor: pointer;
  transition: all var(--transition);
}
.contact-wrap input[type="submit"]:hover,
.contact-wrap .wpcf7-submit:hover { background: var(--navy-dark); transform: translateY(-2px); }
.contact-wrap .wpcf7-not-valid-tip { color: var(--salmon); font-size: 12px; margin-top: 4px; }
.contact-wrap .wpcf7-response-output { border-color: var(--sky); color: var(--navy); font-size: 13px; padding: 10px 14px; border-radius: 6px; margin-top: 16px; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer { background: var(--navy); color: rgba(255,255,255,0.85); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-logo img { height: 48px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-tagline { font-size: 12.5px; color: rgba(255,255,255,0.6); line-height: 1.7; }
.footer-col h4 { font-family: var(--font-serif); font-size: 13px; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 10px; transition: color var(--transition); }
.footer-col a:hover { color: var(--sky-light); }
.footer-sns { display: flex; gap: 12px; margin-top: 16px; }
.footer-sns a { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border: 1.5px solid rgba(255,255,255,0.25); border-radius: 10px; font-size: 24px; transition: all var(--transition); color: rgba(255,255,255,0.85); margin-bottom: 0; }
.footer-sns a:hover { background: var(--sky); border-color: var(--sky); color: #fff; }
.footer-bottom { padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.4); margin-bottom: 0; }
.footer-legal a:hover { color: rgba(255,255,255,0.75); }

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.18s; }
.fade-up:nth-child(4) { transition-delay: 0.26s; }
.fade-up:nth-child(5) { transition-delay: 0.34s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .event-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .depasora-wrap section { padding: 72px 0; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-badge { bottom: 12px; left: 12px; }
  .about-img-badge-2026 { bottom: 12px; right: 12px; }
  .plans-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .access-grid { grid-template-columns: 1fr; }
  .sns-grid { grid-template-columns: 1fr; }
  .event-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-catch { font-size: clamp(1.7rem, 7vw, 2.6rem); }
}
@media (max-width: 480px) {
  .case-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { justify-content: center; }
}