/* 日替わり名言のスタイル - 修正版 */

.daily-quote {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2.5em 2em;
  border-radius: 12px;
  margin: 2em auto;
  max-width: 700px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;  /* ← ここに追加 */
}

.quote-icon {
  font-size: 3em;
  margin-bottom: 0.5em;
  opacity: 0.8;
}

.quote-text {
  font-size: 2.8em;
  font-style: italic;
  margin: 0 0 1em 0;
  line-height: 1.6;
  font-weight: 300;
}

.quote-author {
  display: block;
  font-size: 1.1em;
  opacity: 0.9;
  font-style: normal;
}

/* 注釈用（追加） */
.quote-note {
  font-size: 1.4em;
  opacity: 0.8;
  margin-top: 1em;
  margin-bottom: 0;
  font-style: italic;
}

/* ホバーエフェクト */
.daily-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
  /* transition削除 */
}

/* スマホ対応 */
@media (max-width: 768px) {
  .daily-quote {
    padding: 2em 1.5em;
    margin: 1.5em 1em;
  }
  
  .quote-text {
    font-size: 2.0em;
  }
  
  .quote-author {
    font-size: 1.2em;
  }
  
  .quote-icon {
    font-size: 2.5em;
  }
}