@charset "UTF-8";

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,::before,::after{box-sizing:border-box;border-style:solid;border-width:0;min-width:0}html{line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}body{margin:0}main{display:block}p,table,blockquote,address,pre,iframe,form,figure,dl{margin:0}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;margin:0}ul,ol{margin:0;padding:0;list-style:none}dt{font-weight:700}dd{margin-left:0}hr{box-sizing:content-box;height:0;overflow:visible;border-top-width:1px;margin:0;clear:both;color:inherit}pre{font-family:monospace,monospace;font-size:inherit}address{font-style:inherit}a{background-color:transparent;text-decoration:none;color:inherit}abbr[title]{text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:inherit}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}svg,img,embed,object,iframe{vertical-align:bottom}button,input,optgroup,select,textarea{-webkit-appearance:none;appearance:none;vertical-align:middle;color:inherit;font:inherit;background:transparent;padding:0;margin:0;border-radius:0;text-align:inherit;text-transform:inherit}button,[type="button"],[type="reset"],[type="submit"]{cursor:pointer}button:disabled,[type="button"]:disabled,[type="reset"]:disabled,[type="submit"]:disabled{cursor:default}:-moz-focusring{outline:auto}select:disabled{opacity:inherit}option{padding:0}fieldset{margin:0;padding:0;min-width:0}legend{padding:0}progress{vertical-align:baseline}textarea{overflow:auto}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}[type="number"]{-moz-appearance:textfield}label[for]{cursor:pointer}details{display:block}summary{display:list-item}[contenteditable]:focus{outline:auto}table{border-color:inherit;border-collapse:collapse}caption{text-align:left}td,th{vertical-align:top;padding:0}th{text-align:left;font-weight:700}


/* 共通指定
-------------------------------------------------------------- */
:root {
  --font-family: "ryo-gothic-plusn", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, Arial, sans-serif;
  --font-family-en: "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, sans-serif;
  --c-bg-primary: #ec6d6f;
  --c-bg-inactive: #ddeeff;
  --c-gray-primary: #e7eefc;
  --c-gray-secondary: #9a9a9a;
  --c-orange-primary: #ffd75e;
  --c-orange-secondary: #ff6000;
  --c-black-primary: #000;
  --c-purple-primary: #7e61ff;
  --c-red-primary: #ca0000;
  --c-white-primary: #fff;
  --font-size-primary: 1rem;
  --index-header: 1000;
  --opacity-primary: 0.6;
  --transition-primary: 0.3s;
  --transition-btn: 0.15s;
  --pc-l-width: 1150px;
  --pc-m-width: 1000px;
  --sp-width: 93.75%;
}
body {
  background: var(--c-bg-primary);
}
body.l-inactive {
  background: var(--c-bg-inactive);
}
img {
  height: auto;
  width: 100%;
}
html.is-fixed,
html.is-fixed body {
  height: 100%;
  overflow: hidden;
}

/* --------------------------------------------------------------
Component層
- 固有のコンポーネントスタイル
-------------------------------------------------------------- */
.js-in {
}

/* --------------------------------------------------------------
Layout層
- 大枠のレイアウトスタイル
-------------------------------------------------------------- */
body {
  background-image: url(../images/bg.png);
  background-size: 450px 320px;
  background-repeat: repeat;
}
#l-container {
}

/*
ヘッダー
-------------------------------------------------------------- */
#l-header {
  background-color: var(--c-bg-primary);
  background-image: url(../images/bg.png);
  background-size: 450px 320px;
  background-repeat: repeat;
  position: sticky;
  top: 0;
  font-family:var(--font-family-en);
  padding: 10px 15px;
}
#l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#l-header__title h1 {
  display: flex;
  align-items: center;
  color: var(--c-white-primary);
  font-size: 1.875rem;
  font-weight: bold;
  text-shadow: 2px 2px 3px #333;
}
#l-header__title h1::before {
  content: "";
  background-image: url(../images/logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 18px;
  height: 50px;
  width: 50px;
}
#l-header__date {
  display: flex;
  align-items: center;
  gap: 10px;
}
#l-header__date span {
  color: var(--c-white-primary);
  font-weight: bold;
  text-shadow: 2px 2px 3px #333;
}
#l-header__date span:first-of-type {
  font-size: 2.5rem;
}
#l-header__date span:last-of-type {
  font-size: 1.5rem;
}
#l-header__btn {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 20px;
  gap: 10px;
}
.l-header__select {
  display: flex;
  gap: 10px;
  width: 43%;
}
.l-header__select form {
  width: 41%;
}
.l-header__selectCourt {
  width: calc(59% - 10px);
}
.l-header__select select {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: var(--c-black-primary);
  border-radius: 10px;
  color: var(--c-white-primary);
  padding: 0 15px;
  height: 40px;
  width: 100%;
}
.c-selectWrap {
    position: relative;
    width: 100%;
}
.c-selectWrap:after {
    content: "";
    position: absolute;
    right: 15px;
    top: 18px;
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--c-white-primary);
    border-left: 2px solid var(--c-white-primary);
    pointer-events: none;
    transform: translateY(-50%) rotate(-135deg);
}
.l-header__link {
  width: calc(57% - 10px);
}
.l-header__link ul {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.l-header__link ul li {
  width: calc(calc(100% - 20px) / 3);
}
.l-header__link a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--c-red-primary);
  border-radius: 10px;
  padding: 0 15px;
  height: 40px;
  transition: var(--transition-btn);
}
.l-header__link a:hover {
  opacity: var(--opacity-primary);
}
.l-header__link a:after {
  color: var(--c-white-primary);
  content: ">";
}
.l-header__link a span {
  color: var(--c-white-primary);
  font-size: 0.8125rem;
}
.l-header__link a i {
  display: block;
  font-size: 0.6875rem;
  font-style: normal;
}

#l-main {
  padding: 0 15px;
}
.l-wrap {
}
.l-wrap__score {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  -webkit-transition: opacity 2s ease;
  transition: opacity 2s ease;
}
.l-wrap__score.no_score {
  display: grid;
  place-content: center;
  color: var(--c-white-primary);
  font-size: 3rem;
  font-weight: bold;
  height: 100vh;
}
.no_score p {
  text-shadow: 2px 2px 3px #333;
}
#l-side {
  width: 16%;
}
#l-side__inner {
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
  padding: 10px;
}
#l-side__inner h2 {
  display: flex;
  font-size: 1.125rem;
  font-weight: bold;
  gap: 8px;
}
#l-side__inner h2::before {
  flex-shrink: 0;
  content: "";
  background-image: url(../images/ball.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 18px;
  width: 18px;
}
#l-side__inner h2 span {
  display: block;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 4px;
  width: 80px;
}
.l-side__box {
  background: var(--c-white-primary);
  padding: 12px 10px 8px;
  margin-bottom: 10px;
}
.l-side__box--news {
  overflow: auto;
  margin-top: 18px;
  height: 323px;
}
.l-side__box--news::-webkit-scrollbar {
  width: 8px;
}
.l-side__box--news::-webkit-scrollbar-thumb {
  background-color: #e7eefc;
  border-radius: 4px;
}
.l-side__box--news li {
  border-bottom: 1px solid rgba(0, 0, 0, .19);
  padding-bottom: 8px;
  margin-bottom: 4px;
}
.l-side__box--news li span {
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.54;
}
.l-side__box--news .news__text p {
  font-size: 0.6875rem;
  line-height: 1.54;
}
.l-side__box--date {
  padding: 20px 16px 12px;
  margin: 0 auto;
  width: 92%;
}
.l-side__box--select {
  position: relative;
  width: 100%;
}
.l-side__box--select::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--c-white-primary);
  border-left: 2px solid var(--c-white-primary);
  pointer-events: none;
  transform: translateY(-50%) rotate(
-135deg);
}
.l-side__box--date select {
  background: var(--c-black-primary);
  border-radius: 5px;
  color: var(--c-white-primary);
  font-size: 0.9375rem;
  padding: 12px 16px;
  width: 100%;
}
.l-side__qr {
  display: flex;
  justify-content: space-between;
  padding-bottom: 2px;
}
.l-side__qr span {
  flex-shrink: 0;
  margin-top: -8px;
  width: 122px;
}
#l-side__inner .l-side__qr h2 {
  font-size: 1rem;
}

/* --------------------------------------------------------------
共通パーツ
-------------------------------------------------------------- */
.c-score {
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
  padding: 5px 10px;
  width: calc(calc(100% - 40px) / 3);
}
.c-score h2 {
  color: var(--c-white-primary);
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0, 0, 0, .19);
  padding-bottom: 10px;
}
.c-score__card {
  background: var(--c-white-primary);
  padding: 5px 10px;
  margin-bottom: 10px;
}
.js-now {
  background: var(--c-orange-primary);
}
.js-over {
  background: #b6b6b6;
}
.c-score__card--head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-score__card--head h3 {
  font-size: 0.8125rem;
  font-weight: bold;
}
.c-score__card--head h3 i {
  color: var(--c-white-primary);
  background: var(--c-black-primary);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: bold;
  padding: 0 4px;
  margin-right: 4px;
}
.c-score__card--head span {
  font-size: 0.5rem;
}
.c-score__card--change {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 2px 0 0 20px;
  height: 13px;
}
.c-score__card--change span {
  display: inline-block;
  color: var(--c-white-primary);
  font-size: 0.5rem;
  font-weight: bold;
  padding: 2px 0;
  text-align: center;
  width: 80px;
}
.c-score__card--change span:first-of-type {
  background: var(--c-gray-secondary);
}
.c-score__card--change span:last-of-type {
  background: var(--c-orange-secondary);
}
.c-score__card--change i {
  color: var(--c-orange-secondary);
  font-style: normal;
  font-size: 0.3rem;
}
.c-score__card--table {
  margin-top: -10px;
}
.c-score__card--table table {
  border-collapse: separate;
  border-spacing: 1px;
  width: 100%;
}
.c-score__card--table table th {
  padding: 2px;
  font-size: 0.5rem;
  font-weight: normal;
  text-align: center;
  width: 7.5%;
}
.c-score__card--table table td {
  background: var(--c-gray-primary);
  font-size: 0.625rem;
  font-weight: bold;
  padding: 7px 5px;
  text-align: center;
  white-space: nowrap;
}
.c-score__card--table table td:first-of-type {
  text-align: left;
  white-space: normal;
}
.c-score__card--table table th.c-score__card--name {
  width: calc(64.82% - 4px);
}
.c-score__card--table table th.c-score__card--country {
  width: 12.68%;
}

.slick-num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: absolute;
  top: -50px;
  left: calc(50% - 50px);
  text-align: center;
  background: rgba(0, 0, 0, .19);
  width: 100px;
}
.slick-num span {
  color: var(--c-white-primary);
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
}
.slick-num span.slash {
  font-size: 1rem;
}

.pl1 .won1 span:after,
.pl2 .won2 span:after {
  content: "";
  display: inline-block;
  background-image: url(../images/check.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 8px;
  height: 10px;
  width: 12px;
}

#l-header__selectDate,
#l-header__spmenu,
#tab_nav {
  display: none;
}

.gnav{
  display: none;
  background: var(--c-bg-primary);
  position: fixed;
  overflow-y: scroll;
  height: 100%;
  width: 100%;
  z-index: 98;
}
.gnav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px;
}
.gnav__header h1 {
  display: flex;
  align-items: center;
  color: var(--c-white-primary);
  font-size: clamp(1.125rem, 0.4632rem + 2.9412vw, 1.875rem);
  font-family: var(--font-family-en);
  font-weight: bold;
}
.gnav__header h1::before {
  content: "";
  background-image: url(../images/logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 18px;
  height: 50px;
  width: 50px;
}
.gnav__header span {
  flex-shrink: 1;
  display: block;
  width: 38px;
}
.gnav__wrap{
  margin: 30px auto;
  width: 72.5%;
}
.gnav__menu {
  border-top: 1px solid var(--c-white-primary);
}
.gnav__menu__item {
  border-bottom: 1px solid var(--c-white-primary);
  padding: 20px 0;
}
.gnav__menu__item a {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: var(--transition-btn);
}
.gnav__menu__item a::before {
  content: "▶";
  font-size: clamp(0.75rem, 0.5294rem + 0.9804vw, 1rem);
  margin-right: 8px;
}
.gnav__menu__item a span {
  font-size: clamp(1rem, 0.2279rem + 3.4314vw, 1.875rem);
}
.gnav__menu__item ul {
  margin-top: 20px;
}
.gnav__acc__off + ul {
  display: none;
}
.gnav__acc__on + ul {
  display: block;
}
.gnav__menu__item a.gnav__acc__on::before {
  content: "▼";
}
.gnav__menu__item ul li {
  border-top: 1px solid var(--c-white-primary);
  padding: 20px 0 20px 30px;
}
.gnav__menu__item ul li:last-child {
  padding-bottom: 0;
}
.gnav__menu__exlink {
  border-top: 1px solid var(--c-white-primary);
  margin-top: 70px;
}

#l-header__newsTitle {
  display: flex;
  align-items: first baseline;
  gap: 30px;
}
#l-header__newsTitle {
  color: var(--c-white-primary);
}
#l-header__newsTitle span {
  text-shadow: 2px 2px 3px #333;
}
#l-header__newsTitle span:first-of-type {
  font-size: 2.5rem;
  font-weight: bold;
}
#l-header__newsTitle span:last-of-type {
  font-size: 1.25rem;
}
#l-header__newsBtn {
  margin: 10px auto 0;
  max-width: 900px;
}
#l-header__newsBtn .l-header__link {
  width: 100%;
}
#l-header__newsBtn .l-header__link ul {
  align-items: center;
}
#l-header__newsBtn .l-header__link ul li {
  width: calc(calc(100% - 30px) / 4);
}
#l-header__newsBtn .l-header__link ul li:first-child {
  margin-right: 15px;
}
#l-news {
  padding: 10px 15px;
}
#l-news__inner {
  border-radius: 10px;
  background: var(--c-white-primary);
  margin: 10px auto 0;
  max-width: 900px;
  padding: 5px 20px;
}
#l-news__inner li {
  display: flex;
  border-bottom: 1px solid #dedede;
  padding: 16px 0;
  gap: 10px;
}
#l-news__inner li span {
  flex-shrink: 1;
  font-size: 1.0625rem;
  font-weight: bold;
  line-height: 1.65;
  width: 190px;
}
#l-news__inner .news__text {
  font-size: 1.0625rem;
  line-height: 1.65;
  width: calc(100% - 200px);
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}


@media screen and (max-width: 1000px) {
  #l-header__btn {
    flex-direction: column;
    padding-bottom: 0;
  }
  .l-header__select,
  .l-header__link {
    width: 100%;
  }
  .c-score {
    width: calc(calc(100% - 20px) / 2);
  }
  #l-header__btn .l-header__link {
    display: none;
  }
  #tab_nav {
    display: block;
    padding: 10px 15px;
  }
  #l-header__newsTitle {
    flex-direction: column;
    align-items: flex-end;
    gap: 0;
  }
  #l-header__newsTitle span:first-of-type {
    font-size: 1.875rem;
  }
  #l-header__newsTitle span:last-of-type {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  #l-header {
    padding: 20px;
    box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.23);
  }
  #l-header__inner {
    gap: 10px;
  }
  #l-header__title h1 {
    font-size: clamp(1.125rem, 0.4632rem + 2.9412vw, 1.875rem);
  }
  #l-header__date {
    display: none;
  }
  #l-header__spmenu {
    flex-shrink: 1;
    display: block;
    width: 52px;
  }
  #l-header__spmenu img {
    filter: drop-shadow(2px 2px 1px rgba(0,0,0,0.5));
  }
  #past_disp {
    display: none;
  }
  .l-header__select {
    align-items: center;
    justify-content: space-between;
  }
  #l-header__selectDate {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 32.5%;
  }
  #l-header__selectDate span {
    color: var(--c-white-primary);
    font-weight: bold;
    text-shadow: 2px 2px 3px #333;
  }
  #l-header__selectDate span:first-of-type {
    font-size: clamp(1.75rem, 1.0882rem + 2.9412vw, 2.5rem);
  }
  #l-header__selectDate span:last-of-type {
    font-size: clamp(1.125rem, 0.7941rem + 1.4706vw, 1.5rem);
  }
  .l-header__selectCourt {
    width: 67.5%;
  }
  #tab_nav {
    display: none;
  }
  #l-main {
    padding: 20px;
  }
  .c-score {
    width: 100%;
  }
  #l-header__newsTitle {
    display: none;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  #l-header__newsBtn .l-header__link ul li:first-child {
    width: auto;
  }
  #l-header__newsBtn .l-header__link .live-btn {
    width: 38%;
    max-width: 190px;
  }
  .l-header__sp-only {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .l-header__sp-only span {
    color: var(--c-white-primary);
    text-shadow: 2px 2px 3px #333;
  }
  .l-header__sp-only span:first-of-type {
    font-size: clamp(1.25rem, 0.6985rem + 2.451vw, 1.875rem);
    font-weight: bold;
  }
  .l-header__sp-only span:last-of-type {
    font-size: clamp(0.75rem, 0.6397rem + 0.4902vw, 0.875rem);
  }
  #l-news__inner li {
    flex-direction: column;
    gap: 0;
    padding: 10px 0;
  }
  #l-news__inner li span {
    width: 100%;
  }
  #l-news__inner .news__text {
    width: 100%;
  }
}
