@charset "UTF-8";

/*------------------------------------------------------------------------------------------------

            トップページ CSS

------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------

            トップページ 共通

------------------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------------------

            メインビジュアル

------------------------------------------------------------------------------------------------*/
#top__main__wrap {
}    
@media only screen and (min-width: 641px) {
    #top__main__wrap {
        position: relative;
        width: 1400px;
        margin: 0 auto;
    }
}

#top__main {
    width: 100%;
}
#top__main #top__main__inner {
    position: relative;
}
@media only screen and (min-width: 641px) {
    #top__main #top__main__inner {
        width: 1400px;
        margin: 0 auto;
    }
}

#top__main .main_slide_wrap {
    visibility: hidden;
    background-color: #fff;
}
@media only screen and (min-width: 641px) {
    #top__main .main_slide_wrap {
        /* width: 770px; */
    }
}

#top__main .slick-list {
    /* overflow: visible; */
}
#top__main .slick-dotted.slick-slider {
    margin-bottom: 0;
}
#top__main .slick-dots {
    /* bottom: 150px; */
    bottom: 20vw;
}
#top__main .slick-dots li {
    /* width: 160px; */
    width: 21.33%;
    /* height: 4px; */
    height: 0.53vw;
    /* margin: 0 4px; */
    margin: 0 0.53333%;
}
.slick-dots li button {
    /* width: 160px; */
    width: 100%;
    /* height: 4px; */
    height: 0.53vw;
    padding: 0;
}
#top__main .slick-dots li button:before {
    content: " ";
    width: auto;
    height: auto;
    background-color: #757575;
    /* padding-top: 4px; */
    padding-top: 0.53vw;
    /* padding-left: 160px; */
    padding-left: 100%;
    opacity: 1;
}
#top__main .slick-dots li.slick-active button:before {
    background-color: #f31918;
    opacity: 1;
}
@media only screen and (min-width: 641px) {
    #top__main .slick-dots {
        width: 770px;
        bottom: 90px;
        display: none;
    }
    #top__main .slick-dots li button:before {
        padding-top: 1px;
    }
}

#top__main .main_slide_wrap li {
    position: relative;
}
#top__main .main_img {
    width: 100%;
}
@media only screen and (min-width: 641px) {
    #top__main .main_img {
        width: 770px;
        height: 600px;
        background-color: #000;
    }
    #top__main .main_img img {
        width: 770px;
        /*height: 600px;*/
    }
    #top__main .main_img  p {
      display: table-cell; /* p要素でテーブルの構造を表現 */
      vertical-align: middle; /* 画像を垂直に */
      text-align: center; /* 画像を中央に */
      line-height: 0; /* ボックス内でのp要素の余分な下スペースを消去 */
      height: 600px;
    }
}

#top__main .main_text {
    /* width: 508px; */
    width: 67.33%;
    /* height: 120px; */
    height: 16vw;
    /* padding-left: 30px; */
    padding-left: 4%;
    /* padding-top: 20px; */
    padding-top: 2.666%;
    
    /* font-size: 28px; */
    font-size: 3.7333vw;
    /* line-height: 42px */
    line-height: 1.5;
    letter-spacing: 0.1em;
    
    background-color: #fff;
    color: #000;
    /* z-index: 10; */
}
@media only screen and (min-width: 641px) {
    #top__main .main_text {
        width: 1280px;
        height: 60px;
        padding-left: 110px;
        padding-top: 15px;
        font-size: 14px;
    }
}

#top__main .main_arrow_wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
    background-color: #fff;
    /* z-index: 9; */
}
#top__main .main_arrow_wrap::before {
    position: absolute;
    display: inline-block;
    content: " ";
    width: 30px;
    height: 10px;
    top: -10px;
    left: -66vw;
    right: 0;
    margin: auto;
    background-image: url("/files/user/img/top/triangle.png");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 20;
}
@media only screen and (min-width: 641px) {
    #top__main .main_arrow_wrap {
        position: absolute;
        bottom: 0;
        right: 0;
        text-align: right;
        background-color: #fff;
    }
    #top__main .main_arrow_wrap::before {
        left: -1170px;
        right: auto;
    }
}

#top__main .main_arrow_next,
#top__main .main_arrow_prev {
    display: inline-block;
    position: relative;
    /* width: 120px; */
    width: 16vw;
    /* height: 120px; */
    height: 16vw;
    background-color: #24292e;
    vertical-align: top;
    cursor: pointer;
}
#top__main .main_arrow_prev {
    border-right: 1px solid #000;
}
#top__main .main_arrow_next .background,
#top__main .main_arrow_prev .background{
    z-index: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background-color: #f31918;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all .34s cubic-bezier(.67,.01,.26,1);
    transition: all .34s cubic-bezier(.67,.01,.26,1);
    z-index: 1;
}
@media only screen and (min-width: 641px) {
    #top__main .main_arrow_next,
    #top__main .main_arrow_prev {
        width: 60px;
        height: 60px;
    }
    #top__main .main_arrow_next:hover .background,
    #top__main .main_arrow_prev:hover .background{
        opacity: 1.0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
#top__main .main_arrow_wrap li img {
    position: absolute;
    width: 10px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
}


/*------------------------------------------------------------------------------------------------

            LEADERS

------------------------------------------------------------------------------------------------*/
@media only screen and (min-width: 641px) {
    #top__leaders_pc {
        position: absolute;
        /* top: 269px;    シーズン切替対応*/
        top: 269px;
        left: 770px
        
    }

    #top__leaders__inner_pc {
        box-sizing: content-box;
        width: 314px;
        height: 599px;
        border-right: solid 1px #000;
        border-bottom: solid 1px #000;
    }
}

.leaders .tab_wrap ul.rank_wrap > li {
    background-color: #fff;
}
.leaders .tab_wrap ul.rank_wrap > li:nth-of-type(even) {
    background-color: #f8f8f8;
}

.leaders .tab_wrap ul.rank_wrap > li a {
    color: #000;
}


.leaders .tab_wrap ul.player_line {
    /* width: 690px; */
    width: 92%;
    margin: 0 auto;
    letter-spacing: -.40em;
    /* height: 100px; */
    height: 13.333vw;
    /* padding: 30px 0; */
    padding: 4.34% 0;
}
@media only screen and (min-width: 641px) {
    .leaders .tab_wrap ul.player_line {
        height: 40px;
        padding: 10px 0;
    }
}

.leaders .tab_wrap ul.player_line > li {
    display: inline-block;
    letter-spacing: normal;
    vertical-align: middle;
}

.leaders .tab_wrap ul.player_line > li.rank {
    /* width: 60px; */
    width: 8.695%;
    /* font-size: 36px; */
    font-size: 4.8vw;
}
@media only screen and (min-width: 641px) {
    .leaders .tab_wrap ul.player_line > li.rank {
        font-size: 14px;
    }
}

.leaders .tab_wrap ul.player_line > li.player_img {
    /* width: 100px; */
    width: 50px;/*14.492%;*/
    height: 50px;
    /* margin-right: 20px; */
    margin-right: 2.898%;

  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  border:1px solid #ccc;
}
@media only screen and (min-width: 641px) {
    .leaders .tab_wrap ul.player_line > li.player_img {
        
    }
}
.leaders .tab_wrap ul.player_line > li.player_img .img{
  position: absolute;
  top: -100%;
  bottom: -100%;
  margin: auto;
}



.leaders .tab_wrap ul.player_line > li.player_prof_wrap {
    /* width: 350px; */
    width: 50.724%;
}
.leaders .tab_wrap ul.player_line > li.player_prof_wrap > .player_prof_name {
    /* font-size: 32px; */
    font-size: 4.266vw;
    /* margin-bottom: 20px; */
    margin-bottom: 5.714%;
}
.leaders .tab_wrap ul.player_line > li.player_prof_wrap > .player_prof_detail {
    /* font-size: 24px; */
    font-size: 3.2vw;
}
@media only screen and (min-width: 641px) {
    .leaders .tab_wrap ul.player_line > li.player_prof_wrap > .player_prof_name {
        font-size: 14px;
    }
    .leaders .tab_wrap ul.player_line > li.player_prof_wrap > .player_prof_detail {
        font-size: 12px;
    }

    .leaders .tab_wrap ul.rank_wrap > li a:hover ul.player_line > li.player_img {
        opacity: 0.7;
    }
    .leaders .tab_wrap ul.rank_wrap > li a:hover ul.player_line > li.player_prof_wrap .player_prof_name {
        color: #f31918;
    }
}

.leaders .tab_wrap ul.player_line > li.player_point {
    /* width: 160px; */
    width: 19%; /*21.333%;*/
    /* font-size: 48px; */
    font-size: 6.4vw;
    text-align: right;
}
@media only screen and (min-width: 641px) {
    .leaders .tab_wrap ul.player_line > li.player_point {
        font-size: 24px;
    }
}


/*------------------------------------------------------------------------------------------------

            STANDINGS

------------------------------------------------------------------------------------------------*/
@media only screen and (min-width: 641px) {
    #top__standings {
        position: absolute;
        top: 269px;    /*シーズン切替対応*/
        /* top: 0; */
        right: 0;
    }

    #top__standings__inner {
        box-sizing: content-box;
        width: 315px;
        height: 599px;
        border-bottom: solid 1px #000;
    }
}


/*------------------------------------------------------------------------------------------------

            動画

------------------------------------------------------------------------------------------------*/
#top__movie {
    /*background: url(/files/rcms_conv_webp/0/2/0213d29f90504b38ebab44665079b526_1512404096.webp?v=1533096656) no-repeat top center;*/
    background-size: cover;
    /* padding: 80px 0; */
    padding: 10.666% 0;
}
@media only screen and (min-width: 641px) {
    #top__movie {
        /*background: url(/files/rcms_conv_webp/b/2/b282fb9be73ebdc7366ca0f1a2b5b33c_1512404096.webp?v=1533096656) no-repeat top center;*/
        background-size: cover;
        padding: 40px 0 20px;
    }
}

#top__movie #top__movie__inner {
    /* width 690px; */
    width: 92%;
    margin: 0 auto;
}
@media only screen and (max-width: 640px) {
    #top__movie #top__movie__inner {
        /* width 690px; */
        width: 87%;
        margin: 0 auto;
    }
}
@media only screen and (min-width: 641px) {
    #top__movie #top__movie__inner {
        width: 1320px;
    }
}

#top__movie h2 {
    /* margin-bottom: 40px; */
    margin-bottom: 5.8%;
}
@media only screen and (min-width: 641px) {
    #top__movie h2 {
        margin-bottom: 0;
    }
}

#top__movie .movie_wrap {
    position: relative;
    border: 1px solid #000;
    /* margin-bottom: 30px; */
    margin-bottom: 4.347%;
    background-color: black;
    overflow: hidden;
    cursor: pointer;
}
#top__movie .movie_wrap img {
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    
    object-fit: cover;
}
@media only screen and (min-width: 641px) {
    #top__movie .movie_wrap {
        display: inline-block;
        width: 650px;
        margin-top: 60px;
        margin-bottom: 0;
        vertical-align: top;

        transition: all 0.3s linear;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -ms-transition: all 0.3s linear;
    }

    #top__movie .movie_wrap:hover img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0.7;
    }
}

#top__movie .movie_text_wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    /* padding-left: 30px; */
    padding-left: 4.347%;
    /* padding-bottom: 30px; */
    padding-bottom: 4.347%;
}
@media only screen and (min-width: 641px) {
    #top__movie .movie_wrap:hover .movie_text_wrap {
        opacity: 0.7;
    }
}

#top__movie .movie_text_wrap h3 {
    font-family: "bleagueFont";
    /* font-size: 32px; */
    font-size: 4.266vw;
}
@media only screen and (min-width: 641px) {
    #top__movie .movie_text_wrap h3 {
        font-size: 24px;
    }
}

#top__movie .movie_text_wrap .movie_title {
    /* font-size: 32px; */
    font-size: 4.266vw;
    line-height: 2;
}
@media only screen and (min-width: 641px) {
    #top__movie .movie_text_wrap .movie_title {
        font-size: 20px;
        line-height: 3.2;
    }
}

#top__movie .movie_text_wrap .movie_date {
    /* font-size: 22px; */
    font-size: 2.933vw;
}
@media only screen and (min-width: 641px) {
    #top__movie .movie_text_wrap .movie_date {
        font-size: 14px;
    }
}

#top__movie .movie_play {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    /* width: 104px; */
    width: 15.07%;
    /* height: 104px; */
    height: 13.87vw;
    z-index: 10;
}
@media only screen and (min-width: 641px) {
    #top__movie .movie_play {
        width: 102px;
        height: 102px;
    }
}


/*------------------------------------------------------------------------------------------------

            インフォメーション

------------------------------------------------------------------------------------------------*/
#top__info {
    background: url(/files/rcms_conv_webp/2/c/2c60c861a4c759c1167413307790632b_1512404094.webp?v=1533096656) no-repeat top center;
    background-size: cover;
    /* padding: 80px 0; */
    padding: 10.666% 0;
}
@media only screen and (min-width: 641px) {
    #top__info {
        background: url(/files/rcms_conv_webp/0/3/0351f57d537b5e03540d0f478743d26c_1512404093.webp?v=1533096656) no-repeat top center;
        background-size: cover;
        padding: 40px 0 70px;
    }
}

#top__info #top__info__inner {
    /* width 690px; */
    width: 92%;
    margin: 0 auto;
}
@media only screen and (min-width: 641px) {
    #top__info #top__info__inner {
        width: 1320px;
    }
}

#top__info h2 {
    /* margin-bottom: 40px; */
    margin-bottom: 5.8%;
}
@media only screen and (min-width: 641px) {
    #top__info h2 {
        margin-bottom: 0;
    }
}

#top__info .info_list li {
    /* margin-bottom: 30px; */
    margin-bottom: 4%;
}
#top__info .info_list li:nth-last-of-type(2) {
    margin-bottom: 0;
}
@media only screen and (min-width: 641px) {
    #top__info .info_list li {
        display: inline-block;
        width: 315px;
        margin-top: 60px;
        margin-right: 20px;
        margin-bottom: 0;
        vertical-align: top;

        transition: all 0.3s linear;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -ms-transition: all 0.3s linear;
    }
    #top__info .info_list li.top_list{
        width: 650px;
        margin-top: 40px;
    }
    #top__info .info_list li:last-of-type {
        margin-right: 0;
        margin-top: 20px;
    }
}

#top__info .info_wrap {
    display: inline-block;
    position: relative;
    /* width: 330px; */
    width: 47.826%;
    border: 1px solid #24292e;
    /* margin-right: 30px; */
    margin-right: 4.347%;
    background-color: #000;
    overflow: hidden;
}
#top__info .info_wrap:last-of-type{
    margin-right: 0;
}
#top__info .top_list > .info_wrap {
    display: block;
    width: 100%;
}
#top__info .info_wrap a {
    color: #fff;
}
#top__info .info_wrap img {
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
}
@media only screen and (min-width: 641px) {
    #top__info .info_wrap {
        display: inline-block;
        width: 315px;
        margin-right: 0;
        margin-bottom: 20px;
        vertical-align: top;
    }
    #top__info .info_wrap:last-of-type {
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
    }
    #top__info .top_list > .info_wrap {
        width: 650px;
    }

    #top__info .info_wrap:hover img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0.7;
    }
}

#top__info .info_text_wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    /* padding-left: 30px; */
    padding-left: 4.347%;
    /* padding-bottom: 30px; */
    padding-bottom: 4.347%;
    display:none;
}

#top__info .info_text_wrap h3 {
    font-family: "bleagueFont";
    /* font-size: 28px; */
    font-size: 3.733vw;
}
#top__info .top_list > .info_wrap .info_text_wrap h3 {
    /* font-size: 32px; */
    font-size: 4.2666vw;
}
@media only screen and (min-width: 641px) {
    #top__info .info_wrap:hover .info_text_wrap {
        opacity: 0.7;
    }

    #top__info .info_text_wrap h3 {
        font-size: 16px;
    }
    #top__info .top_list > .info_wrap .info_text_wrap h3 {
        font-size: 24px;
    }

}

#top__info .info_text_wrap .info_title {
    /* margin: 20px 0; */
    margin: 3.03% 0;
    /* font-size: 28px; */
    font-size: 3.733vw;
    line-height: 1.5;
    font-weight: bold;
}
#top__info .top_list > .info_wrap .info_title {
    /* font-size: 30px; */
    font-size: 4vw;
}
@media only screen and (min-width: 641px) {
    #top__info .info_text_wrap .info_title {
        font-size: 14px;
        line-height: 3.2;
    }
    #top__info .top_list > .info_wrap .info_title {
        font-size: 20px;
        line-height: 1.5;
    }
}

#top__info .info_text_wrap .info_date {
    /* font-size: 20px; */
    font-size: 2.666vw;
}
@media only screen and (min-width: 641px) {
    #top__info .info_text_wrap .info_date {
        font-size: 12px;
    }
    #top__info .top_list > .info_wrap .info_date {
        font-size: 14px;
    }
}



/*------------------------------------------------------------------------------------------------

            Headline News

------------------------------------------------------------------------------------------------*/
@media only screen and (min-width: 641px) {
    #top__headline {
        /*background-color: #fff;
        padding: 40px 0;*/
        
        /*background: url(/files/rcms_conv_webp/0/3/0351f57d537b5e03540d0f478743d26c_1512404093.webp?v=1533096656) no-repeat top center;*/
        background-color: #1A1B1C;
        background-size: cover;
        padding: 40px 0 70px;
    }

    #top__headline #top__headline__inner {
        margin: 0 auto;
        width: 1320px;
    }

    #top__headline .headline_head {
        position: relative;
        height: 50px;
        margin-bottom: 40px;
        background-color: transparent; /*#24292e;*/
        color: #fff;
    }

    #top__headline .headline_head h2 {
        display: inline-block;
        position: absolute;
        top: 0;
        left: 0;/*20px;*/
        font-family: "bleagueFont";
        font-size: 32px;/*24px;*/
        /* line-height: 50px; */
        /*line-height: 2.08333;*/
        /*letter-spacing: 0.2em;*/
    }

    #top__headline .headline_tabs {
        width: 100%;
        display: inline-block;
        text-align: center;
        cursor: pointer;
    }
    #top__headline .headline_tabs li {
        display: inline-block;
        width: 98px;
        height: 44px;
        margin: 0 13px;
        font-size: 14px;
        /* line-height: 44px; */
        line-height: 3.14285;
        border-bottom: solid 6px transparent;
        vertical-align: top;
    }
    #top__headline .headline_tabs li.select {
        border-bottom: solid 6px #f31918;
    }

    #top__headline ul.headline_contents {
        letter-spacing: -.40em;
    }

    #top__headline ul.headline_contents > li {
        display: none;
        letter-spacing: normal;
    }
    #top__headline ul.headline_contents > li.select {
        display: inline-block;
    }

    #top__headline ul.headline_news_list{
        letter-spacing: -.40em;
    }
    #top__headline ul.headline_news_list > li {
        display: inline-block;
        letter-spacing: normal;
        margin-right: 20px;
    }
    #top__headline ul.headline_news_list > li:last-of-type {
        margin-right: 0;
    }

    #top__headline ul.headline_news_list > li a {
        color: #fff;
    }

    #top__headline ul.headline_news_list .head_news_wrap {
        position: relative;
        width: 315px;
        background-color: black;
        max-height: 315px;
        overflow: hidden;
    }
    
    #top__headline ul.headline_news_list .head_news_img_wrap {
        height: 315px;
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        line-height: 0;
    }

    #top__headline ul.headline_news_list .head_news_wrap img {
        transition: all 0.3s linear;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -ms-transition: all 0.3s linear;
    }
    #top__headline ul.headline_news_list .head_news_wrap:hover img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0.7;
    }

    #top__headline ul.headline_news_list .news_text_wrap {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        padding-left: 20px;
        padding-bottom: 20px;
    }
    #top__headline ul.headline_news_list .head_news_wrap:hover .news_text_wrap {
        opacity: 0.7;
    }

    #top__headline .news_text_wrap h3 {
        font-family: "bleagueFont";
        font-size: 16px;
    }
    
    #top__headline .news_text_wrap .news_title {
        margin: 10px 0;
        font-size: 16px;
        line-height: 1.25;
        font-weight: bold;
    }
    
    #top__headline .info_text_wrap .info_date {
        font-size: 14px;
    }

    #top__headline .headline_link {
        display: inline-block;
        width: 180px;
        position: absolute;
        top: 0;
        right: 0;
        background-color: #000;
        text-align: center;
    }
    #top__headline .headline_link a {
        display: inline-block;
        width: 180px;
        position: relative;
        color: #fff;
        font-size: 14px;
        /* line-height: 50px; */
        line-height: 3.57142;
    }
    #top__headline .headline_link a:after {
        position: absolute;
        content: " ";
        background: url("/files/user/img/top/icon_arrow_r.png") no-repeat center center;
        background-size: contain;
        padding-left: 8px;
        top: 0;
        right: 18px;
        bottom: 0;
        margin: auto;
    }
    
}


/*------------------------------------------------------------------------------------------------

            NEWS

------------------------------------------------------------------------------------------------*/
#top__news {
    background-color: #24292e;
}
@media only screen and (min-width: 641px) {
    #top__news {
        background-color: #000000;
    }
}

#top__news #top__news__inner {
    /* padding: 40px 0 0; */
    padding: 5.333% 0 0;
}
@media only screen and (min-width: 641px) {
    #top__news #top__news__inner {
        padding: 0;
    }
}

#top__news h2 {
    font-family: "bleagueFont";
    /* padding-left: 30px; */
    padding-left: 4%;
    /* margin: 0 0 40px; */
    margin: 0 0 5.333%;
    /* font-size: 40px; */
    font-size: 7.46vw; /*5.333vw;*/
}

#top__news .news_list {
}

#top__news .news_list li {
    background-color: #2b2b2b;
}
#top__news .news_list li:nth-of-type(even) {
    background-color: #232323;
}

#top__news .news_list li .news_wrap {
    /* padding-left: 30px; */
    padding-left: 4%;
    padding-right: 4%;
}
@media only screen and (min-width: 641px) {
    #top__news .news_list li .news_wrap {
        padding-left: 40px;
        padding-right: 40px;
    }
}
    
#top__news .news_list li .news_wrap p {
    display: inline-block;
    color: #bababa;
    vertical-align: top;
}
#top__news .news_list li .news_wrap p.news_date {
    /* margin-right: 80px; */
    margin-right: 11.594%;
    /* font-size: 24px; */
    font-size: 3.2vw;
    /* line-height: 140px; */
    line-height: 5.83333;
}
#top__news .news_list li .news_wrap p.news_title {
    width: 70%;
    /* font-size: 28px; */
    font-size: 3.733vw;
    /* margin-top: 30px */
    margin-top: 4.347%;
    /* line-height: 45px; */
    line-height: 1.607;
}
#top__news .news_list li .news_wrap p.news_title a {
    color: #bababa;
}
@media only screen and (min-width: 641px) {
    #top__news .news_list li .news_wrap {
        width: 1400px;
        margin: 0 auto;
    }
    #top__news .news_list li .news_wrap p.news_date {
        margin-right: 0;
        font-size: 14px;
        /* line-height: 70px; */
        line-height: 5;
    }
    #top__news .news_list li .news_wrap p.news_category {
        width: 8em;
        margin: 0 2em 0 1em;
        font-size: 14px;
        line-height: 5;
    }
    #top__news .news_list li p.news_category .text_color {
        padding: 0.3em 0.5em;
        color: #000;
        background-color: red;
        white-space: nowrap;
    }
    #top__news .news_list li:nth-of-type(even) p.news_category .text_color {
        background-color: white;
    }
    #top__news .news_list li .news_wrap p.news_title {
        width: 1000px;
        margin-top: 0;
        font-size: 14px;
        /* line-height: 70px; */
        line-height: 5;
    }
    #top__news .news_list li .news_wrap p.news_title a:hover {
        text-decoration: none;/*underline;*/
        color: #f31918;
    }
}

#top__news .news_link_wrap {
}
#top__news .news_link_wrap .news_link {
    display: inline-block;
    position: relative;
    width: 100%;
    text-align: center;
    color: #ffffff;
    /* font-size: 28px; */
    font-size: 3.733vw;
    /* line-height: 140px; */
    line-height: 5;
}
#top__news .news_link_wrap .news_link::after{
    position: absolute;
    content: " ";
    background: url("/files/user/img/top/icon_arrow_r.png") no-repeat center center;
    background-size: contain;
    padding-left: 1.866%;
    top: 0;
    right: 9em;
    bottom: 0;
    margin: auto;
}
@media only screen and (min-width: 641px) {
    #top__news .news_link_wrap {
        padding: 40px 0 35px;
    }
    #top__news .news_link_wrap .news_link {
        box-sizing: border-box;
        display: block;
        width: 330px;
        height: 60px;
        margin: 0 auto;
        border: 2px solid #fff;
        font-size: 14px;
        line-height: 4;
    }
    #top__news .news_link_wrap .news_link::after{
        padding-left: 8px;
        right: 1em;
    }
}


/*------------------------------------------------------------------------------------------------

            Player

------------------------------------------------------------------------------------------------*/
#player_recommend_wrap {
}
@media only screen and (min-width: 641px) {
    #player_recommend_wrap {
        /*background: url(/files/rcms_conv_webp/c/7/c7e7ab24a10711515c2970be8173af2a_1513740045.webp?v=1533096656) no-repeat top center;*/
        background-size: cover;
    }
}


#top__player {
    /*background: url(/files/rcms_conv_webp/d/2/d2f9dd71d3e31cc58d5454f942e22621_1513740045.webp?v=1533096656) no-repeat top center;*/
    background-size: cover;
    /* padding: 80px 0 0; */
    padding: 10.666% 0 0 ;
}
@media only screen and (min-width: 641px) {
    #top__player {
        padding: 40px 0 50px;
        background-image: none;
    }
}

#top__player #top__player__inner {
    /* width 690px; */
    width: 92%;
    margin: 0 auto;
    padding: 0 0 10.666% ;
}
@media only screen and (min-width: 641px) {
    #top__player #top__player__inner {
        width: 1320px;
        padding: 0;
    }
}

#top__player h2 {
    /* margin-bottom: 40px; */
    margin-bottom: 5.8%;
}
@media only screen and (min-width: 641px) {
    #top__player h2 {
        margin-bottom: 0;
    }
}

#top__player .player_list li {
    /* margin-bottom: 30px; */
    margin-bottom: 4%;
}
#top__player .player_list li:last-of-type {
    margin-bottom: 0;
}
@media only screen and (min-width: 641px) {
    #top__player .player_list li {
        display: inline-block;
        width: 315px;
        margin-top: 60px;
        margin-right: 20px;
        margin-bottom: 0;
        vertical-align: top;

        transition: all 0.3s linear;
        -webkit-transition: all 0.3s linear;
        -moz-transition: all 0.3s linear;
        -ms-transition: all 0.3s linear;
    }
    #top__player .player_list li.top_list{
        width: 650px;
        margin-top: 40px;
    }
    #top__player .player_list li:last-of-type {
        margin-right: 0;
        margin-top: 20px;
    }
}

#top__player .player_wrap {
    display: inline-block;
    position: relative;
    /* width: 330px; */
    width: 47.826%;
    border: 1px solid #000;
    /* margin-right: 30px; */
    margin-right: 3%; /*4.347%;*/
    background-color: black;
    overflow: hidden;
}
#top__player .player_wrap:last-of-type{
    margin-right: 0;
}
#top__player .top_list > .player_wrap {
    display: block;
    width: 100%;
}
#top__player .player_wrap a {
    color: #fff;
}
#top__player .player_wrap img {
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
}
.yt img,
.yt1 img,
.yt2 img{
    object-fit: cover;
}
.yt{
    height: 206px;
    overflow: hidden;
}
@media only screen and (max-width: 640px) {
    .yt1{
        height: 200px;
        overflow: hidden;
    }
    .yt2{
        height: 78px;
        overflow: hidden;
    }
}
@media only screen and (min-width: 641px) {
    .yt{
        height: 365px;
    }
    .yt1{
        height: 430px;
    }
    .yt2{
        height: 174px;
    }

    #top__player .player_wrap {
        display: inline-block;
        width: 315px;
        margin-right: 0;
        margin-bottom: 20px;
        vertical-align: top;
        overflow: hidden;
    }
    #top__player .player_wrap:last-of-type {
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    #top__player .player_wrap:hover img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 0.7;
    }

    #top__player .top_list > .player_wrap {
        width: 650px;
    }
}

#top__player .player_text_wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    /* padding-left: 30px; */
    padding-left: 4.347%;
    /* padding-bottom: 30px; */
    padding-bottom: 4.347%;
}
#top__player .player_text_wrap h3 {
    font-family: "bleagueFont";
    /* font-size: 22px; */
    font-size: 2.933vw;
    line-height: 2.909;
}
#top__player .top_list > .player_wrap .player_text_wrap h3 {
    /* font-size: 32px; */
    font-size: 4.2666vw;
    /* line-height: 64px; */
    line-height: 2;
}
@media only screen and (min-width: 641px) {
    #top__player .player_wrap:hover .player_text_wrap{
        opacity: 0.7;
    }
    
    #top__player .player_text_wrap h3 {
        font-size: 14px;
        /* line-height: 32px; */
        line-height: 2.2857;
    }
    #top__player .top_list > .player_wrap .player_text_wrap h3 {
        font-size: 18px;
        /* line-height: 64px; */
        line-height: 3.55555;
    }
}

#top__player .player_text_wrap .player_name {
    /* font-size: 28px; */
    font-size: 3.733vw;
    font-weight: bold;
}
#top__player .top_list > .player_wrap .player_name {
    /* font-size: 40px; */
    font-size: 5.333vw;
}
@media only screen and (min-width: 641px) {
    #top__player .player_text_wrap .player_name {
        font-size: 18px;
    }
    #top__player .top_list > .player_wrap .player_name {
        font-size: 24px;
    }
}


#top__player .player_link_wrap {
    background-color: #24292e;
}
#top__player .player_link_wrap .player_link {
    display: inline-block;
    position: relative;
    width: 100%;
    text-align: center;
    color: #ffffff;
    /* font-size: 28px; */
    font-size: 3.733vw;
    /* line-height: 140px; */
    line-height: 5;
}
#top__player .player_link_wrap .player_link::after{
    position: absolute;
    content: " ";
    background: url("/files/user/img/top/icon_arrow_r.png") no-repeat center center;
    background-size: contain;
    padding-left: 1.866%;
    top: 0;
    right: 9em;
    bottom: 0;
    margin: auto;
}
@media only screen and (min-width: 641px) {
    #top__player .player_link_wrap {
        background-color: transparent;
    }
    #top__player .player_link_wrap .player_link {
        box-sizing: border-box;
        display: block;
        width: 330px;
        height: 60px;
        margin: 0 auto;
        border: 2px solid #fff;
        background-color: #000;
        font-size: 14px;
        line-height: 4;
    }
    #top__player .player_link_wrap .player_link::after{
        padding-left: 8px;
        right: 1em;
    }
}



/*------------------------------------------------------------------------------------------------

            Recommend

------------------------------------------------------------------------------------------------*/
#top__recommend {
    /* padding: 80px 0 0; */
    padding: 10.666% 0 0;
}
@media only screen and (min-width: 641px) {
    #top__recommend {
        padding: 0 0 40px;
    }
}

#top__recommend #top__recommend__inner {
    width: 92%;
    margin: 0 auto;
    padding: 0 0 10.666%;
}
@media only screen and (min-width: 641px) {
    #top__recommend #top__recommend__inner {
        width: 1320px;
        padding: 0;
    }
}

#top__recommend h2 {
    /* margin-bottom: 40px; */
    margin-bottom: 5.8%;
}
@media only screen and (min-width: 641px) {
    #top__recommend h2 {
        margin-bottom: 24px;
    }
}

#top__recommend .recommend_list {    
}

#top__recommend .recommend_list li {
    display: inline-block;
    /* width: 330px */
    width: 47.826%;
    /* margin-right: 30px; */
    margin-right: 4.347%;
    /* margin-bottom: 46px; */
    margin-bottom: 6.1333%;
    vertical-align: top;
    letter-spacing: normal;
    position: relative;
}
#top__recommend .recommend_list li:nth-of-type(even) {
    margin-right: 0;
}
#top__recommend .recommend_list li:nth-of-type(n+3) {
    margin-bottom: 0;
}
#top__recommend .recommend_list li:nth-of-type(n+5){
    display: none;
}

#top__recommend .recommend_list li a {
    color: #fff;
}
@media only screen and (min-width: 641px) {
    #top__recommend .recommend_list li {
        width: 315px;
        margin-right: 20px;
        margin-bottom: 0;
    }
    #top__recommend .recommend_list li:nth-of-type(even) {
        margin-right: 20px;
    }
    #top__recommend .recommend_list li:last-of-type {
        margin-right: 0;
    }
    #top__recommend .recommend_list li:nth-of-type(n+3) {
    }
    #top__recommend .recommend_list li:nth-of-type(n+5){
        display: inline-block;
    }
}

#top__recommend .rec_text_wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    /* padding-left: 30px; */
    padding-left: 4.347%;
    /* padding-bottom: 30px; */
    padding-bottom: 4.347%;
}

#top__recommend .rec_text_wrap h3 {
    font-family: "bleagueFont";
    /* font-size: 28px; */
    font-size: 3.733vw;
}
@media only screen and (min-width: 641px) {
    #top__recommend .rec_wrap:hover .rec_text_wrap {
        opacity: 0.7;
    }

    #top__recommend .rec_text_wrap h3 {
        font-size: 16px;
    }
}

#top__recommend .rec_text_wrap .rec_title {
    /* margin: 20px 0; */
    margin: 3.03% 0;
    /* font-size: 28px; */
    font-size: 3.733vw;
    line-height: 1.5;
    font-weight: bold;
}
@media only screen and (min-width: 641px) {
    #top__recommend .rec_text_wrap .rec_title {
        font-size: 14px;
        line-height: 1.6;
    }
}

#top__recommend .rec_text_wrap .rec_date {
    /* font-size: 20px; */
    font-size: 2.666vw;
}
@media only screen and (min-width: 641px) {
    #top__recommend .rec_text_wrap .rec_date {
        font-size: 12px;
    }
}




#top__recommend .recommend_link_wrap {
    background-color: #24292e;
}
#top__recommend .recommend_link_wrap .recommend_link {
    display: inline-block;
    position: relative;
    width: 100%;
    text-align: center;
    color: #ffffff;
    /* font-size: 28px; */
    font-size: 3.733vw;
    /* line-height: 140px; */
    line-height: 5;
}
#top__recommend .recommend_link_wrap .recommend_link::after{
    position: absolute;
    content: " ";
    background: url("/files/user/img/top/icon_arrow_r.png") no-repeat center center;
    background-size: contain;
    padding-left: 1.866%;
    top: 0;
    right: 9em;
    bottom: 0;
    margin: auto;
}
@media only screen and (min-width: 641px) {
    #top__recommend .recommend_link_wrap {
        background-color: transparent;
    }
    #top__recommend .recommend_link_wrap .recommend_link {
        box-sizing: border-box;
        display: block;
        width: 330px;
        height: 60px;
        margin: 0 auto;
        border: 2px solid #fff;
        background-color: #000;
        font-size: 14px;
        line-height: 4;
    }
    #top__recommend .recommend_link_wrap .recommend_link::after{
        padding-left: 8px;
        right: 1em;
    }
}


/*------------------------------------------------------------------------------------------------

            スポンサー

------------------------------------------------------------------------------------------------*/
#top__sponsors {
    background-color: #e5e5e5;
}
#top__sponsors__inner {
    /* width: 690px; */
    width: 92%;
    margin: 0 auto;
    text-align: center;
    /* padding-top: 70px; */
    padding-top: 9.3333%;
}
@media only screen and (min-width: 641px) {
    #top__sponsors__inner {
        width: 1320px;
    }
}

#top__sponsors h2 {
    position: relative;
    font-family: "bleagueFont";
    /* font-size: 48px; */
    font-size: 6.4vw;
    color: #000;
    /* margin-bottom: 80px; */
    margin-bottom: 10.666%;
    text-align: center;
}
#top__sponsors h2 span:before {
    position: absolute;
    content: "";
    background: url(/files/rcms_conv_webp/0/0/00bed53e565a52a4b0b9ed2142e691e0_1513740627.webp?v=1533096656) no-repeat;
    background-size: contain;
    /* width: 56px; */
    width: 8.115%;
    /* height: 100px; */
    height: 13.333vw;
    display: inline-block;
    /* left: 55px; */
    left: 7.97%;
    top: -3.333vw;
}
@media only screen and (min-width: 641px) {
    #top__sponsors h2 {
        font-size: 36px;
        margin-bottom: 70px;
    }
    #top__sponsors h2 span:before {
        background:none;
    }
    
}

#top__sponsors h3 {
    font-family: "bleagueFont";
    /* font-size: 28px; */
    font-size: 3.7333vw;
    color: #4c4c4c;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}
@media only screen and (min-width: 641px) {
    #top__sponsors h3 {
        font-size: 14px;
        margin-bottom: 30px;
    }
}

#top__sponsors ul.sponsors_logo_wrap {
    text-align: center;
    padding-bottom: 30px;
}
@media only screen and (min-width: 641px) {
    #top__sponsors ul.sponsors_logo_wrap {
        padding-bottom: 50px;
    }
}

#top__sponsors ul.sponsors_logo_wrap li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    width: 48%;
    padding: 0 5%;
    margin: 0 0 7% 0;
}
#top__sponsors ul.sponsors_logo_wrap.sponsors_top li {
}
@media only screen and (min-width: 641px) {
    #top__sponsors ul.sponsors_logo_wrap li {
        padding: 0 33px;
        width: 242px;
        margin: 0;
    }
    #top__sponsors ul.sponsors_logo_wrap.sponsors_top li {
        width: 330px;
        padding: 0;
    }
    #top__sponsors ul.sponsors_logo_wrap.sponsors_support li {
        width: 187px;
    }
}

#top__sponsors ul.sponsors_logo_wrap li img {
    max-width: 80%;
}
#top__sponsors ul.sponsors_logo_wrap.sponsors_top li img {
    max-width: 100%;
}
@media only screen and (min-width: 641px) {
    #top__sponsors ul.sponsors_logo_wrap.sponsors_top li img {
        width: 300px;
    }
    #top__sponsors ul.sponsors_logo_wrap li img {
        max-width: 100%;
    }
}

#top__sponsors ul.sponsors_logo_wrap li a {
    color: #4c4c4c;
}

#top__sponsors ul.sponsors_logo_wrap .explain_title {
    font-size: 10px;
    letter-spacing: 0.1em;
    margin-top: 15px;
    line-height: 1.6;
}

.layout-sponsors .sponsor{
  margin-bottom:50px;
}

/* commonより移植 */
/*
 * スコア部分
 */
 #header_nav_wrap .score_wrap {
    display: none;
    position: absolute;
    width: 100%;
    top: 0;
    background-color: #24292d;
    z-index: 30;
}
#header_nav_wrap.scoreopened .score_wrap {
    display: block;
}

.score_wrap .header_score_change {
    width: 100%;
    /* height: 100px; */
    height: 13.3333vw;
    background-color: #fff;
    letter-spacing: -.40em;
}
.score_wrap .header_score_change .score_arrow_next,
.score_wrap .header_score_change .score_arrow_prev {
    position: relative;
    display: inline-block;
    /* height: 100px; */
    height: 13.3333vw;
    /* width: 100px; */
    width: 13.3333%;
    vertical-align: top;
    cursor: pointer;
    letter-spacing: normal;
}
.score_wrap .header_score_change .score_arrow_next img,
.score_wrap .header_score_change .score_arrow_prev img {
    position: absolute;
    /* width: 20px; */
    width: 20%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.score_wrap .header_score_change .score_setsu_text {
    display: inline-block;
    /* width: 550px; */
    width: 73.3333%;
    /* padding: 30px 0; */
    padding: 4% 0;
    color: #000;
    text-align: center;
    /* font-size: 14px; */
    font-size: 3.7333vw;
    letter-spacing: normal;
}
.score_wrap .header_score_change .score_setsu_text .setsu_bold {
    /* font-size: 18px; */
    font-size: 4.8vw;
    margin-right: 1em;
}
.score_wrap .header_score_change .score_setsu_text .setsu_bold {
    display: none;
}
.score_wrap .header_score_change .score_setsu_text .setsu_bold.select {
    display: inherit;
}
.score_wrap .header_score_change .score_setsu_text .game_date_time {
    display: none;
}
.score_wrap .header_score_change .score_setsu_text .game_date_time.select {
    display: inherit;
}
@media only screen and (min-width: 641px) {
    .score_wrap .header_score_change {
    }
}

/* タブ部分 */
.score_wrap ul.header_score_tabs {
    width: 100%;
    margin: 0 auto;
    letter-spacing: -.40em;
    text-align: left;
}
@media only screen and (min-width: 641px) {
    .score_wrap ul.header_score_tabs {
        width: 1400px;
    }
}

.score_wrap ul.header_score_tabs > li {
    display: inline-block;
    font-family: "bleagueFont";
    width: 50%;
    text-align: center;
    background-color: #616161;
    letter-spacing: normal;
    /* font-size: 40px; */
    font-size: 5.333vw;
    /* line-height: 100px; */
    line-height: 2.5;
    cursor: pointer;
}
.score_wrap ul.header_score_tabs > li.select {
    background-color: #24292d;
}
@media only screen and (min-width: 641px) {
    .score_wrap ul.header_score_tabs > li {
        width: 240px;
        font-size: 20px;
        line-height: 50px;
        position:relative;
    }
    .score_wrap ul.header_score_tabs > li.select {
    }
}



/* マウスオーバーで赤くする対応 */
@media only screen and (min-width: 641px) {

    div.score_wrap2 ul.header_score_tabs > li > p {
        position: relative;
        z-index: 2;
        
        font-size: 20px;
        line-height: 50px;
    }

    div.score_wrap2 ul.header_score_tabs > li .background {
        z-index: 0;
        position: absolute;
        width: 240px; /*100%;*/
        height: 50px;/*100%;*/
        top: 0;
        left: 0;
        background-color: #f31918;
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: all .34s cubic-bezier(.67,.01,.26,1);
        transition: all .34s cubic-bezier(.67,.01,.26,1);
        z-index: 1;
    }
    /*div.score_wrap2 ul.header_score_tabs > li:last-child .background {
        left: 240px;
    }*/

    div.score_wrap2 ul.header_score_tabs > li:hover .background {
        opacity: 1.0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    div.score_wrap2 ul.header_score_tabs > li:after {
        z-index: 2;
    }

}




.score_wrap ul.header_score_contents {
}
.score_wrap ul.header_score_contents > li {
    display: none;
    overflow-y: scroll;
    overflow-x: hidden;
}
.score_wrap ul.header_score_contents > li.select {
    display: block;
}
@media only screen and (min-width: 641px) {
    .score_wrap ul.header_score_contents {
        height: 220px;
        overflow: hidden;
    }
    .score_wrap ul.header_score_contents > li {
    }
    .score_wrap ul.header_score_contents > li.select {
        height: auto;
        overflow: hidden;
    }
}

/* スライダー部分 */
#header_score_wrap {
    /*display:none; シーズン切替 日程表非表示対応*/
    position: relative;
    text-align: center;
    background-color: #24292e;
    border-bottom: 1px solid #000;
    z-index: 1;
}
/* ul.first_tab {
    display: none;
} */
.score_wrap .score_arrow_prev,
.score_wrap .score_arrow_next {
}
.score_wrap .score_arrow_next {
}
.score_wrap .score_arrow_prev img,
.score_wrap .score_arrow_next img{
}
@media only screen and (min-width: 641px) {
    /* スライダー部分 */
    .score_wrap {
        height: 270px;
    }
    .score_wrap .score_arrow_prev,
    .score_wrap .score_arrow_next {
        position: relative;
        display: inline-block;
        height: 219px;
        /* width: 65px; */
        width: 38px;
        background-color: #313840;
        vertical-align: top;
        cursor: pointer;
    }
    .score_wrap .score_arrow_next {
    }
    .score_wrap .score_arrow_prev img,
    .score_wrap .score_arrow_next img{
        position: absolute;
        width: 10px;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }
    
    /* ///////// */
    .score_wrap .score_arrow_prev .background,
    .score_wrap .score_arrow_next .background{
        z-index: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        background-color: #f31918;
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: all .34s cubic-bezier(.67,.01,.26,1);
        transition: all .34s cubic-bezier(.67,.01,.26,1);
        z-index: 1;
    }
    .score_wrap div:hover .background{
        opacity: 1.0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    .score_wrap .score_arrow_prev p,
    .score_wrap .score_arrow_next p{
        position: relative;
        z-index: 2;
        top: 102px;
    }
    .score_wrap .score_arrow_prev p:after,
    .score_wrap .score_arrow_next p:after{
        z-index: 2;
    }
    /* ///////// */
}

.score_wrap ul.head_score {
    box-sizing: border-box;
    width: 100%;
    /* padding: 40px; */
    padding: 5.3333%;
    /* margin: 5.3333%; */
    background-color: #24292d;
}
.score_wrap ul.head_score li {
    box-sizing: border-box;
    /* width: 670px; */
    /* width: 100%; */
    width: 89.3333vw;
    /* margin-bottom: 40px; */
    margin-bottom: 5.97%;
    letter-spacing: -.4em;
    vertical-align: top;
    text-align: center;
    border: solid 1px #313840;
    position: relative;
}
.score_wrap ul.head_score li:last-of-type {
    margin-bottom: 0;
}
.score_wrap ul.head_score li.report {
}
.score_wrap ul.head_score li.live {
    border-color: #f31918;
}
.score_wrap ul.head_score li.ticket {
    border-color: #fff;
}
@media only screen and (min-width: 641px) {
    .score_wrap ul.head_score {
        display: inline-block;
        /* width: 1270px; */
        width: 1320px;
        padding: 0;
        margin-top: 20px;
    }
    .score_wrap ul.head_score li {
        box-sizing: border-box;
        display: inline-block;
        /* width: 126px; */
        width: 160px;
        padding: 10px 15px;
        /* border-right: 1px solid #000; */
        margin-bottom: 0;
        border: none;
        letter-spacing: normal;
    }
}

.score_wrap ul.head_score li .score_setsu {
    display: none;
}
.score_wrap ul.head_score li .score_date_wrap {
    letter-spacing: -.40em;
    margin: 0 0 10px;
    text-align: center;
}
.score_wrap ul.head_score li .score_date_wrap.sat {
    color: #015da8;
}
.score_wrap ul.head_score li .score_date_wrap.sun {
    color: #cb0b18;
}
.score_wrap ul.head_score li .score_date_wrap .score_date {
    display: inline-block;
    font-family: "bleagueFont";
    /* font-size: 30px; */
    font-size: 8vw;
    letter-spacing: 0.1em;
    margin-right: 0.5em;
}
.score_wrap ul.head_score li .score_date_wrap .score_time {
    display: inline-block;
    /* font-size: 14px; */
    font-size: 3.73333vw;
    letter-spacing: 0.2em;
    text-align: left;
}
@media only screen and (min-width: 641px) {
    .score_wrap ul.head_score li .score_setsu {
        display: block;
        margin-bottom: 10px;
        font-size: 12px;
        line-height: 30px;
        color: #c6c6c6;
        letter-spacing: 0.1em;
    }
    .score_wrap ul.head_score li .score_date_wrap {
        margin: 0 0 10px;
        text-align: left;
    }
    .score_wrap ul.head_score li .score_date_wrap.sat {
    }
    .score_wrap ul.head_score li .score_date_wrap.sun {
    }
    .score_wrap ul.head_score li .score_date_wrap .score_date {
        width: 55%;
        font-size: 24px;
        margin-right: 0;
    }
    .score_wrap ul.head_score li .score_date_wrap .score_time {
        width: 45%;
        font-size: 10px;
    }
}

.score_wrap ul.head_score li .score_team_wrap {
    vertical-align: middle;
    letter-spacing: 0.1em;
    color: #c6c6c6;
    text-align: left;
    vertical-align: top;
}
.score_wrap ul.head_score li .score_team_wrap img {
    display: inline-block;
    margin-right: 0.5em;
    width: 30%;
}
.score_wrap ul.head_score li .score_team {
    display: inline-block;
    width: 80%;
    /* font-size: 28px; */
    font-size: 3.73333vw;
}
.score_wrap ul.head_score li .score_point {
    display: inline-block;
    width: 20%;
    /* font-size: 56px; */
    font-size: 7.466666vw;
    text-align: right;
    vertical-align: middle;
}
@media only screen and (min-width: 641px) {
    .score_wrap ul.head_score li .score_team_wrap {
        height: 30px;
        margin: 5px 0;
    }
    .score_wrap ul.head_score li .score_team_wrap img {
        width: 30px;
    }
    .score_wrap ul.head_score li .score_team {
        /*font-size: 12px;*/
        font-size: 9px;
        line-height: 30px;
    }
    .score_wrap ul.head_score li .score_point {
        font-size: 16px;
        line-height: 30px;
        vertical-align: top;
    }
}

.score_wrap ul.head_score li .score_stadium {
    /* margin: 20px 0 0; */
    margin: 3.3893% 0 0;
    /* font-size: 14px; */
    font-size: 3.6vw;
    color: #c6c6c6;
    text-align: center;
    letter-spacing: 0.15em;
}

_::-webkit-full-page-media, _:future, :root .score_wrap ul.head_score li .score_stadium {
    font-size: 13px;
}

@media only screen and (min-width: 641px) {
    .score_wrap ul.head_score li .score_stadium {
        margin: 10px 0 15px;
        font-size: 10px;
        text-align: center;
    }
}

.score_wrap ul.head_score li .score_state {
    display: inline-block;
    /* width: 80px; */
    width: 11.94029%;
    margin: 0 auto;
    letter-spacing: normal;
    vertical-align: top;
}
.score_wrap ul.head_score li .score_state a {
}
@media only screen and (min-width: 641px) {
    .score_wrap ul.head_score li .score_state {
        display: block;
        width: 126px;
        height: 24px;
        margin: 0 auto;
        border: 1px solid #fff;
        border-radius: 15px;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
    }
    .score_wrap ul.head_score li .score_state a {
        display: inline-block;
        width: 100%;
        height: 100%;
        color: #fff;
        font-size: 11px;
        line-height: 22px;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
    }
}


/* REPORT */
.score_wrap ul.head_score li .score_state.report {
    background: #31383f;
}
.score_wrap ul.head_score li .score_state.report a {
}
/* LIVE */
.score_wrap ul.head_score li .score_state.live {
    background: #f31918;
}
.score_wrap ul.head_score li .score_state.live a {
}
/* TICKET */
.score_wrap ul.head_score li .score_state.ticket {
    background: #fff;
}
.score_wrap ul.head_score li .score_state.ticket a {
}
@media only screen and (min-width: 641px) {
    /* REPORT */
    .score_wrap ul.head_score li .score_state.report {
        background: transparent;
        border-color: #fff;
    }
    .score_wrap ul.head_score li .score_state.report:hover {
        border-color: #f31918;
    }
    .score_wrap ul.head_score li .score_state.report a {
        color: #fff;
    }
    .score_wrap ul.head_score li .score_state.report:hover a {
        color: #f31918;
    }

    /* LIVE */
    .score_wrap ul.head_score li .score_state.live {
        background: #f31918;
        border-color: #f31918;
    }
    .score_wrap ul.head_score li .score_state.live:hover {
        opacity: 0.7;
    }
    .score_wrap ul.head_score li .score_state.live a {
        color: #fff;
    }
    .score_wrap ul.head_score li .score_state.live:hover a {
    }

    /* TICKET */
    .score_wrap ul.head_score li .score_state.ticket {
        background: #fff;
        border-color: #fff;
    }
    .score_wrap ul.head_score li .score_state.ticket:hover {
        background: #f31918;
        border-color: #f31918;
    }
    .score_wrap ul.head_score li .score_state.ticket a {
        color: #000000;
    }
    .score_wrap ul.head_score li .score_state.ticket:hover a {
        color: #fff;
    } 
    
    .score_wrap ul.head_score li .score_state.nodata {
        background: #fff;
        border-color: #fff;
    }
    .score_wrap ul.head_score li .score_state.nodata:hover {
        color: #fff;
    }
}

.score_wrap ul.head_score li .score_data_wrap {
    display: inline-block;
    /* width: 590px; */
    width: 88.0597%;
    /* padding: 0 55px; */
    padding: 0 9.322%;
    /* margin-top: 20px; */
    margin-top: 3.3893%;
    letter-spacing: normal;
    vertical-align: top;
}

@media only screen and (min-width: 641px) {
    #contents_inner {
        min-width: 1400px;
        padding-top: 110px;
    }
}

/*20180514*/
@media only screen and (min-width: 641px){
	#top__info .top_list > .info_wrap {
	    width: 100%;
	    height: 351px;
	}
	#top__info .info_wrap img {
	    width: 100%;
	    height: 100%;
	}
	#top__info .info_list li{
		margin-top: 40px;
	}
	#top__info .info_list li:last-of-type {
	    margin-top: 40px;
	}
}


/*player表示修正*/
@media only screen and (min-width: 641px){
	#top__player .player_list li {
		margin-top:40px;
	}
	#top__player .player_list li:last-of-type {
		margin-top: 40px;
	}
}


/*headlinenews表示修正*/
@media only screen and (min-width: 641px){
	#top__headline ul.headline_contents{
		margin: auto;
    	width: 1320px;
	}
}


/*latestmovie表示修正*/
@media only screen and (min-width: 641px){
	/*トリミングして黒帯部分を除去*/
	#top__movie .movie_wrap img{
		width:649px;
		height:350px;
	}
}

/*infomation表示修正*/
@media only screen and (min-width: 641px){
	#top__info .top_list > .info_wrap {
	    width: 100%;
	    height: 351px;
	}
	#top__info .info_wrap img {
	    width: 100%;
	    height: 100%;
	}
	#top__info .info_list li{
		margin-top: 40px;
	}
	#top__info .info_list li:last-of-type {
	    margin-top: 40px;
	}
}
/*movies表示修正*/
@media only screen and (min-width: 641px){
	#top__movie .movie_play img{
		width: 100px;
		height:100px;
	}
	#top__player .player_list li {
		margin-top:50px;
	}
	#top__player .player_list li:last-of-type {
		margin-top: 50px;
	}
	#top__player .player_list .yt1{
	    height:auto;
	}
	#top__player .player_list .yt1 img{
		width:640px;
		height:368px;
	}
}

/*width修正*/
@media only screen and (min-width: 641px){
	#top__news #top__news__inner {
		min-width:1400px;
		margin: 0 auto;
	}
	#top__sponsors{
		min-width:1400px;
		margin: 0 auto;
	}
	#footer_nav_wrap{
		min-width: 1400px;
		margin: 0 auto;
	}

	#top__player {
    	padding-left:10px;
	}
	#top__recommend {
    	padding-left:30px;
	}
	#footer_bottom_wrap {
    	padding-left:20px;
	}
}

/*スケジュールスライダー*/
@media only screen and (min-width: 641px){
    .top_arrow_font{
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        margin-top: -50px;
        margin-left: 10px;
    }
    a, a:visited {
      color : #fff;
    }
    .ticket_nodata{
        color: #000000;
        font-size: 11px;
        line-height: 22px;
    }
}

{/literal}

/*--------*/