@charset "UTF-8";
/************   */
/* variables */
/************   */
/* 定数 */
/* Mixin */
/* フォント */
/* アニメーション */
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* stylelint-disable import-notation */
/************   */
/* variables */
/************   */
/* 定数 */
/* Mixin */
/* フォント */
/* アニメーション */
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/************   */
/* normalize */
/************   */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  font-family: "Scope One", serif;
}
html,
body {
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
body {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--c-background);
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--c-text);
}
@media screen and (max-width: 480px) {
  body {
    font-size: 12px;
    background-size: 100vh;
  }
}
:root {
  --c-nav: #999999;
  --c-select-tab-background: #777777;
  --c-unselect-tab-background: #9d9d9d;
  --c-disable-tab-background: #c4c4c4;
  --c-holding: #99a8e7;
  --c-menu: #a6a6a6;
  --c-menu-disabled: #b3b3b3;
  --c-background: #fff;
  --c-table-background: #fff;
  --c-text: #000;
  --c-win-row-background: #f2f2f2;
  --c-lose-row-background: #d9d9d9;
  --c-red: #f00;
  --c-blue: #00f;
  --c-green: #080;
  --c-brown: #a52a2a;
  --c-table-row-odd: #eff;
  --c-table-row-even: #eff;
  --c-back1: #eff;
  --c-back1-emphasis: #daffff;
  --c-back2: #fef;
  --c-back2-emphasis: #ffdaff;
  --c-back3: #ffe;
  --c-back3-emphasis: #ffffda;
  --c-back4: #eef;
  --c-back4-emphasis: #dadaff;
  --c-back5: #efe;
  --c-back5-emphasis: #daffda;
  --c-back6: #fee;
  --c-back6-emphasis: #ffdada;
  --c-back7: #def;
  --c-back7-emphasis: #c9e4ff;
  --c-back8: #eee;
  --c-back8-emphasis: #e4e4e4;
  --c-back9: #dff;
  --c-back9-emphasis: #c9ffff;
  --c-back10: #fdf;
  --c-back10-emphasis: #ffc9ff;
  --c-back11: #ffd;
  --c-back11-emphasis: #ffffc9;
  --c-back12: #ddf;
  --c-back12-emphasis: #c9c9ff;
  --c-back13: #dfd;
  --c-back13-emphasis: #c9ffc9;
  --c-back14: #fdd;
  --c-back14-emphasis: #ffc9c9;
  --c-back15: #cdf;
  --c-back15-emphasis: #b8cfff;
  --c-back16: #dfe;
  --c-back16-emphasis: #c9ffe4;
  --c-back17: #fde;
  --c-back17-emphasis: #ffc9e4;
  --c-back18: #fed;
  --c-back18-emphasis: #ffe4c9;
  --c-back19: #efd;
  --c-back19-emphasis: #e4ffc9;
  --c-back20: #edf;
  --c-back20-emphasis: #e4c9ff;
  --c-text-japan: #f80;
  --c-text-korea: #f00;
  --c-text-china: #00f;
  --c-text-taiwan: #080;
  --c-text-worlds: #808;
  --c-text-north-america: #a52a2a;
  --c-text-europe: #808;
  --c-text-southeast-asia: #85c026;
  --c-text-oceania: #85c026;
  --c-text-asia: #0056ff;
  --c-text-south-america: #0056ff;
  --c-text-russia: #0056ff;
  --c-text-special: #bd3940;
  --c-text-orange: #f80;
  --c-text-blue: #00f;
  --c-text-green: #080;
}
:root.darkmode {
  --c-nav: #666666;
  --c-select-tab-background: #6a6a6a;
  --c-unselect-tab-background: #848484;
  --c-disable-tab-background: #5e5e5e;
  --c-holding: #596ec1;
  --c-menu: #737373;
  --c-menu-disabled: #666666;
  --c-background: #404040;
  --c-table-background: #616161;
  --c-table-text: #f2f2f2;
  --c-text: white;
  --c-win-row-background: #595959;
  --c-lose-row-background: #999999;
  --c-red: #ff6363;
  --c-blue: #438efe;
  --c-green: #00ee00;
  --c-brown: #d65f5f;
  --c-table-row-odd: #5b7171;
  --c-table-row-even: #715b71;
  --c-back1: #5b7171;
  --c-back1-emphasis: #718e8e;
  --c-back2: #715b71;
  --c-back2-emphasis: #8e718e;
  --c-back3: #71715b;
  --c-back3-emphasis: #8e8e71;
  --c-back4: #5b5b71;
  --c-back4-emphasis: #71718e;
  --c-back5: #5b715b;
  --c-back5-emphasis: #718e71;
  --c-back6: #715b5b;
  --c-back6-emphasis: #8e7171;
  --c-back7: #4b5e70;
  --c-back7-emphasis: #5f778f;
  --c-back8: gray;
  --c-back8-emphasis: #999999;
  --c-back9: #4b7070;
  --c-back9-emphasis: #5f8f8f;
  --c-back10: #704b70;
  --c-back10-emphasis: #8f5f8f;
  --c-back11: #70704b;
  --c-back11-emphasis: #8f8f5f;
  --c-back12: #4b4b70;
  --c-back12-emphasis: #5f5f8f;
  --c-back13: #4b704b;
  --c-back13-emphasis: #5f8f5f;
  --c-back14: #704b4b;
  --c-back14-emphasis: #8f5f5f;
  --c-back15: #3e4d6c;
  --c-back15-emphasis: #50648d;
  --c-back16: #4b705e;
  --c-back16-emphasis: #5f8f77;
  --c-back17: #704b5e;
  --c-back17-emphasis: #8f5f77;
  --c-back18: #705e4b;
  --c-back18-emphasis: #8f775f;
  --c-back19: #5e704b;
  --c-back19-emphasis: #778f5f;
  --c-back20: #5e4b70;
  --c-back20-emphasis: #775f8f;
  --c-text-japan: #ffa033;
  --c-text-korea: #ff3333;
  --c-text-china: #3182f3;
  --c-text-taiwan: #00bb00;
  --c-text-worlds: #bb00bb;
  --c-text-north-america: #cc3636;
  --c-text-europe: #d500d5;
  --c-text-southeast-asia: #9ed940;
  --c-text-oceania: #9ed940;
  --c-text-asia: #3378ff;
  --c-text-south-america: #3378ff;
  --c-text-russia: #3378ff;
  --c-text-special: #ce5b61;
  --c-text-orange: #ffa033;
  --c-text-blue: #3333ff;
  --c-text-green: #00bb00;
}
main {
  height: 80%;
  display: block;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 480px) {
  main {
    height: 100%;
  }
}
a {
  color: var(--c-text);
}
/* 見出し */
h1 {
  margin-top: 10px;
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 1.2rem;
  }
}
h2 {
  font-size: 1.8rem;
}
@media screen and (max-width: 480px) {
  h2 {
    font-size: 1.2rem;
  }
}
h3,
h4,
h5,
h6 {
  margin: 0.2em 0;
}
pre {
  font-family: "Scope One", serif;
  font-size: 0.8rem;
  white-space: pre-wrap;
}
select {
  font-family: "Scope One", serif;
  padding: 2px;
  border-radius: 5px;
}
ul {
  padding-left: 0;
}
ul li {
  margin: 0.5rem auto;
  list-style: none;
}
[v-cloak] {
  display: none;
}
.container {
  position: relative;
  margin: 70px auto 35px;
  width: 100%;
  height: calc(100% - 70px - 35px);
  z-index: 0;
}
@media screen and (max-width: 480px) {
  .container {
    margin: 50px auto 60px;
    width: 100%;
    height: calc(100% - 50px - 60px);
  }
}
.content {
  position: relative;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px;
}
.content-header {
  text-align: center;
  color: var(--c-text);
  font-weight: bold;
}
.content-top .latest-information {
  height: 1.8rem;
  text-align: center;
}
.content-top .latest-information_text {
  font-weight: bold;
  font-size: 130%;
  color: var(--c-text);
}
.content-top .latest-information_text_link {
  color: inherit;
}
.content-top .permanent-information {
  height: 1.5rem;
  text-align: center;
}
.content-top .permanent-information_text {
  font-weight: bold;
  font-size: 110%;
  color: var(--c-text);
}
.content-top .permanent-information_text_link {
  color: inherit;
}
.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  margin: auto;
  padding: 0.3rem 1rem;
  width: 100%;
  height: 35px;
  left: 0;
  bottom: 0;
  background-color: #000;
  z-index: 20;
}
@media screen and (max-width: 480px) {
  .footer {
    height: 60px;
    display: block;
  }
}
@media screen and (min-width: 1025px) {
  .footer-follow {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    right: 10px;
  }
}
@media screen and (max-width: 480px) {
  .footer-follow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50%;
  }
}
.footer-copyright {
  font-family: "Scope One", serif;
  color: #fff;
  font-size: 80%;
}
@media screen and (min-width: 1025px) {
  .footer-copyright {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .footer-copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50%;
  }
}
/** Go News・Go Topics用テーブル */
.go-body {
  width: 100%;
  height: calc(100% - 40px);
  margin-bottom: 15px;
  background-color: transparent;
}
.go-body .table-body .table-row.clickable {
  cursor: pointer;
}
.header {
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: var(--c-nav);
  z-index: 10;
}
@media screen and (max-width: 480px) {
  .header {
    height: 50px;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 1620px;
  padding: 0 20px;
}
@media screen and (max-width: 480px) {
  .header-inner {
    padding: 0 10px;
  }
}
.header-title {
  font-family: "Yeseva One", cursive;
  font-weight: bold;
  color: white;
  margin: 0;
  padding: 0;
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 150%;
  text-align: left;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 480px) {
  .header-title {
    width: calc(100% - 50px - 30px);
    font-size: 0.9rem;
  }
}
.header-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 40%;
  height: 100%;
  min-width: 450px;
  margin-left: auto;
}
@media screen and (max-width: 480px) {
  .header-menu {
    display: none;
    animation: show 0.3s ease-in-out;
  }
  .header-menu.opened {
    display: block;
    position: fixed;
    width: 150px;
    height: 50px;
    top: 0;
    right: 50px;
    min-width: auto;
  }
}
.header-menu-hamb {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: #4d4d4d;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .header-menu-hamb {
    display: none;
  }
}
@media screen and (max-width: 1024px) and (min-width: 481px) {
  .header-menu-hamb {
    display: none;
  }
}
.header-menu-hamb .icon {
  position: absolute;
  width: 40px;
  height: 6px;
  background-color: #fff;
  border-radius: 5px;
  transition: transform 0.5s ease-in-out;
}
.header-menu-hamb .icon::before, .header-menu-hamb .icon::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 6px;
  background-color: #fff;
  border-radius: 5px;
}
.header-menu-hamb .icon::before {
  top: -12px;
}
.header-menu-hamb .icon::after {
  top: 12px;
}
.header-menu-hamb .icon.close {
  height: 100%;
  background-color: transparent;
}
.header-menu-hamb .icon.close::before, .header-menu-hamb .icon.close::after {
  content: "";
  position: absolute;
  top: 22px;
  width: 40px;
  height: 6px;
  background-color: #fff;
}
.header-menu-hamb .icon.close::before {
  transform: rotate(-45deg);
}
.header-menu-hamb .icon.close::after {
  transform: rotate(45deg);
}
.header-menu-link {
  background-color: var(--c-nav);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 100%;
  z-index: 20;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .header-menu-link {
    width: 150px;
  }
}
.header-menu-link:hover {
  opacity: 0.7;
}
.header-menu-link_text {
  color: white;
  font-size: 90%;
}
.select-holding {
  display: flex;
  position: fixed;
  padding: 0 5px 5px;
  height: 45px;
  align-items: center;
  justify-content: flex-start;
  top: 70px;
  left: 0;
  background: linear-gradient(-180deg, var(--c-nav), var(--c-holding), transparent);
  z-index: 5;
}
@media screen and (max-width: 480px) {
  .select-holding {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    top: 50px;
  }
}
.select-holding > * {
  padding: 5px;
}
.select-holding_link {
  color: #000;
  font-weight: bold;
  text-decoration: underline;
}
.select-holding_link.current {
  color: #995200;
}
.select-holding_link:not(.current):hover {
  font-style: italic;
  text-shadow: 0.3px 0.3px #00f;
  cursor: pointer;
}
.select-holding + .title-detail {
  padding-top: 22.5px;
}
.box {
  display: flex;
  position: fixed;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 200;
  visibility: visible;
  opacity: 1;
}
.box.hide {
  visibility: hidden;
  opacity: 0;
}
.box-frame {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 250;
  cursor: pointer;
}
.box-main {
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  z-index: 300;
  visibility: visible;
  opacity: 1;
  transition: width 1s ease-in-out, height 1s ease-in-out;
}
.box-main.hide {
  width: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
}
.box-main-content {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.box-main-content-enter-active, .box-main-content-leave-active {
  transition: opacity 0.5s;
}
.box-main-content-enter, .box-main-content-leave-to {
  opacity: 0;
}
.box-main-content-block {
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: visibility ease-out 0.3s, opacity ease-out 0.3s;
}
.box-main-content-block.blocked {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.box-main-close {
  display: flex;
  position: absolute;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  border-top-right-radius: 9px;
  border-bottom-left-radius: 9px;
  font-size: 30px;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  cursor: pointer;
}
.box-main-close:hover {
  background-color: #666;
}
.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding-top: 10px;
  border: 1px solid #ccc;
  background-color: var(--c-background);
}
.loader-image {
  font-size: 10px;
  margin: 50px auto;
  text-indent: -9999em;
  width: 11em;
  height: 11em;
  border-radius: 50%;
  background: linear-gradient(to right, #b3b3b3 10%, rgba(255, 255, 255, 0) 42%);
  position: relative;
  animation: load3 1.4s infinite linear;
  transform: translateZ(0);
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .loader-image {
    font-size: 6px;
  }
}
.loader-image::before {
  width: 50%;
  height: 50%;
  background: #b3b3b3;
  border-radius: 100% 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.loader-image::after {
  background: var(--c-background);
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  inset: 0;
}
@keyframes load3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.menu-contents {
  max-width: 800px;
  margin: 1rem auto;
  border: 1px solid #ccc;
}
.menu-row {
  height: 60px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.menu-row:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.menu-name {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 40%;
  height: 100%;
  padding: 0 1rem;
  color: #fff;
  font-size: 110%;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .menu-name {
    flex-wrap: wrap;
  }
}
.menu-name:not(.disabled) {
  background-color: var(--c-menu);
  cursor: pointer;
}
.menu-name:not(.disabled):hover {
  opacity: 0.7;
}
.menu-name.disabled {
  background-color: var(--c-menu-disabled);
  opacity: 0.6;
}
@media screen and (max-width: 480px) {
  .menu-name-text {
    width: 100%;
  }
}
.menu-description {
  font-family: "Scope One", serif;
  color: var(--c-text);
  padding: 1rem;
  width: 60%;
  font-size: 90%;
}
.content-updated {
  padding-left: 1rem;
  font-size: 1rem;
  color: #4d4dff;
}
@media screen and (max-width: 480px) {
  .content-updated {
    width: 100%;
  }
}
.mode-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 30px;
  max-width: 30px;
  max-height: 30px;
  cursor: pointer;
  color: white;
}
.mode-button:hover {
  opacity: 0.7;
}
.noscript {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  align-items: center;
  justify-content: center;
  background: linear-gradient(-45deg, #eee, #bbb);
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow: none;
}
.page-top {
  position: fixed;
  width: 60px;
  height: 60px;
  z-index: 50;
  bottom: 40px;
  right: 35px;
}
@media screen and (max-width: 480px) {
  .page-top {
    width: 50px;
    height: 50px;
    bottom: 65px;
    right: 15px;
  }
}
.page-top a {
  display: block;
  position: relative;
  padding: 5px;
  width: 100%;
  height: 100%;
  background-color: #666;
  border-radius: 50px;
}
.page-top a:hover {
  cursor: pointer;
  background: #999;
}
.page-top a span {
  display: block;
  position: absolute;
  margin: auto;
  width: 0;
  height: 0;
  inset: 0 0 25%;
  border: 15px solid transparent;
  border-bottom: 25px solid #fff;
}
@media screen and (max-width: 480px) {
  .page-top a span {
    border: 11px solid transparent;
    border-bottom: 22px solid #fff;
  }
}
.pagetop-enter-active,
.pagetop-leave-active {
  transition: opacity 0.5s;
}
.pagetop-enter,
.pagetop-leave-to {
  opacity: 0;
}
.tabs {
  margin: 0;
  letter-spacing: -0.4em;
  box-shadow: 5px 6px 5px -2px #543;
  color: #fff;
  /* タブ選択状態 */
  /* タブ非選択状態 */
}
@media screen and (max-width: 480px) {
  .tabs {
    margin: auto;
    max-width: 95%;
    font-size: 12px;
  }
}
.tabs > * {
  display: inline-block;
  margin: 0;
  padding: 0.3rem;
  height: 2rem;
  font-weight: bold;
  text-align: center;
  border-radius: 0.5rem 0.5rem 0 0;
  letter-spacing: normal;
  border-left: 0.5px solid #ccc;
}
@media screen and (max-width: 480px) {
  .tabs > * {
    padding: 0.5rem 0.3rem;
  }
}
.tabs > *:last-child {
  border-right: 0.5px solid #ccc;
}
.tabs .select {
  color: #fff;
  background-color: var(--c-select-tab-background);
}
.tabs .unselect {
  color: #fff;
}
.tabs .unselect.enable {
  background-color: var(--c-unselect-tab-background);
}
.tabs .unselect.enable:hover {
  cursor: pointer;
  opacity: 0.6;
}
.tabs .unselect.disable {
  background-color: var(--c-disable-tab-background);
}
/* レスポンシブテーブル */
.table {
  font-size: 14px;
  width: 100%;
  box-shadow: 3px 3px 5px #543;
}
@media screen and (max-width: 480px) {
  .table {
    font-size: 10px;
    word-break: break-word;
  }
}
@media screen and (max-width: 480px) {
  .table {
    margin: auto;
    max-width: 95%;
  }
}
.table-header {
  margin: 0;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.table-header .table-row {
  border-bottom: none;
}
.table-header .table-row > * {
  font-weight: bold;
  text-align: center;
}
.table-body {
  margin: 0;
  border: 1px solid #ccc;
}
.table-row {
  animation: show 0.2s ease-in-out;
  display: flex;
  margin: 0;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--c-table-background);
  border-bottom: 1px solid #ccc;
}
.table-row.fade, .table-row.fade tr, .table-row.fade td {
  display: none;
}
.table-row_link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
.table-row:not(:first-child) {
  border-top: none;
}
.table-row > * {
  padding: 5px;
}
.embedded-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 1rem 0;
}
.embedded-content .search-box {
  width: 450px;
  max-width: 100%;
}
.embedded-content .gsc-control-cse {
  padding: 0;
  background-color: #fff;
  border: none;
}
.embedded-content .gsc-search-button {
  margin: 0;
}
@media screen and (max-width: 480px) {
  .embedded-content .gsc-input {
    font-size: 12px;
  }
}
.embedded-content .ad {
  text-align: center;
}
.embedded-content .ad-content {
  display: flex;
  margin: 0.5em auto;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .embedded-content .ad-content.sp {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .embedded-content .ad-content {
    display: block;
  }
  .embedded-content .ad-content.pc {
    display: none;
  }
}
.embedded-content .ad-content-box {
  margin: 0 0.5em;
}
@media screen and (max-width: 480px) {
  .embedded-content .ad-content-box {
    margin: 1em auto;
  }
}
.embedded-content .ad-content-box a {
  color: #afc;
  text-decoration: none;
}
.card-list {
  font-size: 14px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 0;
  padding: 0 10px;
  width: 100%;
  box-shadow: 3px 3px 5px #543;
}
@media screen and (max-width: 480px) {
  .card-list {
    font-size: 10px;
    word-break: break-word;
  }
}
@media screen and (max-width: 1024px) and (min-width: 481px) {
  .card-list {
    margin: auto;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 480px) {
  .card-list {
    margin: auto;
    max-width: 95%;
    justify-content: space-between;
  }
}
.card-item {
  animation: show 0.2s ease-in-out;
  display: flex;
  flex-basis: 250px;
  min-height: 120px;
  border: 1px solid #ccc;
  margin: 5px;
  box-shadow: 2px 2px 3px #999;
}
.card-item.fade, .card-item.fade tr, .card-item.fade td {
  display: none;
}
@media screen and (max-width: 480px) {
  .card-item {
    flex-basis: 48%;
    min-height: 100px;
    margin: 5px 0;
  }
}
@media screen and (max-width: 1024px) and (min-width: 481px) {
  .card-item {
    flex-basis: 31%;
    min-height: 100px;
  }
}
.card-item_link {
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
  flex-direction: column;
  width: 100%;
  padding: 10px;
  text-decoration: none;
}
.card-item_link .title {
  font-weight: bold;
  font-size: 120%;
}
.card-item_link .body {
  margin-top: 5px;
}
.card-item .recent {
  font-weight: bold;
}
.error .error-title {
  margin: 10px auto;
  padding: 10px;
  color: #f00;
  font-size: 200%;
  font-weight: bold;
  text-align: center;
  text-decoration: underline;
}
.error .error-body {
  margin: 10px auto;
  text-align: center;
}
.content-information .menu-contents .menu-row {
  height: 50px;
  margin: 0;
}
.content-information .menu-contents .menu-row:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.5);
}
.content-information .menu-contents .menu-row:nth-of-type(odd):hover {
  opacity: 0.5;
}
.content-information .menu-contents .menu-row:nth-of-type(even) {
  background-color: rgba(204, 204, 204, 0.5);
}
.content-information .menu-contents .menu-row:nth-of-type(even):hover {
  opacity: 0.5;
}
.content-information .menu-contents .menu-row_link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  text-decoration: none;
}
.content-information .menu-contents .menu-name {
  font-family: "Scope One", serif;
  color: var(--c-text);
  width: 150px;
  background-color: inherit;
}
.content-information .menu-contents .menu-description {
  width: calc(100% - 150px);
}
.information-contents {
  max-width: 1200px;
  margin: 1rem auto;
  border: 1px solid #ccc;
}
.information-row {
  min-height: 60px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.information-row:not(:first-child) {
  border-top: 1px solid #ccc;
}
.information-row-contents {
  background-color: transparent;
}
.information-content {
  min-height: 100px;
  padding: 1rem 1.5rem;
}
.information-content h1,
.information-content h2,
.information-content h3,
.information-content h4,
.information-content h5,
.information-content h6 {
  margin: 1rem 0;
}
.information-content ul,
.information-content ol {
  padding-left: 1.5rem;
}
.information-content ul li,
.information-content ol li {
  list-style: initial;
}
.information-link {
  text-align: center;
}
/* テーブル */
.title-detail .news-body {
  padding-bottom: 1rem;
}
.title-detail table {
  font-size: 14px;
  max-width: 100%;
  color: var(--c-table-text);
  border-collapse: collapse;
  border-spacing: 0;
  box-shadow: 3px 3px 5px #543;
}
@media screen and (max-width: 480px) {
  .title-detail table {
    font-size: 10px;
    word-break: break-word;
  }
}
@media screen and (max-width: 480px) {
  .title-detail table {
    width: 100%;
  }
}
.title-detail th,
.title-detail tr,
.title-detail td {
  border: 1px solid #ccc;
}
.title-detail tr {
  background-color: var(--c-table-background);
}
.title-detail tr.back1 {
  background-color: var(--c-back1);
}
.title-detail tr.back2 {
  background-color: var(--c-back2);
}
.title-detail tr.back3 {
  background-color: var(--c-back3);
}
.title-detail tr.back4 {
  background-color: var(--c-back4);
}
.title-detail tr.back5 {
  background-color: var(--c-back5);
}
.title-detail tr.back6 {
  background-color: var(--c-back6);
}
.title-detail tr.back7 {
  background-color: var(--c-back7);
}
.title-detail tr.back8 {
  background-color: var(--c-back8);
}
.title-detail tr.back9 {
  background-color: var(--c-back9);
}
.title-detail tr.back10 {
  background-color: var(--c-back10);
}
.title-detail tr.back11 {
  background-color: var(--c-back11);
}
.title-detail tr.back12 {
  background-color: var(--c-back12);
}
.title-detail tr.back13 {
  background-color: var(--c-back13);
}
.title-detail tr.back14 {
  background-color: var(--c-back14);
}
.title-detail tr.back15 {
  background-color: var(--c-back15);
}
.title-detail tr.back16 {
  background-color: var(--c-back16);
}
.title-detail tr.back17 {
  background-color: var(--c-back17);
}
.title-detail tr.back18 {
  background-color: var(--c-back18);
}
.title-detail tr.back19 {
  background-color: var(--c-back19);
}
.title-detail tr.back20 {
  background-color: var(--c-back20);
}
.title-detail th,
.title-detail td {
  padding: 0.3rem;
}
@media screen and (max-width: 480px) {
  .title-detail th,
.title-detail td {
    padding: 0.2rem;
    font-size: 10px;
  }
}
/** Go News・Go Topics用背景色および文字色 */
.bg-japan {
  background-color: var(--c-back1);
}
.bg-japan:hover {
  opacity: 0.7;
}
.bg-japan.emphasis {
  background-color: var(--c-back1-emphasis);
}
.bg-japan.emphasis:hover {
  opacity: 0.7;
}
.bg-japan.closed {
  opacity: 0.6;
  color: #f00;
}
.text-japan {
  color: var(--c-text-japan);
}
.bg-korea {
  background-color: var(--c-back2);
}
.bg-korea:hover {
  opacity: 0.7;
}
.bg-korea.emphasis {
  background-color: var(--c-back2-emphasis);
}
.bg-korea.emphasis:hover {
  opacity: 0.7;
}
.bg-korea.closed {
  opacity: 0.6;
  color: #f00;
}
.text-korea {
  color: var(--c-text-korea);
}
.bg-china {
  background-color: var(--c-back3);
}
.bg-china:hover {
  opacity: 0.7;
}
.bg-china.emphasis {
  background-color: var(--c-back3-emphasis);
}
.bg-china.emphasis:hover {
  opacity: 0.7;
}
.bg-china.closed {
  opacity: 0.6;
  color: #f00;
}
.text-china {
  color: var(--c-text-china);
}
.bg-taiwan {
  background-color: var(--c-back4);
}
.bg-taiwan:hover {
  opacity: 0.7;
}
.bg-taiwan.emphasis {
  background-color: var(--c-back4-emphasis);
}
.bg-taiwan.emphasis:hover {
  opacity: 0.7;
}
.bg-taiwan.closed {
  opacity: 0.6;
  color: #f00;
}
.text-taiwan {
  color: var(--c-text-taiwan);
}
.bg-worlds {
  background-color: var(--c-back5);
}
.bg-worlds:hover {
  opacity: 0.7;
}
.bg-worlds.emphasis {
  background-color: var(--c-back5-emphasis);
}
.bg-worlds.emphasis:hover {
  opacity: 0.7;
}
.bg-worlds.closed {
  opacity: 0.6;
  color: #f00;
}
.text-worlds {
  color: var(--c-text-worlds);
}
.text-north-america {
  color: var(--c-text-north-america);
}
.text-europe {
  color: var(--c-text-europe);
}
.text-oceania {
  color: var(--c-text-oceania);
}
.text-southeast-asia {
  color: var(--c-text-southeast-asia);
}
.text-russia {
  color: var(--c-text-russia);
}
.text-south-america {
  color: var(--c-text-south-america);
}
.text-asia {
  color: var(--c-text-asia);
}
.tournament-header {
  font-size: 24px;
}
.tournament-header-senior {
  color: #080;
}
.tournament-header-female {
  color: #f00;
  font-size: 24px;
}
.text-special {
  color: #bd3940;
}
.text-japan {
  color: var(--c-text-japan);
}
.text-korea {
  color: var(--c-text-korea);
}
.text-china {
  color: var(--c-text-china);
}
.text-taiwan {
  color: var(--c-text-taiwan);
}
.text-worlds {
  color: var(--c-text-worlds);
}
.text-north-america {
  color: var(--c-text-north-america);
}
.text-europe {
  color: var(--c-text-europe);
}
.text-southeast-asia {
  color: var(--c-text-southeast-asia);
}
.text-oceania {
  color: var(--c-text-oceania);
}
.text-asia {
  color: var(--c-text-asia);
}
.text-south-america {
  color: var(--c-text-south-america);
}
.text-russia {
  color: var(--c-text-russia);
}
.text-special {
  color: var(--c-text-special);
}
.text-orange {
  color: var(--c-text-orange);
}
.text-blue {
  color: var(--c-text-blue);
}
.text-green {
  color: var(--c-text-green);
}
.text-senior, .text-gentleman, .text-invitation {
  color: var(--c-green);
}
.text-female, .text-lady {
  color: var(--c-red);
}
.text-amateur {
  color: var(--c-blue);
}
.text-unconfirm {
  color: #999;
}
/* 期 */
.content-news .holding-box {
  animation: show 0.3s ease-in-out;
}
.content-news .holding-box.fade, .content-news .holding-box.fade tr, .content-news .holding-box.fade td {
  display: none;
}
.content-news > section {
  padding-bottom: 10px;
}
.content-news h2 {
  margin-top: 0;
}
.content-news .news {
  height: 60%;
}
@media screen and (max-width: 480px) {
  .content-news .news {
    height: 100%;
  }
}
.table-list {
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.table-list_item {
  font-size: 14px;
  margin: 0;
  padding: 0.2rem;
  width: 33%;
  min-width: 500px;
  flex-basis: 33%;
  list-style: none;
}
@media screen and (max-width: 480px) {
  .table-list_item {
    font-size: 10px;
    word-break: break-word;
  }
}
@media screen and (max-width: 480px) {
  .table-list_item {
    width: 100%;
    min-width: auto;
    flex-basis: 100%;
    font-size: 0.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .table-list_item-half {
    width: 50%;
    min-width: 100px;
    flex-basis: 50%;
  }
}
@media screen and (min-width: 1025px) {
  .table-list_item-short {
    width: 20%;
    min-width: 100px;
    flex-basis: 20%;
  }
}
.table-list_item .inner-table {
  width: 100%;
  border: 1px solid #ccc;
  box-shadow: 3px 3px 5px #543;
}
.table-list_item .inner-table_header, .table-list_item .inner-table_footer {
  text-align: center;
}
.table-list_item_table-wrap {
  margin: 0;
  width: 100%;
  box-shadow: 3px 3px 5px #543;
}
.table-list_item_table-wrap .inner-table {
  box-shadow: none;
}
.table-list_item .kl_day,
.table-list_item .order_day {
  width: 100%;
}
.table-list_item .kl_name,
.table-list_item .order_name {
  width: 43%;
}
.table-list_item .kl_result,
.table-list_item .order_result {
  width: 14%;
  justify-content: center;
}
.table-list_item .kl_result.left,
.table-list_item .order_result.left {
  justify-content: flex-start;
}
.table-list_item .kl_result.right,
.table-list_item .order_result.right {
  justify-content: flex-end;
}
.table-list .table-row {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.table-list .table-row:last-child {
  border-bottom: none;
}
.table-list .table-row-header {
  text-align: center;
  font-weight: bold;
}
.table-list .table-header-column {
  display: flex;
  align-items: center;
  justify-content: center;
}
.table-list .table-column {
  display: flex;
  align-items: center;
  min-height: 30px;
}
.table-list .table-column:not(:first-child) {
  border-left: 1px solid #ccc;
}
.table-list .table-column.order {
  justify-content: center;
  width: 40px;
  flex-basis: 40px;
  text-align: center;
  font-weight: bold;
}
.table-list .table-column.point {
  justify-content: center;
  width: 60px;
  flex-basis: 60px;
  text-align: center;
}
.table-list .table-column.teamname, .table-list .table-column.player {
  width: calc(100% - 40px - 60px);
  flex-basis: calc(100% - 40px - 60px);
}
.table-list .table-column.name {
  width: 43%;
}
.table-list .table-column.result {
  margin: 0;
  width: 14%;
  justify-content: center;
}
.table-list .table-column.result.left {
  justify-content: flex-start;
}
.table-list .table-column.result.right {
  justify-content: flex-end;
}
.table-list .table-column.al_category {
  width: 5%;
  justify-content: flex-end;
}
.table-list .table-column.al_name {
  width: 40%;
}
.table-list .table-column.al_result {
  width: 15%;
  justify-content: center;
}
.table-list .table-column.al_result.left {
  justify-content: flex-start;
}
.table-list .table-column.al_result.right {
  justify-content: flex-end;
}
.table-wrap {
  margin: 0 0 1em;
}
.table-wrap .table {
  font-size: 14px;
  display: inline-block;
  margin: 0 0.1em 0.3em 0;
  vertical-align: top;
}
@media screen and (max-width: 480px) {
  .table-wrap .table {
    font-size: 10px;
    word-break: break-word;
  }
}
@media screen and (max-width: 480px) {
  .table-wrap .table-flex, .table-wrap .table-box, .table-wrap .table.al_winloss, .table-wrap .table.kl_winloss {
    width: 100%;
    max-width: 500px;
    margin: 0 0 0.3em;
  }
}
@media screen and (min-width: 1025px) {
  .table-wrap .table-flex, .table-wrap .table-box, .table-wrap .table.al_winloss, .table-wrap .table.kl_winloss {
    width: calc(50% - 2px);
  }
  .table-wrap .table-flex.member, .table-wrap .table-box.member, .table-wrap .table.al_winloss.member, .table-wrap .table.kl_winloss.member {
    width: 300px;
  }
}
.table-wrap .table-flex.reset, .table-wrap .table-box.reset, .table-wrap .table.al_winloss.reset, .table-wrap .table.kl_winloss.reset {
  width: 100%;
  visibility: hidden;
  opacity: 0;
}
.table-wrap .table .table-row {
  width: 100%;
  display: flex;
  margin: 0;
  min-height: 30px;
  align-items: stretch;
  background-color: var(--c-table-background);
  border-bottom: 1px solid #ccc;
}
.table-wrap .table .table-row.table-row-header {
  font-weight: bold;
}
.table-wrap .table .table-row.table-row-header > * {
  justify-content: center;
}
.table-wrap .table .table-row.table-row-header .box-name {
  width: 100%;
  font-size: 110%;
}
.table-wrap .table .table-row > * {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .table-wrap .table .table-row > * {
    padding: 0.5em 0.3em;
  }
}
@media screen and (min-width: 1025px) {
  .table-wrap .table .table-row > * {
    padding: 0.3em;
  }
}
.table-wrap .table .table-row > *:not(:first-child) {
  border-left: 1px solid #ccc;
}
.table-wrap .table .table-row .inner-table {
  display: table;
  padding: 0;
  width: 100%;
}
.table-wrap .table .table-row .inner-table-header {
  text-align: center;
}
.table-wrap .table .table-row-player {
  flex-grow: 2;
}
.table-wrap .table .table-row-player-seed {
  flex-grow: 3;
}
.table-wrap .table .table-row-result {
  flex-grow: 1;
}
.table-wrap .table .table-row .order,
.table-wrap .table .table-row .point {
  text-align: center;
}
.table-wrap .table .table-row .order {
  font-weight: bold;
}
.table-wrap .table .table-row .name_column {
  width: 43%;
}
.table-wrap .table .table-row .result_column {
  width: 14%;
}
.table-wrap .table .table-row .result_column.left {
  justify-content: flex-start;
}
.table-wrap .table .table-row .result_column.right {
  justify-content: flex-end;
}
.table-wrap .table .table-row .kl_day {
  width: 100%;
}
.table-wrap .table .table-row .kl_name {
  width: 43%;
}
.table-wrap .table .table-row .kl_result {
  width: 14%;
  justify-content: center;
}
.table-wrap .table .table-row .kl_result.left {
  justify-content: flex-start;
}
.table-wrap .table .table-row .kl_result.right {
  justify-content: flex-end;
}
.table-wrap .table .table-row .al_category {
  width: 5%;
  justify-content: flex-end;
}
.table-wrap .table .table-row .al_name {
  width: 40%;
}
.table-wrap .table .table-row .al_result {
  width: 15%;
  justify-content: center;
}
.table-wrap .table .table-row .al_result.left {
  justify-content: flex-start;
}
.table-wrap .table .table-row .al_result.right {
  justify-content: flex-end;
}
.table-wrap .table .table-row .knockout_player {
  width: 37%;
}
.table-wrap .table .table-row .knockout_result {
  width: 12%;
  justify-content: center;
}
.table-wrap .table .table-row .knockout_date {
  width: 14%;
  justify-content: center;
}
.table-wrap .table .table-row .knockout-tv_player {
  width: 33%;
}
.table-wrap .table .table-row .knockout-tv_result {
  width: 12%;
  justify-content: center;
}
.table-wrap .table .table-row .knockout-tv_date {
  width: 22%;
  justify-content: center;
}
.table-wrap .table .table-row > :first-child {
  border-left: none;
}
.table-wrap .table .table-row > :last-child {
  border-right: none;
}
.table-wrap .table .table-row:last-child {
  border-bottom: none;
}
.note {
  margin: 1rem 0.3rem;
}
.note * {
  font-size: 0.75rem;
  font-family: "Courier New", Consolas, monospace;
}
.note-title {
  margin-top: 0.5rem;
}
.note-title-result {
  font-size: 0.9rem;
  font-weight: bold;
}
.note-title-winloss {
  color: var(--c-blue);
}
.note-description {
  margin: 0.2rem 0 1rem 0.5rem;
}
.note-description-winloss {
  color: var(--c-blue);
}
.note-description-country {
  display: block;
  margin-left: -0.5rem;
}
.note-description-title:not(:first-child) {
  margin-left: 0.5rem;
}
.note-description-history {
  display: block;
}
.spacer {
  margin-top: 0.3rem;
  margin-bottom: 0.8rem;
}
span.female {
  color: var(--c-red);
  font-size: 180%;
}
span.senior {
  color: var(--c-green);
  font-size: 180%;
}
span.other {
  color: var(--c-brown);
  font-size: 180%;
}
/* タイトル戦 */
.title-match {
  margin-bottom: 0.8rem;
}
/* テーブルサイズ */
table[class*=table_],
table[class*=league],
table[class*=knockout] {
  margin-bottom: 15px;
  max-width: 100%;
}
@media screen and (max-width: 480px) {
  table[class*=table_],
table[class*=league],
table[class*=knockout] {
    table-layout: fixed;
  }
}
@media screen and (min-width: 1025px) {
  table[class*=table_].table_sixtyFour,
table[class*=league].table_sixtyFour,
table[class*=knockout].table_sixtyFour {
    min-width: 1000px;
  }
  table[class*=table_].table_fourtyEight, table[class*=table_].table_fifty,
table[class*=league].table_fourtyEight,
table[class*=league].table_fifty,
table[class*=knockout].table_fourtyEight,
table[class*=knockout].table_fifty {
    min-width: 920px;
  }
  table[class*=table_].table_twentyFour, table[class*=table_].table_thirty, table[class*=table_].table_thirtyTwo,
table[class*=league].table_twentyFour,
table[class*=league].table_thirty,
table[class*=league].table_thirtyTwo,
table[class*=knockout].table_twentyFour,
table[class*=knockout].table_thirty,
table[class*=knockout].table_thirtyTwo {
    min-width: 790px;
  }
  table[class*=table_].table_sixteen,
table[class*=league].table_sixteen,
table[class*=knockout].table_sixteen {
    min-width: 690px;
  }
  table[class*=table_].table_eight,
table[class*=league].table_eight,
table[class*=knockout].table_eight {
    min-width: 580px;
  }
  table[class*=table_].table_four,
table[class*=league].table_four,
table[class*=knockout].table_four {
    min-width: 450px;
  }
  table[class*=table_].table_decision,
table[class*=league].table_decision,
table[class*=knockout].table_decision {
    min-width: 320px;
  }
  table[class*=table_].table_preliminary_parallel,
table[class*=league].table_preliminary_parallel,
table[class*=knockout].table_preliminary_parallel {
    min-width: 800px;
  }
  table[class*=table_].league_ten,
table[class*=league].league_ten,
table[class*=knockout].league_ten {
    min-width: 800px;
  }
  table[class*=table_].league_nine,
table[class*=league].league_nine,
table[class*=knockout].league_nine {
    min-width: 760px;
  }
  table[class*=table_].league_eight,
table[class*=league].league_eight,
table[class*=knockout].league_eight {
    min-width: 720px;
  }
  table[class*=table_].league_seven,
table[class*=league].league_seven,
table[class*=knockout].league_seven {
    min-width: 680px;
  }
  table[class*=table_].league_six,
table[class*=league].league_six,
table[class*=knockout].league_six {
    min-width: 640px;
  }
  table[class*=table_].league_five,
table[class*=league].league_five,
table[class*=knockout].league_five {
    min-width: 600px;
  }
  table[class*=table_].league_swiss,
table[class*=league].league_swiss,
table[class*=knockout].league_swiss {
    min-width: 1000px;
  }
  table[class*=table_].knockout,
table[class*=league].knockout,
table[class*=knockout].knockout {
    min-width: 480px;
  }
  table[class*=table_].knockout-full,
table[class*=league].knockout-full,
table[class*=knockout].knockout-full {
    width: 100%;
    min-width: 100%;
  }
}
.league-row {
  height: 50px;
}
@media screen and (max-width: 480px) {
  .league-row {
    height: 35px;
  }
}
.league-description {
  text-align: center;
}
.league-scene-row {
  text-align: center;
}
.league-scene-row.results {
  height: 90px;
}
.league-scene-row.results .result {
  vertical-align: top;
}
/* スクロール可能な表 */
.scrollable-content {
  margin-bottom: 15px;
}
@media screen and (max-width: 480px) {
  .scrollable-content {
    max-width: 100%;
    overflow-x: auto;
    box-shadow: 3px 3px 5px #543;
  }
}
@media screen and (max-width: 480px) {
  .scrollable-content table {
    margin: 0;
    table-layout: auto;
  }
}
.scrollable-content table.league {
  width: 100%;
}
.scrollable-content table.league-narrow {
  width: 640px;
}
@media screen and (max-width: 480px) {
  .scrollable-content table.league-narrow {
    min-width: 448px;
  }
}
.scrollable-content table.league-medium {
  width: 820px;
}
@media screen and (max-width: 480px) {
  .scrollable-content table.league-medium {
    min-width: 574px;
  }
}
.scrollable-content table.league-wide {
  width: 1000px;
}
@media screen and (max-width: 480px) {
  .scrollable-content table.league-wide {
    min-width: 700px;
  }
}
.scrollable-content table.league-wider {
  width: 1150px;
}
@media screen and (max-width: 480px) {
  .scrollable-content table.league-wider {
    min-width: 805px;
  }
}
.scrollable-content table.tournament {
  width: 100%;
}
.scrollable-content table.tournament-decision {
  width: 400px;
}
@media screen and (max-width: 480px) {
  .scrollable-content table.tournament-decision {
    width: 100%;
  }
}
.scrollable-content table.tournament-narrow {
  width: 500px;
}
@media screen and (max-width: 480px) {
  .scrollable-content table.tournament-narrow {
    width: 100%;
  }
}
.scrollable-content table.tournament-medium {
  width: 700px;
}
@media screen and (max-width: 480px) {
  .scrollable-content table.tournament-medium {
    min-width: 490px;
  }
}
.scrollable-content table.tournament-wide {
  width: 950px;
}
@media screen and (max-width: 480px) {
  .scrollable-content table.tournament-wide {
    min-width: 665px;
  }
}
.scrollable-content table.tournament-wider {
  width: 1100px;
}
@media screen and (max-width: 480px) {
  .scrollable-content table.tournament-wider {
    min-width: 770px;
  }
}
.scrollable-content table.title {
  width: 100%;
}
.scrollable-content table.title-decision {
  width: 350px;
}
@media screen and (max-width: 480px) {
  .scrollable-content table.title-decision {
    width: 100%;
  }
}
.scrollable-content table.title-narrow {
  width: 500px;
}
@media screen and (max-width: 480px) {
  .scrollable-content table.title-narrow {
    width: 100%;
  }
}
.scrollable-content table.title-medium {
  width: 660px;
}
@media screen and (max-width: 480px) {
  .scrollable-content table.title-medium {
    min-width: 462px;
  }
}
.scrollable-content table.title-wide {
  width: 930px;
}
@media screen and (max-width: 480px) {
  .scrollable-content table.title-wide {
    min-width: 651px;
  }
}
.scrollable-content table.ranking {
  width: 100%;
}
.scrollable-content table.ranking-narrow {
  width: 350px;
}
@media screen and (max-width: 480px) {
  .scrollable-content table.ranking-narrow {
    width: 100%;
  }
}
.scrollable-content table.ranking-medium {
  width: 450px;
}
@media screen and (max-width: 480px) {
  .scrollable-content table.ranking-medium {
    width: 100%;
  }
}
.scrollable-content table.ranking-wide {
  width: 550px;
}
@media screen and (max-width: 480px) {
  .scrollable-content table.ranking-wide {
    min-width: 385px;
  }
}
.tournament-result {
  display: flex;
  flex-direction: column;
}
.tournament-result.match:not(:first-child) {
  margin-top: 1.5rem;
}
.tournament-result-item {
  min-height: 20px;
}
/* 文字設定共通 */
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.bold {
  font-weight: bold;
}
/* 背景色 */
.back1 {
  background-color: var(--c-back1);
}
.back2 {
  background-color: var(--c-back2);
}
.back3 {
  background-color: var(--c-back3);
}
.back4 {
  background-color: var(--c-back4);
}
.back5 {
  background-color: var(--c-back5);
}
.back6 {
  background-color: var(--c-back6);
}
.back7 {
  background-color: var(--c-back7);
}
.back8 {
  background-color: var(--c-back8);
}
.back9 {
  background-color: var(--c-back9);
}
.back10 {
  background-color: var(--c-back10);
}
.back11 {
  background-color: var(--c-back11);
}
.back12 {
  background-color: var(--c-back12);
}
.back13 {
  background-color: var(--c-back13);
}
.back14 {
  background-color: var(--c-back14);
}
.back15 {
  background-color: var(--c-back15);
}
.back16 {
  background-color: var(--c-back16);
}
.back17 {
  background-color: var(--c-back17);
}
.back18 {
  background-color: var(--c-back18);
}
.back19 {
  background-color: var(--c-back19);
}
.back20 {
  background-color: var(--c-back20);
}
/* @deprecated 文字色 */
.orange {
  color: #f80;
}
.red {
  color: #f00;
}
.blue {
  color: #00f;
}
.green {
  color: #080;
}
.brown {
  color: #a52a2a;
}
.purple {
  color: #808;
}
.yellowgreen {
  color: #85c026;
}
.deeppink {
  color: #ff1493;
}
.gold {
  color: #ffd700;
}
.gray {
  color: #ccc;
}
.ranking-wrap {
  margin: 0 auto;
  width: 38%;
  min-width: 450px;
}
@media screen and (max-width: 480px) {
  .ranking-wrap {
    width: 90%;
    min-width: 90%;
  }
}
.ranking-wrap .ranking-category {
  height: 2rem;
  color: var(--c-blue);
  font-size: 150%;
}
.ranking-wrap .ranking-select-year {
  height: 1.8rem;
  margin: 10px 0;
}
.ranking-wrap .ranking-alert {
  color: #f00;
  font-weight: bold;
}
.ranking-wrap .ranking-until {
  height: 1.5rem;
  padding-right: 5px;
  color: var(--c-text);
  font-weight: bold;
  text-align: right;
}
.ranking-wrap .table {
  max-width: 100%;
}
.ranking-wrap .table .table-body .table-row {
  color: var(--c-table-text);
}
.ranking-wrap .table .table-body .table-row-rank {
  text-align: right;
}
.ranking-wrap .table .table-body .table-row-win, .ranking-wrap .table .table-body .table-row-lose, .ranking-wrap .table .table-body .table-row-rate {
  text-align: center;
}
.ranking-wrap .table .table-body .table-row:nth-child(odd) {
  background-color: var(--c-table-row-odd);
}
.ranking-wrap .table .table-body .table-row:nth-child(even) {
  background-color: var(--c-table-row-even);
}
.ranking-wrap .table .table-row .rank,
.ranking-wrap .table .table-row .win,
.ranking-wrap .table .table-row .lose,
.ranking-wrap .table .table-row .draw {
  width: 11%;
  text-align: center;
}
.ranking-wrap .table .table-row .player {
  width: 44%;
  word-wrap: break-word;
}
.ranking-wrap .table .table-row .rate {
  width: 12%;
  text-align: center;
}
.results-enter-active,
.results-leave-active {
  transition: opacity 0.3s;
}
.results-enter,
.results-leave-to {
  opacity: 0;
}
.results-move {
  transition: transform 0.3s;
}
.since-message {
  width: 100%;
  max-width: 800px;
  margin: 1rem auto;
  text-align: right;
  font-size: 80%;
}
.topics-header {
  margin-bottom: 0.5rem;
  padding-right: 0.2rem;
  text-align: right;
}
.topics-header .show-year {
  margin: 0.5em 0 0.3em;
  padding: 3px;
  font-size: 1em;
}
.topics .go-body-topics .card-item {
  min-height: 180px;
}
@media screen and (max-width: 480px) {
  .topics .go-body-topics .card-item {
    min-height: 120px;
  }
}
.topics .go-body-topics .comment {
  margin-top: 10px;
}
.topics-enter-active,
.topics-leave-active {
  transition: opacity 0.1s;
}
.topics-enter,
.topics-leave-to {
  opacity: 0;
}
.topics-move {
  transition: transform 0.1s;
}
.content-win-loss .winloss-contents {
  max-width: 500px;
}
.content-win-loss .winloss-contents.years {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.content-win-loss .winloss-contents.years .menu-row {
  max-width: 33.3333333333%;
  flex-basis: 33.3333333333%;
  height: 50px;
  margin: 0;
}
.content-win-loss .winloss-contents.years .menu-row:not(:first-child) {
  border-right: 1px solid #ccc;
}
.content-win-loss .winloss-contents.years .menu-row:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.5);
}
.content-win-loss .winloss-contents.years .menu-row:nth-of-type(odd):hover {
  opacity: 0.5;
}
.content-win-loss .winloss-contents.years .menu-row:nth-of-type(even) {
  background-color: rgba(204, 204, 204, 0.5);
}
.content-win-loss .winloss-contents.years .menu-row:nth-of-type(even):hover {
  opacity: 0.5;
}
.content-win-loss .winloss-contents.years .menu-row_link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  text-decoration: none;
}
.content-win-loss .winloss-contents.years .menu-row .menu-name {
  font-family: "Scope One", serif;
  color: var(--c-text);
  width: 150px;
  background-color: inherit;
}
.content-win-loss .winloss-header {
  text-align: center;
  color: var(--c-text);
  font-weight: bold;
}
.content-win-loss .winloss-footer {
  text-align: center;
}
.content-win-loss .winloss {
  margin: auto;
}
@media screen and (max-width: 480px) {
  .content-win-loss .winloss {
    font-size: 12px;
  }
}
.content-win-loss .winloss * {
  font-weight: normal;
}
.content-win-loss .winloss-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5px;
  height: 40px;
  text-align: center;
}
.content-win-loss .winloss-navigation .left,
.content-win-loss .winloss-navigation .right {
  margin: auto 0;
  font-weight: bold;
  font-size: 14px;
}
.content-win-loss .winloss-navigation .left.clickable,
.content-win-loss .winloss-navigation .right.clickable {
  color: #000;
  text-decoration: underline;
  cursor: pointer;
}
.content-win-loss .winloss-detail {
  margin-bottom: 10px;
  background-color: var(--c-table-background);
}
.content-win-loss .winloss-detail.table {
  max-width: 100%;
}
.content-win-loss .winloss-detail .table-row {
  text-align: center;
}
.content-win-loss .winloss-detail .table-row:first-child {
  border-top: none;
}
.content-win-loss .winloss-detail .table-row:last-child {
  border-bottom: none;
}
.content-win-loss .winloss-detail .table-row.win {
  background-color: var(--c-win-row-background);
}
.content-win-loss .winloss-detail .table-row.lose {
  background-color: var(--c-lose-row-background);
  opacity: 0.8;
}
.content-win-loss .winloss-detail .table-row.noresult {
  background-color: var(--c-table-background);
}
.content-win-loss .winloss-detail .table-row .date,
.content-win-loss .winloss-detail .table-row .result {
  width: 15%;
}
.content-win-loss .winloss-detail .table-row .title {
  width: 40%;
}
.content-win-loss .winloss-detail .table-row .player {
  width: 30%;
}
/* stylelint-enable */