/* =============================================
   療育センターエコルド ネクスト - メインスタイル
   ロゴカラー：黄→コーラル→ピンク グラデーション
   ============================================= */

/* ---------- CSS変数 ---------- */
:root {
  /* ロゴグラデーションカラー */
  --grad-yellow:  #FFE566;
  --grad-orange:  #FFAD6B;
  --grad-coral:   #FF8C7A;
  --grad-pink:    #F06292;
  --grad-deep:    #E91E8C;

  /* ロゴグレー */
  --logo-gray:    #9AA0A6;
  --logo-gray-dk: #6B7280;

  /* 背景・ベース */
  --bg-white:     #FFFFFF;
  --bg-soft:      #FFF8F8;
  --bg-cream:     #FFF9F0;
  --bg-gray:      #F7F8FA;

  /* テキスト */
  --text-dark:    #3D3D3D;
  --text-mid:     #6B7280;
  --text-light:   #9CA3AF;

  /* アクセント（ロゴから抽出） */
  --pink:         #F06292;
  --pink-light:   #FCE4EC;
  --pink-pale:    #FFF0F6;
  --coral:        #FF8C7A;
  --coral-pale:   #FFF4F2;
  --orange:       #FFAD6B;
  --orange-pale:  #FFF7F0;
  --yellow:       #FFE566;
  --yellow-pale:  #FFFDF0;

  /* ボーダー */
  --border:       #F0E8EC;
  --border-mid:   #E8D8E0;

  /* シャドウ */
  --shadow-xs:    0 2px 8px  rgba(240, 98, 146, 0.08);
  --shadow-sm:    0 4px 16px rgba(240, 98, 146, 0.12);
  --shadow-md:    0 8px 32px rgba(240, 98, 146, 0.16);
  --shadow-lg:    0 16px 56px rgba(240, 98, 146, 0.20);

  /* 角丸 */
  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   28px;
  --r-xl:   40px;
  --r-full: 9999px;

  /* フォント */
  --font-main:   'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  --font-serif:  'Zen Maru Gothic', 'Noto Serif JP', serif;

  --transition: 0.3s ease;
  --header-h:   70px;
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.8;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ---------- グラデーションユーティリティ ---------- */
.grad-text {
  background: linear-gradient(135deg, var(--grad-yellow), var(--grad-coral), var(--grad-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-bg {
  background: linear-gradient(135deg, var(--grad-yellow), var(--grad-orange), var(--grad-pink));
}

/* ---------- コンテナ ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- セクション共通 ---------- */
.section { padding: 96px 0; }
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  background: linear-gradient(135deg, var(--grad-orange), var(--grad-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}
.section-title::after {
  content: '';
  display: block;
  width: 44px;
  height: 4px;
  background: linear-gradient(90deg, var(--grad-yellow), var(--grad-pink));
  border-radius: var(--r-full);
  margin: 14px auto 0;
}
.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-mid);
  margin-top: 8px;
  font-weight: 400;
}

/* =============================================
   ヘッダー
   ============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  transition: box-shadow var(--transition);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-logo img { height: 42px; width: auto; }

/* NEXTバッジ：ロゴグラデを使用 */
.header-next-badge, .footer-next-badge {
  background: linear-gradient(135deg, var(--grad-orange), var(--grad-pink));
  color: var(--bg-white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 11px;
  border-radius: var(--r-full);
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(240,98,146,0.3);
}

#main-nav ul {
  display: flex;
  gap: 2px;
  align-items: center;
}
#main-nav ul li a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 7px 13px;
  border-radius: var(--r-full);
  transition: var(--transition);
  white-space: nowrap;
}
#main-nav ul li a:hover {
  color: var(--pink);
  background: var(--pink-pale);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--grad-orange), var(--grad-pink));
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--bg-white);
  border-bottom: 2px solid var(--pink-light);
  box-shadow: var(--shadow-md);
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu ul { padding: 12px 0; }
.mobile-menu ul li a {
  display: block;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-menu ul li a:hover { background: var(--pink-pale); color: var(--pink); }

/* =============================================
   ヒーローセクション
   ============================================= */
#hero-section {
  min-height: 100vh;
  padding-top: var(--header-h);
  background: linear-gradient(160deg, #FFFDF8 0%, #FFF8F4 35%, #FFF0F6 70%, #FFF5F8 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 背景の柔らかい円 */
.hero-bg-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.22;
  animation: blobFloat 10s ease-in-out infinite;
}
.blob-1 { width: 480px; height: 480px; background: var(--grad-pink);   top: -180px; right: -120px; animation-delay: 0s; }
.blob-2 { width: 320px; height: 320px; background: var(--grad-yellow); bottom: 0;   left: -80px;  animation-delay: 3s; }
.blob-3 { width: 240px; height: 240px; background: var(--grad-orange); top: 40%;    left: 40%;    animation-delay: 6s; }
@keyframes blobFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-24px) scale(1.04); }
}

.hero-inner {
  max-width: 1100px;
  width: 100%;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── ヒーロー左側 ── */
.hero-text-area { display: flex; flex-direction: column; gap: 20px; }

/* エリア・定員バッジ（最上部） */
.hero-top-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--r-full);
  border: 1.5px solid;
  white-space: nowrap;
}
.hero-chip-area {
  color: var(--pink);
  border-color: var(--pink);
  background: var(--pink-pale);
}
.hero-chip-capacity {
  color: var(--coral);
  border-color: var(--coral);
  background: var(--coral-pale);
}
.hero-chip-opening {
  color: var(--text-mid);
  border-color: var(--border-mid);
  background: var(--bg-gray);
  font-weight: 500;
}

/* 開業・工事バッジ */
.hero-status-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--r-full);
  animation: badgePulse 2.5s ease-in-out infinite;
}
.hero-badge-open {
  background: linear-gradient(135deg, var(--grad-orange), var(--grad-pink));
  color: var(--bg-white);
  box-shadow: 0 3px 14px rgba(240,98,146,0.35);
}
.hero-badge-wip {
  background: var(--orange-pale);
  color: var(--coral);
  border: 1.5px solid var(--coral);
  animation-delay: 0.5s;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.025); }
}

.hero-title {
  font-size: clamp(1.55rem, 3.8vw, 2.3rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-dark);
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--grad-coral), var(--grad-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.7;
}
.hero-subtitle strong {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}

/* ボタン共通 */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-size: 0.92rem;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--grad-orange), var(--grad-pink));
  color: var(--bg-white);
  box-shadow: 0 4px 18px rgba(240,98,146,0.38);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,98,146,0.50);
}
.btn-outline {
  border: 2px solid var(--pink);
  color: var(--pink);
  background: var(--bg-white);
}
.btn-outline:hover {
  background: var(--pink-pale);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ── ヒーロー右側 画像 ── */
.hero-image-area { position: relative; }
.hero-img-frame { position: relative; }
.hero-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
}

/* ロゴグラデーションのボーダーフレーム */
.hero-img-frame::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--r-xl) + 4px);
  background: linear-gradient(135deg, var(--grad-yellow), var(--grad-coral), var(--grad-pink));
  z-index: -1;
  opacity: 0.5;
}

.hero-float-card {
  position: absolute;
  background: var(--bg-white);
  border-radius: var(--r-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
  animation: floatCard 3.5s ease-in-out infinite;
  border: 1.5px solid var(--border);
}
.hero-float-card i { font-size: 1.15rem; }
.hero-float-card-1 {
  bottom: -20px; left: -24px;
  color: var(--pink);
  animation-delay: 0s;
}
.hero-float-card-1 i { color: var(--pink); }
.hero-float-card-2 {
  top: -16px; right: -20px;
  color: var(--coral);
  animation-delay: 1s;
}
.hero-float-card-2 i { color: var(--orange); }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}

/* スクロールインジケーター */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--text-light);
  z-index: 1;
}
.scroll-line {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, var(--grad-pink), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* 進捗バナー */
.progress-banner {
  background: linear-gradient(135deg, var(--grad-orange), var(--grad-pink));
  color: var(--bg-white);
  padding: 13px 0;
}
.progress-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
}
.progress-banner i { animation: shake 1.8s ease-in-out infinite; }
@keyframes shake {
  0%, 100% { transform: rotate(0); }
  20%       { transform: rotate(-12deg); }
  40%       { transform: rotate(12deg); }
}
.progress-banner-link {
  background: rgba(255,255,255,0.22);
  padding: 3px 14px;
  border-radius: var(--r-full);
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
}
.progress-banner-link:hover { background: rgba(255,255,255,0.38); }

/* =============================================
   Aboutセクション
   ============================================= */
#about { background: var(--bg-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 52px;
}
.about-lead {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 18px;
  line-height: 1.85;
}
.about-text p {
  color: var(--text-mid);
  margin-bottom: 18px;
  line-height: 1.95;
  font-size: 0.93rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #FFF8F4, #FFF0F6);
  border-radius: var(--r-md);
  border-left: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.about-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--grad-orange), var(--grad-pink));
  border-radius: 3px 0 0 3px;
}
.feature-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-orange), var(--grad-pink));
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-white);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.about-features li > div:last-child {
  display: flex; flex-direction: column; gap: 2px;
}
.about-features li strong {
  font-size: 0.88rem; font-weight: 700; color: var(--text-dark);
}
.about-features li span {
  font-size: 0.8rem; color: var(--text-mid);
}

.about-images { display: grid; grid-template-rows: 1fr auto; gap: 12px; }
.about-img-main img, .about-img-sub img {
  width: 100%; object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.about-img-main img { height: 280px; }
.about-img-sub  img { height: 155px; }

/* 施設情報カード */
.info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.info-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.info-card-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-pale), var(--pink-pale));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  /* グラデーションアイコン */
  background: linear-gradient(135deg, var(--grad-orange), var(--grad-pink));
  color: var(--bg-white);
}
.info-card-body h3 {
  font-size: 0.75rem; font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}
.info-card-body p {
  font-size: 0.87rem; font-weight: 500;
  color: var(--text-dark);
  line-height: 1.65;
}
.info-card-body a { color: var(--pink); }
.opening-note { font-size: 0.74rem; color: var(--coral); font-weight: 700; }

/* =============================================
   コンセプトセクション
   ============================================= */
.section-concept {
  background: linear-gradient(160deg, var(--bg-cream) 0%, var(--bg-soft) 50%, #FFF5F9 100%);
  position: relative;
  overflow: hidden;
}
.concept-bg-deco { position: absolute; inset: 0; pointer-events: none; }
.deco-circle {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.1;
}
.deco-c1 { width: 500px; height: 500px; background: var(--grad-pink);   top: -200px; right: -200px; }
.deco-c2 { width: 350px; height: 350px; background: var(--grad-yellow); bottom: -150px; left: -150px; }

.concept-main-message { margin-bottom: 52px; }
.concept-quote {
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  padding: 40px 52px;
  background: var(--bg-white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
}
.concept-quote .fa-quote-left {
  display: block;
  font-size: 2rem;
  color: var(--pink-light);
  margin-bottom: 16px;
}
.concept-quote .fa-quote-right {
  display: block;
  font-size: 2rem;
  color: var(--pink-light);
  margin-top: 16px;
  text-align: right;
}
.concept-quote p {
  font-size: 1.08rem; line-height: 2.2;
  color: var(--text-dark);
  font-family: var(--font-serif);
}
.concept-quote strong { color: var(--pink); }

.concept-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
.concept-card {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.concept-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.concept-card-icon { position: relative; height: 190px; overflow: hidden; }
.concept-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.concept-card:hover .concept-img { transform: scale(1.06); }
.concept-icon-overlay {
  position: absolute; bottom: 14px; right: 14px;
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--grad-orange), var(--grad-pink));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-white);
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(240,98,146,0.4);
}
.concept-card h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--text-dark);
  padding: 20px 20px 8px;
  line-height: 1.5;
}
.concept-card p {
  font-size: 0.865rem; color: var(--text-mid);
  padding: 0 20px 22px;
  line-height: 1.9;
}

/* エコルドとの関係 */
.ecold-relation {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  padding: 40px 48px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
}
.ecold-relation-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.ecold-relation-logo img { width: 190px; }
.ecold-relation-text h3 {
  font-size: 1.15rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 14px; line-height: 1.5;
}
.ecold-relation-text p {
  font-size: 0.88rem; color: var(--text-mid);
  margin-bottom: 10px; line-height: 1.95;
}
.ecold-relation-text strong { color: var(--pink); }

/* =============================================
   サービスセクション
   ============================================= */
#services { background: var(--bg-gray); }

.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 44px;
}
.service-card {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 0;
}
.service-number {
  font-size: 2.8rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--grad-yellow), var(--grad-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.35;
}
.service-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--grad-orange), var(--grad-pink));
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-white);
  font-size: 1.3rem;
  box-shadow: 0 4px 14px rgba(240,98,146,0.3);
}
.service-card-img {
  height: 190px; overflow: hidden;
  margin: 12px 22px;
  border-radius: var(--r-md);
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 0 22px 26px; }
.service-card-body h3 {
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--grad-coral), var(--grad-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.service-target {
  font-size: 0.76rem; color: var(--text-light);
  background: var(--bg-gray);
  padding: 3px 10px; border-radius: var(--r-sm);
  margin-bottom: 12px; display: inline-block;
}
.service-card-body > p {
  font-size: 0.87rem; color: var(--text-mid);
  margin-bottom: 14px; line-height: 1.9;
}
.service-list { display: flex; flex-direction: column; gap: 7px; }
.service-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.87rem; color: var(--text-dark);
}
.service-list li i { color: var(--pink); }

/* 共通サポート */
.common-support {
  background: linear-gradient(135deg, #FFF5F0, #FFF0F6);
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1.5px solid var(--border);
}
.common-support-title {
  font-size: 1.05rem; font-weight: 700; color: var(--text-dark);
  margin-bottom: 26px;
  display: flex; align-items: center; gap: 10px;
}
.common-support-title i { color: var(--pink); }
.common-support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.support-item {
  text-align: center;
  padding: 22px 14px;
  background: var(--bg-white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.support-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.support-item-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--grad-orange), var(--grad-pink));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-white); font-size: 1.25rem;
  margin: 0 auto 14px;
  box-shadow: 0 4px 14px rgba(240,98,146,0.28);
}
.support-item h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; }
.support-item p  { font-size: 0.78rem; color: var(--text-mid); line-height: 1.65; }

/* =============================================
   開業進捗セクション（矢印ステッパー）
   ============================================= */
.section-progress {
  background: linear-gradient(160deg, var(--bg-white), var(--orange-pale));
}

/* カウントダウン */
.countdown-area { text-align: center; margin-bottom: 64px; }
.countdown-label {
  font-size: 0.95rem; font-weight: 700; color: var(--text-mid); margin-bottom: 20px;
}
.countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-white);
  border-radius: var(--r-xl);
  padding: 22px 36px;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
}
.countdown-unit {
  display: flex; flex-direction: column; align-items: center;
  min-width: 68px;
}
.countdown-num {
  font-size: 2.9rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--grad-coral), var(--grad-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block; min-width: 2ch; text-align: center;
  font-variant-numeric: tabular-nums;
}
.countdown-unit-label {
  font-size: 0.7rem; color: var(--text-light);
  margin-top: 5px; font-weight: 600;
}
.countdown-sep {
  font-size: 2.2rem; font-weight: 900;
  color: var(--border-mid);
  line-height: 1; padding-bottom: 22px;
}
.countdown-date {
  margin-top: 14px; font-size: 0.88rem; color: var(--text-light);
}

/* ── 矢印ステッパー ── */
.progress-stepper-wrap {
  margin-bottom: 60px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.progress-stepper {
  display: flex;
  align-items: stretch;
  min-width: 640px;
  gap: 0;
}

/* 矢印ステップ本体 */
.arrow-step {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}

/* 矢印形の背景 */
.arrow-body {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  margin-bottom: 14px;
}

/* CSS矢印（台形＋三角）*/
.arrow-shape {
  width: 100%;
  height: 64px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0% 0%, calc(100% - 20px) 0%, 100% 50%, calc(100% - 20px) 100%, 0% 100%, 20px 50%);
}

/* 最初のステップは左端を垂直に */
.arrow-step:first-child .arrow-shape {
  clip-path: polygon(0% 0%, calc(100% - 20px) 0%, 100% 50%, calc(100% - 20px) 100%, 0% 100%);
}
/* 最後のステップは右端を垂直に */
.arrow-step:last-child .arrow-shape {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 20px 50%);
}

/* 状態別カラー */
.arrow-step.step-done .arrow-shape {
  background: linear-gradient(135deg, var(--grad-orange), var(--grad-pink));
}
.arrow-step.step-active .arrow-shape {
  background: linear-gradient(135deg, var(--grad-yellow), var(--grad-coral), var(--grad-pink));
  animation: arrowPulse 2s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(240,98,146,0.4);
}
@keyframes arrowPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(240,98,146,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(240,98,146,0.7), 0 0 0 4px rgba(240,98,146,0.12); }
}
.arrow-step.step-pending .arrow-shape {
  background: var(--bg-gray);
  border: none;
}
.arrow-step.step-pending .arrow-shape::after {
  /* 破線枠風 */
}

/* 矢印内テキスト */
.arrow-shape-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px 0 28px;
  position: relative;
  z-index: 1;
}
.arrow-step:first-child .arrow-shape-inner { padding-left: 18px; }
.arrow-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.arrow-step.step-done   .arrow-icon,
.arrow-step.step-active .arrow-icon { color: var(--bg-white); }
.arrow-step.step-pending .arrow-icon { color: var(--text-light); }

.arrow-label {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.arrow-step.step-done   .arrow-label,
.arrow-step.step-active .arrow-label { color: var(--bg-white); }
.arrow-step.step-pending .arrow-label { color: var(--text-light); }

/* 現在地バッジ */
.arrow-step.step-active .arrow-label::after {
  content: '← 今ここ！';
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  margin-top: 2px;
}

/* ステップ下部の説明 */
.step-desc-box {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--r-md);
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.65;
  text-align: center;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow-step.step-done   .step-desc-box { background: linear-gradient(135deg, #FFF4F0, #FFF0F5); border: 1.5px solid var(--border); }
.arrow-step.step-active .step-desc-box {
  background: linear-gradient(135deg, var(--orange-pale), var(--pink-pale));
  border: 1.5px solid var(--coral);
  color: var(--text-dark);
  font-weight: 600;
}
.arrow-step.step-pending .step-desc-box { background: var(--bg-gray); border: 1.5px dashed var(--border-mid); opacity: 0.65; }

/* 進捗メッセージボックス */
.progress-message-box {
  background: var(--bg-white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  border: 1.5px solid var(--border);
}
.progress-msg-img img {
  width: 100%; height: 100%; object-fit: cover; min-height: 280px;
}
.progress-msg-text {
  padding: 40px 44px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 14px;
}
.progress-msg-text h3 {
  font-size: 1.25rem; font-weight: 700; color: var(--text-dark);
}
.progress-msg-text p {
  font-size: 0.88rem; color: var(--text-mid); line-height: 1.95;
}

/* =============================================
   センター長セクション
   ============================================= */
.section-director {
  background: linear-gradient(160deg, var(--bg-white), var(--pink-pale));
}
.director-profile {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
}
.director-photo-wrap { position: relative; flex-shrink: 0; }
.director-photo {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
}
/* グラデーションフレーム */
.director-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--r-xl) + 4px);
  background: linear-gradient(135deg, var(--grad-yellow), var(--grad-coral), var(--grad-pink));
  z-index: -1;
  opacity: 0.6;
}
.director-name-plate {
  position: absolute;
  bottom: -18px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--grad-orange), var(--grad-pink));
  color: var(--bg-white);
  padding: 10px 28px;
  border-radius: var(--r-md);
  text-align: center;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.director-title-label { display: block; font-size: 0.7rem; opacity: 0.85; }
.director-name        { display: block; font-size: 1.05rem; font-weight: 700; margin-top: 2px; }

.director-message-inner { padding-top: 20px; }
.director-message-inner h3 {
  font-size: 1.45rem; font-weight: 700; color: var(--text-dark);
  line-height: 1.55; margin-bottom: 22px;
  font-family: var(--font-serif);
}
.director-message-inner h3 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--grad-coral), var(--grad-pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.director-message-inner p {
  font-size: 0.9rem; color: var(--text-mid);
  line-height: 2.05; margin-bottom: 14px;
}
.director-message-inner strong { color: var(--pink); font-weight: 700; }

/* プロフィール一覧 */
.director-profile-list {
  display: flex; flex-direction: column; gap: 8px;
  margin: 20px 0;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--orange-pale), var(--pink-pale));
  border-radius: var(--r-md);
  border-left: 3px solid;
  border-image: linear-gradient(to bottom, var(--grad-orange), var(--grad-pink)) 1;
}
.director-profile-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.84rem; color: var(--text-dark); line-height: 1.6;
}
.director-profile-list li i {
  color: var(--pink); flex-shrink: 0; margin-top: 3px; font-size: 0.78rem;
}

.director-sign {
  margin-top: 24px; padding-top: 18px;
  border-top: 1.5px solid var(--border);
  display: flex; flex-direction: column; gap: 3px;
}
.director-sign span  { font-size: 0.76rem; color: var(--text-light); }
.director-sign strong { font-size: 1.05rem; color: var(--text-dark); }

/* =============================================
   Instagramギャラリー
   ============================================= */
.section-gallery { background: var(--bg-gray); }

.instagram-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.instagram-embed-container {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

/* Instagram公式blockquoteのリセット */
.instagram-embed-container .instagram-media {
  border-radius: 18px !important;
  box-shadow: 0 6px 36px rgba(240, 98, 146, 0.15) !important;
}

/* フォローボタン */
.instagram-follow-btn-wrap {
  display: flex;
  justify-content: center;
}

.instagram-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--grad-yellow) 0%, var(--grad-orange) 40%, var(--grad-pink) 100%);
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--r-full);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(240, 98, 146, 0.35);
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.instagram-follow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(240, 98, 146, 0.45);
  opacity: 0.92;
}

.ig-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #fff;
}

/* 注意書き */
.instagram-note {
  font-size: 0.82rem;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.7;
}

.instagram-note i {
  margin-right: 5px;
  color: var(--accent-pink);
}

.instagram-note a {
  color: var(--accent-pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =============================================
   FAQ
   ============================================= */
#faq { background: var(--bg-white); }
.faq-list {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: var(--bg-white);
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition);
}
.faq-item:has(.faq-answer.open) { border-color: var(--coral); box-shadow: var(--shadow-sm); }
.faq-question {
  width: 100%;
  display: flex; align-items: center;
  justify-content: space-between; gap: 14px;
  padding: 18px 22px;
  text-align: left;
  font-size: 0.93rem; font-weight: 600;
  color: var(--text-dark);
  background: none;
  transition: var(--transition);
}
.faq-question:hover { background: var(--orange-pale); }
.faq-icon {
  font-size: 0.82rem; color: var(--pink); flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .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), padding 0.3s ease;
  padding: 0 22px;
}
.faq-answer.open { max-height: 300px; padding: 0 22px 18px; }
.faq-answer p {
  font-size: 0.875rem; color: var(--text-mid); line-height: 1.95;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* =============================================
   お問い合わせ
   ============================================= */
.section-contact {
  background: linear-gradient(160deg, var(--bg-cream), var(--bg-white));
}
.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-img img {
  width: 100%; border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 26px;
  height: 220px; object-fit: cover; object-position: top;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--grad-orange), var(--grad-pink));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-white); font-size: 1rem; flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(240,98,146,0.3);
}
.contact-detail-label { display: block; font-size: 0.74rem; color: var(--text-light); margin-bottom: 3px; }
.contact-phone {
  display: block; font-size: 1.55rem; font-weight: 900;
  background: linear-gradient(135deg, var(--grad-coral), var(--grad-pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1; margin-bottom: 4px;
}
.contact-detail-note { display: block; font-size: 0.7rem; color: var(--coral); }
.contact-detail-value { font-size: 0.9rem; color: var(--text-dark); font-weight: 500; line-height: 1.65; }

/* フォーム */
.contact-form-panel {
  background: var(--bg-white);
  border-radius: var(--r-xl); padding: 34px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group  { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 0.84rem; font-weight: 600; color: var(--text-dark);
  display: flex; align-items: center; gap: 6px;
}
.required {
  font-size: 0.68rem;
  background: linear-gradient(135deg, var(--grad-coral), var(--grad-pink));
  color: var(--bg-white);
  padding: 1px 7px; border-radius: var(--r-full); font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9rem; color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(240,98,146,0.12);
}
.form-group textarea { resize: vertical; }
.form-error { font-size: 0.76rem; color: var(--coral); font-weight: 500; min-height: 1em; }

.form-success { text-align: center; padding: 48px 24px; }
.success-icon { font-size: 2.8rem; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--grad-orange), var(--grad-pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.form-success h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.form-success p   { font-size: 0.88rem; color: var(--text-mid); }

/* =============================================
   フッター
   ============================================= */
#site-footer { background: #3D3D3D; color: rgba(255,255,255,0.82); }
.footer-top { padding: 56px 0 38px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-top-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 44px; align-items: start;
}
.footer-logo-area { display: flex; flex-direction: column; gap: 10px; }
.footer-logo-area .footer-next-badge { align-self: flex-start; }
.footer-logo { width: 155px; filter: brightness(0) invert(1) opacity(0.85); }
/* エコルドネクストロゴ：白背景ありのためfilterを解除し、背景を白で囲む */
.footer-logo-ecold {
  filter: none;
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  width: 160px;
}
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.75; }
.footer-links h4,
.footer-info  h4 {
  font-size: 0.82rem; font-weight: 700;
  background: linear-gradient(135deg, var(--grad-orange), var(--grad-pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px; letter-spacing: 0.04em;
}
.footer-links ul,
.footer-info  ul { display: flex; flex-direction: column; gap: 7px; }
.footer-links ul li a {
  font-size: 0.83rem; color: rgba(255,255,255,0.58);
  transition: var(--transition); display: block;
}
.footer-links ul li a:hover { color: rgba(255,255,255,0.9); padding-left: 4px; }
.footer-info ul li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.8rem; color: rgba(255,255,255,0.58); line-height: 1.65;
}
.footer-info ul li i { color: var(--coral); margin-top: 3px; flex-shrink: 0; }
.footer-info ul li a { color: var(--coral); }
.footer-bottom { padding: 18px 0; text-align: center; }
.footer-partner { font-size: 0.76rem; color: rgba(255,255,255,0.4); margin-bottom: 5px; }
.footer-copy    { font-size: 0.72rem; color: rgba(255,255,255,0.3); }

/* トップへ戻るボタン */
#back-to-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--grad-orange), var(--grad-pink));
  color: var(--bg-white);
  border-radius: 50%;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 900;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-to-top:hover   { transform: translateY(-3px) !important; box-shadow: var(--shadow-lg); }

/* =============================================
   ヘッダーロゴテキスト追加分
   ============================================= */
.header-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.header-logo-sub {
  font-size: 0.68rem;
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.header-logo-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ナビ：お問い合わせボタン */
.nav-contact-btn {
  background: linear-gradient(135deg, var(--grad-orange), var(--grad-pink)) !important;
  color: var(--bg-white) !important;
  padding: 7px 16px !important;
  border-radius: var(--r-full) !important;
  box-shadow: 0 3px 12px rgba(240,98,146,0.3);
  transition: var(--transition) !important;
}
.nav-contact-btn:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 5px 18px rgba(240,98,146,0.45) !important;
  background: linear-gradient(135deg, var(--grad-orange), var(--grad-pink)) !important;
  color: var(--bg-white) !important;
}

/* ヒーロー：ポイントリスト */
.hero-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.75);
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(8px);
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-dark);
}
.hero-points li i {
  color: var(--pink);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* スマホ改行用 */
.sp-only { display: none; }
@media (max-width: 480px) { .sp-only { display: inline; } }

/* =============================================
   スクロールアニメーション
   ============================================= */
.fade-in-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   レスポンシブ
   ============================================= */
@media (max-width: 1024px) {
  .info-cards { grid-template-columns: repeat(2, 1fr); }
  .common-support-grid { grid-template-columns: repeat(2, 1fr); }
  .director-profile { grid-template-columns: 300px 1fr; gap: 36px; }
  .footer-top-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-logo-area { grid-column: span 2; }
}
@media (max-width: 768px) {
  :root { --header-h: 62px; }
  .section { padding: 60px 0; }
  #main-nav { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding: 36px 20px 72px; }
  .hero-image-area { order: -1; }
  .hero-main-img { height: 240px; }
  .hero-float-card-1 { left: 0; }
  .hero-float-card-2 { right: 0; }

  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-images { display: none; }
  .info-cards { grid-template-columns: 1fr 1fr; }

  .concept-cards { grid-template-columns: 1fr; }
  .concept-quote { padding: 28px 24px; }
  .concept-quote .fa-quote-left { font-size: 1.5rem; margin-bottom: 12px; }
  .concept-quote .fa-quote-right { font-size: 1.5rem; margin-top: 12px; }
  .concept-quote p { font-size: 0.95rem; line-height: 1.95; }
  .ecold-relation-content { grid-template-columns: 1fr; gap: 16px; }
  .ecold-relation-logo { display: flex; justify-content: center; }
  .ecold-relation-logo img { width: 120px; }
  .ecold-relation-text { text-align: left; }
  .ecold-relation-text h3 { font-size: 1rem; text-align: left; line-height: 1.6; margin-bottom: 12px; }
  .ecold-relation-text p { font-size: 0.88rem; line-height: 1.85; text-align: left; }

  .service-cards { grid-template-columns: 1fr; }
  .common-support-grid { grid-template-columns: 1fr 1fr; }

  .countdown-timer { padding: 18px 20px; gap: 4px; }
  .countdown-num { font-size: 2.2rem; }
  .countdown-unit { min-width: 52px; }
  .progress-message-box { grid-template-columns: 1fr; }
  .progress-msg-img { display: none; }

  .director-profile { grid-template-columns: 1fr; }
  .director-photo-wrap { max-width: 300px; margin: 0 auto; }
  .director-photo { aspect-ratio: 4/3; }

  .contact-wrap { grid-template-columns: 1fr; }
  .contact-form-panel { padding: 22px; }
  .footer-top-inner { grid-template-columns: 1fr; gap: 26px; }
  .footer-logo-area { grid-column: auto; }
}
@media (max-width: 480px) {
  .info-cards { grid-template-columns: 1fr; }
  .common-support-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .concept-quote { padding: 22px 18px; }
  .concept-quote .fa-quote-left { font-size: 1.3rem; margin-bottom: 10px; }
  .concept-quote .fa-quote-right { font-size: 1.3rem; margin-top: 10px; }
  .concept-quote p { font-size: 0.92rem; line-height: 1.9; }
  .ecold-relation { padding: 24px 18px; }
}
