* {
    box-sizing: border-box;
    border: 0;
    margin: 0;
    padding: 0;
    outline: 0;
    list-style: none;
    vertical-align: baseline;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0em;
    font-style: normal;
    font-size: inherit;
    font-feature-settings: "palt";
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif
}

@font-face {
    font-family: "blgHudson";
    src: url("../font/blgHudson.eot");
    src: url("../font/blgHudson.eot?#iefix") format("embedded-opentype"), url("../font/blgHudson.woff2") format("woff2"), url("../font/blgHudson.woff") format("woff"), url("../font/blgHudson.ttf") format("truetype");
    font-display: swap;
    font-weight: bold;
    font-style: normal
}

@font-face {
    font-family: "MyYuGothic";
    font-weight: normal;
    src: local("游ゴシック Medium"), local("YuGothic-Medium"), local("Yu Gothic Medium"), local("游ゴシック体"), local("YuGothic"), local("YuGothic-Regular")
}

@font-face {
    font-family: "MyYuGothic";
    font-weight: bold;
    src: local("游ゴシック Bold"), local("YuGothic-Bold"), local("Yu Gothic"), local("游ゴシック体"), local("YuGothic")
}

@font-face {
    font-family: "MyHiragino";
    font-weight: normal;
    src: local("Hiragino Sans"), local("ヒラギノ角ゴ ProN W3"), local("Hiragino Kaku Gothic ProN")
}

@font-face {
    font-family: "MyHiragino";
    font-weight: bold;
    src: local("Hiragino Sans"), local("ヒラギノ角ゴ ProN W6"), local("Hiragino Kaku Gothic ProN W6")
}

@font-face {
    font-family: "MyHiragino";
    font-weight: 800;
    src: local("Hiragino Sans"), local("ヒラギノ角ゴ StdN"), local("Hiragino Kaku Gothic StdN")
}

:root {
    --leading-trim: calc((1em - 1lh) / 2)
}

@supports not (top: 1lh) {
    :root {
        --leading-trim: 0px
    }
}

body {
    margin: 0;
    color: #000;
    font-size: 12px;
    line-height: 1.75;
    text-align: left;
    background: url("../img/kv_bg.webp") center/cover no-repeat fixed;
    font-weight: 700
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.25;
    font-weight: 900;
    margin-block: var(--leading-trim)
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    font-weight: inherit
}

strong {
    display: inline-block;
    font-weight: 900;
    color: #d20028
}

p {
    margin-block: var(--leading-trim)
}

img {
    -ms-interpolation-mode: bicubic;
    width: 100%;
    border: none;
    vertical-align: bottom
}

:focus {
    outline: 0
}

.clearfix:after {
    content: "";
    display: block;
    clear: both
}

a,
a img {
    display: inline-block;
    backface-visibility: hidden;
    color: inherit;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: .2s linear
}

a:hover {
    filter: brightness(0.6)
}

input,
button,
textarea,
select,
option {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: none
}

select::-ms-expand {
    display: none
}

::-webkit-input-placeholder {
    color: #ccc
}

input:-ms-input-placeholder {
    color: #ccc
}

::-moz-placeholder {
    color: #ccc
}

.fb_iframe_widget>span {
    vertical-align: baseline !important
}

body.no-scroll {
    overflow: hidden
}

.l-header {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 500px;
    height: 60px;
    background-color: #000;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px
}

.l-header__logo a {
    display: block;
    width: 44px;
    height: 32px
}

.l-header__logo a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.l-header__right {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 4px
}

.l-header__basketball-live img {
    display: block;
    height: 16px
}

.l-header__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer
}

@media(max-width: 1024px) {
    .l-header__hamburger {
        display: flex
    }
}

.l-header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all .3s ease
}

.l-modal-menu {
    position: fixed;
    z-index: 2000;
    width: calc((100% - 500px)/2);
    top: 0;
    right: 0;
    height: 100%;
    transition: opacity .3s ease, visibility .3s ease
}

@media(max-width: 1024px) {
    .l-modal-menu {
        left: 0;
        width: 100%;
        opacity: 0;
        visibility: hidden
    }
}

.l-modal-menu.is-open {
    opacity: 1;
    visibility: visible
}

@media(max-width: 1024px) {
    .l-modal-menu__overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .9)
    }
}

.l-modal-menu__content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px
}

.l-modal-menu__close {
    display: none;
    position: absolute;
    top: 18px;
    right: 20px;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10
}

@media(max-width: 1024px) {
    .l-modal-menu__close {
        display: block
    }
}

.l-modal-menu__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 2px;
    background-color: #fff;
    transform: translate(-50%, -50%)
}

.l-modal-menu__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg)
}

.l-modal-menu__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg)
}

.l-modal-menu__nav {
    width: 100%;
    max-width: 452px
}

.l-modal-menu__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0
}

.l-modal-menu__item {
    width: 100%
}

.l-modal-menu__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff
}

.l-modal-menu__icon {
    width: 32px;
    height: 32px;
    -o-object-fit: contain;
    object-fit: contain;
    flex-shrink: 0
}

@media(max-width: 1024px) {
    .l-modal-menu__icon {
        width: 24px;
        height: 24px
    }
}

.l-modal-menu__text {
    font-size: 20px;
    font-weight: 900
}

@media(max-width: 1024px) {
    .l-modal-menu__text {
        font-size: 14px
    }
}

#page {
    max-width: 500px;
    width: 100%;
    margin: auto;
    overflow: hidden;
    padding-top: 60px;
    background-color: white;
}

section {
    width: 100%;
    position: relative
}

.p-as-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: calc((100% - 500px)/2);
    padding: 4%;
    position: fixed;
    top: 0;
    left: 0
}

.p-as-logo img {
    max-width: 400px;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

@media(max-width: 1024px) {
    .p-as-logo {
        display: none
    }
}

.l-footer {
    background-color: #000;
    color: #fff;
    padding: 40px 24px 90px;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 32px
}

.l-footer__sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px
}

.l-footer__sns a {
    display: block;
    width: 24px;
    height: 24px;
    text-decoration: none
}

.l-footer__sns a img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.l-footer__logo img {
    width: 32px;
    height: 62px;
    -o-object-fit: contain;
    object-fit: contain
}

.l-footer__copy {
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.75;
    color: #fff
}

.c-subtitle {
    font-size: 16px;
    background-color: #000;
    color: #fff;
    padding: 4px 8px;
    display: inline-block;
    margin: inherit auto
}

.c-subtitle--small {
    border-left: 4px solid #d20028;
    padding-left: 8px
}

.c-bfont,
.c-section-title__sub {
    font-family: "blgHudson", sans-serif;
    position: relative;
    margin-bottom: -0.2em;
    line-height: 1
}

.c-t80 {
    font-size: 80px
}

.c-t48 {
    font-size: 48px
}

.c-t40 {
    font-size: 40px
}

.c-t32 {
    font-size: 32px
}

.c-t24 {
    font-size: 24px
}

.c-t20,
.c-section-title__main {
    font-size: 20px
}

.c-t16 {
    font-size: 16px
}

.c-t14 {
    font-size: 14px
}

.c-t12 {
    font-size: 12px
}

.c-t10 {
    font-size: 10px
}

.c-caption {
    font-size: 80%
}

.c-mb10 {
    margin-block-end: calc(10px + var(--leading-trim))
}

.c-mb20,
.c-section-title__main,
.c-subtitle {
    margin-block-end: calc(20px + var(--leading-trim))
}

.c-mb30 {
    margin-block-end: calc(30px + var(--leading-trim))
}

.c-mb40,
.c-section-title {
    margin-block-end: calc(40px + var(--leading-trim))
}

.c-mb60 {
    margin-block-end: calc(60px + var(--leading-trim))
}

.c-mb80 {
    margin-block-end: calc(80px + var(--leading-trim))
}

.c-mb120 {
    margin-block-end: calc(120px + var(--leading-trim))
}

.c-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    background-color: #d20028;
    width: 100%;
    padding: 6px;
    position: relative;
    border-radius: 4px;
    cursor: pointer
}

.c-button .c-arrow {
    background-color: #fff
}

.c-button .c-arrow::before {
    border-color: #d20028
}

.c-button:hover {
    background: #9f001e;
    color: #fff;
    filter: brightness(1)
}

.c-button:hover .c-arrow {
    background-color: #fff
}

.c-button:hover .c-arrow::before {
    border-color: #d20028
}

.c-button--small {
    font-size: 14px;
    padding: 10px 20px;
    gap: 6px
}

.c-button--small.c-bfont,
.c-button--small.c-section-title__sub {
    font-size: 20px;
    padding: 10px 20px
}

.c-button--small .c-arrow {
    width: 16px;
    height: 16px
}

.c-button--small .c-arrow::before {
    width: 6px;
    height: 6px;
    border-width: 2px
}

.c-button--fixed {
    position: fixed;
    bottom: 16px;
    z-index: 1000;
    max-width: 468px;
    width: calc(100% - 32px);
    margin: 0 16px;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, .5)
}

.c-button--fixed:hover {
    background-color: #9f001e;
    color: #fff
}

.c-arrow {
    display: inline-block;
    background: #000;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    position: relative;
    transform: rotate(0deg);
    transition: .2s linear
}

.c-arrow:hover {
    background-color: #d20028
}

.c-arrow:hover::before {
    border-color: #fff
}

a:hover .c-arrow {
    background-color: #d20028
}

a:hover .c-arrow::before {
    border-color: #fff
}

.c-arrow::before {
    content: "";
    width: 9px;
    height: 9px;
    border: 3px solid #fff;
    border-left: 0;
    border-bottom: 0;
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translateX(55%) rotate(45deg);
    box-sizing: border-box;
    transition: .2s linear
}

.c-arrow--left {
    transform: rotate(180deg)
}

.c-arrow--white {
    background: #fff
}

.c-arrow--white::before {
    border-color: #000
}

.c-arrow--small {
    width: 24px;
    height: 24px
}

.c-arrow--small::before {
    width: 6px;
    height: 6px;
    border-width: 2px;
    transform: translateX(55%) rotate(45deg)
}

.c-link {
    color: #d20028
}

.c-link::after {
    content: "";
    width: .6em;
    height: .6em;
    line-height: 1;
    border: 2px solid #d20028;
    border-left: 0;
    border-bottom: 0;
    display: inline-block;
    margin-right: 2px;
    transform: translateY(-18%) rotate(45deg);
    vertical-align: middle;
    box-sizing: border-box;
    transition: .2s linear
}

a:hover .c-link::after {
    filter: brightness(0.7)
}

.c-link:hover {
    opacity: 1;
    color: #d20028
}

.c-link:hover::after {
    border-color: #d20028
}

.c-tag {
    display: inline-block;
    font-weight: 900;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 20px;
    font-size: 12px;
    padding: 2px 12px;
    margin-right: 6px;
    margin-bottom: 6px
}

.c-tag.is-selected {
    background-color: #d20028;
    border: none;
    color: #fff
}

.c-tag--large {
    font-size: 16px;
    padding: 3px 16px;
    margin-right: 10px;
    margin-bottom: 10px
}

.c-tag--small {
    font-size: 10px;
    padding: 2px 10px;
    margin-right: 5px;
    margin-bottom: 5px
}

@media(max-width: 768px) {
    .c-tag {
        font-size: 10px;
        padding: 2px 10px;
        margin-right: 5px;
        margin-bottom: 5px
    }
}

.c-icon-sprite {
    display: none
}

.c-icon {
    fill: #000;
    width: 24px;
    height: 24px;
    transition: fill .2s linear, stroke .2s linear;
    vertical-align: middle
}

.c-container {
    border-radius: 8px;
    margin: 24px;
    width: calc(100% - 48px);
    position: relative;
    padding: 24px 16px;
    background-color: #fff;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, .2)
}

.c-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9
}

.c-container.is-b-black {
    background-color: #000;
    color: #fff
}

.c-container.is-b-black .c-subtitle {
    color: #000;
    background-color: #fff
}

.c-container.is-b-black .p-players__item {
    border-color: rgba(255, 255, 255, .2)
}

.c-container.is-b-white {
    background-color: #fff;
    color: #000
}

.c-container.is-rising-stars {
    background-color: #d9c14b;
    color: #000
}

.c-container.is-asia-allstars {
    background-color: #b0202b;
    color: #fff
}

.c-container.is-asia-allstars .p-players__item {
    border-color: rgba(255, 255, 255, .2)
}

.c-container.is-b2-selected {
    background-color: #1f1311;
    color: #fff
}

.c-container.is-b2-selected .c-subtitle {
    color: #000;
    background-color: #fff
}

.c-container.is-b2-selected .p-players__item {
    border-color: rgba(255, 255, 255, .2)
}

.c-container.is-kyushu-united {
    background-color: #148ec2;
    color: #fff
}

.c-container.is-kyushu-united .p-players__item {
    border-color: rgba(255, 255, 255, .2)
}

.c-container.is-dunk-contest {
    background-color: #a8191c;
    color: #fff
}

.c-container.is-dunk-contest .p-players__item {
    border-color: rgba(255, 255, 255, .2)
}

.c-container.is-skills-challenge {
    background-color: #fdd242;
    color: #000
}

.c-container.is-3point-contest {
    background-color: #1d2a53;
    color: #fff
}

.c-container.is-3point-contest .c-subtitle {
    color: #000;
    background-color: #fff
}

.c-container.is-3point-contest .p-players__item {
    border-color: rgba(255, 255, 255, .2)
}

.c-container.is-u18-jade {
    background-color: #286449;
    color: #fff
}

.c-container.is-u18-jade .p-players__item {
    border-color: rgba(255, 255, 255, .2)
}

.c-container.is-u18-helios {
    background-color: #dbae48;
    color: #000
}

.c-grid {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.c-grid--center {
    justify-content: center;
    align-items: center
}

.c-grid--reverse {
    flex-direction: row-reverse
}

.c-grid--2>.c-grid__cell {
    width: calc(50% - 8px)
}

.c-grid--3>.c-grid__cell {
    width: calc(33.3333% - 8px)
}

.c-grid--4>.c-grid__cell {
    width: calc(25% - 8px)
}

.c-section-title__main {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.c-section-title__sub {
    position: relative;
    display: inline-block;
    margin: 0;
    margin-block: calc((1em - 1.25lh)/2);
    left: -6px;
    font-size: 180px;
    line-height: .85;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0);
    background-image: url("../img/kv_bg.webp");
    background-clip: text;
    -webkit-background-clip: text;
    background-size: cover;
    background-position: bottom right;
    white-space: nowrap
}

@media(max-width: 1280px) {
    .c-section-title__sub {
        font-size: 150px
    }
}

@media(max-width: 1024px) {
    .c-section-title__sub {
        font-size: 120px
    }
}

@media(max-width: 768px) {
    .c-section-title__sub {
        font-size: 80px;
        left: -3px;
        white-space: normal;
        word-break: keep-all
    }
}

.c-section-title--white .c-section-title__main {
    color: #fff
}

.c-section-title--white .c-section-title__sub {
    background: none;
    color: #fff
}

.c-breadcrumb {
    display: flex;
    align-items: center;
    background: #fff;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, .2);
    position: relative;
    z-index: 10;
    line-height: 1;
    padding: 16px;
    gap: 8px;
    margin: auto;
    width: 100%;
    height: 48px;
    overflow: clip
}

.c-breadcrumb .c-arrow {
    background-color: #fff
}

.c-breadcrumb .c-arrow::before {
    border-color: #000
}

.c-breadcrumb a:hover {
    color: #d20028
}

/* すワイパー */
.c-swiper {
    position: relative;
    width: 100%;
    overflow: hidden
}

.c-swiper__wrapper {
    width: 100%
}

.c-swiper__slide {
    width: 100%;
    flex-shrink: 0
}

.c-swiper__navigation-next,
.c-swiper__navigation-prev {
    color: #fff;
    width: 24px;
    height: 24px;
    margin-top: -12px;
    z-index: 10
}

.c-swiper__navigation-next:after,
.c-swiper__navigation-prev:after {
    font-size: 16px
}

.c-swiper__navigation-next {
    right: 8px
}

.c-swiper__navigation-prev {
    left: 8px
}

.c-swiper__pagination {
    position: relative;
    margin-top: 16px;
    text-align: center
}

.c-swiper__pagination .swiper-pagination-bullet {
    background-color: #fff;
    opacity: .3;
    width: 8px;
    height: 8px;
    margin: 0 4px
}

.c-swiper__pagination .swiper-pagination-bullet-active {
    opacity: 1
}

.c-tab {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.c-tab__buttons {
    display: flex;
    background: #f0f0f0;
    border-radius: 4px
}

.c-tab__button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    background: rgba(0, 0, 0, 0);
    border: none;
    font-weight: 900;
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
    color: #000;
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    min-height: 40px
}

.c-tab__button:not(:last-child) {
    border-right: 1px solid #fff
}

.c-tab__button:first-child {
    border-radius: 4px 0 0 4px
}

.c-tab__button:last-child {
    border-radius: 0 4px 4px 0
}

.c-tab__button.is-active {
    background: #d20028;
    color: #fff
}

.c-tab__button.is-active::before {
    content: "";
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #d20028;
    z-index: 1
}

.c-tab__button:hover:not(.is-active) {
    background: #d20028;
    color: #fff
}

.c-tab__content {
    display: none
}

.c-tab__content.is-active {
    display: block
}

.c-tab__content img {
    border-radius: 4px
}

.c-tab__image {
    position: relative;
    display: inline-block
}

.c-tab__image img {
    position: relative;
    z-index: 0
}

.c-tab__image::after {
    font-family: "blgHudson", sans-serif;
    content: "SAMPLE";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    border-radius: 4px;
    z-index: 2
}

.c-tab--nested {
    margin-top: 16px
}

.c-tab--nested .c-tab__buttons {
    background: #f8f8f8
}

.c-tab--nested .c-tab__button {
    font-size: 9px;
    padding: 8px 6px;
    min-height: 32px
}

.c-tab--nested .c-tab__button.is-active::before {
    width: 18px;
    height: 18px
}

.c-tab[data-tab-level="2"] .c-tab__buttons {
    gap: 0
}

.c-tab[data-tab-level="2"] .c-tab__button:not(:last-child) {
    border-right: 1px solid #fff
}

.c-tab--players-primary {
    gap: 0
}

.c-tab--players-primary .c-tab__buttons {
    background: #fff;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, .2)
}

.c-tab--players-primary .c-tab__button {
    padding: 4px 8px;
    border-right: 1px solid rgba(0, 0, 0, .2);
    border-radius: 0;
    height: 64px
}

.c-tab--players-primary .c-tab__button:first-child,
.c-tab--players-primary .c-tab__button:last-child {
    border-radius: 0
}

.c-tab--players-primary .c-tab__button:last-child {
    border-right: none
}

.c-tab--players-primary .c-tab__button.is-active {
    background-color: #000;
    color: #fff
}

.c-tab--players-primary .c-tab__button.is-active::before {
    background-color: #000
}

.c-tab--players-primary .c-tab__button:hover:not(.is-active) {
    background-color: #fff;
    filter: brightness(0.7)
}

.c-tab--players-primary .c-tab__logo {
    display: block;
    height: 56px;
    width: auto;
    -o-object-fit: contain;
    object-fit: contain
}

.c-tab--players-secondary .c-tab__title {
    margin-bottom: 16px
}

.c-tab--players-secondary .c-tab__title span {
    margin: 0
}

.c-tab--players-secondary .c-tab__buttons {
    margin: -24px -16px 0;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    box-shadow: none
}

.c-tab--players-secondary .c-tab__buttons .c-tab__button.is-active::before {
    display: none
}

.c-tab--players-secondary .c-tab__buttons .c-tab__button[data-tab=b-black] {
    background-color: #000
}

.c-tab--players-secondary .c-tab__buttons .c-tab__button[data-tab=b-white] {
    background-color: #fff
}

.c-tab--players-secondary .c-tab__buttons .c-tab__button[data-tab=rising-stars] {
    background-color: #d9c14b
}

.c-tab--players-secondary .c-tab__buttons .c-tab__button[data-tab=asia-allstars] {
    background-color: #b0202b
}

.c-tab--players-secondary .c-tab__buttons .c-tab__button[data-tab=b2-selected] {
    background-color: #1f1311
}

.c-tab--players-secondary .c-tab__buttons .c-tab__button[data-tab=kyushu-united] {
    background-color: #148ec2
}

.c-tab--players-secondary .c-tab__buttons .c-tab__button[data-tab=dunk-contest] {
    background-color: #a8191c
}

.c-tab--players-secondary .c-tab__buttons .c-tab__button[data-tab=skills-challenge] {
    background-color: #fdd242
}

.c-tab--players-secondary .c-tab__buttons .c-tab__button[data-tab="3point-contest"] {
    background-color: #1d2a53
}

.c-tab--players-secondary .c-tab__buttons .c-tab__button[data-tab=u18-jade] {
    background-color: #286449
}

.c-tab--players-secondary .c-tab__buttons .c-tab__button[data-tab=u18-helios] {
    background-color: #dbae48
}

.p-kv {
    width: 100%;
    padding: 0
}

.p-overview {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    position: relative
}

.p-overview__title img {
    width: 100%;
    max-width: 327px;
    height: auto;
    position: relative;
    z-index: 1
}

.p-overview__title:after {
    content: "";
    display: block;
    width: 100%;
    max-width: 350px;
    height: 48px;
    background-color: #fff;
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(6px);
    z-index: 0
}

.p-overview__date img {
    width: 100%;
    max-width: 327px;
    height: auto
}

.p-overview__movie {
    width: 100%;
    aspect-ratio: 16/9
}

.p-overview__movie iframe {
    width: 100%;
    height: 100%;
    border-radius: 4px
}

.p-banners {
    padding: 0 24px
}

.p-banners__item {
    display: block;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 16/9
}

.p-banners__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.p-banners__swiper {
    width: calc(100% + 32px);
    margin: 0 -16px
}

.p-section__title {
    display: flex;
    align-items: center;
    gap: 8px
}

.p-section__title-main {
    font-family: "blgHudson", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    color: #fff
}

.p-section__title-sub {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.25;
    color: #fff
}

.p-news {
    padding: 40px 16px;
    margin: 0 2%;
    width: 96%;
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.p-news__list {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.p-news__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px
}

.p-news__item.is-new .p-news__title {
    position: relative
}

.p-news__item.is-new .p-news__title::after {
    content: "NEW！";
    color: #d20028;
    display: inline-block
}

.p-news__date {
    font-family: "blgHudson", sans-serif;
    font-size: 16px;
    opacity: .5;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.25;
    margin-bottom: -2px
}

.p-news__title {
    font-size: 12px;
    line-height: 1.5;
    flex: 1
}

.p-nav {
    padding: 24px
}

.p-nav__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px
}

.p-nav a.p-nav__item:hover {
    filter: brightness(1)
}

.p-nav a.p-nav__item:hover::before {
    background: rgba(0, 0, 0, .6)
}

.p-nav__item {
    display: flex;
    width: calc(50% - 8px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    aspect-ratio: 1.45/1;
    text-align: center
}

.p-nav__item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 1;
    transition: .2s
}

.p-nav__item>* {
    position: relative;
    z-index: 2
}

.p-nav__item:nth-child(-n+5) {
    width: 100%;
    aspect-ratio: 3/1
}

.p-nav__item:nth-child(-n+5) .p-nav__title {
    font-size: 20px
}

.p-nav__item:nth-child(-n+5) .p-nav__subtitle {
    font-size: 16px
}

.p-nav__item--about-vote {
    background-image: url("/files/user/_/all-stargame2026/img/nav_about-vote.jpg")
}

.p-nav__item--vote {
    background-image: url("/files/user/_/all-stargame2026/img/nav_vote.jpg")
}

.p-nav__item--event {
    background-image: url("/files/user/_/all-stargame2026/img/nav_event.jpg")
}

.p-nav__item--ticket {
    background-image: url("/files/user/_/all-stargame2026/img/nav_ticket.jpg")
}

.p-nav__item--about {
    background-image: url("/files/user/_/all-stargame2026/img/nav_about.jpg")
}

.p-nav__item--access {
    background-image: url("/files/user/_/all-stargame2026/img/nav_access.jpg")
}

.p-nav__item--cityguide {
    background-image: url("/files/user/_/all-stargame2026/img/nav_city-guide.jpg")
}

.p-nav__item--outline {
    background-image: url("/files/user/_/all-stargame2026/img/nav_outline.jpg")
}

.p-nav__item--goods {
    background-image: url("/files/user/_/all-stargame2026/img/nav_goods.jpg")
}

.p-nav__item--hope {
    background-image: url("/files/user/_/all-stargame2026/img/nav_hope.jpg")
}

.p-nav__item--players {
    background-image: url("/files/user/_/all-stargame2026/img/nav_players.jpg")
}

.p-nav__icon {
    width: 32px;
    height: 32px;
    margin: -4px 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.p-nav__icon-faq {
    height: 16px;
    width: 16px;
    border-radius: 100%;
    background-color: #fff;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 4px
}

.p-nav__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.p-nav__title {
    font-size: 16px
}

.p-nav__subtitle {
    font-family: "blgHudson", sans-serif;
    font-size: 12px;
    line-height: 1.25
}

.p-nav__item--faq,
.p-nav__item--live {
    background-color: #000;
    height: 48px;
    width: 100%
}

.p-nav__item--faq .p-nav__title,
.p-nav__item--live .p-nav__title {
    font-size: 14px
}

.p-nav__item--faq:hover,
.p-nav__item--live:hover {
    filter: brightness(0.6) !important
}

.p-nav__item--faq img,
.p-nav__item--live img {
    height: 14px;
    -o-object-fit: contain;
    object-fit: contain
}

.p-gallery {
    padding: 40px 16px;
    margin: 0 2%;
    width: 96%;
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.p-gallery__swiper {
    width: calc(100% + 32px);
    margin: 0 -16px
}

.p-gallery__swiper .swiper-slide img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
    display: block
}

.p-10th-banner {
    padding: 16px 24px
}

.p-list--column .p-list__item {
    flex-direction: column
}

.p-list--column .p-list__item h3,
.p-list--column .p-list__item h4 {
    width: auto
}

.p-list--disc li {
    list-style: disc;
    margin-left: 16px
}

.p-list__item {
    display: flex;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    padding: 0 0 16px;
    margin-bottom: 16px
}

.p-list__item:last-child {
    margin-bottom: 0
}

.p-list__item p {
    flex: 1;
    line-height: 1.5
}

.p-list__item h3,
.p-list__item h4 {
    width: 48px;
    line-height: 1.5
}

.p-theme-logo {
    width: 100%;
    height: auto;
    margin: 10px 0 30px
}

.p-notice {
    border-radius: 8px;
    padding: 16px;
    background-color: #f0f0f0
}

.p-attention {
    border-radius: 8px;
    padding: 16px;
    background-color: #d20028;
    color: #fff
}

.p-step3-image__single {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, .1)
}

.p-more-box {
    position: relative
}

.p-more-box .p-more-content {
    display: -webkit-box;
    position: relative;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4
}

.p-more-box .p-more-content::after {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0%, hsla(0, 0%, 100%, 0.9) 50%, hsla(0, 0%, 100%, 0.9) 0%, #fff);
    content: ""
}

.p-more-box:has(:checked) .p-more-content {
    display: block
}

.p-more-box:has(:checked) .p-more-content::after {
    content: none
}

.p-more-box label {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    transition: all .3s ease;
    color: #d20028;
    text-decoration: underline
}

.p-more-box label:hover {
    color: #fff
}

.p-more-box:has(:checked) label {
    display: none
}

.p-more-box input {
    display: none
}

.p-event__item {
    gap: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    padding: 0 0 16px;
    margin-bottom: 16px
}

.p-event__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.p-players {
    width: 100%;
    padding: 0
}

.p-vote-en {
    width: 96%;
    margin: 0 2%;
    background-color: #d20028;
    color: #fff;
    padding: 24px 16px
}

.p-vote-en h2 {
    text-align: center
}

.p-event-en {
    padding-bottom: 0
}

.p-event-en h2 {
    text-align: center
}

.p-ticket-en {
    width: 96%;
    margin: 0 2%;
    background-color: #000;
    color: #fff;
    padding: 24px 16px
}

.p-ticket-en h2,
.p-ticket-en h3 {
    text-align: center
}

.p-scroll {
    width: 96%;
    margin: 0 2%;
    padding: 0
}

.p-scroll__swiper .swiper-wrapper {
    transition-timing-function: linear
}

.p-en-banner {
    padding: 0 24px;
    margin-bottom: 24px
}

.p-ranking {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0
}

.p-ranking--backcourt .p-ranking__item:nth-child(3) {
    border-top: 3px solid #d20028
}

.p-ranking--frontcourt .p-ranking__item:nth-child(4) {
    border-top: 3px solid #d20028
}

.p-ranking__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, .2)
}

.p-ranking__player {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    margin: 0 8px
}

.p-ranking__rank {
    width: 30px;
    text-align: center
}

.p-ranking__player-image {
    width: 32px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 2px
}

.p-ranking__votes {
    margin-left: auto;
    text-align: right;
    flex-shrink: 0
}

.p-players__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, .2)
}

.p-players__item__image {
    width: 100%;
    height: 240px;
    overflow: hidden
}

.p-players__item__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain
}

.p-players__item__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    width: 100%
}

.p-players__item__name {
    font-size: 18px
}

.p-players__item__team {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 4px 0
}

.p-players__item__logo {
    width: 48px;
    height: 48px;
    -o-object-fit: contain;
    object-fit: contain;
    flex-shrink: 0
}

.p-players__item__text {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    white-space: normal
}

.p-players__item--small {
    margin-bottom: 0
}

.p-players__item--small .p-players__item__image {
    height: 120px
}

.p-players__item--small .p-players__item__name {
    font-size: 12px
}

.p-players__item--small .p-players__item__logo {
    width: 40px;
    height: 40px
}

.p-players__item--small .p-players__item__text {
    font-size: 10px
}

.p-players__item--small .p-players__item__team {
    gap: 8px
}

.no-scroll {
    overflow: hidden !important;
    height: 100vh !important
}

.partners-block {
    background-color: #fff;
    text-align: center;
    width: 96%;
    margin: 0 2%;
    padding: 1px 24px 40px
}

.partners-block h4 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 48px;
    margin-bottom: 32px
}

.partners {
    max-width: 960px;
    margin: 0 auto
}

.partners .card {
    height: 100%
}

.partners .card-img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 45px
}

.partners .card-date {
    font-size: 11px;
    margin-top: 10px
}

.partners-companies .grid-row {
    justify-content: center
}

.grid-container+.grid-container {
    margin-top: 30px
}

.grid-container+.grid-container[data-gap=sm] {
    margin-top: 10px
}

.grid-container+.grid-container[data-gap=md] {
    margin-top: 20px
}

.grid-container+.grid-container[data-gap=lg] {
    margin-top: 40px
}

.grid-contents {
    width: 100%;
    max-width: 1310px;
    margin: 0 auto
}

.grid-contents .grid-row {
    margin: 0;
    flex-wrap: nowrap
}

.grid-contents .grid-row.grid-row--wrap {
    flex-wrap: wrap
}

.grid-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -30px -10px 0
}

.grid-row[data-gap=lg] {
    margin: -30px -20px 0
}

.grid-row[data-gap=lg]>[class*=grid-col] {
    margin-top: 30px;
    margin-bottom: 20px
}

.grid-row[data-gap=lg]>[class*=grid-col-top] {
    margin-top: 30px
}

.grid-side {
    padding-left: 20px
}

.grid-side .grid-side_container {
    padding: 20px;
    background-color: #f2f2f2
}

.grid-main .grid-main-ttl {
    font-size: 3.2rem
}

@media screen and (max-width: 961px) {
    .grid-side .grid-side_container {
        padding: 20px
    }
}

.grid-row[data-gap-sp=sm] {
    margin: -20px -5px 0
}

.grid-row[data-gap-sp=sm]>[class*=grid-col] {
    margin-top: 20px;
    padding: 0 5px
}

.grid-side {
    padding-left: 0
}

.grid-side .grid-side_container {
    padding: 15px 10px
}

.grid-main .grid-main-ttl {
    font-size: 2.4rem
}

.grid-row[data-grid-align=end] {
    align-items: flex-end
}

.grid-row>[class*=grid-col] {
    margin-top: 20px;
    padding: 0 10px
}

[data-col="1"] {
    width: 8.3333333333%
}

[data-col="2"] {
    width: 16.6666666667%
}

[data-col="3"] {
    width: 25%
}

[data-col="4"] {
    width: 33.3333333333%
}

[data-col="5"] {
    width: 41.6666666667%
}

[data-col="6"] {
    width: 50%
}

[data-col="7"] {
    width: 58.3333333333%
}

[data-col="8"] {
    width: 66.6666666667%
}

[data-col="9"] {
    width: 75%
}

[data-col="10"] {
    width: 83.3333333333%
}

[data-col="11"] {
    width: 91.6666666667%
}

[data-col="12"] {
    width: 100%
}

[data-col="1-5"] {
    width: 20%
}

[data-col-tab="1"] {
    width: 8.3333333333%
}

[data-col-tab="2"] {
    width: 16.6666666667%
}

[data-col-tab="3"] {
    width: 25%
}

[data-col-tab="4"] {
    width: 33.3333333333%
}

[data-col-tab="5"] {
    width: 41.6666666667%
}

[data-col-tab="6"] {
    width: 50%
}

[data-col-tab="7"] {
    width: 58.3333333333%
}

[data-col-tab="8"] {
    width: 66.6666666667%
}

[data-col-tab="9"] {
    width: 75%
}

[data-col-tab="10"] {
    width: 83.3333333333%
}

[data-col-tab="11"] {
    width: 91.6666666667%
}

[data-col-tab="12"] {
    width: 100%
}

[data-col-tab="1-5"] {
    width: 20%
}

[data-col-sp="1"] {
    width: 8.3333333333%
}

[data-col-sp="2"] {
    width: 16.6666666667%
}

[data-col-sp="3"] {
    width: 25%
}

[data-col-sp="4"] {
    width: 33.3333333333%
}

[data-col-sp="5"] {
    width: 41.6666666667%
}

[data-col-sp="6"] {
    width: 50%
}

[data-col-sp="7"] {
    width: 58.3333333333%
}

[data-col-sp="8"] {
    width: 66.6666666667%
}

[data-col-sp="9"] {
    width: 75%
}

[data-col-sp="10"] {
    width: 83.3333333333%
}

[data-col-sp="11"] {
    width: 91.6666666667%
}

[data-col-sp="12"] {
    width: 100%
}

[data-col-sp="1-5"] {
    width: 20%
}

.partners-block a[href*=winner] img {
    transform: scale(1.5)
}

/*# sourceMappingURL=style.css.map */