@charset "UTF-8";

/* CSS Document */
/**************************基本**************************/



.info-banner-wap {
    background: #000;
    width: 100%;
    overflow: hidden;
}

.info-banner {
    padding: 5px 5px 5px 5px;
}

.info-banner-wap a {
    display: block;
    color: #fff;
    transition: all 0.2s;
}

.info-banner-wap a:hover {
    color: #111;
    background: #F9F9F9;
    transition: all 0.2s;
}


.info-banner span {
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding-left: 100%;
    white-space: nowrap;
    line-height: 1em;
    animation: scrollAnime 15s linear infinite;
}

/*
.info-banner a:hover{
	color: #111;
	background: rgba(0,0,0,0.1);
	transition: all 0.3s;
}
*/
@keyframes scrollAnime {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-100%)
    }
}


.top_main_slider {
    padding: 110px 0 50px;
    background-color: var(--black);
    position: relative;
}

.top_main_slider .main-slider {
    width: auto;
}

.top_main_slider .main-slider .slick-list {
    width: auto;
}

.top_main_slider .main-slider .slick-track {
    width: auto !important;
    display: flex;
}

.top_main_slider .main-slider .slick-slide {
    width: auto !important;
    flex-shrink: 0;
    margin-left: -60px;
}

.top_main_slider .main-slider .slick-slide:first-child {
    margin-left: 0;
}

.top_main_slider .main-slider img {
    height: 600px;
    width: auto;
    display: block;
}


.top_main_slider .main_catch {
    position: absolute;
    bottom: 8%;
    left: 0;
    right: 0;
    transform: translateY(50%);
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    text-align: center;
    z-index: 3;
}

.top_players_slider .team_slider {
    padding: 3rem 0;
    overflow: hidden;
}

.top_players_slider .player_slider {
    padding: 3rem 0;
    overflow: hidden;
}

/* Slickスライダー */
.top_players_slider .slick-slide {
    cursor: pointer;
}

/* チームカード */
.top_players_slider .team-card {
    border-radius: 8px;
    overflow: hidden;
    width: 300px;
    height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top_players_slider .team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 選手カード */
.top_players_slider .player-card {
    border-radius: 8px;
    overflow: hidden;
    width: 200px;
    height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top_players_slider .player-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-image: linear-gradient(to bottom, #D3D3D3, #8F8F8F);
}


.top_concept_container {
    position: relative;
    overflow: hidden;
}

.top_concept_container .ssc_logo {
    position: absolute;
    top: 0;
    right: -2%;
    text-align: center;
    z-index: 1;
    opacity: 0.4;
}

.top_concept_container .ssc_logo img {
    max-width: 70vw;
}


.top_concept_container .bg_black {
    padding: 50px 0 80px;
}


.top_concept_num_container .item {
    background-color: #fff;
    padding: 20px;
    height: 100%;
    border-radius: 10px;
}

.top_concept_num_container .item .icon {
    text-align: center;
}

.top_concept_num_container .item .num {
    font-size: 3.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    margin: 20px 0 10px;
}

.top_concept_num_container .item .title {
    min-height: 2.8em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.top_category_container .link_box img {
    width: 100%;
}

.top_category_container .link_box a {
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}

.top_category_container .link_box a img {
    transition: 0.3s;
}

.top_category_container .link_box .txt {
    font-size: 2.4rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.top_category_container .link_box .txt:after {
    content: "▶";
    color: var(--black);
    display: inline-block;
    margin-left: 10px;
    width: 30px;
    height: 30px;
    padding-left: 2px;
    padding-top: 2px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

/* LIVEリンクの再生アイコン（三角形） */
.top_live_link .angle_right {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15%;
    aspect-ratio: 2 / 1;
    background: rgba(0, 0, 0, 0.7);
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    pointer-events: none;
    z-index: 2;
}



/* LIVEリンクの動画サイズ調整（比率ボックス） */
.top_live_link a {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.top_live_link a::before {
    content: "";
    display: block;
    padding-top: 40%;
}

.top_live_link a::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.top_live_link video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.top_live_link video:before {
    content: "";
    display: block;
    padding-top: 40%;
}

.top_live_link .txt_wrap,
.top_live_link .btn_wrap {
    z-index: 2;
}

/*---------------print, screen and (min-width:960px) - START ---------------*/
@media print,
screen and (min-width:960px) {}

/*---------------print, screen and (min-width:960px) - END ---------------*/

/*---------------screen and (max-width:959px) - START ---------------*/
@media screen and (max-width:959px) {
    .top_main_slider {
        padding-top: 50px;
    }

    .top_main_slider .main-slider img {
        height: 400px;
    }

    .top_main_slider .main-slider .slick-slide {
        margin-left: -40px;
    }
}

/*---------------screen and (max-width:959px) - END ---------------*/



/*---------------screen and (max-width:640px) - START ---------------*/
@media screen and (max-width:640px) {

    .top_main_slider .main-slider img {
        height: 300px;
    }

    .top_main_slider .main-slider .slick-slide {
        margin-left: -30px;
    }

    .top_concept_container .ssc_logo {
        right: auto;
        left: -35%;
    }

    .top_concept_container .ssc_logo img {
        max-width: inherit;
        width: 120%;
    }

    .img_link img {
        min-height: 200px;
        object-fit: cover;
        object-position: center;
    }

    .top_live_link a::before {
        min-height: 200px;

    }
}

/*---------------screen and (max-width:640px) - END ---------------*/