@charset "UTF-8";
body {
  display: flex;
  flex-direction: column;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

html, body {
  height: 100%;
}

main {
  flex: 1;
}

a {
  color: #000;
  text-decoration-line: none;
}

a:hover {
  opacity: 0.5;
}

ul li {
  list-style: none;
}

h2 {
  display: inline-block;
  position: relative;
}

h2:before {
  display: inline-block;
  position: absolute;
  content: "";
  bottom: -10px;
  left: 50%;
  width: 100px;
  height: 2px;
  transform: translate(-50%);
  background-color: #77d2d9;
}

/*************/
/* 共通クラス */
/*************/
.container {
  width: 1080px;
  margin: 0 auto;
}

.flexbox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.ball {
  background-image: url("/image/baseball_ball.png");
}

.sec-ttl {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 30px;
}

/* 詳細ボタン */
.more-btn {
  margin: 20px 0;
}

.more-btn a {
  background: #f8e58c;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 240px;
  padding: 10px 25px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}

.more-btn a:hover {
  background: #edf6ff;
}

.more-btn a:before, .more-btn a:after {
  content: "";
  position: absolute;
  display: block;
  transition: all 0.3s;
  right: 0.6rem;
  top: 50%;
}

.more-btn a:before {
  width: 1.2rem;
  height: 2px;
  background: #614f38;
  transform: translateY(-50%);
}

.more-btn a:after {
  opacity: 0;
  width: 0;
  height: 0;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.more-btn a:hover:before {
  width: 1.3rem;
}

.more-btn a:hover:after {
  opacity: 1;
  width: 8px;
  height: 8px;
}

/* メニューバー用 */
#news, #bracket, #result {
  /* メニューバー用 */
  margin-top: -100px;
  padding-top: 100px;
}

/* スマホ */