:root {
  --bg-color: #fafff5;
  --text-color: #2f4f2f;
  --edamame-green: #8fc31f;
  --fresh-green: #c6e398;
  --accent-gold: #f39800;
  --white: #ffffff;
  --gray-line: #e0e0e0;

  /* カテゴリタグ用 */
  --tag-tv: #ff7f50;
  --tag-live: #8fc31f;
  --tag-radio: #f39800;
  --tag-event: #40e0d0;
  --tag-release: #ff4757;
  --tag-info: #2ed573;
  --tag-youtube: #ff0000;
  --tag-other: #999999;
}

html {
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family:
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  overflow-x: hidden;
}
a {
  color: #008000; /* ここで「緑」を指定（好きな色コードに変えてOK） */
  text-decoration: underline; /* リンクだとわかるように下線を引く */
  font-weight: bold; /* 少し太くして目立たせる */
}

/* マウスが乗った時の色（少し薄くする） */
.schedule-info a:hover {
  opacity: 0.7;
}
.section-title {
  text-align: center;
  font-size: 3rem;
  color: var(--edamame-green);
  margin-bottom: 60px;
  font-style: italic;

  /* ▼ 2px を em に変換（文字サイズに合わせて伸縮します） */
  text-shadow: 0.04em 0.04em 0px var(--gray-line);

  letter-spacing: 2px;
}
