@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@700&display=swap');

/* ページタイトル */
#theDayTitle {
  text-align: center;
  font-size: 9.97vw;
  color: #02797a;
  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 #007c79;
  transition: all .3s;
}
/* 塗りつぶしボタン */
.theDayBtn.filled,
.theDayBtn.outlined:hover,
.theDayBtn.outlined:active {
  background: #007c79;
  color: #fff;
}

/* 枠線ボタン */
.theDayBtn.outlined,
.theDayBtn.filled:hover,
.theDayBtn.filled:active {
  background: #fff;
  color: #007c79;
}

/* 矢印アイコン（::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,
.theDayBtn.outlined:hover:after,
.theDayBtn.outlined:active:after {
  background-image: url('/2026/top/assets/img/theDayInfo/arrowSpWhite.svg');
}

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

/* エントリーリスト・リザルト：＋アイコン（矢印なし） */
.theDayBtn.plus::after {
  display: none;
}

.plusIcon {
  width: 4.1vw;
  height: 4.1vw;
  flex-shrink: 0;
  position: relative;
  display: block;
}

.plusIcon::before,
.plusIcon::after {
  content: '';
  position: absolute;
  background: #007c79;
  border-radius: 1px;
}

.plusIcon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.plusIcon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
