/* デイサービス莱 - カスタムCSS */

/* カラーテーマ: ピンク系 */
:root {
  --primary-pink: #f09199;
  --secondary-pink: #e8505b;
  --light-pink: #fde8ea;
}

/* スムーズスクロール */
html {
  scroll-behavior: smooth;
}

/* 多肉植物（一本の茎から多くの株が枝分かれする緑の法師）の画像背景 */
.hero-section {
  background-image: url('https://sspark.genspark.ai/cfimages?u1=XvibXKd5be%2BFFpLYnmppWF2S%2FmFn5eADGps5aFNsM%2B1bPIAQXUMRvleGLbcRG0DANuKlvGgdKqAPqnpZydPl7JHBW9jCeB7NU5VjcZMCcrX9jQtTMTJ8GHAyYfX4GKONRKZfZPakKIP12Asq6xnyrL0SWaXvV6GLeqw%2FrqRt0YCZGj2uN5Z%2FWeITnXT8%2FhUVDG2GK12dCV0fS%2BjNpx%2B0t5xcdaZh3jc%2F%2F7gaaTss2GMnrFIkn0XwPf2zdJyRG8o%3D&u2=f3RSnCuE7upOI0Jq&width=2560');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

/* より明るめのオーバーレイで元気な印象に */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(40, 75, 50, 0.65) 0%, rgba(25, 60, 40, 0.75) 100%);
  pointer-events: none;
}

/* テキストコンテンツを前面に配置 */
.hero-section .container {
  position: relative;
  z-index: 1;
}

/* 明るい中心部のアクセント - 太陽の光のイメージ */
.hero-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(120, 180, 130, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* ナビゲーションリンク */
.nav-link {
  color: #374151;
  font-weight: 500;
  transition: color 0.3s;
  text-decoration: none;
}

.nav-link:hover {
  color: #f09199;
}

/* ボタンスタイル */
.btn-primary {
  background: linear-gradient(135deg, #f09199 0%, #e8505b 100%);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 6px rgba(240, 145, 153, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(240, 145, 153, 0.4);
}

/* カードスタイル */
.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(240, 145, 153, 0.2);
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(240, 145, 153, 0.2);
}

/* 一日の流れアイテム */
.flow-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #f09199;
  transition: transform 0.3s, box-shadow 0.3s;
}

.flow-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 8px rgba(240, 145, 153, 0.15);
}

.flow-time {
  font-weight: 700;
  color: #f09199;
  min-width: 140px;
  font-size: 1.125rem;
}

/* FAQアコーディオン */
.faq-question {
  cursor: pointer;
  user-select: none;
}

.faq-answer {
  line-height: 1.75;
}

/* アニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
  .flow-item {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .flow-time {
    min-width: auto;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    font-size: 1.125rem;
  }
}

/* プログレスインジケーター（オプション） */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #f09199, #e8505b);
  z-index: 9999;
  transition: width 0.2s;
}

/* 印刷スタイル */
@media print {
  header, footer, .btn-primary {
    display: none;
  }
  
  body {
    color: black;
  }
  
  .hero-section {
    background: white;
    color: black;
  }
}
