* {
  margin: 0;
  padding: 0;
}
/* body */
body {
  font-size: 15px;
  line-height: 1.618;
  background: #000000;
}
@media screen and (max-width: 480px) {
  body {
    font-size: 13px;
  }
}
/* a */
a {
  color: #5858FA;
}
a:hover {
  color: #87cefa;
}
/* footer */
footer {
  text-align: center;
  padding: 10px;
  color: #ffffff;
  font-size: 15px;
}
footer a {
  color: #848484;
}
footer a:hover {
  color: #585858;
}
/* page top */
#page_top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 40px;
  display: none;
}
#page_top a {
  display: block;
  width: 50px;
  padding: 5px 0;
  text-decoration: none;
  background: transparent;
  text-align: center;
  color: #B5B5B5;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  border: 6px solid #B5B5B5;
  user-select: none;
}
#page_top a:hover {
  color: #999999;
  border: 6px solid #999999;
}
@media screen and (max-width: 480px) {
  #page_top {
    bottom: 5px;
    right: 5px;
  }
  #page_top a {
    width: 50px;
    padding: 5px 0;
  }
}
/* top */
#top {
  display: flex;
  align-items: flex-end;
  height: 100vh;
  width: 100%;
  font-size: 0;
  opacity: 0;
  position: relative;
}
#top.top_fade {
  animation-name: top-fade-animation;
  animation-duration: 4s;
  animation-fill-mode: forwards;
}
/* top-fade-animation */
@keyframes top-fade-animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#top_img {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  background-image: url(otogen.png);
}
#top_text {
  position: absolute;
  bottom: 0;
  height: 33%;
  width: 100%;
  display: table;
}
#top_text_inner {
  height: 100%;
  width: 100%;
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  font-size: 20px;
  color: #ffffff;
  font-family: "游ゴシック", "Yu Gothic";
}
@media screen and (max-width: 480px) {
  #top_text_inner {
    font-size: 12px;
  }
}
/* title */
#title {
  width: 100%;
  background: #ffffff;
  color: #000000;
  text-align: center;
  padding: 150px 0;
}
@media screen and (max-width: 420px) {
  #title {
    padding: 90px 0;
  }
}
#title #title_otogen {
  width: 100%;
  font-size: 28px;
}
#title #title_detail {
  width: 100%;
  font-size: 30px;
  font-family: "游明朝", serif;
}
#title #title_detail span.color_red {
  color: #ff0000;
  font-size: 45px;
  font-family: "游明朝 Medium", serif;
}
#title #title_detail a {
  color: #ff0000;
  font-size: 45px;
  font-family: "游明朝 Medium", serif;
}
#title #title_detail a:hover {
  color: #f77676;
}
@media screen and (max-width: 480px) {
  #title #title_otogen {
    font-size: 25px;
  }
  #title #title_detail {
    font-size: 18px;
  }
  #title #title_detail span.color_red,
  #title #title_detail a {
    font-size: 30px;
  }
}
/* contents */
.contents {
  width: 100%;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  background-size: cover;
  background-position: top;
  background-repeat: repeat;
  background-image: url("bg.png");
}
.contents:last-child {
  border-bottom: none;
}
.contents .contents_title {
  margin: 0 auto 0;
  padding: 30px 0;
  width: 960px;
  height: 45px;
  line-height: 45px;
  font-size: 30px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .contents .contents_title {
    margin: 0;
    width: 100%;
    font-size: 25px;
  }
}
.contents .contents_title:before {
  content: "";
  background-image: url("icon.png");
  background-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 30px;
  left: 20px;
}
@media screen and (max-width: 960px) {
  .contents .contents_title:before {
    left: 5px;
  }
}
.contents .contents_title .date {
  font-size: 12px;
  position: absolute;
  top: 5px;
  left: 0;
}
/* img rotate animation */
.contents .contents_title.img_rotate:before {
  animation-name: img_rotate_animation;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  transform: rotateY(0);
}
@keyframes img_rotate_animation {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(720deg);
  }
}
.img_rotate_animation {
  transform: rotateY(0);
}
.contents .contents_title span {
  font-weight: bold;
  margin-left: 70px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .contents .contents_title span {
    margin-left: 50px;
  }
}
.contents .contents_title span:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: solid 2px #ffffff;
}
/* under line aniamtion */
.contents .contents_title span.under_line:before {
  animation-name: under_line_animation;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  width: 0;
}
@keyframes under_line_animation {
  0% {
    width: 0%;
  }
  20% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.under_line_animation {
  width: 0;
}
/* element */
.contents .contents_element_wrap {
  margin: 0 auto 15px;
  width: 960px;
  font-size: 0;
}
@media screen and (max-width: 960px) {
  .contents .contents_element_wrap {
    margin: 0;
    width: 100%;
    text-align: center;
  }
}
.contents .contents_element_wrap .contents_element {
  display: inline-block;
  width: calc(50% - 22px);
  margin: 0 10px 20px;
  font-size: 15px;
  border: 1px solid #3f3f3f;
}
@media screen and (max-width: 960px) {
  .contents .contents_element_wrap .contents_element {
    display: inline-block;
    max-width: 480px;
    margin: 0 5px 20px;
    width: calc(100% - 12px);
  }
}
.contents .contents_element_wrap .contents_element div.contents_element_title {
  width: calc(100% - 8px);
  height: 30px;
  line-height: 30px;
  font-size: 18px;
  font-weight: bold;
  padding-left: 8px;
  background: #660c0c;
  display: inline-block;
  vertical-align: bottom;
}
@media screen and (max-width: 960px) {
  .contents .contents_element_wrap .contents_element div.contents_element_title {
    width: 100%;
    font-size: 15px;
    padding-left: 0;
  }
}
.contents .contents_element_wrap .contents_element div.contents_element_detail {
  position: relative;
  width: 100%;
  background: #ffffff;
}
.contents .contents_element_wrap .contents_element div.contents_element_detail:before {
  content: "";
  display: block;
  padding-top: 57%;
}
.contents .contents_element_wrap .contents_element div.contents_element_detail div.contents_element_detail_child {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  text-align: center;
  overflow: hidden;
}
.contents .contents_element_wrap .contents_element div.contents_element_detail div.contents_element_detail_child img {
  width: 100%;
  height: 100%;
}
.contents .contents_element_wrap .contents_element div.contents_element_detail div.contents_element_detail_child img.zoom {
  transition: 1s all;
}
.contents .contents_element_wrap .contents_element div.contents_element_detail div.contents_element_detail_child img.zoom:hover {
  transform: scale(1.1, 1.1);
  transition: 1s all;
}
/* breadcrumb */
#breadcrumb_wrap {
  width: 100%;
  height: 35px;
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
}
#breadcrumb_wrap #breadcrumb {
  margin: 0 auto;
  padding: 0 5px;
  width: 960px;
  height: 35px;
  line-height: 35px;
  font-size: 15px;
}
@media screen and (max-width: 960px) {
  #breadcrumb_wrap #breadcrumb {
    width: calc(100% - 10px);
  }
}
#breadcrumb_wrap #breadcrumb a {
  color: #ffffff;
}
#breadcrumb_wrap #breadcrumb a:hover {
  color: #c7c7c7;
}
/* card_title */
#card_title {
  width: 100%;
  color: #ffffff;
  text-align: left;
  border-bottom: 2px solid #ffffff;
}
#card_title.red {
  background: -moz-linear-gradient(top, #ff000050 10%, transparent);
  background: -webkit-linear-gradient(top, #ff000050 10%, transparent);
  background: linear-gradient(to bottom, #ff000050 10%, transparent);
}
#card_title.blue {
  background: -moz-linear-gradient(top, #1900ff50 10%, transparent);
  background: -webkit-linear-gradient(top, #1900ff50 10%, transparent);
  background: linear-gradient(to bottom, #1900ff50 10%, transparent);
}
#card_title.green {
  background: -moz-linear-gradient(top, #06861b50 10%, transparent);
  background: -webkit-linear-gradient(top, #06861b50 10%, transparent);
  background: linear-gradient(to bottom, #06861b50 10%, transparent);
}
#card_title h1,
h2,
h3 {
  margin: 0 auto;
  width: 960px;
}
#card_title h1 {
  font-size: 64px;
}
#card_title h2 {
  font-size: 40px;
  overflow-wrap: break-word;
  word-break: keep-all;
}
#card_title h3 {
  font-size: 20px;
}
@media screen and (max-width: 960px) {
  #card_title h1,
  h2,
  h3 {
    margin: 0;
    width: 100%;
  }
  #card_title h1 {
    font-size: 54px;
  }
  #card_title h2 {
    font-size: 30px;
  }
  #card_title h3 {
    font-size: 15px;
  }
}
/* card_contents */
.card_contents {
  margin: 0;
  width: 100%;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  background-size: cover;
  background-position: top;
  background-repeat: repeat;
  background-image: url("bg.png");
}
.card_contents .card_contents_title {
  margin: 0 auto;
  padding: 10px 5px;
  width: 960px;
  height: 45px;
  line-height: 45px;
  font-size: 30px;
}
@media screen and (max-width: 960px) {
  .card_contents .card_contents_title {
    margin: 0;
    width: 100%;
    font-size: 25px;
  }
}
/* card_element */
.card_contents .card_contents_element {
  margin: 0 auto;
  width: 960px;
}
@media screen and (max-width: 960px) {
  .card_contents .card_contents_element {
    width: 100%;
  }
}
.card_contents .card_contents_element div.card_contents_element_title {
  display: inline-block;
  width: calc(100% - 46px);
  height: 41px;
  line-height: 41px;
  margin: 5px 0 0;
  padding: 0 5px 0 41px;
  font-size: 24px;
  font-weight: bold;
  vertical-align: bottom;
  position: relative;
}
.card_contents .card_contents_element div.card_contents_element_title:before {
  content: "";
  background-size: contain;
  width: 34px;
  height: 34px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  .card_contents .card_contents_element div.card_contents_element_title:before {
    left: 5px;
  }
}
.card_contents .card_contents_element div.card_contents_element_title.image_red:before {
  background-image: url("icon_red.png");
}
.card_contents .card_contents_element div.card_contents_element_title.image_blue:before {
  background-image: url("icon_blue.png");
}
.card_contents .card_contents_element div.card_contents_element_title.image_green:before {
  background-image: url("icon_green.png");
}
/* img rotate animation */
.card_contents .card_contents_element div.card_contents_element_title.img_rotate:before {
  animation-name: img_rotate_animation;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
  transform: rotateY(0);
}
@keyframes img_rotate_animation {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(720deg);
  }
}
.img_rotate_animation {
  transform: rotateY(0);
}
.card_contents .card_contents_element div.card_contents_element_title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: solid 1px #ffffff;
}
/* under line aniamtion */
.card_contents .card_contents_element div.card_contents_element_title.under_line:after {
  animation-name: under_line_animation;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  width: 0;
}
@keyframes under_line_animation {
  0% {
    width: 0%;
  }
  20% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.under_line_animation {
  width: 0;
}
.card_contents .card_contents_element div.card_contents_element_detail {
  display: inline-block;
  width: calc(100% - 10px);
  margin: 0 0 10px;
  padding: 5px;
}
.card_contents .card_contents_element div.card_contents_element_detail ul {
  margin-left: 20px;
}
.card_contents .card_contents_element div.card_contents_element_detail li {
  margin-left: 10px;
}
.card_contents .card_contents_element div.card_contents_element_detail h1 {
  font-size: 20px;
}
/* player */
.card_contents .card_contents_element div.card_contents_element_detail div.player {
  display: inline-block;
  width: 200px;
  padding-right: 10px;
  font-size: 0;
}
@media screen and (max-width: 480px) {
  .card_contents .card_contents_element div.card_contents_element_detail div.player {
    width: 140px;
  }
}
.card_contents .card_contents_element div.card_contents_element_detail div.player div.player_image {
  display: inline-block;
  width: 100%;
}
.card_contents .card_contents_element div.card_contents_element_detail div.player div.player_image img {
  width: 100%;
  height: 100%;
}
.card_contents .card_contents_element div.card_contents_element_detail div.player div.player_name {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  text-align: center;
}
/* result */
.card_contents .card_contents_element div.card_contents_element_detail div.result {
  display: inline-block;
  width: 100%;
  border-left: 1px solid #000000;
  overflow-x: auto;
  margin-bottom: 10px;
}
.card_contents .card_contents_element div.card_contents_element_detail div.result:last-of-type {
  margin-bottom: 0;
}
.card_contents .card_contents_element div.card_contents_element_detail div.result table {
  border: 1px solid #8b8b8b;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: center;
}
.card_contents .card_contents_element div.card_contents_element_detail div.result table th,
.card_contents .card_contents_element div.card_contents_element_detail div.result table td {
  border-right: 1px solid #8b8b8b;
  border-bottom: 1px solid #8b8b8b;
  min-width: 24px;
  white-space: nowrap;
}
.card_contents .card_contents_element div.card_contents_element_detail div.result table .player_name {
  padding: 0 5px;
}
.card_contents .card_contents_element div.card_contents_element_detail div.result table .total {
  padding: 0 5px;
}
.card_contents .card_contents_element div.card_contents_element_detail div.result table .tiebreak {
  padding: 0 5px;
}
.card_contents .card_contents_element div.card_contents_element_detail div.result table .win {
  background: #313131;
}
.card_contents .card_contents_element div.card_contents_element_detail div.result table .supplement {
  padding: 0 5px;
  font-size: 10px;
}
/* video */
.card_contents .card_contents_element div.card_contents_element_detail div.video {
  position: relative;
  height: 0;
  padding: 30px 0 56.25%;
  overflow: hidden;
  border: 1px #222222 solid;
  background-color: #111111;
}
.card_contents .card_contents_element div.card_contents_element_detail div.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* music */
#music {
  width: calc(100% - 2px);
  border: 1px solid #7a7a7a;
  margin: 0 0 5px;
}
#music div.music_element_wrapper {
  width: 100%;
  height: 220px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#music div.music_element_wrapper::-webkit-scrollbar {
  display: none;
}
#music div.music_label,
#music div.music_element_wrapper div.music_element {
  width: 100%;
  border-bottom: 1px solid #7a7a7a;
  font-size: 0;
}
#music div.music_label {
  display: table;
  border-bottom: 1px solid #7a7a7a;
  background: #363636;
}
#music div.music_element_wrapper div.music_element {
  display: table;
  border-bottom: 1px solid #3f3f3f;
}
#music div.music_label div,
#music div.music_element_wrapper div.music_element div {
  display: table-cell;
  height: 100%;
  font-size: 16px;
  overflow-wrap: break-word;
  text-align: center;
  vertical-align: middle;
}
#music div.music_label div {
  border-right: 1px solid #7a7a7a;
  font-weight: bold;
}
#music div.music_element_wrapper div.music_element div {
  border-right: 1px dotted #3f3f3f;
}
#music div.music_label div:last-child,
#music div.music_element_wrapper div.music_element div:last-child {
  border-right: none;
}
#music div.music_label div.ver,
#music div.music_element_wrapper div.music_element div.ver {
  width: 100px;
  padding-left: 3px;
  text-align: left;
}
#music div.music_label div.name,
#music div.music_element_wrapper div.music_element div.name {
  width: calc(100% - 104px - 61px - 61px - 4px);
  text-align: left;
}
#music div.music_label div.diff,
#music div.music_element_wrapper div.music_element div.diff {
  width: 60px;
  padding: 0;
}
#music div.music_label div.diff.ext,
#music div.music_element_wrapper div.music_element div.diff.ext {
  color: #d10000;
}
#music div.music_label div.diff.adv,
#music div.music_element_wrapper div.music_element div.diff.adv {
  color: #e4c200;
}
#music div.music_label div.diff.bsc,
#music div.music_element_wrapper div.music_element div.diff.bsc {
  color: #00ca3d;
}
#music div.music_label div.lv,
#music div.music_element_wrapper div.music_element div.lv {
  width: 60px;
  padding: 0;
}
@media screen and (max-width: 480px) {
  #music div.music_label div,
  #music div.music_element_wrapper div.music_element div {
    font-size: 13px;
  }
  #music div.music_label div.ver,
  #music div.music_element_wrapper div.music_element div.ver {
    width: 50px;
    padding-left: 0;
  }
  #music div.music_label div.name,
  #music div.music_element_wrapper div.music_element div.name {
    width: calc(100% - 51px - 41px - 41px - 41px - 40px - 4px);
    padding-left: 0;
  }
  #music div.music_label div.diff,
  #music div.music_element_wrapper div.music_element div.diff {
    width: 40px;
  }
  #music div.music_label div.lv,
  #music div.music_element_wrapper div.music_element div.lv {
    width: 40px;
  }
  #music div.music_label div.one,
  #music div.music_element_wrapper div.music_element div.one {
    width: 40px;
  }
  #music div.music_label div.two,
  #music div.music_element_wrapper div.music_element div.two {
    width: 40px;
  }
}
#pagination_wrapper {
  width: 100%;
  height: 120px;
  border-bottom: 1px solid #ffffff;
}
#pagination_wrapper #pagination {
  margin: 0 auto;
  width: 960px;
  height: 100%;
  font-size: 0;
}
@media screen and (max-width: 960px) {
  #pagination_wrapper #pagination {
    margin: 0;
    width: 100%;
  }
}
#pagination_wrapper #pagination a {
  text-decoration: none;
}
#pagination_wrapper #pagination a:hover {
  background: #1b1b1b;
  transition: 0.5s;
}
#pagination_wrapper #pagination #prev,
#pagination_wrapper #pagination #next {
  display: inline-block;
  vertical-align: top;
  height: 100%;
  font-size: 16px;
  color: #ffffff;
}
#pagination_wrapper #pagination #prev {
  width: calc(50% - 2px);
  border-left: 1px solid #3b3b3b;
  border-right: 1px solid #3b3b3b;
}
#pagination_wrapper #pagination #next {
  width: calc(50% - 1px);
  border-right: 1px solid #3b3b3b;
}
#pagination_wrapper #pagination #prev #prev_title,
#pagination_wrapper #pagination #next #next_title {
  display: inline-block;
  width: calc(100% - 10px);
  height: 20px;
  padding-left: 10px;
  font-size: 14px;
  color: #ffffff;
}
#pagination_wrapper #pagination #prev #prev_contents,
#pagination_wrapper #pagination #next #next_contents {
  display: inline-block;
  width: calc(100% - 10px);
  height: calc(100% - 20px);
  padding-left: 10px;
  font-size: 24px;
  color: #ffffff;
}
@media screen and (max-width: 960px) {
  #pagination_wrapper #pagination #prev {
    width: calc(50% - 1px);
    border-left: 0;
  }
  #pagination_wrapper #pagination #next {
    width: 50%;
    border-right: 0;
  }
  #pagination_wrapper #pagination #prev #prev_title,
  #pagination_wrapper #pagination #next #next_title {
    width: calc(100% - 3px);
    font-size: 12px;
    padding-left: 3px;
  }
  #pagination_wrapper #pagination #prev #prev_contents,
  #pagination_wrapper #pagination #next #next_contents {
    width: calc(100% - 3px);
    padding-left: 3px;
    font-size: 20px;
  }
}
