@charset "UTF-8";

/* CSS Document 2025 */

/************ common ************/
.main__content:last-child {
    margin-bottom: 0px;
}

.flex-container {
    display: flex;
    flex-direction: column;
}

.full {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
}

.d-none {
    display: none !important;
}

.p-0 {
    padding: 0px;
}

.pc-only {
    display: block;
    ;
}

.top-slider-area .pc-flex {
    display: flex !important;
    ;
}

.sp-only {
    display: none;
    ;
}

.no-wrap {
    white-space: nowrap;
}

.bg-white {
    background-color: #FFF !important;
}

.fw-normal {
    font-weight: normal;
}

.dummy {
    pointer-events: none;
    opacity: 0;
}

.justify-content-center {
    display: flex;
    justify-content: center;
    text-align: center;
}

@media screen and (max-width: 960px) {
    .pc-only {
        display: none !important;
    }

    .top-slider-area .pc-flex {
        display: none !important;
    }

    .sp-only {
        display: block !important;
    }

    .main-slider-area {
        width: 100%;
    }
}

/************ header ************/
.header__menu-btn {
    display: none;
}

.header__menu-btn-eng {
    color: #000;
    position: relative;
    top: 5px;
}

.g-nav__list {
    padding-right: 0px !important;
}

/* グローバルナビ基本 */
.global-nav {
    list-style: none;
    display: flex;
    gap: 0px;
}

.global-nav>li {
    position: relative;
}

/* サブメニュー 初期状態 */
.global-nav .submenu {
    position: absolute;
    top: 90px;
    /*left: 0;*/
    background: rgba(208, 36, 106, 0.9);
    list-style: none;
    padding: 0;
    min-width: 180px;
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.global-nav .submenu li {
    border-bottom: solid 1px #ffc2c273;
    width: 95%;
    margin: auto;
    line-height: 2rem;
}

/* サブメニューのリンク */
.global-nav .submenu li a {
    display: block;
    padding: 8px 16px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.global-nav .submenu li a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* マウスオーバー時に下に開く */
.global-nav>li:hover .submenu {
    max-height: 500px;
    /* サブメニューが収まる高さより大きめに */
    padding: 10px 0;
    /* 開いたときに余白がつく */
    border-radius: 0 0 8px 8px;
    border: solid 3px #bc1818b0;
}

.g-nav__list-item {
    padding-bottom: 10px;
}

.main {
    padding-bottom: 0px;
}

@media screen and (max-width: 1180px) {
    .header__menu-btn-eng {
        display: block;
    }

    .header {
        background: #fad6e3;
    }

    .g-nav__list-item {
        top: 4px;
    }

    .global-nav .submenu {
        top: 70px;
    }
}

@media screen and (max-width: 960px) {
    .global-nav {
        justify-content: space-evenly;
    }

    .h-logo.-sp-only {
        padding: 4px 0 0 0;
    }

    .h-logo {
        width: auto;
        max-width: 100px;
        padding: unset;
    }

    .open-menu {
        padding-top: 20px;
        margin-top: 75px;
    }

    .header__menu-btn {
        display: flex;
        left: 0;
    }

    .spmenu-body {
        display: flex;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .spmenu-item {
        text-align: center;
        margin-bottom: 35px;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 33%;
    }

    .spmenu-item img {
        width: 60px;
        height: 60px;
        display: block;
        margin: 0 auto;
    }

    .spmenu-item span {
        display: block;
        margin-top: 5px;
        font-weight: bold;
        font-size: 1.3rem;
    }

    .spmenu-item span small {
        color: #d12b67;
    }

    /* サブメニュー（初期状態は閉じる） */
    .spsubmenu {
        max-height: 0;
        overflow: hidden;
        margin-top: 0;
        padding: 0 10px;
        background: rgba(208, 36, 106, 0.8);
        border-radius: 8px;
        text-align: left;
        transition: max-height 0.4s ease, margin-top 0.3s ease, padding 0.3s ease;
        width: max-content;
        min-width: 150px;
        text-align: center;
        font-weight: bold;
    }

    .spsubmenu a {
        display: block;
        padding: 8px 0;
        color: #FFF;
        font-size: 1.5rem;
        text-decoration: underline;
        text-decoration-color: #ffc2c273;
        text-underline-offset: 3px;
    }

    .spsubmenu a:hover {
        text-decoration: underline;
        text-decoration-color: #d12b67;
        text-underline-offset: 3px;
    }

    /* 開いたとき（JSで高さを設定するのでpaddingだけ追加） */
    .spsubmenu.open {
        margin-top: 10px;
        padding: 10px;
    }
}

@media screen and (max-width: 680px) {
    .main {
        padding-bottom: 0px;
    }
}

@media screen and (max-width: 480px) {
    .open-menu {
        padding-top: 20px;
        margin-top: 63px;
    }
}

/************ top ************/
.sec1 {
    order: 1;
}

.sec2 {
    order: 2;
}

.sec3 {
    order: 3;
}

.sec4 {
    order: 4;
}

.sec5 {
    order: 5;
}

.sec6 {
    order: 6;
}

.sec7 {
    order: 7;
}

@media screen and (max-width: 960px) {
    .sec1 {
        order: 2;
    }

    .sec2 {
        order: 1;
    }

    .sec3 {
        order: 3;
    }

    .sec4 {
        order: 4;
    }

    .sec5 {
        order: 5;
    }

    .sec6 {
        order: 6;
    }

    .sec7 {
        order: 7;
    }

    .wrap {
        padding: 63px 0 0px;
    }

    .pageup {
        bottom: 30px;
    }
}

.index-heading {
    padding-top: 15px;
}

.index-heading__sub-title {
    color: #eb608f;
    font-size: 1.5rem;
    padding-bottom: 10px;
}

.fs-s {
    font-size: 1.8rem;
    line-height: 1.5rem;
}

.fs-m {
    font-size: 2.5rem;
}

.rank-fs-s {
    font-size: 10rem;
}

.rank-fs-m {
    font-size: 20rem;
    line-height: 20rem;
}

.top-slider-area {
    display: flex;
    justify-content: center;
}

.top-slider-area .rank-area {
    width: 32%;
    margin: 0px 0px 45px 0px;
    background-color: #d12b67;
    background-position: center;
    text-align: center;
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-weight: bold;
    background-size: 65%;
}

.top-slider-area .rank-area .season-title {
    line-height: 4rem;
}

.top-slider-area .rank-area .c-button {
    margin-top: 20px;
}

.top-slider-area .rank-area .rank-view-btn {
    color: #d12b67;
    background: #fff;
    border: solid 2px;
    border-radius: 15px;
    width: 80%;
    height: 80%;
    margin: auto;
}

.rank-area-sp {
    width: 100%;
    margin: 0px 0px 45px 0px;
    background-color: #d12b67;
    background-position: right;
    text-align: center;
    color: #FFF;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    font-weight: bold;
    background-size: 30%;
    height: 90px;
}

.rank-area-sp .season-logo {
    width: 50px;
    display: flex;
    align-items: center;
    margin-left: 5px;
}

.rank-area-sp .season-title {
    line-height: 1.4rem;
    font-size: 1.2rem;
    font-weight: normal;
}

.rank-area-sp .rank-no {
    font-size: 4rem;
}

.rank-area-sp .rank-text {
    font-size: 2rem;
    padding-left: 4px;
}

.rank-area-sp .c-button {
    width: auto;
    max-width: unset;
    height: auto;
    margin: unset;
}

.rank-area-sp .rank-view-btn {
    color: #d12b67;
    background: #fff;
    border: solid 2px;
    border-radius: 10px;
    width: 80px;
    height: unset;
    padding: 7px;
}

.main-slider-area {
    width: 68%;
    max-width: 1920px;
    margin: unset;
    padding: unset;
}

/* MATCH RESULT */
.game-pickup__content.-match {
    border: unset;
}

.game-pickup__prev-btn {
    background: url(../img/icon_prev_black.svg) center no-repeat;
    left: 0px;
    top: 100px;
    height: 100px;
    background-color: #f7d6e3;
}

.game-pickup__next-btn {
    background: url(../img/icon_next_black.svg) center no-repeat;
    right: 0px;
    top: 100px;
    height: 100px;
    background-color: #f7d6e3;
}

.gamePick-match {
    border: solid 1px #e6749e;
    height: auto;
    padding: 20px 10px 1px;
}

.gamePick-match__text {
    margin-bottom: 15px;
    height: 70px;
}

.gamePick-match__text-name {
    word-break: keep-all;
}

.gamePick-match__result {
    justify-content: space-evenly;
    align-items: center;
}

.gamePick-match__result-left,
.gamePick-match__result-right {
    width: auto;
    display: flex;
    flex-direction: column;
}

.gamePick-match__detail-btn {
    background: #f4e037;
    border-radius: 5px;
    padding: 3px 20px 3px;
}

.gamePick-match__detail-team {
    margin-bottom: 0px;
    height: 50px;
    line-height: 1.6rem;
    font-weight: bold;
    text-align: center;
}

.gamePick-match__result-logo {
    width: 150px;
    height: auto;
}

.gamePick-match__result-hyphen {
    width: 15px;
    height: 6px;
    margin: 15px 20px 0;
}

.gamePick-match__result-point {
    font-size: 7rem;
}

.gamePick-match__detail {
    justify-content: space-evenly;
}

.gamePick-match__detail-set {
    min-width: 100px;
}

.gamePick-match__button-item {
    width: 280px;
    height: 50px;
}

.gamePick-match__button-link {
    border-radius: 10px;
    font-size: 1.8rem;
}

.gamePick-match__sponsor-head {
    height: 35px;
    line-height: 35px;
    font-size: 2rem;
    letter-spacing: 0.3rem;
}

.gamePick-match__sponsor-logo {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

@media screen and (max-width: 1500px) {
    .top-slider-area .rank-area .season-title {
        line-height: 3rem;
    }

    .top-slider-area .rank-area .rank-view-btn {
        width: 65%;
        height: 70%;
    }

    .top-slider-area .rank-area .c-button {
        height: 60px;
    }

    .fs-s {
        font-size: 1.4rem;
    }

    .fs-m {
        font-size: 1.8rem;
    }

    .rank-fs-s {
        font-size: 7rem;
    }

    .rank-fs-m {
        font-size: 11rem;
        line-height: 11rem;

    }
}

@media screen and (max-width: 1300px) {
    .gamePick-match__result-logo {
        width: 110px;
    }

    .gamePick-match__result-point {
        font-size: 6rem;
    }
}

@media screen and (max-width: 1100px) {
    .gamePick-match__result-logo {
        width: 90px;
    }

    .gamePick-match__result-point {
        font-size: 5rem;
    }
}

.gamePick-match__button-item {
    width: 200px;
}

@media screen and (max-width: 960px) {
    .main-slider-area {
        width: 100%;
    }
}

/* MEMBER PROFILE */

/* SNS */
.sns-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    color: #FFF;
    font-weight: bold;

}

.sns-card {
    background: #da4286;
    border-radius: 0px;
    text-align: center;
    padding: 30px 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.sns-card:hover {
    transform: translateY(0px);
}

.sns-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
}

.sns-card p {
    margin: 10px 0 20px;
    height: 40px;
    word-break: keep-all;
}

.sns-btn {
    display: inline-block;
    text-decoration: none;
    color: #da4286;
    padding: 6px 10px;
    border-radius: 12px;
    transition: opacity 0.3s;
    width: 65%;
}

.sns-btn:hover {
    opacity: 0.8;
}

.sns-card .sns-btn {
    background: #FFF;
}

@media screen and (max-width: 1300px) {
    .sns-btn {
        width: 75%;
    }
}

@media screen and (max-width: 1100px) {
    .sns-btn {
        width: 90%;
    }

}

@media screen and (max-width: 960px) {
    .sns-container {
        font-size: 1.1rem;
    }
}

/* スマホ対応（2カラム） */
@media (max-width: 690px) {
    .sns-container {
        grid-template-columns: repeat(2, 1fr);
        font-size: 1.2rem;
    }

    .sns-btn {
        width: 120px;
        font-size: 1.1rem;
    }
}

/* ページ下部バナー*/
.index-banner__item {
    width: calc(85% - 20px);
}

@media screen and (max-width: 480px) {
    .index-banner__item {
        width: calc(100% - 14px);
    }
}

/* バナー*/

.banner__body {
    background: #ededed;
    padding-top: 30px;
}

.banner-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

.banner-link {
    text-align: center;
}

.banner-link.-big {
    width: 250px;
}

.banner-link.-middle {
    width: 250px;
}

.banner-link.-small {
    width: 230px;
    height: 60px;
}

@media screen and (max-width: 480px) {
    .banner-link.-small {
        width: 165px;
        height: unset;
    }
}

/************ footer ************/
.footer-menu a {
    position: relative;
    color: #333;
    text-decoration: none;
    /* デフォルト下線を消す */
}

.footer-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    /* テキストのすぐ下 */
    width: 0;
    height: 2px;
    background: #FFF;
    transition: width 0.3s ease;
}

.footer-menu a:hover::after {
    width: 100%;
}

.pageup__image img {
    width: 100px;
}

@media screen and (max-width: 960px) {
    .pageup__image img {
        width: 70px;
    }
}

.footer {
    background: #f06292;
    color: #fff;
    margin-top: 30px;
    padding: 34px 20px;
    font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* PCレイアウト */
.footer-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(8, 30px);
    gap: 15px 20px;
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.footer-menu li {
    font-size: 1.3rem;
    font-weight: bold;
}

.footer-menu .menu-item {
    margin-top: -8px;
}


.footer-menu li>a {
    display: inline-block;
    margin-bottom: 8px;
}

.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0 0 0 20px
}

.footer-menu ul li {
    height: 22px;
    font-weight: normal;
}

/* 下部リンク */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    border-top: solid 1px;
    border-bottom: solid 1px;
    padding: 30px 0;
}

.footer-links a {
    background: #fff;
    color: #e91e63;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    width: 29%;
    text-align: center;
    font-size: 1.5rem;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* ロゴ */
.footer-logo {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

.footer-logo img {
    height: 40px;
}

.copy {
    text-align: center;
    font-size: 1rem;
    margin-top: 10px;
}

.hyphen {
    position: relative;
    padding-left: 2.0rem;
}

.hyphen::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.3rem;
    /* ハイフンの長さ */
    height: 4px;
    /* ハイフンの太さ */
    background: #FFF;
    border-radius: 2px;
}

@media (min-width: 960px) {

    /* サブメニュー li に適用 */
    .disk {
        position: relative;
        list-style: none;
        padding: 0px 0 2px 30px;
        margin-bottom: 0.5em;
    }

    /* ○の中に ＞ を描画 */
    .disk::before {
        content: "＞";
        /* 矢印。">"でも可 */
        position: absolute;
        left: 0;
        /* li の先頭に配置 */
        top: 50%;
        transform: translateY(-50%);
        width: 1.7em;
        /* 丸の直径 */
        height: 1.7em;
        border: 2px solid #fff;
        /* 丸の枠線 */
        border-radius: 50%;
        /* 丸にする */
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        /* 矢印のサイズ */
        font-weight: bold;
        line-height: 1;
        color: #f06292;
        /* 矢印色 */
        box-sizing: border-box;
        background-color: #FFF;
        padding-left: 3px;
    }
}

/* SPレイアウト */
@media (max-width: 960px) {
    .accordion {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .accordion-btn {
        width: 100%;
        text-align: left;
        background: none;
        border: none;
        color: #fff;
        font-size: 1.2rem;
        line-height: 1.7rem;
        letter-spacing: 0.1rem;
        padding: 7px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* ＋アイコンをCSSで描画 */
    .accordion-btn .icon {
        position: relative;
        width: 10px;
        height: 10px;
        display: inline-block;
    }

    .accordion-btn .icon::before,
    .accordion-btn .icon::after {
        content: "";
        position: absolute;
        background: #fff;
        transition: transform 0.3s ease;
    }

    /* 横棒 */
    .accordion-btn .icon::before {
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        transform: translateY(-50%);
    }

    /* 縦棒 */
    .accordion-btn .icon::after {
        left: 50%;
        top: 0;
        width: 2px;
        height: 100%;
        transform: translateX(-50%);
    }

    /* 開いた状態（−に変化） */
    .accordion-btn.active .icon::after {
        transform: translateX(-50%) scaleY(0);
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        text-align: center;
    }

    .accordion-content li {
        margin: 6px 0;
        height: 2.1rem;
    }

    .accordion-content li:last-child {
        margin-bottom: 25px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        font-size: 1.4rem;
    }

    .footer-links a {
        width: 80%;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        margin: unset;
        align-items: center;
    }
}