@charset "UTF-8";
/* 共通 */
.contentsArea {
  font-family: "Noto Sans CJK JP", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 18px;
  font-weight: 400;
  width: 728px;
}

.contentsArea * {
  box-sizing: border-box;
}

.contentsArea .heading {
  width: 100%;
  margin-bottom: 20px;
  padding: 8px 0 5px 10px;
  font-size: 22px;
  color: #fff;
  background: #081f36;
  display: flex;
}

.contentsArea .linkList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}

.contentsArea .linkList li {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #5b5b72;
  list-style: none;
  border: solid 2px #49495b;
  font-size: 13px;
}

.contentsArea .linkList li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8px 0 5px;
  text-align: center;
  color: #fff;
}

#contentsLead {
  display: flex;
  justify-content: flex-end;
}

#contentsLead .selectBox {
  margin: 0 0 20px !important;
  padding: 0 !important;
  background: none !important;
}

#contentsLead .selectBox select {
  font-size: 12px;
  color: #676767;
  width: 250px;
  height: 34px;
  line-height: 34px;
  border: 1px solid #e3e3e3;
  box-sizing: border-box;
  background: none;
  padding-left: 6px;
  border-radius: 0;
}

#contentsLead .selectBox .js_dropdown {
  position: relative;
  width: 138px;
  height: auto;
}

#contentsLead .selectBox .js_down {
  position: absolute;
  left: 0px;
  top: 33px;
}

#contentsLead .selectBox .js_down ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#contentsLead .selectBox .js_drop,
#contentsLead .selectBox .js_down {
  font-size: 12px;
  background-color: white;
}

#contentsLead .selectBox .js_drop {
  position: relative;
  border: 1px solid #e3e3e3;
  width: 138px;
  height: 32px;
}

#contentsLead .selectBox .js_drop span {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#contentsLead .selectBox .js_drop .js_text {
  line-height: 36px;
  cursor: default;
  margin-left: 5px;
}

#contentsLead .selectBox .js_drop .js_triangle {
  float: right;
  line-height: 34px;
  cursor: default;
  margin-right: 5px;
  color: #6d6d6d;
  font-size: 9px;
}

#contentsLead .selectBox .js_down {
  display: none;
  border: 1px solid #799BD2;
  width: 138px;
}

#contentsLead .selectBox .js_down li {
  padding: 1px 5px;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#contentsLead .selectBox .js_focus {
  background-color: #1c91ff;
  color: white;
}

.modeBox .modeMidd {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modeBox .gameList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 !important;
}

.modeBox .gameList li {
  display: inline-block;
  margin: 0 15px 30px;
  cursor: pointer;
}

.modeBox .waringWrap {
  font-size: 13px;
  color: #4d4d4d;
  margin-left: 15px;
  margin-bottom: 30px;
}

.modeBox .waringWrap ul li {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.modeBox .waringWrap ul li:before {
  content: "・";
}

/* 背景オーバーレイ */
.modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 10000;
}

/* モーダル本体 */
.modalContent {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  z-index: 10001;
  padding: 10px;
}

/* 閉じるボタン */
.modalClose {
  position: absolute;
  top: -30px;
  right: 4px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}

.modalHeading {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px 0 5px 10px;
  font-size: 22px;
  color: #fff;
  background: #081f36;
  display: flex;
}

/* ランキング */
.rankingGrid {
  display: flex;
  justify-content: center;
}

.rankingGrid * {
  box-sizing: border-box;
  line-height: initial;
}

.rankingGrid .columnBox .column {
  display: flex;
  flex-direction: column;
}

.rankingGrid .columnBox .cell {
  position: relative;
  width: 280px;
  height: 114px;
}

.rankingGrid .columnBox .cell .frameBg {
  position: absolute;
  z-index: 0;
}

.rankingGrid .columnBox .cell .detail {
  position: relative;
  z-index: 1;
  width: 280px;
  height: 114px;
  padding: 10px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 0 10px;
}

.rankingGrid .columnBox .cell .detail__info {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px 0;
}

.rankingGrid .columnBox .cell .detail__info-top {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-auto-rows: 42px 1fr;
  gap: 0 10px;
}

.rankingGrid .columnBox .cell .detail__info-top-rank {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rankingGrid .columnBox .cell .detail__info-top-rank-text {
  font-weight: bold;
}

.rankingGrid .columnBox .cell .detail__info-top-rank-text span {
  font-size: 12px;
}

.rankingGrid .columnBox .cell .detail__info-top-main {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
  gap: 5px;
  font-size: 10px;
}

.rankingGrid .columnBox .cell .detail__info-top-main-user-name {
  padding-top: 1px;
  color: #000;
}

.rankingGrid .columnBox .cell .detail__info-top-main-event-name {
  padding-top: 1px;
}

.rankingGrid .columnBox .cell .detail__info-bottom {
  position: relative;
  height: 100%;
}

.rankingGrid .columnBox .cell .detail__info-bottom-result {
  position: absolute;
  right: 26px;
  bottom: 0;
  font-size: 28px;
  font-weight: bold;
}
