@charset "UTF-8";

/*---------------------------
wrap
----------------------------*/

#wrap {
    width: 100%;
    background: #0080ff;
    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 .inner {
    max-width: 1100px;
    padding: 2em 0;
}

@media only screen and (min-width: 641px) and (max-width: 768px) {
    header .inner {
        /*tablet*/
        padding: 1em;
    }
}

@media screen and (max-width: 640px) {
    header .inner {
        /*sp*/
        padding: 1em;
    }
}

header .inner .logo {
    width: 50%;
    font-size: 1.8em;
}

@media only screen and (min-width: 641px) and (max-width: 768px) {
    header .inner .logo {
        /*tablet*/
        width: 60%;
        float: none;
        font-size: 1em;
    }
}

@media screen and (max-width: 640px) {
    header .inner .logo {
        /*sp*/
        width: 85%;
        font-size: 0.6rem;
        height: 40px;
    }
}

header .inner .logo a {
    text-decoration: none;
    color: #fff;
}

header .inner .logo a:visited {
    color: #fff;
}

header .inner .logo h1 {
    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: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
    font-weight: normal;
}

header .inner .logo h1 span {
    display: block;
    /* vertical-align: middle; */
}

header .inner .logo h1 span:nth-of-type(1) {
    width: 50px;
}

header .inner .logo h1 span:nth-of-type(1) img {
    border-radius: 100px;
    max-width: 100%;
    height: auto;
}

@media only screen and (min-width: 641px) and (max-width: 768px) {
    header .inner .logo h1 span:nth-of-type(1) {
        /*tablet*/
        width: 10%;
    }
}

@media screen and (max-width: 640px) {
    header .inner .logo h1 span:nth-of-type(1) {
        /*sp*/
        width: 10%;
    }
}

header .inner .logo h1 span:nth-of-type(2) {
    font-size: 1em;
    line-height: 1.4em;
    width: 85%;
    padding-left: 10px;
}

@media only screen and (min-width: 641px) and (max-width: 768px) {
    header .inner .logo h1 span:nth-of-type(2) {
        /*tablet*/
        font-size: 1rem;
        width: 88%;
    }
}

@media screen and (max-width: 640px) {
    header .inner .logo h1 span:nth-of-type(2) {
        /*sp*/
        font-size: 0.9rem;
        width: 80%;
    }
}

header .inner .snav {
    width: 50%;
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-items: flex-start;
}

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

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

header .inner .snav ul li {
    display: inline-block;
    margin-left: 10px;
}

header .inner .snav ul li a {
    display: block;
    color: #fff;
    padding: 0.4em 2em;
    border: 1px solid #fff;
    text-decoration: none;
}

header .inner .snav ul li a:visited {
    color: #fff;
}

header .inner .snav ul li a:hover {
    background: #fff;
    color: #003e90;
}

header .inner .snav .search {
    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;
}

header .inner .snav .search span {
    display: block;
    width: 30px;
    height: 30px;
    background: url(../img/common/icon_search.png);
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #fff;
    padding: 0.5em;
    margin-left: 10px;
}

header .inner .snav .search .box {
    display: none;
}

header .inner .snav .search .box input[type="text"] {
    width: 150px;
    height: 30px;
    padding: 5px;
    border: none;
}

header .inner .snav .search .box input[type="btn"],
header .inner .snav .search .box input[type="submit"] {
    width: 40px;
    height: 30px;
    border: none;
    text-align: center;
    background: #333;
    color: #fff;
}

header .sp_nav {
    display: none;
}

@media screen and (max-width: 640px) {
    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: 100% 100%;
        background-color: #51a0ef;
        color: #fff;
        z-index: 1001;
        width: 60px;
        height: 60px;
    }
}


/*---------------------------
nav
-----------------------------*/

nav {
    margin: auto;
    background: #51a0ef;
}

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

@media only screen and (min-width: 641px) and (max-width: 768px) {
    nav {
        /*tablet*/
        max-width: 100%;
        background: #002960;
    }
}

@media screen and (max-width: 640px) {
    nav {
        /*sp*/
        width: 280px;
        height: 100%;
        background: #0080ff;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1000;
        -webkit-transform: translate(280px);
        transform: translate(280px);
        -webkit-transition: all 0.5s;
        transition: all 0.5s;
    }
}

nav>.search {
    display: none;
}

@media screen and (max-width: 640px) {
    nav>.search {
        /*sp*/
        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;
        height: 60px;
        background: #0080ff;
    }
    nav>.search .box {
        padding-top: 15px;
        padding-left: 15px;
    }
    nav>.search .box input[type="text"] {
        width: 140px;
        height: 30px;
        padding: 5px;
        border: none;
    }
    nav>.search .box input[type="btn"],
    nav>.search .box input[type="submit"] {
        width: 40px;
        height: 30px;
        border: none;
        text-align: center;
        background: #333;
        color: #fff;
    }
}

nav>.snav {
    display: none;
}

@media screen and (max-width: 640px) {
    nav>.snav {
        /*sp*/
        width: 100%;
        display: block;
        background: #0080ff;
    }
    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>.snav>ul li {
        width: 50%;
        border-right: 1px dotted #51a0ef;
    }
    nav>.snav>ul li:last-child {
        border-right: none;
    }
    nav>.snav>ul li a {
        display: block;
        padding: 0.8rem 1rem;
    }
}

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

nav li {
    width: 13%;
    list-style: none;
    display: inline-block;
    padding: 0px;
    margin: 0px;
    letter-spacing: normal;
    border-right: 1px solid #0080ff;
}

nav li:nth-of-type(1) {
    width: 9%;
}

@media screen and (max-width: 640px) {
    nav li {
        /*sp*/
        width: 100%;
        border-bottom: 1px dotted #51a0ef;
    }
    nav li:nth-of-type(1) {
        width: 100%;
    }
}

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

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

nav li a:link {
    color: #fff;
}

nav li a:visited {
    color: #fff;
}

nav li a:hover {
    background: #0080ff;
    color: #fff;
}

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

nav li a.on {
    background: #0080ff;
    color: #fff;
}

@media screen and (max-width: 640px) {
    nav li a.on {
        /*sp*/
        border-radius: 0px;
        background: #51a0ef;
    }
}

.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);
}


/*---------------------------
footer
---------------------------*/

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

footer .snav {
    padding: 2em 0;
    background: #0080ff;
}

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: block;
    }
}

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;
    }
}

footer .copy {
    font-size: 0.6em;
    color: #fff;
    background: #0080ff;
    padding: 1em 0;
}


/*----------------------
main
------------------------*/

main {
    width: 100%;
    display: block;
}

main.content {
    background: #fff;
}

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

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*/
        max-width: 100%;
        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;
}

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

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: #51a0ef;
    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;
}

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

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

aside .inner>.col .bottom {
    padding-top: 2em;
    text-align: center;
}

aside .inner>.col .bottom a {
    width: 20%;
    display: inline-block;
    border: 1px solid #ffffff;
    padding: 0.5em 2em;
    color: #ffffff;
    text-decoration: none;
}

@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 .bottom a {
        width: 40%;
        font-size: 0.6rem;
    }
}

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;
}

@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%;
    }
}


/*----------------------
pageprev
------------------------*/

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

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

@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: #004f9f;
    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;
}

@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%;
    }
}

.year_list .inner ul li a:hover {
    background: #004f9f;
    color: #fff;
}

.year_list .inner ul li.on a {
    background: #51a0ef;
    color: #fff;
}

.year_list .inner ul li a {
    display: block;
    border: 1px solid #51a0ef;
    padding: 0.7em 1.5em;
    text-align: center;
    color: #004f9f;
    background: #fff;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    position: relative;
}

@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 #004f9f;
    color: #004f9f;
    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;
}

.pager {
    width: 100%;
    padding-top: 3em;
    padding-bottom: 3em;
}

.pager ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-items: flex-start;
}

.pager ul li {
    margin-right: 5px;
}

.pager ul li a {
    display: block;
    padding: 5px 10px;
    border: 1px solid #ccc;
    text-decoration: none;
}

.pager ul li a:hover {
    color: #fff;
    background: #00275a;
}

.pager ul li a.prev,
.pager ul li a.next {
    color: #fff;
    background: #00275a;
}

.pager ul li .current {
    display: block;
    padding: 5px 10px;
    border: 1px solid #00275a;
    color: #fff;
    background: #00275a;
}


/*-----------------
スワイプ時のテキスト
------------------*/

* .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%;
        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 a:hover {
    background: #51a0ef;
    color: #fff;
}

.league_list .inner ul li a {
    display: block;
    border: 1px solid #51a0ef;
    padding: 1em 1.5em;
    text-align: center;
    color: #51a0ef;
    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: #51a0ef;
    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: #51a0ef 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: #51a0ef;
    color: #fff;
}

.period_list>.inner ul li a {
    display: block;
    padding: 1em;
    border: 1px solid #51a0ef;
    text-decoration: none;
    color: #51a0ef;
    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 #004f9f;
    text-decoration: none;
    color: #004f9f;
    font-size: 1.1em;
}

.part_list>.inner ul li.on a {
    background: #004f9f;
    color: #fff;
}

@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: #004f9f;
}


/*-----------------
タブ切り替え
------------------*/

.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 */