@charset "UTF-8";
/*---------------------------
wrap
----------------------------*/
#wrap {
    width: 100%;
    /* background: #021c32; */
    margin: 0px;
    padding: 0px;
    position: relative;
}

@media only screen and (min-width: 641px) and (max-width: 768px) {
    #wrap {
        /*tablet*/
        overflow: hidden;
    }
}

@media screen and (max-width: 640px) {
    #wrap {
        /*sp*/
        overflow: hidden;
    }
}

/*---------------------------
header
----------------------------*/
header {
    margin: 0px;
    padding: 0;
    font-size: 10px;
    text-align: left;
}

header.u18 {
    background: var(--u18-main);
}

header.u15 {
    background: var(--u15-main);
}

header.girls {
    background: var(--girls-main);
}

header .inner {
    display: flex;
    max-width: 1250px;
    height: 50px;
    padding: 0 1em;
    align-content: center;
}

header .inner .logo {
    flex: 1;
    font-size: 1.8em;
}

.site-title {
    display: flex;
    align-items: center;
    gap: 1em;
    white-space: nowrap;
}

.site-title img {
    height: 100px;
}

.site-title h1 {
    color: #fff;
    font-size: clamp(0.7rem, 0.8rem, 1.1rem);
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .site-title {
        gap: 0.2em;
        width: calc(100% - 50px);
    }

    .site-title img {
        height: 50px;
        object-fit: contain;
    }

}

header .inner .login-btn {
    padding: 0.4em 2em;
    margin: 0 0.5rem;
    max-height: 36px;
    border: 1px solid #fff;
}

header .inner .login-btn a {
    text-decoration: none;
    color: #fff;
    font-size: 1.1em;
}

header .inner .login-btn:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    header .inner .login-btn {
        /*sp*/
        display: none;
    }
}


header .sp_nav {
    display: none;
}

@media screen and (max-width: 768px) {
    header .sp_nav {
        /*sp*/
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        cursor: pointer;
        background-image: url(../img/common/sp_nav_bg.svg);
        background-size: 80%;
        background-position-x: 60%;
        background-position-y: 45%;
        background-repeat: no-repeat;
        color: #fff;
        z-index: 1001;
        width: 50px;
        height: 50px;
        filter: brightness(1.3)
    }

    header.u18 .sp_nav {
        background-color: var(--u18-main);
    }

    header.u15 .sp_nav {
        background-color: var(--u15-main);
    }

    header.girls .sp_nav {
        background-color: var(--girls-main);
    }
}

.header_teams_wrapper {
    background: #fff;
    width: 100%;
    height: 40px;
    display: flex;
    overflow: hidden;
}


.header_teams {
    height: 100%;
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 16px;
    flex-shrink: 0;
    min-width: 100%;
}

.header_teams:first-child {
    animation: team_slide1 100s -50s linear infinite;
}

.header_teams:last-child {
    animation: team_slide2 100s linear infinite;
}

.header_teams img {
    width: 100%;
    max-height: 28px;
    object-fit: contain;
}

@keyframes team_slide1 {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes team_slide2 {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-200%);
    }
}

@media screen and (max-width: 768px) {
    .header_teams_wrapper {
        display: none;
    }
}

/*---------------------------
nav
-----------------------------*/
nav {
    margin: auto;
    background: #fff;
    box-shadow: 0 1px 4px #eee;
}

@media only screen and (min-width: 769px) and (max-width: 1000px) {
    nav {
        /*769px~1000px(inner1000pxの場合)*/
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {
    nav {
        /*sp*/
        width: 80%;
        max-width: 480px;
        height: 100%;
        padding-top: 50px;
        background: #ffffff;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1000;
        -webkit-transform: translate(100%);
        transform: translate(100%);
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }
}

nav > .search {
    display: none;
}

nav .snav {
    display: none;
}

@media screen and (max-width: 768px) {
    nav .snav {
        /*sp*/
        width: 100%;
        display: block;
    }
    nav .snav > ul {
        list-style: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-align-items: flex-start;
    }
}

nav ul {
    max-width: 1080px;
    display: block;
    padding: 0px;
    margin: auto;
    text-align: center;
    letter-spacing: -1em;
}

nav li {
    width: calc(100% / 8);
    list-style: none;
    display: inline-block;
    padding: 0px;
    margin: 0px;
    letter-spacing: normal;
}

@media screen and (max-width: 768px) {
    nav li {
        /*sp*/
        width: 100%;
    }

    nav.u18 li {
        border-bottom: 1px dotted var(--u18-main);
    }
    nav.u18 > ul > li:first-of-type {
        border-top: 1px dotted var(--u18-main);
    }

    nav.u15 li {
        border-bottom: 1px dotted var(--u15-main);
    }
    nav.u15 > ul > li:first-of-type {
        border-top: 1px dotted var(--u15-main);
    }

    nav.girls li {
        border-bottom: 1px dotted var(--girls-main);
    }
    nav.girls > ul > li:first-of-type {
        border-top: 1px dotted var(--girls-main);
    }

}

nav li a {
    text-decoration: none;
    font-size: 1em;
    padding: 15px 10px;
    text-align: center;
    display: block;
    color: black;
}

@media screen and (max-width: 768px) {
    nav li a {
        /*sp*/
        display: block;
        padding: 10px 25px;
        text-align: left;
    }
}

nav li a:link {
    color: black;
}

nav li a:visited {
    color: black;
}

nav li a:hover {
    /* background: #021c32;
    color: #fff; */
}

@media screen and (max-width: 768px) {
    nav li a:hover {
        /*sp*/
        border-radius: 0px;
    }
}

nav.u18 li a.on {
    border-bottom: 4px solid var(--u18-main);
}

nav.u15 li a.on {
    border-bottom: 4px solid var(--u15-main);
}

nav.girls li a.on {
    border-bottom: 4px solid var(--girls-main);
}

@media screen and (max-width: 768px) {
    nav li a.on {
        /*sp*/
        border-radius: 0px;
        color: white;
        border-bottom: none;
    }

    nav.u18 li a.on {
        background: var(--u18-main);
    }

    nav.u15 li a.on {
        background: var(--u15-main);
    }

    nav.girls li a.on {
        background: var(--girls-main);
    }
}

.open {
    -webkit-transform: translateX(-280px);
    transform: translateX(-280px);
}

.overlay {
    content: "";
    display: block;
    width: 100%;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    -webkit-transition: opacity 0;
    transition: opacity 0;
}

.overlay.on {
    width: 100%;
    height: 100%;
    opacity: 1;
}

nav.open {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    width: 100%;
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f1f1f1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.dropdown-menu.show {
    display: block;
    max-height: 500px;
    position: absolute;
    z-index: 100;
}

.dropdown-menu li {
    display: block;
    width: 100% !important;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    background: #ddd;
}

@media screen and (max-width: 768px) {
    .dropdown-menu.show {
        position: static;
    }

    .dropdown-menu li {
        border-bottom: none !important;
    }

    .dropdown-menu li a {
        padding: 10px 25px;
    }
}

/*---------------------------
footer
---------------------------*/
footer {
    width: 100%;
    margin: 0px;
    text-align: center;
}

footer .snav {
    padding: 1em 0;
    background: #000;
}

footer .snav .inner ul {
    text-align: center;
}

footer .snav .inner ul li {
    display: inline-block;
}

@media screen and (max-width: 640px) {
    footer .snav .inner ul li {
        /*sp*/
        display: inline-block;
        font-size: 0.7rem;
        margin: 0 1%;
    }
}

footer .snav .inner ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0 1em;
    background: url(../img/common/icon_arrow_gray.svg) no-repeat left center;
    background-size: 6px auto;
}

@media screen and (max-width: 640px) {
    footer .snav .inner ul li a {
        /*sp*/
        padding: 0.5rem 0;
    }
}

/*----------------------
main
------------------------*/
main {
    width: 100%;
    display: block;
}

main.content {
    background: #fff;
}

main.content > .inner {
    max-width: 1300px;
}

main > .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    padding: 3em 0;
}

main > .inner > .main {
    width: 70%;
}

@media only screen and (min-width: 641px) and (max-width: 768px) {
    main > .inner > .main {
        /*tablet*/
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 640px) {
    main > .inner > .main {
        /*sp*/
        width: 100%;
        margin-bottom: 1rem;
    }
}

main > .inner > .main .inner {
    max-width: 100%;
}

main > .inner > .sub {
    width: 300px;
    margin-left: auto;
}

@media only screen and (min-width: 641px) and (max-width: 768px) {
    main > .inner > .sub {
        /*tablet*/
        display: none;
    }
}

@media screen and (max-width: 640px) {
    main > .inner > .sub {
        /*sp*/
        width: 90%;
        margin: auto;
    }
}

main > .inner > .sub .bnr {
    margin-bottom: 2em;
}

main > .inner > .sub .bnr a {
    display: block;
    margin-bottom: 1em;
}

main > .inner > .sub .bnr_related_info {
    text-align: left;
}

main > .inner > .sub .bnr_related_info ul {
    list-style: none;
}

main > .inner > .sub .bnr_related_info ul li {
    padding-top: 1em;
    padding-bottom: 1em;
    position: relative;
    border-bottom: 1px dotted #ccc;
    font-size: 0.7rem;
}

main > .inner > .sub .bnr_related_info ul .sponser {
    width: 100%;
}

main > .inner > .sub .bnr_related_info ul li span {
    display: inline-block;
    padding: 0em 0;
    border: 1px solid #ccc;
    text-align: center;
    width: 35%;
    vertical-align: middle;
    margin-right: 2%;
    background: #fff;
}

main > .inner > .sub .bnr_related_info ul li .recruit {
    width: 100%;
    padding: 1rem;
}

main > .inner > .sub .bnr_related_info ul li a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    font-size: 0.8em;
}

main > .inner > .sub .bnr_related_info ul li:hover {
    background: #eee;
}

/*----------------------
aside
------------------------*/
aside {
    width: 100%;
    /* background: rgb(47 47 129); */
    color: #fff;
}

aside .inner {
    padding: 3em 0 1em 0;
}

@media screen and (max-width: 640px) {
    aside .inner {
        /*sp*/
        width: 90%;
        padding: 1rem 0;
    }
}

aside .inner > .col {
    margin-bottom: 2em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

@media screen and (max-width: 640px) {
    aside .inner > .col {
        /*sp*/
        margin-bottom: 1rem;
    }
}

aside .inner > .col h2 {
    width: 50%;
    height: 38px;
    line-height: 38px;
    margin-bottom: 2em;
    /* background: url(../img/common/footer_title_bg.png); */
    background-repeat: no-repeat;
    background-size: 100% auto;
    color: black;
    text-align: left;
    padding-left: 20px;
    font-size: 1rem;
}

@media screen and (max-width: 640px) {
    aside .inner > .col h2 {
        /*sp*/
        background: none;
        padding-left: 0;
        width: 100%;
        margin-bottom: 0.5em;
    }
}

aside .inner > .col ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    position: relative;
}

aside .inner > .col ul li {
    width: 23%;
}

@media screen and (max-width: 640px) {
    aside .inner > .col ul li {
        /*sp*/
        width: 48%;
        font-size: 0.8rem;
    }
}

aside .inner > .col ul li a {
    /* position: absolute; */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

aside .inner > .col.league_info ul li {
    border: 2px solid #fff;
    padding: 1.5em;
    padding-left: 2.5em;
    background: url(../img/common/icon_league.png);
    background-repeat: no-repeat;
    background-position: 7% center;
}

@media screen and (max-width: 640px) {
    aside .inner > .col.league_info ul li {
        /*sp*/
        padding: 1em;
        border: 1px solid #fff;
        margin-bottom: 0.3rem;
        font-size: 0.6rem;
        text-align: center;
    }
}

@media screen and (max-width: 640px) {
    aside .inner > .col.related_info ul li {
        /*sp*/
        font-size: 0.6rem;
        text-align: left;
        margin-bottom: 0.3rem;
    }
}

aside .inner > .col.related_info ul li span {
    background: #fff;
    display: block;
    margin-bottom: 0.5em;
}

aside .inner > .col.related_info #area a {
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    width: 24%;
}

aside .inner > .col.related_info #area a li {
    width: 100%;
    margin-bottom: 15px;
}

aside .inner > .col.related_info #area li span {
    margin-bottom: 0;
    padding: 5%;
}

@media screen and (max-width: 640px) {
    aside .inner > .col.related_info ul li span {
        /*sp*/
        text-align: center;
    }
}

aside .inner > .col.related_info ul li span img {
    /* width: 60%; */
}

@media screen and (max-width: 640px) {
    aside .inner > .col.related_info ul li span img {
        /*sp*/
        /* width: 50%; */
    }
}

aside .inner > .col .sponser1 {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
}

aside .inner > .col .sponser1 div {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}

aside .inner > .col .sponser1 div h2 {
    width: 100%;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

aside .inner > .col .sponser2 {
    margin-top: 2rem;
}

aside .inner > .col .sponser2 h2 {
    width: 100%;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

aside .inner > .col .sponser2 ul {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
}

aside .inner > .col .sponser2 ul li {
    width: 35%;
}

.sponser img {
    width: 70%;
}

aside .inner > .col .media h2 {
    margin-bottom: 0rem;
}

.border {
    border: 1px solid;
}

#sponser_section {
    background-image: url(../img/common/sponser2.png);
    background-position: center;
    background-size: 100%;
    position: relative;
    display: flow-root;
    margin: 5% 0;
}

#sponser_section::after {
    content: "";
    background-color: rgb(1 38 94 / 63%);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#sponser_section p {
    margin: 0;
    padding: 0.2em;
    color: #fff;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

#sponser_section #p1 {
    font-size: 3rem;
    padding: 5rem;
    text-shadow: 2px 2px 10px #4d9bc1, -2px 2px 10px #4d9bc1, 2px -2px 10px #4d9bc1, -2px -2px 10px #4d9bc1;
}

#sponser_section #p2 {
    font-size: 2rem;
    padding: 1rem;
}

#sponser_section #p3 {
    font-size: 2rem;
    padding: 1rem;
    display: block;
    border: 2px solid white;
    width: 25%;
    margin: 0 auto;
    padding: 3% 0;
    margin: 5% auto 2% auto;
}

@media screen and (max-width: 640px) {
    aside .inner > .col .sponser1 div h2 {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    aside .inner > .col .sponser1 div span {
        display: block;
        width: 80%;
    }

    aside .inner > .col .sponser2 h2 {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }

    aside .inner > .col .sponser2 ul li {
        width: 40%;
    }

    aside .inner > .col .sponser2 ul li span a img {
        height: auto;
    }

    .sponser img {
        width: auto;
    }

    #sponser_section #p1 {
        font-size: 2rem;
        padding: 2rem;
    }

    #sponser_section #p2 {
        font-size: 1.2rem;
        padding: 0.2rem;
    }

    #sponser_section #p3 {
        font-size: 1.2rem;
        padding: 1rem;
        width: 45%;
        padding: 2% 0;
        margin: 8% auto 2% auto;
    }
}

/*----------------------
pageprev
------------------------*/
.pageprev {
    text-align: right;
    padding-top: 2em;
    border-bottom: 1px dotted #ccc;
}

.pageprev a {
    width: 25%;
    display: inline-block;
    /* background: url(../img/common/slash_bg02.png); */
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 0.5em;
    text-decoration: none;
    color: #fff;
    font-size: 0.8em;
    text-align: center;
}

.pageprev .red {
    background: url(../img/common/slash_bg_red2.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.pageprev .blue {
    background: url(../img/common/slash_bg_blue2.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

@media screen and (max-width: 640px) {
    .pageprev a {
        /*sp*/
        width: 50%;
    }
}

/*----------------------
pagetop
------------------------*/
.pagetop {
    position: fixed;
    width: 60px;
    height: 60px;
    background: url(../img/common/pagetop_bg.svg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: 30px;
    right: 50px;
    display: block;
    cursor: pointer;
    border: 1px solid #fff;
}

@media screen and (max-width: 640px) {
    .pagetop {
        /*sp*/
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 2%;
    }
}

/*---------------------------
共通
-----------------------------*/
* .inner {
    max-width: 1000px;
    margin: auto;
}

@media only screen and (min-width: 769px) and (max-width: 1000px) {
    * .inner {
        /*769px~1000px(inner1000pxの場合)*/
        max-width: 100%;
    }
}

@media only screen and (min-width: 641px) and (max-width: 768px) {
    * .inner {
        /*tablet*/
        max-width: 100%;
    }
}

@media screen and (max-width: 640px) {
    * .inner {
        /*sp*/
        max-width: 100%;
    }
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
}

.content_title {
    width: 100%;
    background: #1087c7;
    text-align: left;
}

.content_title .inner {
    padding: 3em 0;
}

.year_list {
    padding: 1em 0 0 0;
    background: #c5dbde;
}

.year_list .inner {
    max-width: 1100px;
    margin: auto;
}

.year_list .inner ul {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    align-items: flex-start;
    -webkit-align-items: flex-start;
}

.year_list .inner ul li {
    width: 19%;
    margin-right: 1%;
    margin-bottom: 20px;
    list-style: none;
    position: relative;
}

.year_list .inner ul li a:hover {
    background: #000b29;
    color: #fff;
}

.year_list .inner ul li.on a {
    background: rgb(47 47 129);
    color: #fff;
}

.year_list .inner ul li a {
    display: block;
    border: 1px solid rgb(47 47 129);
    padding: 0.7em 1.5em;
    text-align: center;
    color: #000b29;
    background: #fff;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    position: relative;
}

@media screen and (max-width: 640px) {
    .year_list .inner ul li {
        width: 32%;
        margin-right: 1.5%;
    }

    .year_list .inner ul li a {
        padding: 0.5em 1em;
        font-size: 1rem;
    }

    .year_list .inner {
        width: 90%;
    }
}

@media only screen and (min-width: 641px) and (max-width: 768px) {
    .content_title .inner {
        /*tablet*/
        padding: 2rem 2%;
    }
}

@media screen and (max-width: 640px) {
    .content_title .inner {
        /*sp*/
        padding: 30px 0px;
    }
}

.content_title .inner h1 {
    color: #fff;
    font-size: 1.6em;
    letter-spacing: 10px;
}

@media only screen and (min-width: 641px) and (max-width: 768px) {
    .content_title .inner h1 {
        /*tablet*/
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 640px) {
    .content_title .inner h1 {
        /*sp*/
        font-size: 1.1rem;
        text-align: center;
    }
}

.content_stitle .inner {
    max-width: 1100px;
}

.content_stitle .inner h2 {
    font-size: 1.6em;
    padding: 1.5em 0;
    border-bottom: 2px solid #021c32;
    color: #021c32;
    letter-spacing: 10px;
}

h3 {
    text-align: left;
}

h3.bar {
    font-size: 1.4em;
    font-weight: 500;
    color: #ac6ba8;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid #ac6ba8;
}

/*-----------------
スワイプ時のテキスト
------------------*/
* .sp_note {
    top: 0px;
    left: 0;
    width: 100%;
    height: 28px;
    line-height: 28px;
    background: #555;
    color: #fff;
    font-size: 0.8em;
    display: none;
}

@media screen and (max-width: 640px) {
    * .sp_note {
        /*sp*/
        display: block;
    }
}

/*-----------------
パンくずリスト
------------------*/
.bc {
    font-size: 0.8em;
    text-align: left;
    background: #eee;
    border-bottom: 1px solid #fff;
}

.bc span {
    display: inline-block;
    border-right: 1px solid #ccc;
}

.bc span a {
    display: block;
    text-decoration: none;
    padding: 0.3em 2em;
}

.bc span:nth-of-type(1) {
    background: #333;
}

.bc span:nth-of-type(1) a {
    color: #fff;
}

/*-----------------
リーグリスト
------------------*/
.league_list {
    padding: 2em 0;
    background: #e8eff4;
}

@media screen and (max-width: 640px) {
    .league_list {
        /*sp*/
        padding: 1rem 0;
    }
}

.league_list .inner {
    max-width: 1100px;
}

@media only screen and (min-width: 641px) and (max-width: 768px) {
    .league_list .inner {
        /*tablet*/
        width: 94%;
    }
}

@media screen and (max-width: 640px) {
    .league_list .inner {
        /*sp*/
        width: 90%;
    }
}

.league_list .inner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    list-style: none;
}

.league_list .inner ul li {
    width: 23%;
    position: relative;
}

@media screen and (max-width: 640px) {
    .league_list .inner ul li {
        /*sp*/
        width: 48% !important;
        margin-bottom: 0.3rem;
    }
    .league_list .inner ul li:nth-of-type(3),
    .league_list .inner ul li:nth-of-type(4) {
        margin-bottom: 0;
    }

    .league_list .inner ul li:nth-of-type(5),
    .league_list .inner ul li:nth-of-type(6) {
        margin-top: 0.3rem;
    }
}

.league_list .inner ul li a:hover {
    background: rgb(47 47 129);
    color: #fff;
}

.league_list .inner ul li a {
    display: block;
    border: 1px solid rgb(47 47 129);
    padding: 1em 1.5em;
    text-align: center;
    color: rgb(47 47 129);
    background: #fff;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
}

@media screen and (max-width: 640px) {
    .league_list .inner ul li a {
        /*sp*/
        padding: 0.5em 1em;
        font-size: 1rem;
    }
}

.league_list .inner ul li.on a {
    background: rgb(47 47 129);
    color: #fff;
}

.league_list .inner ul li.on::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 0 15px;
    border-color: rgb(47 47 129) transparent transparent transparent;
}

@media screen and (max-width: 640px) {
    .league_list .inner ul li.on::after {
        /*sp*/
        display: none;
    }
}

.period_list {
    padding: 2em 0 0 0;
}

.period_list > .inner {
    max-width: 1100px;
    margin: auto;
}

.period_list > .inner ul {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    list-style: none;
}

.period_list > .inner ul li {
    width: 100%;
    margin-right: 1.25%;
    margin-bottom: 8px;
}

.period_list > .inner ul li.on a {
    background: rgb(47 47 129);
    color: #fff;
}

.period_list > .inner ul li a {
    display: block;
    padding: 1em;
    border: 1px solid rgb(47 47 129);
    text-decoration: none;
    color: rgb(47 47 129);
    font-size: 1.1em;
    cursor: pointer;
}

/*-----------------
パート
------------------*/
.part_list {
    padding: 2em 0;
}

@media screen and (max-width: 640px) {
    .part_list {
        /*sp*/
        padding: 1rem 0;
    }
}

.part_list > .inner {
    max-width: 1100px;
}

@media only screen and (min-width: 641px) and (max-width: 768px) {
    .part_list > .inner {
        /*tablet*/
        max-width: 100% !important;
    }
}

@media screen and (max-width: 640px) {
    .part_list > .inner {
        /*sp*/
        max-width: 100% !important;
    }
}

.part_list > .inner ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-items: flex-start;
    list-style: none;
}

.part_list > .inner ul li {
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 8px;
}

@media screen and (max-width: 640px) {
    .part_list > .inner ul li {
        /*sp*/
        width: 30%;
        margin-right: 5%;
    }
}

.part_list > .inner ul li:nth-of-type(4n) {
    margin-right: 0;
}

@media screen and (max-width: 640px) {
    .part_list > .inner ul li:nth-of-type(4n) {
        /*sp*/
        margin-right: 5%;
    }
}

@media screen and (max-width: 640px) {
    .part_list > .inner ul li:nth-of-type(3n) {
        /*sp*/
        margin-right: 0;
    }
}

.part_list > .inner ul li a {
    display: block;
    padding: 0.5em 1em;
    border: 1px solid #002c65;
    text-decoration: none;
    color: #002c65;
    font-size: 1.1em;
}

@media screen and (max-width: 640px) {
    .part_list > .inner ul li a {
        /*sp*/
        font-size: 0.9rem;
        padding: 0.25rem;
    }
}

.part_list > .inner ul li a:hover {
    color: #fff;
    background: #002c65;
}

/*-----------------
タブ切り替え
------------------*/
.tab {
    margin: 5px 0px;
}

.tab li:nth-of-type(1).current {
    background-color: #7ba613;
    color: #fff;
}

.tab li:nth-of-type(1).current .selecting {
    display: block !important;
}

.tab li:nth-of-type(2).current {
    background-color: #faa32d;
    color: #fff;
}

.tab li:nth-of-type(2).current .selecting {
    display: block !important;
}

.box.tab-contents {
    display: none;
}

.box.current {
    display: block;
}
/*# sourceMappingURL=style.css.map */

section {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.section-content {
    padding: 1rem;
}

.section-content.have-side {
    display: grid;
    grid-template-columns: 1fr 296px;
    gap: 1.5rem;
}

@media screen and (max-width: 640px) {
    .section-content {
        padding: 0 1rem;
    }
}

/* 新しいセクション用スタイル */
.section-layout {
    width: 100%;
    padding: 1.5rem 0;
    min-height: 400px;
}

.section-layout.news-layout {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    min-height: 400px;
}

.section-title {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 0;
}

.section-title h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
    text-align: center;
    width: 100%;
    letter-spacing: 4px;
    padding: 0 1rem;
}

.section-btn {
    display: inline-block;
    padding: 16px 32px;
    background: #fff;
    color: var(--u15-main) !important;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
    margin: 1rem 0;
}

.section-title.u15,
.section-btn.u15 {
    color: var(--u15-main) !important;
}

.section-title.u18,
.section-btn.u18 {
    color: var(--u18-main) !important;
}

.section-title.girls,
.section-btn.girls {
    color: var(--girls-main) !important;
}

.section-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #f8f9fa;
}

.section-title.news-title {
    min-height: 300px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 968px) {
    .section-layout {
        padding: 1.25rem;
    }

    .section-title.news-title {
        flex: 0;
        min-height: auto;
    }
}

@media screen and (max-width: 640px) {
    .section-layout {
        padding: 0;
    }

    .section-title h1 {
        font-size: 1.5rem;
        line-height: 1.4;
        padding: 0 0.75rem;
    }

    .section-btn {
        width: 80%;
        padding: 14px;
        font-size: 0.9rem;
    }
}

.section-title h2 {
    margin: 0;
    text-align: center;
    width: 100%;
}

.section-title .en {
    color: var(--u15-main) !important;
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 4px;
    line-height: 0.9;
    text-align: center;
}

.section-title .ja {
    color: var(--u15-main);
    display: block;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: normal;
    text-align: center;
    padding-right: 2px;
}

.section-title.u15 .en,
.section-title.u15 .ja {
    color: var(--u15-main) !important;
}

.section-title.u18 .en,
.section-title.u18 .ja {
    color: var(--u18-main) !important;
}

.section-title.girls .en,
.section-title.girls .ja {
    color: var(--girls-main) !important;
}



/* ページネーション */
.pager {
    width: 100%;
    padding: 2.5rem 0;
}

.pager nav {
    margin: auto;
    background: none;
    position: initial;
    transform: none;
    width: 100%;
    box-shadow: none;
}

ul.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 1rem;
}

.page-item {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2b3e54;
    border-radius: 50%;
    width: 2rem !important;
    height: 2rem !important;
}

.page-item:first-of-type,
.page-item:last-of-type {
    border: none;
}

.page-item .page-link {
    color: #2b3e54;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    line-height: 1.8rem;
    padding: 0;
    text-align: center;
}

.page-item.active {
    background: #2b3e54;
    color: #fff;
}

.page-item.disabled {
    opacity: 0.5;
    pointer-events: none;
    border: none;
}

.page-item.active .page-link {
    color: #fff;
}

/* 共通タブスタイル - ランキングタブのスタイルを継承 */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 24px;
}

.tab-pill-container {
    display: flex;
    background-color: #f0f0f0;
    border-radius: 50px;
    padding: 4px;
    gap: 2px;
    width: 100%;
}

.tab-btn-pill {
    background-color: transparent;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    color: var(--gray-text-color);
    flex: 1;
    font-weight: 500;
}

.tab-btn-pill:hover {
    background-color: #e0e0e0;
}

.tab-btn-pill.active {
    background-color: var(--u15-main);
    color: var(--reverse-color);
    font-weight: bold;
}

.tab-btn-pill.active.u18 {
    background-color: var(--u18-main);
}

.tab-btn-pill.active.u15 {
    background-color: var(--u15-main);
}

.tab-btn-pill.active.girls {
    background-color: var(--girls-main);
}

@media screen and (max-width: 640px) {
    .tab-btn-pill {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* コンテンツなしデザイン */
.contents-empty {
    text-align: center;
}

.contents-empty .nocontents_message {
    width: calc(100% - 2rem);
    background: repeating-linear-gradient(
        45deg,
        #ffffff,
        #ffffff 2px,
        #f8f9fa 2px,
        #f8f9fa 4px
    );
    padding: 4rem 1.25rem;
    margin: 1rem auto;
    border-radius: 4px;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
}

.contents-empty .nocontents_message::before {
    content: "⚠️";
    font-size: 1.1rem;
    margin-right: 0.5rem;
    opacity: 0.8;
}

@media screen and (max-width: 480px) {
    .contents-empty .nocontents_message {
        margin: 0.5rem auto;
        padding: 3rem 1rem;
        font-size: 0.9rem;
    }

    .nocontents_message::before {
        font-size: 1rem;
        margin-right: 0.4rem;
    }
}