.laulen-blog-section {
  padding: 80px 0;
  background-color: #fff;
}

.laulen-blog-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.laulen-blog-title {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 48px;
  color: #111;
  letter-spacing: 0.05em;
}

.laulen-post-card {
  position: relative;
  height: 500px;
  border-radius: 12px; /* 少し丸みを抑えました */
  overflow: hidden;
  display: flex;
  align-items: center; 
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background-color: #333;
}

.laulen-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.laulen-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.laulen-bg-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.laulen-hero-overlay {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5); /* 文字を読みやすく少し暗めに */
  color: #fff;
  text-align: center;
  padding: 20px;
}

.hero-main-text {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5); 
}
.hero-main-text p {
  margin: 0;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background-color: #fff;
  margin: 24px 0;
}

/* 黄色いボタンのスタイル */
.hero-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffea00; /* 目立つ黄色 */
  color: #002B60;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 480px; /* 横長にするための幅 */
}
.hero-cta-button:hover {
  background-color: #fce100;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  color: #111; /* ホバー時も黒文字を維持 */
}

@media (max-width: 768px) {
  .laulen-blog-section { padding: 50px 0; }
  .laulen-blog-container { padding: 0 24px; }
  
  .laulen-blog-title { 
    font-size: 24px; 
    margin-bottom: 24px; 
  }

  .laulen-post-card { height: 360px; }

  .hero-main-text { 
    font-size: 20px; 
  }

  .hero-cta-button {
    font-size: 14px;
    padding: 14px 20px;
    width: 90%;
  }
/* =========================================================
   📸 レスポンシブ対応
   ========================================================= */
@media (max-width: 768px) {
  .laulen-blog-section { 
    padding: 50px 0; 
  }
  
  .laulen-blog-container { 
    padding: 0 24px; 
  }
  
  /* タイトルエリア全体 */
  .laulen-blog-title {
    display: block !important;
    margin-bottom: 32px !important; /* ★ここ：カードとの間の余白を32px確保 */
    padding: 0;
  }

  /* エディタが勝手に作る中身の要素（h2やpやspan） */
  .laulen-blog-title * { 
    font-size: 22px !important; 
    line-height: 1.4 !important;
    text-align: left !important;
    margin: 0 !important; /* 中身の余白は0にしてエディタの干渉を防ぐ */
    display: inline; /* まとまりとして扱う */
  }

  .laulen-blog-title {
    margin-bottom: 24px; /* 外側の余白だけ確保 */
  }

  .laulen-post-card { 
    height: 320px; 
    border-radius: 16px; 
  }

  .hero-main-text,
  .hero-main-text * { 
    font-size: 22px !important; 
    font-weight: 800 !important;
    line-height: 1.4 !important;
  }

  .hero-divider {
    margin: 16px 0;
    width: 40px;
  }

  .hero-cta-button {
    font-size: 14px;
    padding: 12px 20px;
    max-width: 100%;
    margin-top: 0px;
  }
}