h1, h2,h3{
  font-family: "Noto Serif JP", serif;
  color: #4a3f63; /* 落ち着いたラベンダー系 */
  margin-bottom: 0.6em;
}
.section-title {
color: #4a3f63; /* 落ち着いたラベンダー系 */
font-family: "Noto Serif JP", serif;
margin-bottom: 0.6em;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-align: center;
  padding:10px;
}

.section-text {
  font-size: 1rem;
  color: #555;
  text-align: center;
  margin-bottom: 1.5rem;
}

.btn-primary,
.btn-secondary,
.btn-card {
  display: inline-block;
  padding: 10px 20px;
  background: #c9a7e8; /* ラベンダー */
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.2s;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-card:hover {
  background: #b48ed8;color: #fff;
}
/* ============================
   Hero Section（改良版）
============================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #f7f2fc, #ece7f7);
  padding: 70px 20px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 40px;
  overflow: hidden; /* 星粒子がはみ出さないように */
}

/* タイトルとテキスト */
.hero-title {
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
  color: #4a3f63;
}

.hero-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.8rem;
}

/* 星の粒子（控えめ） */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 180%;
  height: 180%;
  top: -40%;
  left: -40%;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.6) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.4) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 120px 120px, 180px 180px, 240px 240px;
  animation: twinkle 14s linear infinite;
  opacity: 0.35; /* 控えめに */
  pointer-events: none;
}

.hero::after {
  animation-duration: 22s;
  opacity: 0.25;
}

/* 星がゆっくり動くアニメーション */
@keyframes twinkle {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(50px, 80px, 0); }
}

/* ============================
   Site Description
============================ */
.site-desc {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  border: 1px solid #e8e2f3;
  margin-bottom: 40px;
}

.site-desc .section-text {
  text-align: left;
  line-height: 1.9;
}
/* ============================
   Lucky Time
============================ */
.lucky-time {
  background: #fff;
  padding: 40px 20px;
  border-radius: 10px;
  border: 1px solid #e8e2f3;
  margin-bottom: 40px;
  text-align: center;
  font-size: 1.3rem;
}
.lucky-time a:hover{
color:fff;

}
.zodiac-icons {
  font-size: 1.6rem;
  letter-spacing: 6px;
  margin: 15px 0 20px;
}
/* ============================
   Love Series Cards
============================ */
.love-series {
  margin-bottom: 50px;
}
/* 恋愛占いのカード */
.love-series .card {
  background: #f7f5fb; 
  border: 1px solid #e8e0f2;
}
/* 無料占いシリーズのカード色 */
.fortune-series .card {
  background: #f5f7fa;
  border: 1px solid #e3e6ee;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #e8e2f3;
  text-align: center;
}

.card.disabled {
  opacity: 0.6;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.card h3 a {
  color: #5a4a7a; /* h2 より少し濃い紫 */
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.card h3 a:hover {
  color: #7b63a6; /* hover で少し明るく */
  opacity: 0.85;
}

.card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1rem;
}
/* ============================
   New Articles
============================ */
.new-articles {
  margin-bottom: 60px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.article-grid .article-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e8e2f3;
  overflow: hidden;
}

.article-card img {
  width: 100%;
  height: auto;
  border-radius: 10px 10px 0 0;
}

.article-card .inner {
  padding: 15px;
}

.article-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.article-card p {
  font-size: 0.9rem;
  color: #666;
}


