@charset "UTF-8";
img {
  display: block;
  width: 100%;
  height: auto;
}

button {
  cursor: pointer;
}

:root {
  --framework-width: 46rem;
  --framework-gutter: 1rem;
  --framework-row-gap: 4rem;
}

.framework {
  display: grid;
  grid-template-columns: [full-start] minmax(var(--framework-gutter), 1fr) [normal-start] minmax(0, var(--framework-width)) [normal-end] minmax(var(--framework-gutter), 1fr) [full-end];
  row-gap: var(--framework-row-gap);
}
.framework > * {
  grid-column: normal;
}

:root {
  --cropper-aspect-raito-x: 16;
  --cropper-aspect-raito-y: 9;
}

.cropper {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: calc(var(--cropper-aspect-raito-y) / var(--cropper-aspect-raito-x) * 100%);
}
.cropper__img, .cropper__iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cropper__img {
  -o-object-fit: cover;
     object-fit: cover;
}
.cropper__iframe {
  top: 0;
  left: 0;
}

:root {
  --font-family-sans-serif: "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  --font-family-serif: "Times New Roman", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", serif;
  --font-family-heading: "Orbitron", sans-serif;
  --color-main: #138a3b;
  --color-text: #333;
  --color-link: #00cc56;
}

body {
  text-rendering: optimizeSpeed;
  font-family: var(--font-family-sans-serif);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1px;
  color: var(--color-text);
}

header,
main,
footer {
  min-width: 320px;
}

main {
  position: relative;
}

.wrap-textbox {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.link-btn {
  display: block;
  padding: 0.5em 1em;
  color: white;
  background-color: var(--color-main);
  text-decoration: none;
  transition: all 0.2s;
}
.link-btn span {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  font-weight: bold;
  font-size: 0.85em;
  display: flex;
  flex-direction: column;
  border-right: 4px double;
  border-left: 4px double;
  margin: 0 auto;
  padding: 0 2em;
}
@media screen and (max-width: 576px) {
  .link-btn span {
    font-size: 0.7em;
  }
}
.link-btn span::before {
  content: attr(data-en);
  font-size: 2em;
  font-family: var(--font-family-heading);
}
.link-btn:hover {
  opacity: 0.7;
}

.list-notes {
  text-align: left;
  list-style: "※";
  padding-left: 1em;
}
.list-notes > li:not(:last-child) {
  margin-bottom: 0.4375em;
}

h2:not([class]) {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  border-right: 4px double;
  border-left: 4px double;
  margin: 0 auto;
  padding: 0 2em;
}
h2:not([class])::before {
  content: attr(data-en);
  font-size: 2rem;
  font-family: var(--font-family-heading);
}

h3:not([class]) {
  padding: 0.5em;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

#header {
  background-color: #111;
  color: white;
}

section {
  padding: 4rem 0;
  background-color: #ddd;
}
section:nth-child(2n) {
  background-color: #eee;
}

#overview {
  --framework-width: 46rem;
  font-size: 1.2em;
  line-height: 1.75;
  background-image: url(../img/img_bg.jpg);
  background-blend-mode: multiply;
  background-position: 70% bottom;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #overview {
    font-size: 1em;
  }
}
#overview .list-notes {
  font-size: 0.75em;
}

#entry {
  --framework-width: 62rem;
}

#results {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
#results .list-notes {
  align-self: center;
}

#links {
  --framework-width: 46rem;
}

#footer {
  padding-top: 4rem;
  background-color: #111;
  color: white;
}

.wrap-cover {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (orientation: portrait) {
  .wrap-cover {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    height: 100dvh;
  }
}
.wrap-cover__img {
  overflow: hidden;
  position: relative;
}
.wrap-cover__img-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top right;
     object-position: top right;
}
.wrap-cover__img-copy {
  position: absolute;
  top: 50%;
  transform: translateY(-45%);
  left: 0;
  width: 100%;
  max-width: 770px;
}
@media screen and (orientation: portrait) {
  .wrap-cover__img-copy {
    max-width: 440px;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 320px) {
  .wrap-cover__img-copy {
    max-width: 200px;
  }
}
.wrap-cover__text {
  position: relative;
  margin-bottom: 2rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (orientation: portrait) {
  .wrap-cover__text {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .wrap-cover__text {
    padding: 1rem;
    padding-top: 2.5rem;
    gap: 1rem;
  }
}

.img-title {
  width: 100%;
  height: auto;
  padding-inline: 0.5rem;
}
@media screen and (orientation: portrait) {
  .img-title {
    max-height: 28dvh;
  }
}
.img-title img {
  width: -moz-fit-content;
  width: fit-content;
}

.text-on-air {
  width: 100%;
  text-align: center;
  font-size: 2.5vw;
  border: 1px solid;
  padding: 0.7em;
  opacity: 0.75;
}
@media screen and (orientation: portrait) {
  .text-on-air {
    font-size: 5vw;
  }
}
.text-on-air__heading {
  font-weight: bold;
  font-size: 0.75em;
}
.text-on-air__date {
  font-family: var(--font-family-heading);
  line-height: 1.1;
  margin-top: 0.3em;
}
.text-on-air__date span {
  display: inline-block;
}

#scrolldown {
  position: absolute;
  left: 50%;
  bottom: 5%;
  animation: pathmove 0.5s infinite alternate ease-in-out;
  transition: visibility 0.5s, opacity 0.5s;
  transform: translateX(-50%);
}
@media screen and (orientation: portrait) {
  #scrolldown {
    bottom: -1.5rem;
  }
}
#scrolldown img {
  height: 3rem;
}
@media screen and (orientation: portrait) {
  #scrolldown img {
    height: 2rem;
  }
}
#scrolldown[aria-hidden=true] {
  visibility: hidden;
  opacity: 0;
}
@media (hover: hover) {
  #scrolldown:hover {
    animation-play-state: paused;
    opacity: 0.7;
  }
}

@keyframes pathmove {
  from {
    transform: translate(-50%, 0);
  }
  to {
    transform: translate(-50%, 0.5rem);
  }
}
.sub-page-header {
  --framework-gutter: 5rem;
  padding: 1.6rem 0 2rem;
}
.sub-page-header a {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.sub-page-header a:hover {
  opacity: 0.7;
}
.sub-page-header .img-title {
  max-height: 6.5rem;
  margin: 0 auto;
}

.list-schedule {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.list-schedule > div {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (max-width: 768px) {
  .list-schedule > div {
    grid-template-columns: 1fr;
  }
}
.list-schedule > div > dt {
  grid-column: 1;
  font-weight: bold;
}
.list-schedule > div > dd {
  grid-column: 2;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .list-schedule > div > dd {
    grid-column: 1;
  }
}
.list-schedule > div > dd div {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1em;
       column-gap: 1em;
}

.text-schedule-days {
  white-space: nowrap;
  font-size: smaller;
  border: 1px solid;
  margin-top: 0.125em;
  padding: 0 0.5em;
}

input[name=entry] {
  display: none;
}

.list-tab-menu {
  color: var(--color-main);
  border: 2px solid;
  border-radius: 0.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.list-tab-menu label {
  cursor: pointer;
  display: block;
  font-weight: bold;
  text-align: center;
  padding: 0.5em;
  opacity: 1;
}
.list-tab-menu label:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231A7ABB' fill-opacity='0.2' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}

#entry-all:checked ~ #tab_entry label[for=entry-all],
#entry-best16:checked ~ #tab_entry label[for=entry-best16] {
  cursor: inherit;
  background: var(--color-main);
  color: #fff;
}

#entry-all:not(:checked) ~ #entry-all_contents,
#entry-best16:not(:checked) ~ #entry-best16_contents {
  display: none;
}

.list-entry-all {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media screen and (max-width: 768px) {
  .list-entry-all {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media screen and (max-width: 576px) {
  .list-entry-all {
    -moz-column-count: 1;
         column-count: 1;
  }
}
.list-entry-all > li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.list-entry-all > li:not(:last-child) {
  margin-bottom: 2rem;
}
.list-entry-all > li ul {
  font-size: 14px;
}

#entry-best16_contents {
  grid-column: full;
}

#slider-entry-best16 .splide__slide {
  max-width: 100%;
}
#slider-entry-best16 .splide__slide.is-active img {
  opacity: 1;
}
#slider-entry-best16 .splide__slide:not(.is-active) img {
  opacity: 0.5;
}
#slider-entry-best16 .splide__slide > div {
  background-color: black;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
#slider-entry-best16 p {
  font-weight: bold;
  text-align: center;
  padding: 0.5em;
}

.list-thumbnails {
  padding: 0.5rem;
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  gap: 0.5rem;
}
@media screen and (max-width: 1024px) {
  .list-thumbnails {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .list-thumbnails {
    grid-template-columns: repeat(4, 1fr);
  }
}
.list-thumbnails > li {
  --cropper-aspect-raito-x: 1;
  --cropper-aspect-raito-y: 1;
  background-color: black;
}
.list-thumbnails > li img {
  border: 2px solid var(--color-main);
}
.list-thumbnails > li:not(.current) {
  cursor: pointer;
}
.list-thumbnails > li:not(.current) img {
  border-color: lightgray;
  opacity: 0.5;
}
.list-thumbnails > li:not(.current):hover {
  opacity: 0.75;
}

.text-match-title {
  font-weight: bold;
  text-align: center;
}

.wrap-layout {
  flex: 1;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.wrap-layout__row {
  flex: 1;
  position: relative;
  display: grid;
}
.wrap-layout__row:not(.best16)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1rem;
  height: calc((100% + 0.5rem) / 2);
  border: 2px solid;
  border-left: none;
  transform: translateX(-2rem) translateY(-50%);
}
.wrap-layout__row:not(.best16) .list-match:not(.third-place)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: calc(1rem + 1px);
  border: 1px solid;
}

.list-match > div.lose dt::before, .list-match > div.win dt::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-color: white;
  border: 1px solid var(--color-text);
  border-radius: 50%;
  margin-right: 0.25em;
}

.list-match {
  grid-area: -1/1;
  position: relative;
  min-width: 8em;
  width: 100%;
  min-height: 2em;
  background-color: white;
  border: 1px solid;
  padding: 0 0.5em;
  align-self: center;
}
.list-match > div {
  min-height: 1em;
  padding: 0.25em 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  max-width: calc(100vw - 6rem);
}
.list-match > div > dt {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .list-match > div > dt {
    font-size: smaller;
  }
}
.list-match > div:not(:last-child) {
  border-bottom: 1px solid gray;
}
.list-match > div.champion {
  font-weight: bold;
}
.list-match > div.champion dt::before {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  background: url(../img/icon_crown.svg) no-repeat top left/contain;
  margin-right: 0.25em;
}
.list-match > div.win {
  font-weight: bold;
}
.list-match > div.win dt::before {
  background-color: white;
}
.list-match > div.lose {
  color: gray;
}
.list-match > div.lose dt::before {
  background-color: var(--color-text);
}
.list-match.third-place {
  align-self: flex-end;
}
.list-match.third-place::before {
  content: "3位決定戦";
}

.champion__photo {
  grid-column: 1/3;
  margin: 0.5em 0;
}
.champion__photo a {
  transition: opacity 0.2s;
}
.champion__photo a:hover {
  opacity: 0.8;
}

#slider-tournament:not(.is-overflow) .splide__list {
  justify-content: center;
}
#slider-tournament:not(.is-overflow) .splide__slide:last-child {
  margin: 0 !important;
}
#slider-tournament .splide__slide {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.slider-tournament__arrows {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.slider-tournament__arrows button {
  background-color: var(--color-main);
  border: none;
  cursor: pointer;
  outline: none;
  padding: 1.4rem 0 1rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.slider-tournament__arrow {
  z-index: 1;
  fill: white;
}
.slider-tournament__arrow:disabled {
  opacity: 0;
}
.slider-tournament__arrow:not(:disabled):hover {
  opacity: 0.8;
}
.slider-tournament__arrow--prev {
  transform: scale(-1, 1);
}
.slider-tournament__arrow svg {
  --arrow-width: 2rem;
  width: var(--arrow-width);
  height: var(--arrow-width);
  padding: 0.25rem;
}

.list-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 640px) {
  .list-links {
    grid-template-columns: 1fr;
  }
}

@counter-style circled-decimal {
  system: fixed 0;
  symbols: "⓪" "①" "②" "③" "④" "⑤" "⑥" "⑦" "⑧" "⑨" "⑩" "⑪" "⑫" "⑬" "⑭" "⑮" "⑯" "⑰" "⑱" "⑲" "⑳" "㉑" "㉒" "㉓" "㉔" "㉕" "㉖" "㉗" "㉘" "㉙" "㉚" "㉛" "㉜" "㉝" "㉞" "㉟" "㊱" "㊲" "㊳" "㊴" "㊵" "㊶" "㊷" "㊸" "㊹" "㊺" "㊻" "㊼" "㊽" "㊾" "㊿";
  suffix: " ";
}
#regulation .level1 {
  counter-reset: counter-level1;
  padding-left: 2em;
  list-style-type: decimal;
  display: flex;
  flex-direction: column;
  gap: 0.875em;
}
#regulation .level1 > li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.875em;
}
#regulation .level1 > li::before {
  content: "(" counter(counter-level1) ")";
  counter-increment: counter-level1;
  position: absolute;
  top: 0;
  left: -2em;
}
#regulation .level2 {
  list-style: decimal;
  padding: 1em 2em 1em 3em;
  border: 1px dotted;
  display: flex;
  flex-direction: column;
  gap: 0.4375em;
}
#regulation .list-normal {
  list-style: circle;
  padding: 1em 2em 1em 3em;
  border: 1px dotted;
  display: flex;
  flex-direction: column;
  gap: 0.4375em;
}
#regulation .list-notes {
  font-size: smaller;
}

#history {
  --framework-width: 62rem;
}

.table-history {
  text-align: center;
  border-collapse: collapse;
  border: 1px solid;
}
@media screen and (max-width: 640px) {
  .table-history {
    font-size: 13px;
  }
}
.table-history tr {
  display: grid;
  grid-template-columns: 2em 1fr 1fr 1fr;
  background-color: #eee;
}
.table-history tr:nth-child(2n) {
  background-color: #e6e6e6;
}
.table-history thead,
.table-history th {
  background-color: #ddd;
}
.table-history thead,
.table-history tr:not(:last-child) {
  border-bottom: 1px solid;
}
.table-history th,
.table-history td {
  padding: 0.5em 0.25em;
  display: flex;
  justify-content: center;
  align-items: center;
}
.table-history th:not(:last-child),
.table-history td:not(:last-child) {
  border-right: 1px solid;
}
.table-history td.cancel {
  grid-column: span 3;
}

figcaption {
  margin-top: 0.5rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  padding-right: 0.2rem;
}
figcaption::before {
  content: "";
  display: block;
  min-width: 2em;
  min-height: 2em;
  width: 2em;
  height: 2em;
  background: url(../img/icon_crown.svg) no-repeat top left/contain;
  margin-right: 0.25em;
}

.list-sponsorship {
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0.5rem;
}
.list-sponsorship > dt {
  grid-column: 1;
  letter-spacing: 1em;
  padding-left: 1em;
  border: 1px solid;
  border-radius: 0.25em;
  display: flex;
}
.list-sponsorship > dt span {
  margin: auto;
}
.list-sponsorship > dd {
  grid-column: 2;
}

.img-main-sponsor {
  width: -moz-fit-content;
  width: fit-content;
  height: 2em;
  padding: 0.25em 0;
}

.wrap-footer-link {
  padding: 2rem 0;
  background-color: var(--color-main);
  grid-column: full;
}

.link-rsk-top {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.link-rsk-top:hover {
  opacity: 0.7;
}
.link-rsk-top img {
  width: auto;
  height: 4rem;
}

#btn-menu {
  z-index: 40;
  position: fixed;
  inset: 0 0 auto auto;
  width: 4rem;
  height: 4rem;
  color: white;
  background-color: var(--color-main);
  border: 1px solid var(--color-sub);
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}
#btn-menu:hover {
  opacity: 0.7;
}
#btn-menu::before {
  font-size: 2rem;
  line-height: 2rem;
}
#btn-menu::after {
  font-size: 0.5rem;
  line-height: 0.5rem;
}
#btn-menu[aria-expanded=true]::before {
  content: "×";
}
#btn-menu[aria-expanded=true]::after {
  content: "CLOSE";
}
#btn-menu[aria-expanded=false]::before {
  content: "≡";
}
#btn-menu[aria-expanded=false]::after {
  content: "MENU";
}

#nav-menu {
  z-index: 30;
  background-color: var(--color-main);
  position: fixed;
  width: calc(100% - 4rem);
  max-width: 32rem;
  height: 100dvh;
  transition: opacity 1s, visibility 1s, height 0.2s, right 1s;
  overflow-y: auto;
}
#nav-menu[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
  right: -32rem;
}
#nav-menu[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
  right: 0;
}

.list-nav-menu {
  width: 100%;
  height: 100%;
  min-height: 320px;
  padding: 4rem 0;
  display: grid;
}
.list-nav-menu > li {
  padding: 1.7rem 0;
}
.list-nav-menu > li > a {
  width: 100%;
  height: 100%;
  display: flex;
}
.list-nav-menu > li > a:hover {
  opacity: 0.7;
}
.list-nav-menu > li > a span {
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  font-weight: bold;
  font-size: 1em;
  display: flex;
  flex-direction: column;
  border-right: 4px double;
  border-left: 4px double;
  margin: 0 auto;
  padding: 0 2em;
}
@media screen and (max-width: 576px) {
  .list-nav-menu > li > a span {
    font-size: 0.7em;
  }
}
.list-nav-menu > li > a span::before {
  content: attr(data-en);
  font-size: 2em;
  font-family: var(--font-family-heading);
}

#modal-background {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: 0.7s;
}
#modal-background[aria-hidden=true] {
  opacity: 0;
  visibility: hidden;
  background-color: transparent;
}
#modal-background[aria-hidden=false] {
  opacity: 0.5;
  visibility: visible;
  background-color: #000;
}/*# sourceMappingURL=style.css.map */