@charset "UTF-8";

/* ページタイトル */
#theDayTitle {
  text-align: center;
  font-size: 9.97vw;
  color: #0186d9;
  font-family: 'Zen Maru Gothic', 'Noto Sans', sans-serif;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 8.26vw;
  padding: 0;
}

/* コンテンツ全体 */
#theDayInfoWrap {
  padding: 5vw 0 15.38vw;
}

/* ボタンエリア */
#btnArea {
  width: 84.62vw;
  margin: 0 auto;
}

/* 各行：SP では縦積み */
.btnRow {
  display: flex;
  flex-direction: column;
  gap: 3.59vw;
  margin-bottom: 3.59vw;
}

.btnRow:last-child {
  margin-bottom: 0;
}

/* ボタン共通 */
.theDayBtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.7vw;
  height: 16.67vw;
  border-radius: 2.56vw;
  font-size: 4.1vw;
  font-weight: 600;
  text-decoration: none;
  width: 100%;
  box-sizing: border-box;
}

.theDayBtn.filled,
.theDayBtn.outlined {
  border: 2px solid #0186d9;
  transition: all .3s;
}
/* 塗りつぶしボタン */
.theDayBtn.filled {
  background: #0186d9;
  color: #fff;
}

/* 枠線ボタン */
.theDayBtn.outlined {
  background: #fff;
  color: #0186d9;
}

/* 矢印アイコン（::after で表示） */
.theDayBtn::after {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 18.101px;
  height: 14.472px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.theDayBtn.filled::after {
  background-image: url('/2026/top/assets/img/theDayInfo/arrowSpWhite.svg');
}

.theDayBtn.outlined::after {
  background-image: url('/2026/top/assets/img/theDayInfo/arrowSp.svg');
}
