/* チバリヨ - ホーム画面 (Phase 2-B-5) */
/* プレフィックス: home- (他画面 CSS から独立) */

.home-page {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---- 自動遷移バー ---- */
.home-redirect-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background: #EEF4FC;
  border: 1px solid #C9DDF5;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: #1E4E8C;
}

.home-redirect-text #home-redirect-sec {
  font-weight: 700;
  font-size: 16px;
}

.home-redirect-actions {
  display: flex;
  gap: 8px;
}

.home-btn {
  border: none;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s;
}

.home-btn:hover { opacity: 0.85; }

.home-btn-primary {
  background: #2563EB;
  color: #fff;
}

.home-btn-ghost {
  background: transparent;
  color: #1E4E8C;
  border: 1px solid #9FC0E8;
}

/* ---- 共通カード ---- */
.home-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.home-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

/* ---- 挨拶 ---- */
.home-greeting-card {
  background: linear-gradient(135deg, #FDFDFD 0%, #F4F8FD 100%);
}

.home-date {
  font-size: 13px;
  color: #64748B;
  margin-bottom: 4px;
}

.home-greeting {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #1E293B;
}

/* ---- 名言 ---- */
.home-quote-body { min-height: 48px; }

.home-quote-text {
  margin: 0;
  padding: 0 0 0 14px;
  border-left: 3px solid #CBD5E1;
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
}

.home-quote-author {
  margin-top: 10px;
  text-align: right;
  font-size: 13px;
  color: #64748B;
}

/* ---- 天気 ---- */
.home-weather-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.home-weather-tile {
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  background: #FAFCFE;
}

.home-weather-place {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-weather-icon {
  font-size: 28px;
  line-height: 1.2;
}

.home-weather-label {
  font-size: 11px;
  color: #64748B;
  margin: 2px 0 6px;
}

.home-weather-temp { font-size: 14px; }

.home-temp-max { color: #DC2626; font-weight: 700; }
.home-temp-sep { color: #94A3B8; margin: 0 3px; font-size: 12px; }
.home-temp-min { color: #2563EB; font-weight: 600; }

.home-weather-pop {
  margin-top: 4px;
  font-size: 11px;
  color: #0E7490;
}

.home-weather-error {
  font-size: 12px;
  color: #B91C1C;
  padding: 16px 0;
}

/* ---- ローディング・エラー ---- */
.home-loading {
  grid-column: 1 / -1;
  font-size: 13px;
  color: #94A3B8;
  padding: 8px 0;
}

.home-error {
  grid-column: 1 / -1;
  font-size: 13px;
  color: #B91C1C;
  padding: 8px 0;
}

/* ---- フッター ---- */
.home-footer {
  text-align: center;
  font-size: 11px;
  color: #94A3B8;
  padding: 4px 0 12px;
}

/* ---- レスポンシブ ---- */
@media (max-width: 900px) {
  .home-weather-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .home-card { padding: 16px; }
  .home-greeting { font-size: 20px; }
}
