/* =========================================
   🌸 基本スタイル（共通）
========================================= */

/* 全体背景 */
body.spring-day {
  background-color: #ffeef2;
  color: #555;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.9;
}

/* セクションタイトル */
.spring-day h2 {
  color: #00bcd4;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  text-shadow: 0 0 8px rgba(0, 188, 212, 0.3);
}

/* テキストボックス */
.spring-day .text-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 25px;
  width: 75%;
  margin: 0 auto 50px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* 通常テキスト */
.spring-day p {
  color: #444;
  font-size: 1rem;
}

/* -----------------------------------------
   🌸 画像
------------------------------------------ */
.spring-day .detail-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* -----------------------------------------
   🌸 レイアウト幅
------------------------------------------ */
.work-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================
   🌸 ヘッダー
========================================= */

header.sub-header {
  background-color: rgba(0,0,0,0.65);
  padding: 30px 60px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 戻るボタン */
header.sub-header .back-button {
  background: #ffb6c1;
  color: white;
  padding: 12px 40px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 25px;
  white-space: nowrap;
}

/* タイトル（h1.glow-title） */
header.sub-header .glow-title {
  color: #00d4ff;
  font-size: 2.2rem;
  margin: 0;
  text-shadow: 0 0 12px rgba(0, 188, 212, 0.6);
  text-align: right;
  line-height: 1.4;
}

/* =========================================
   🌸 スマホ調整（〜768px）
========================================= */

@media (max-width: 768px) {

  header.sub-header {
    padding: 20px 16px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 12px;
  }

  header.sub-header .back-button {
    padding: 8px 20px;
    font-size: 0.9rem;
    margin: 0;
  }

  header.sub-header .glow-title {
    font-size: clamp(20px, 6vw, 28px);
    line-height: 1.3;
    text-align: center;
  }
}

/* =========================================
   🌸 超スマホ（〜480px）
========================================= */

@media (max-width: 480px) {

  header.sub-header {
    padding: 16px 12px;
    gap: 10px;
  }

  header.sub-header .back-button {
    padding: 6px 16px;
    font-size: 0.85rem;
  }

  header.sub-header .glow-title {
    font-size: clamp(18px, 7vw, 24px);
  }
}

body.spring-day {
  background: #ffeef2 !important;  /* ← background にするのが最強 */
}

ul li {
  list-style-type: "🌸 ";
  list-style-position: inside;
  margin-left: 20px; /* 調整は自由！ */
  color: #555;
}

/* ★ ブラックシアーヘッダー：Spring Day 仕様に統一 ★ */
header.sub-header {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;

  /* ←これがめちゃ重要（タイトルの余白）*/
  padding: 60px 60px 40px 60px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* タイトルは header 内で位置調整、余白は削除する */
header.sub-header h1 {
  margin: 0;
  padding: 0; /* ←これで黒シアーの続きが綺麗になる */
  text-align: right;
  width: 100%;
}

/* スマホ */
@media (max-width: 768px) {
  header.sub-header {
    padding: 30px 20px 20px 20px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  header.sub-header h1 {
    text-align: center;
  }
}

/* ================================
   🌸 Spring Day：Backボタン調整
================================ */

/* 上下共通：ピンクの pill ボタン */
body.spring-day .back-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 46px;
  border-radius: 999px;
  background-color: #ffb6c1;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 12px rgba(255, 155, 176, 0.55);
  transition: background-color 0.25s ease,
              transform 0.25s ease,
              box-shadow 0.25s ease;
}

/* ホバー時のふわっと浮くアクション */
body.spring-day .back-button:hover {
  background-color: #ff9bb0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 155, 176, 0.75);
}

/* 下のBackボタンだけ中央寄せ */
body.spring-day .back-button.bottom {
  margin: 40px auto 0;
}
