@charset "UTF-8";




/*========================================

front-page.php

========================================*/

/*----------------------------------------

#front_kv

----------------------------------------*/


#front_kv .con {
    position: relative;
}

#front_kv video {
    display: block;
    width: 100%;
}


@media (min-width: 768px) {

}


@media (min-width: 1024px) {

}




/*----------------------------------------

#front_news

----------------------------------------*/

#front_news .con {
    position: relative;
    padding: 40px 0;
}

#front_news .h2_ttl {
    margin: 0 0 40px;
}

#front_news .h2_ttl span {
    display: block;
    text-align: center;
    font-size: 10vw;
    color: #ffffff;
}

#front_news .h2_ttl h2 {
    text-align: center;
    font-size: 5vw;
    line-height: 1.5;
    color: #ffffff;
}

#front_news .news_slider {
    /* margin: 0 0 40px; */
}

#front_news .page_link {
    padding: 0 5%;
}

#front_news .page_link a {
    position: relative;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 25px;
    font-size: 1em;
    font-weight: 700;
    color: #ffffff;
    background: #f9b700;
    border-radius: 5px;
    transition: all 0.3s;
}

#front_news .page_link a:hover {
    background: #E38E33;
}

#front_news .page_link a::after {
    font: var(--fa-font-solid);
    content: '\f054';
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}


@media (min-width: 768px) {

    #front_news .con {
        position: relative;
        padding: 120px 0 60px 5%;
    }

    #front_news .flex_box {
        display: flex;
    }

    #front_news .h2_ttl {
        flex: 30%;
        margin: 0;
    }

    #front_news .h2_ttl span {
        text-align: left;
        font-size: 6vw;
    }

    #front_news .h2_ttl h2 {
        text-align: left;
        font-size: 3vw;
    }

    #front_news .news_slider {
        flex: 70%;
        margin: 0;
    }

    #front_news .page_link {
        position: absolute;
        bottom: 80px;
        left: 5%;
        width: 20%;
        padding: 0;
    }

    #front_news .page_link a {
        padding: 25px 15px;
    }

    #front_news .page_link a::after {
        right: 15px;
    }

}


@media (min-width: 1024px) {

    #front_news .page_link a {
        padding: 25px;
    }

    #front_news .page_link a::after {
        right: 25px;
    }

}




/*----------------------------------------

#front_game

----------------------------------------*/

#front_game .con {
    padding: 40px 5% 80px;
}

#front_game .latest_game {
    margin: 0 0 40px;
}

#front_game .next_game {
    margin: 0 0 40px;
}

#front_game .h2_ttl {
    margin: 0 0 20px;
}

#front_game .h2_ttl span {
    display: block;
    font-size: 10vw;
    color: #ffffff;
}

#front_game .h2_ttl h2 {
    font-size: 5vw;
    color: #ffffff;
}

#front_game .page_link a {
    position: relative;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 25px;
    font-size: 1em;
    font-weight: 700;
    color: #ffffff;
    background: #f9b700;
    border-radius: 5px;
    transition: all 0.3s;
}

#front_game .page_link a:hover {
    background: #E38E33;
}

#front_game .page_link a::after {
    font: var(--fa-font-solid);
    content: '\f054';
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}


@media (min-width: 768px) {

    #front_game .con {
        padding: 60px 5% 120px;
    }

    #front_game .h2_ttl {
        display: flex;
        align-items: center;
        margin: 0;
    }

    #front_game .h2_ttl span {
        margin-right: 40px;
        font-size: 6vw;
    }

    #front_game .h2_ttl h2 {
        font-size: 3vw;
    }

}


@media (min-width: 1024px) {

}




/*----------------------------------------

#front_loop

----------------------------------------*/

#front_loop .loop_box {
    display: flex;
}

#front_loop .loop_item {
    flex: 1;
    display: block;
    width: auto;
    height: 24vw;
    padding-right: 80px;
}

#front_loop .loop_item:nth-child(odd) {
    animation: loop 40s -20s linear infinite;
}

#front_loop .loop_item:nth-child(even) {
    animation: loop2 40s linear infinite;
}

@keyframes loop {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes loop2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}


@media (min-width: 768px) {

    #front_loop .loop_item {
        height: 16vw;
    }

    #front_loop .loop_item:nth-child(odd) {
        animation: loop 50s -25s linear infinite;
    }
    
    #front_loop .loop_item:nth-child(even) {
        animation: loop2 50s linear infinite;
    }

}


@media (min-width: 1024px) {
    
    #front_loop .loop_item:nth-child(odd) {
        animation: loop 60s -30s linear infinite;
    }
    
    #front_loop .loop_item:nth-child(even) {
        animation: loop2 60s linear infinite;
    }

}




/*----------------------------------------

#front_player

----------------------------------------*/

#front_player .con {
    position: relative;
    padding: 80px 0 80px;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
}

#front_player .h2_ttl {
    margin: 0 0 80px;
}

#front_player .h2_ttl span {
    display: block;
    text-align: center;
    font-size: 10vw;
    color: #ffffff;
}

#front_player .h2_ttl h2 {
    text-align: center;
    font-size: 5vw;
    color: #ffffff;
}

#front_player .player_slider {
    margin: 0 0 40px;
}

#front_player .slider {
    overflow: visible;
}

#front_player .swiper-outer {
    overflow: hidden;
}

#front_player .player_slider .swiper-slide {
    transform: scale(0.85); 
	transition: 0.7s; 
}

#front_player .player_slider .swiper-slide-active {
    transform: scale(1);
	z-index: 1; 
}

#front_player .player_slider article a {
    display: block;
    padding: 5px;
    background: #191919;
}

#front_player .player_slider article .player_name {
    padding: 20px 0;
}

#front_player .player_slider article .player_name .position span {
    display: block;
    text-align: center;
    font-size: 10vw;
    line-height: 1;
    color: #f9b700;
}

#front_player .player_slider article .player_name .h3_ttl {
    padding: 10px 0;
}

#front_player .player_slider article .player_name .h3_ttl h3 {
    text-align: center;
    font-size: 5vw;
    color: #ffffff;
}

#front_player .player_slider article .player_name .h3_ttl span {
    display: block;
    text-align: center;
    font-size: 3vw;
    color: #ffffff;
}

#front_player .player_slider article .player_name .grade span {
    display: block;
    text-align: center;
    font-size: 3vw;
    color: #ffffff;
}

#front_player .page_link {
    padding: 0 5%;
}

#front_player .page_link a {
    position: relative;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 25px;
    font-size: 1em;
    font-weight: 700;
    color: #ffffff;
    background: #f9b700;
    border-radius: 5px;
    transition: all 0.3s;
}

#front_player .page_link a:hover {
    background: #E38E33;
}

#front_player .page_link a::after {
    font: var(--fa-font-solid);
    content: '\f054';
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}


@media (min-width: 768px) {

    #front_player .loop {
        top: 120px;
    }

    #front_player .con {
        padding: 120px 0;
    }

    #front_player .h2_ttl span {
        font-size: 6vw;
    }

    #front_player .h2_ttl h2 {
        font-size: 3vw;
    }

    #front_player .player_slider article .player_name .position span {
        font-size: 5vw;
    }

    #front_player .player_slider article .player_name .h3_ttl h3 {
        font-size: 2.5vw;
    }

    #front_player .player_slider article .player_name .h3_ttl span {
        font-size: 1.5vw;
    }

    #front_player .player_slider article .player_name .grade span {
        font-size: 1.5vw;
    }

}


@media (min-width: 1024px) {

}




/*----------------------------------------

#front_team

----------------------------------------*/

#front_team .page_content {
    position: relative;
}

#front_team .page_content::before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(0,0,0,0.8), rgba(0,0,0,0));
}

#front_team .page_content .h2_ttl {
    position: absolute;
    top: 10%;
    left: 10%;
    z-index: 10;
}

#front_team .page_content .h2_ttl span {
    display: block;
    font-size: 8vw;
    color: #ffffff;
}

#front_team .page_content .h2_ttl h2 {
    font-size: 4vw;
    color: #ffffff;
}

#front_team .page_content .page_link {
    position: absolute;
    bottom: 10%;
    right: 10%;
    z-index: 10;
}

#front_team .page_content .page_link a {
    position: relative;
    display: block;
    width: 100%;
    border: solid 1px #ffffff;
    border-radius: 5px;
    padding: 10px 30px 10px 15px;
    font-size: 0.9em;
    font-weight: 700;
    color: #ffffff;
    background: rgba(0,0,0,0.5);
    transition: all 0.3s;
}

#front_team .page_content .page_link a:hover {
    background: rgba(0,0,0,0.8);
}

#front_team .page_content .page_link a::after {
    font: var(--fa-font-solid);
    content: '\f054';
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}


@media (min-width: 768px) {

    #front_team .page_content .h2_ttl span {
        font-size: 4vw;
    }

    #front_team .page_content .h2_ttl h2 {
        font-size: 2vw;
    }

}


@media (min-width: 1024px) {

}









/*========================================
==========================================

home.php
category.php
single.php

==========================================
========================================*/

/*========================================

home.php
category.php

========================================*/

/*----------------------------------------

#archive_news

----------------------------------------*/

#archive_news .h2_ttl h2 {
    font-size: 1.5em;
    color: #ffffff;
}

#archive_news .news_category {
    padding: 20px 0 40px;
}

#archive_news .news_category ul li {
    float: left;
    margin: 0 10px 10px 0;
}

#archive_news .news_category ul li a {
    display: block;
    padding: 10px 15px;
    font-size: 0.9em;
    font-weight: 700;
    color: #ffffff;
    background: #191919;
    border-radius: 5px;
    transition: all 0.3s;
}

#archive_news .news_category ul li a:hover {
    opacity: 0.8;
}

#archive_news .news_category ul li.all a {
    background: #ad0003;
}

#archive_news .news_list {
    margin: 0 0 40px;
}

#archive_news .news_category ul li.current-cat a {
    background: #ad0003;
}


@media (min-width: 768px) {

    #archive_news .h2_ttl h2 {
        font-size: 2em;
    }

    #archive_news .news_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

}


@media (min-width: 1024px) {

    #archive_news .h2_ttl h2 {
        font-size: 2.5em;
    }

    #archive_news .news_list {
        position: relative;
    }

    #archive_news .news_list:after {
        display: block;
        content: '';
        width: 30%;
    }

}




/*----------------------------------------

article.news_post  ※フロントページ共通

----------------------------------------*/

article.news_post {
    margin: 0 0 10%;
}

article.news_post a {
    display: block;
    transition: all 0.3s;
}

article.news_post a:hover {
    opacity: 0.8;
}

article.news_post .img_area img {
    display: block;
    width: 100%;
    height: auto;
}

article.news_post .txt_area .post_data {
    padding: 20px 0 10px;
}

article.news_post .txt_area .post_data ul li.date {
    float: left;
    margin-right: 20px;
}

article.news_post .txt_area .post_data ul li.date time {
    display: block;
    font-size: 1em;
    line-height: 34px;
    color: #ffffff;
    /* color: #DBAD00; */
}

article.news_post .txt_area .post_data ul li.cate {
    float: left;
}

article.news_post .txt_area .post_data ul li.cate span {
    display: block;
    padding: 5px 10px;
    font-size: 0.8em;
    line-height: 24px;
    color: #ffffff;
    background: #ad0003;
    border-radius: 3px;
}

article.news_post .txt_area .post_ttl h2,
article.news_post .txt_area .post_ttl h3 {
    font-size: 1em;
    line-height: 1.5;
    color: #ffffff;
}


@media (min-width: 768px) {
    
    article.news_post {
        flex-basis: 47.5%;
    }
    
}


@media (min-width: 1024px) {
    
    article.news_post {
        flex-basis: 30%;
        margin: 0 0 5%;
    }

}




/*----------------------------------------

#archive_news / .pagenation

----------------------------------------*/

#archive_news .pagenation ul {
    display: flex;
    justify-content: center;
}

nav.navigation .nav-links a.page-numbers {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 5px;
    text-align: center;
    font-weight: 700;
    color: #464237;
    background: #ffffff;
    border-radius: 50%;
}

nav.navigation .nav-links span.page-numbers.current {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 5px;
    text-align: center;
    font-weight: 700;
    color: #464237;
    background: #d5db00;
    border-radius: 50%;
}

nav.navigation .nav-links a.prev.page-numbers,
nav.navigation .nav-links a.next.page-numbers {
    display: none;
}


@media (min-width: 768px) {

    nav.navigation .nav-links a.page-numbers {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }

    nav.navigation .nav-links span.page-numbers.current {
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
    
}


@media (min-width: 1024px) {

}




/*========================================

single-news.php

========================================*/

/*----------------------------------------

#single_news

----------------------------------------*/

#single_news .main_column {
    margin: 0 0 80px;
}

#single_news .side_column .side_ttl h2 {
    display: block;
    border-bottom: solid 2px #ffffff;
    font-size: 2em;
    font-weight: 500;
    line-height: 2;
    color: #ffffff;
}


@media (min-width: 768px) {

    #single_news #main_content .con {
        display: flex;
        justify-content: space-between;
    }

    #single_news .main_column {
        flex-basis: 60%;
        margin: 0;
    }

    #single_news .side_column {
        flex-basis: 35%;
    }

}


@media (min-width: 1024px) {

    #single_news .main_column {
        flex-basis: 65%;
    }

    #single_news .side_column {
        flex-basis: 30%;
    }

}




/*----------------------------------------

#single_news / .post_content

----------------------------------------*/

#single_news .post_content {
    margin: 0 0 20px;
    padding: 40px;
    background: #ffffff;
}

#single_news .post_content .post_meta {
    border-bottom: solid 1px #808080;
}

#single_news .post_content .post_meta .post_data ul li.date {
    float: left;
    margin-right: 20px;
}

#single_news .post_content .post_meta .post_data ul li.date time {
    display: block;
    font-size: 1.2em;
}

#single_news .post_content .post_meta .post_data ul li.cate {
    float: left;
}

#single_news .post_content .post_meta .post_data ul li.cate span {
    display: block;
    line-height: 25px;
}

#single_news .post_content .post_meta .post_ttl {
    padding: 20px 0 40px;
}

#single_news .post_content .post_meta .post_ttl h1 {
    font-size: 1.2em;
}

#single_news .post_content .post_txt {
    padding: 40px 0 0;
}

#single_news .post_content .post_txt p {
    margin: 0 0 20px;
    font-size: 0.9em;
}

#single_news .post_content .post_txt img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 20px;
}


@media (min-width: 768px) {

    
}


@media (min-width: 1024px) {
    
    #single_news .post_content {
        padding: 80px;
    }

    #single_news .post_content .post_meta .post_ttl h1 {
        font-size: 1.5em;
    }

}




/*----------------------------------------

#single_news / .np_link

----------------------------------------*/

#single_news .np_link .next_post {
    margin: 0 0 20px;
}

#single_news .np_link .next_post a {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #ffffff;
}

#single_news .np_link .prev_post a {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    padding: 20px;
    background: #ffffff;
}

#single_news .np_link .next_post .next,
#single_news .np_link .prev_post .prev {
    width: 100px;
}

#single_news .np_link .next_post .next span {
    display: block;
    font-size: 1.8em;
    color: #0D0D0D;
}

#single_news .np_link .prev_post .prev span {
    display: block;
    text-align: right;
    font-size: 1.8em;
    color: #0D0D0D;
}

#single_news .np_link .next_post .next p {
    font-size: 0.9em;
    font-weight: 700;
    color: #DBAD00;
}

#single_news .np_link .prev_post .prev p {
    text-align: right;
    font-size: 0.9em;
    font-weight: 700;
    color: #DBAD00;
}

#single_news .np_link .next_post .post_ttl,
#single_news .np_link .prev_post .post_ttl {
    flex: 1;
}

#single_news .np_link .next_post .post_ttl h3,
#single_news .np_link .prev_post .post_ttl h3 {
    font-size: 1em;
    font-weight: 700;
    color: #808080;
}


@media (min-width: 768px) {

}


@media (min-width: 1024px) {

}




/*----------------------------------------

#single_news / .side_cat_list

----------------------------------------*/

#single_news .side_cat_list {
    margin: 0 0 80px;
}

#single_news .side_cat_list ul li {
    border-bottom: solid 1px #a9a9a9;
}

#single_news .side_cat_list ul li a {
    display: block;
    padding: 20px;
    font-size: 1em;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.3s;
}

#single_news .side_cat_list ul li a:hover {
    color: #ad0003;
}


@media (min-width: 768px) {

    
}


@media (min-width: 1024px) {

}




/*----------------------------------------

#single_news / .side_new_list

----------------------------------------*/

#single_news .side_new_list .new_list article {
    border-bottom: solid 1px #a9a9a9;
    padding: 20px 0;
}

#single_news .side_new_list .new_list article a {
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

#single_news .side_new_list .new_list article a:hover {
    opacity: 0.8;
}

#single_news .side_new_list .new_list article .img_area {
    width: 25%;
    max-width: 120px;
}

#single_news .side_new_list .new_list article .img_area img {
    display: block;
    width: 100%;
    height: auto;
}

#single_news .side_new_list .new_list article .txt_area {
    flex: 1;
    padding-left: 20px;
}

#single_news .side_new_list .new_list article .txt_area .post_data {
    margin: 0 0 10px;
}

#single_news .side_new_list .new_list article .txt_area .post_data ul li.date {
    float: left;
    margin-right: 20px;
}

#single_news .side_new_list .new_list article .txt_area .post_data ul li.date time {
    display: block;
    font-size: 0.9em;
    font-weight: 700;
    color: #ffffff;
}

#single_news .side_new_list .new_list article .txt_area .post_data ul li.cate {
    float: left;
}

#single_news .side_new_list .new_list article .txt_area .post_data ul li.cate span {
    display: block;
    font-size: 0.9em;
    line-height: 19px;
    color: #ffffff;
}

#single_news .side_new_list .new_list article .txt_area .post_ttl h3 {
    font-size: 0.9em;
    color: #ffffff;
}


@media (min-width: 768px) {

    #single_news .side_new_list .new_list article .txt_area {
        padding-left: 10px;
    }

    #single_news .side_new_list .new_list article .txt_area .post_data {
        margin: 0 0 5px;
    }

    #single_news .side_new_list .new_list article .txt_area .post_data ul li.date {
        font-size: 0.7em;
    }

    #single_news .side_new_list .new_list article .txt_area .post_data ul li.cate span {
        font-size: 0.7em;
        line-height: 16px;
    }

    #single_news .side_new_list .new_list article .txt_area .post_ttl h2 {
        font-size: 0.8em;
    }

    
}


@media (min-width: 1024px) {

    #single_news .side_new_list .new_list article .txt_area {
        padding-left: 15px;
    }

    #single_news .side_new_list .new_list article .txt_area .post_data {
        margin: 0 0 5px;
    }

    #single_news .side_new_list .new_list article .txt_area .post_data ul li.date {
        font-size: 0.8em;
    }

    #single_news .side_new_list .new_list article .txt_area .post_data ul li.cate span {
        font-size: 0.8em;
        line-height: 19px;
    }

    #single_news .side_new_list .new_list article .txt_area .post_ttl h2 {
        font-size: 0.9em;
    }

}









/*========================================
==========================================

archive-match.php
taxonomy-season.php
single-match.php

==========================================
========================================*/

/*========================================

archive-match.php

========================================*/

/*----------------------------------------

#archive_match

----------------------------------------*/

#archive_match .coming_soon {

}

#archive_match .coming_soon p {
    text-align: center;
    font-size: 1.2em;
    font-weight: 500;
    color: #ffffff;
}


@media (min-width: 768px) {

    #archive_match .coming_soon {
        padding: 40px 0 0;
    }

    #archive_match .coming_soon p {
        font-size: 1.5em;
    }

}


@media (min-width: 1024px) {

}




/*========================================

taxonomy-season.php

========================================*/

/*----------------------------------------

#taxonomy_season

----------------------------------------*/

#taxonomy_season .h2_ttl h2 {
    font-size: 1.5em;
    color: #ffffff;
}

#taxonomy_season .tournament_cat {
    padding: 20px 0 40px;
}

#taxonomy_season .tournament_cat ul li {
    float: left;
    margin: 0 10px 10px 0;
}

#taxonomy_season .tournament_cat ul li a {
    display: block;
    padding: 10px 15px;
    font-size: 0.9em;
    font-weight: 700;
    color: #ffffff;
    background: #191919;
    border-radius: 5px;
    transition: all 0.3s;
}

#taxonomy_season .tournament_cat ul li a.is-active {
    background: #ad0003;
}

#taxonomy_season .tournament_cat ul li a:hover {
    opacity: 0.8;
}


@media (min-width: 768px) {

    #taxonomy_season .h2_ttl h2 {
        font-size: 2em;
    }

}


@media (min-width: 1024px) {

    #taxonomy_season .h2_ttl h2 {
        font-size: 2.5em;
    }

}




/*----------------------------------------

article.match_post

※フロントページ共通

----------------------------------------*/

#taxonomy_season article.match_post {
    margin: 0 0 40px;
}

#taxonomy_season article.match_post:last-of-type {
    margin: 0;
}

article.match_post {
    padding: 40px;
    background: #191919;
}

article.match_post .game_info {
    border-bottom: solid 1px #808080;
    padding: 0 0 40px;
}

article.match_post .game_info p.league {
    padding: 0 0 10px;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.4;
    color: #ffffff;
}

article.match_post .game_info p.match_day.en {
    font-size: 2em;
    font-weight: 700;
    line-height: 1;
    color: #f9b700;
}

article.match_post .game_info p.match_day.ja {
    font-size: 1.8em;
    font-weight: 500;
    line-height: 1;
    color: #f9b700;
}

article.match_post .game_info p.kickoff {
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.5;
    color: #f9b700;
}

article.match_post .game_info p.venue {
    font-size: 1em;
    line-height: 1.5;
    color: #dcdcdc;
}

article.match_post .game_info p.venue i {
    padding: 0 5px;
}

article.match_post .game_card {
    display: flex;
    align-items: center;
    padding: 40px 0 0px;
}

article.match_post .game_card .fukudai {
    flex-basis: 35%;
}

article.match_post .game_card .fukudai .emblem img {
    display: block;
    width: 50%;
    max-width: 100px;
    margin: 0 auto 10px;
}

article.match_post .game_card .fukudai p {
    text-align: center;
    color: #ffffff;
}

article.match_post .game_card .score {
    flex-basis: 30%;
}

article.match_post .game_card .score .total {
    display: flex;
    justify-content: center;
    margin: 0 0 10px;
    border-bottom: solid 1px #ffffff;
    padding: 0 0 10px;
}

article.match_post .game_card .score .total span {
    display: block;
    padding: 0 5px;
    text-align: center;
    font-size: 2em;
    font-weight: 700;
    color: #ffffff;
}

article.match_post .game_card .score .first_half {
    display: flex;
    justify-content: center;
}

article.match_post .game_card .score .first_half span {
    display: block;
    padding: 0 3px;
    text-align: center;
    color: #ffffff;
}

article.match_post .game_card .score .second_half {
    display: flex;
    justify-content: center;
}

article.match_post .game_card .score .second_half span {
    display: block;
    padding: 0 3px;
    text-align: center;
    color: #ffffff;
}

article.match_post .game_card .versus {
    flex-basis: 30%;
}

article.match_post .game_card .versus span {
    display: block;
    text-align: center;
    font-size: 1.5em;
    color: #ffffff;
}

article.match_post .game_card .opponent {
    flex-basis: 35%;
}

article.match_post .game_card .opponent p {
    text-align: center;
    color: #ffffff;
}


@media (min-width: 768px) {

    article.match_post {
        display: flex;
        padding: 40px;
    }
    
    article.match_post .game_info {
        flex-basis: 40%;
        border-right: solid 1px #808080;
        border-bottom: none;
        padding: 0 20px 0 0;
    }
    
    article.match_post .game_info p.league {
        font-size: 0.8em;
    }
    
    article.match_post .game_info p.match_day.en {
        font-size: 1.6em;
    }

    article.match_post .game_info p.match_day.ja {
        font-size: 1.44em;
    }
    
    article.match_post .game_info p.kickoff {
        font-size: 1.2em;
    }
    
    article.match_post .game_info p.venue {
        font-size: 0.8em;
    }
    
    article.match_post .game_card {
        flex-basis: 60%;
        padding: 0 0 0 20px;
    }
    
    article.match_post .game_card .fukudai {
        flex-basis: 40%;
    }
    
    article.match_post .game_card .score {
        flex-basis: 20%;
    }
    
    article.match_post .game_card .opponent {
        flex-basis: 40%;
    }

}


@media (min-width: 1024px) {

    article.match_post .game_info {
        flex-basis: 40%;
        padding: 0 40px 0 0;
    }

    article.match_post .game_info p.league {
        font-size: 1em;
    }
    
    article.match_post .game_info p.match_day.en {
        font-size: 2em;
    }

    article.match_post .game_info p.match_day.ja {
        font-size: 1.8em;
    }
    
    article.match_post .game_info p.kickoff {
        font-size: 1.5em;
    }
    
    article.match_post .game_info p.venue {
        font-size: 1em;
    }

    article.match_post .game_card {
        flex-basis: 60%;
        padding: 0 0 0 40px;
    }

}









/*========================================

single-match.php

========================================*/

/*----------------------------------------


----------------------------------------*/


@media (min-width: 768px) {

}


@media (min-width: 1024px) {

}









/*========================================
==========================================

archive-player.php
single-player.php

==========================================
========================================*/

/*========================================

archive-player.php

========================================*/

/*----------------------------------------

#archive_player

----------------------------------------*/

#archive_player .h2_ttl h2 {
    font-size: 1.5em;
    color: #ffffff;
}

#archive_player .player_category {
    padding: 20px 0 40px;
}

#archive_player .player_category ul li {
    float: left;
    margin: 0 10px 10px 0;
}

#archive_player .player_category ul li a {
    display: block;
    padding: 10px 15px;
    font-size: 0.9em;
    font-weight: 700;
    color: #ffffff;
    background: #191919;
    border-radius: 5px;
    transition: all 0.3s;
}

#archive_player .player_category ul li a.is-active {
    background: #ad0003;
}

#archive_player .player_category ul li a:hover {
    opacity: 0.8;
}

#archive_player .player_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#archive_player .player_list article {
    flex-basis: 49%;
    margin: 0 0 2%;
}


@media (min-width: 768px) {
    
    #archive_player .h2_ttl h2 {
        font-size: 2em;
    }
    
    #archive_player .player_list::after {
        display: block;
        content: '';
        width: 32%;
    }

    #archive_player .player_list article {
        flex-basis: 32%;
        margin: 0 0 2%;
    }

}


@media (min-width: 1024px) {

    #archive_player .h2_ttl h2 {
        font-size: 2.5em;
    }

    #archive_player .player_list::after {
        width: 24.25%;
    }

    #archive_player .player_list::before {
        display: block;
        content: '';
        width: 23.5%;
        order: 1;
    }

    #archive_player .player_list article {
        flex-basis: 23.5%;
    }

}




/*----------------------------------------

article.player_post

※フロントページ共通

----------------------------------------*/

article.player_post a {
    display: block;
    padding: 5px;
    background: #191919;
    transition: all 0.3s;
}

article.player_post a:hover {
    opacity: 0.8;
}

article.player_post .player_info {
    padding: 20px 0;
}

article.player_post .player_info .position span {
    display: block;
    text-align: center;
    font-size: 11.2vw;
    line-height: 1;
    color: #f9b700;
}

article.player_post .player_info .name {
    padding: 10px 0;
}

article.player_post .player_info .name p {
    text-align: center;
    font-size: 5.6vw;
    font-weight: 500;
    color: #ffffff;
}

article.player_post .player_info .name span {
    display: block;
    text-align: center;
    font-size: 2.8vw;
    color: #ffffff;
}

article.player_post .player_info .grade span {
    display: block;
    text-align: center;
    font-size: 2.8vw;
    color: #ffffff;
}


@media (min-width: 768px) {

    article.player_post .player_info .position span {
        font-size: 6.4vw;
    }

    article.player_post .player_info .name p {
        font-size: 3.2vw;
    }

    article.player_post .player_info .name span {
        font-size: 1.6vw;
    }

    article.player_post .player_info .grade span {
        font-size: 1.6vw;
    }

}


@media (min-width: 1024px) {

    article.player_post .player_info .position span {
        font-size: 4.8vw;
    }

    article.player_post .player_info .name p {
        font-size: 2.4vw;
    }

    article.player_post .player_info .name span {
        font-size: 1.2vw;
    }

    article.player_post .player_info .grade span {
        font-size: 1.2vw;
    }

}




/*========================================

single-player.php

========================================*/

/*----------------------------------------

#single_player

----------------------------------------*/

#single_player .player_post {
    margin: 0 0 40px;
    padding: 5px;
    background: #191919;
}

#single_player .player_post .player_info {
    padding: 40px 0;
}

#single_player .player_post .player_info .position span {
    display: block;
    text-align: center;
    font-size: 16vw;
    line-height: 1;
    color: #f9b700;
}

#single_player .player_post .player_info .name {
    padding: 20px 0;
}

#single_player .player_post .player_info .name h1 {
    text-align: center;
    font-size: 8vw;
    color: #ffffff;
}

#single_player .player_post .player_info .name span {
    display: block;
    text-align: center;
    font-size: 4vw;
    color: #ffffff;
}

#single_player .player_post .player_info .grade span {
    display: block;
    text-align: center;
    font-size: 4vw;
    color: #ffffff;
}

#single_player .player_prof .h2_ttl {
    border-bottom: solid 3px #ffffff;
    padding: 0 0 20px;
}

#single_player .player_prof .h2_ttl h2 {
    font-size: 6vw;
    color: #ffffff;
}

#single_player .player_prof table {
    width: 100%;
}

#single_player .player_prof table tr {
    display: flex;
    align-items: center;
    border-bottom: solid 1px #a9a9a9;
    padding: 20px 0;
}

#single_player .player_prof table th {
    width: 160px;
    font-size: 0.9em;
    font-weight: 500;
    color: #ffffff;
}

#single_player .player_prof table td {
    flex: 1;
    font-size: 0.9em;
    font-weight: 400;
    color: #ffffff;
}

#single_player .player_prof .page_link {
    padding: 40px 0 0;
}

#single_player .player_prof .page_link a {
    position: relative;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 25px;
    font-size: 1em;
    font-weight: 700;
    color: #ffffff;
    background: #f9b700;
    border-radius: 5px;
    transition: all 0.3s;
}


@media (min-width: 768px) {

    #single_player .player_detail {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    #single_player .player_post {
        width: 320px;
        margin: 0;
    }

    #single_player .player_post .player_info .position span {
        font-size: 5em;
    }

    #single_player .player_post .player_info .name h1 {
        font-size: 2.5em;
    }

    #single_player .player_post .player_info .name span {
        font-size: 1.25em;
    }

    #single_player .player_post .player_info .grade span {
        font-size: 1.25em;
    }

    #single_player .player_prof {
        flex: 1;
        margin: 0;
        padding-left: 5%;
    }

    #single_player .player_prof .h2_ttl {
        padding: 0 0 20px;
    }
    
    #single_player .player_prof .h2_ttl h2 {
        font-size: 2em;
    }

}


@media (min-width: 1024px) {

}









/*========================================
==========================================

archive-staff.php
single-staff.php

==========================================
========================================*/

/*========================================

archive-staff.php

========================================*/

/*----------------------------------------

#archive_staff

----------------------------------------*/

#archive_staff .h2_ttl {

}

#archive_staff .h2_ttl h2 {
    font-size: 1.5em;
    color: #ffffff;
}


@media (min-width: 768px) {

    #archive_staff .h2_ttl h2 {
        font-size: 2em;
    }

}


@media (min-width: 1024px) {

    #archive_staff .h2_ttl h2 {
        font-size: 2.5em;
    }

}




/*----------------------------------------

#archive_staff / .staff_list

----------------------------------------*/

#archive_staff .staff_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#archive_staff .staff_list article {
    flex-basis: 49%;
    margin: 0 0 2%;
}

#archive_staff .staff_list article > span {
    display: block;
    padding: 5px;
    background: #191919;
}

#archive_staff .staff_list article .staff_name {
    padding: 20px 0;
}

#archive_staff .staff_list article .staff_name .h2_ttl {
    padding: 10px 0;
}

#archive_staff .staff_list article .staff_name .h2_ttl h2 {
    text-align: center;
    font-size: 5vw;
    color: #ffffff;
}

#archive_staff .staff_list article .staff_name .h2_ttl span {
    display: block;
    text-align: center;
    font-size: 2.5vw;
    color: #ffffff;
}

#archive_staff .staff_list article .staff_name .position span {
    display: block;
    text-align: center;
    font-size: 3vw;
    color: #ffffff;
}


@media (min-width: 768px) {

    
    #archive_staff .staff_list::after {
        display: block;
        content: '';
        width: 32%;
    }

    #archive_staff .staff_list article {
        flex-basis: 32%;
        margin: 0 0 2%;
    }

    #archive_staff .staff_list article .staff_name .h2_ttl h2 {
        font-size: 3vw;
    }

    #archive_staff .staff_list article .staff_name .h2_ttl span {
        font-size: 1.5vw;
    }

    #archive_staff .staff_list article .staff_name .position span {
        font-size: 1.8vw;
    }

}


@media (min-width: 1024px) {

    #archive_staff .staff_list::after {
        width: 24.25%;
    }

    #archive_staff .staff_list::before {
        display: block;
        content: '';
        width: 23.5%;
        order: 1;
    }

    #archive_staff .staff_list article {
        flex-basis: 23.5%;
    }

    #archive_staff .staff_list article .staff_name .h2_ttl h2 {
        font-size: 2vw;
    }

    #archive_staff .staff_list article .staff_name .h2_ttl span {
        font-size: 1vw;
    }

    #archive_staff .staff_list article .staff_name .position span {
        font-size: 1.2vw;
    }

}




/*========================================

single-staff.php

========================================*/

/*----------------------------------------

#single_staff

----------------------------------------*/

#single_staff .staff_card {
    margin: 0 0 40px;
    padding: 5px;
    background: #191919;
}

#single_staff .staff_card .staff_name {
    padding: 40px 0;
}

#single_staff .staff_card .staff_name .h1_ttl {
    padding: 20px 0;
}

#single_staff .staff_card .staff_name .h1_ttl h1 {
    text-align: center;
    font-size: 8vw;
    color: #ffffff;
}

#single_staff .staff_card .staff_name .h1_ttl span {
    display: block;
    text-align: center;
    font-size: 4vw;
    color: #ffffff;
}

#single_staff .staff_card .staff_name .position span {
    display: block;
    text-align: center;
    font-size: 4.8vw;
    color: #ffffff;
}

#single_staff .staff_career .h2_ttl {
    border-bottom: solid 3px #ffffff;
    padding: 0 0 20px;
}

#single_staff .staff_career .h2_ttl h2 {
    font-size: 6vw;
    color: #ffffff;
}

#single_staff .staff_career table {
    width: 100%;
}

#single_staff .staff_career table tr {
    display: block;
    border-bottom: solid 1px #a9a9a9;
    padding: 20px 0;
}

#single_staff .staff_career table th {
    display: block;
}

#single_staff .staff_career table th h3 {
    text-align: left;
    font-size: 1em;
    color: #ffffff;
}

#single_staff .staff_career table td {
    display: block;
}

#single_staff .staff_career table td > p {
    margin-top: 10px;
    font-size: 0.9em;
    color: #ffffff;
}

#single_staff .staff_career table td ul li {
    margin-top: 10px;
}

#single_staff .staff_career table td ul li p {
    position: relative;
    padding-left: 16px;
    font-size: 0.9em;
    color: #ffffff;
}

#single_staff .staff_career table td ul li p::before {
    display: block;
    content: '・';
    position: absolute;
    top: 0;
    left: 0;
}

#single_staff .staff_career .page_link {
    padding: 40px 0 0;
}

#single_staff .staff_career .page_link a {
    position: relative;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 25px;
    font-size: 1em;
    font-weight: 700;
    color: #ffffff;
    background: #f9b700;
    border-radius: 5px;
    transition: all 0.3s;
}


@media (min-width: 768px) {

    #single_staff .staff_info {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    #single_staff .staff_card {
        width: 50%;
        max-width: 400px;
        margin: 0;
    }

    #single_staff .staff_card .staff_name .h1_ttl h1 {
        font-size: 4vw;
    }

    #single_staff .staff_card .staff_name .h1_ttl span {
        font-size: 2vw;
    }

    #single_staff .staff_card .staff_name .position span {
        font-size: 2.4vw;
    }

    #single_staff .staff_career {
        flex: 1;
        margin: 0;
        padding-left: 5%;
    }

    #single_staff .staff_career .h2_ttl {
        padding: 0 0 20px;
    }

    #single_staff .staff_career .h2_ttl h2 {
        font-size: 3vw;
    }
    
}


@media (min-width: 1024px) {

    #single_staff .staff_card .staff_name .h1_ttl h1 {
        font-size: 2.5em;
    }

    #single_staff .staff_card .staff_name .h1_ttl span {
        font-size: 1.25em;
    }

    #single_staff .staff_card .staff_name .position span {
        font-size: 1.5em;
    }

    #single_staff .staff_career .h2_ttl h2 {
        font-size: 2.5em;
    }

}









/*========================================

page-team.php

========================================*/

/*----------------------------------------

#page_team

----------------------------------------*/

#page_team section table {
	width: 100%;
}

#page_team section table tr {
	display: block;
	border-bottom: solid 1px #a9a9a9;
	padding: 40px 0;
}

#page_team section table tr:last-of-type {
	border-bottom: none;
}

#page_team section table th {
	display: block;
	margin: 0 0 40px;
}

#page_team section table th h3 {
	border-left: solid 5px #ffffff;
	padding: 15px 0 15px 20px;
	text-align: left;
	font-size: 1.2em;
	font-weight: 700;
	color: #ffffff;
}

#page_team section table th h3 br {
	display: none;
}

#page_team section table td {
	display: block;
}

#page_team section table td ol {
	padding-left: 20px;
}

#page_team section table td ol li {
	margin: 0 0 20px;
}

#page_team section table td ol li:last-of-type {
	margin: 0;
}

#page_team section table td ol li::marker {
	color: #ffffff;
}

#page_team section table td ol li p {
	color: #ffffff;
}


@media (min-width: 768px) {

    #page_team section table tr {
		display: flex;
	}

	#page_team section table th {
		flex-basis: 40%;
		margin: 0;
	}

	#page_team section table th h3 {
		font-size: 1.5em;
	}

	#page_team section table th h3 br {
		display: block;
	}

	#page_team section table td {
		flex-basis: 60%;
	}

}


@media (min-width: 1024px) {

}




/*----------------------------------------

#page_team / .team_slogan

----------------------------------------*/

#page_team .team_slogan .slogan video {
    display: block;
    width: 100%;
}

#page_team .team_slogan .slogan p,
#page_team .team_slogan .mvv p {
    color: #ffffff;
}

#page_team .team_slogan .conditions {
    margin: 0 0 40px;
}

#page_team .team_slogan .conditions ol li p {
    font-size: 1em;
    font-weight: 700;
}

#page_team .team_slogan .division p {
    line-height: 1.6;
    color: #ffffff;
}


@media (min-width: 768px) {

    #page_team .team_slogan .conditions ol li p {
        font-size: 1.2em;
    }

}


@media (min-width: 1024px) {

}




/*----------------------------------------

#page_team / .team_philosophy

----------------------------------------*/

#page_team .team_philosophy .coaching > div {
    margin: 0 0 40px;
}

#page_team .team_philosophy .coaching > div:last-of-type {
    margin: 0;
}

#page_team .team_philosophy .coaching h4 {
    margin: 0 0 20px;
    font-size: 1em;
    font-weight: 700;
    color: #ffffff;
}


@media (min-width: 768px) {

    #page_team .team_philosophy .coaching h4 {
        font-size: 1.2em;
    }

}


@media (min-width: 1024px) {

}




/*----------------------------------------

#page_team / .team_history

----------------------------------------*/

#page_team .team_history .history ul li {
    position: relative;
    display: flex;
    margin: 0 0 80px;
}

#page_team .team_history .history ul li::before {
    display: block;
    content: '';
    position: absolute;
    top: 40px;
    left: 22px;
    width: 1px;
    height: 100%;
    background: #ffffff;
}

#page_team .team_history .history ul li:last-of-type {
    margin: 0;
}

#page_team .team_history .history ul li .calendar {
    width: 100px;

}

#page_team .team_history .history ul li .calendar span {
    display: block;
    font-size: 1.5em;
    color: #ffffff;
}

#page_team .team_history .history ul li .event {
    flex: 1;
}

#page_team .team_history .history ul li .event h4 {
    font-size: 1em;
    color: #ffffff;
}

#page_team .team_history .history ul li .event p {
    display: block;
    position: relative;
    margin-top: 20px;
    padding-left: 16px;
    font-size: 0.9em;
    font-weight: 400;
    color: #ffffff;
}

#page_team .team_history .history ul li .event p::before {
    display: block;
    content: '※';
    position: absolute;
    top: 0;
    left: 0;
}


@media (min-width: 768px) {

    #page_team .team_history .history ul li .event h4 {
        font-size: 1.2em;
    }

}


@media (min-width: 1024px) {

}




/*----------------------------------------

#page_team / .team_record

----------------------------------------*/

#page_team .team_record .award ul li {
    margin: 0 0 20px;
}

#page_team .team_record .award ul li:last-of-type {
    margin: 0;
}

#page_team .team_record .award ul li p {
    font-size: 1.2em;
    font-weight: 500;
    color: #ffffff;
}


@media (min-width: 768px) {

    #page_team .team_record .award ul li p {
        font-size: 1.2em;
    }

}


@media (min-width: 1024px) {

}









/*========================================

page-field.php

========================================*/

/*----------------------------------------

#page_field

----------------------------------------*/


@media (min-width: 768px) {

}


@media (min-width: 1024px) {

}




/*----------------------------------------

#page_field / .field_info

#page_field / .field_gallery

----------------------------------------*/

#page_field .field_info {
    padding: 40px 0 0;
}

#page_field .field_info .field_img {
    margin: 0 0 20px;
}

#page_field .field_info .field_txt p {
    margin-bottom: 20px;
    color: #ffffff;
}

#page_field .field_gallery ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#page_field .field_gallery ul li {
    flex-basis: 49%;
    margin: 0 0 2%;
}


@media (min-width: 768px) {

}


@media (min-width: 1024px) {

    #page_field .field_info {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    #page_field .field_info .field_img {
        width: 50%;
        max-width: 560px;
        margin: 0;
    }

    #page_field .field_info .field_txt {
        flex: 1;
        padding-right: 5%;
    }

    #page_field .field_gallery {
        padding: 40px 0 0;
    }

    #page_field .field_gallery ul li {
        flex-basis: 24.25%;
        margin: 0;
    }

}




/*----------------------------------------

#page_field / .access_info

----------------------------------------*/

#page_field .access_info {
    padding: 40px 0 0;
}

#page_field .access_info .access_txt {
    margin: 0 0 40px;
}

#page_field .access_info .access_txt h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: #ffffff;
}

#page_field .access_info .access_txt p {
    padding-top: 10px;
    font-size: 1em;
    color: #ffffff;
}

#page_field .access_info .access_map iframe {
    width: 100%;
    height: 64vw;
}


@media (min-width: 768px) {

    #page_field .access_info .access_map iframe {
        height: 56vw;
    }

}


@media (min-width: 1024px) {

    #page_field .access_info .access_map iframe {
        height: 480px;
    }

}









/*========================================

page-contribution.php

========================================*/

/*----------------------------------------

#page_contribution

----------------------------------------*/

#page_contribution .opening {
    margin: 0 0 40px;
}

#page_contribution .opening p {
    padding-bottom: 20px;
    font-size: 1em;
    line-height: 1.6;
    color: #ffffff;
}

#page_contribution .opening p br {
    display: none;
}


@media (min-width: 768px) {

}


@media (min-width: 1024px) {

    #page_contribution .opening p {
        font-size: 1.1em;
    }

    #page_contribution .opening p br {
        display: block;
    }

}




/*----------------------------------------

#page_contribution / .activity_info

----------------------------------------*/

#page_contribution .activity_info {
    padding: 20px 0 0;
}

#page_contribution .activity_info > p {
    font-size: 1em;
    color: #ffffff;
}

#page_contribution .activity_info .activity_txt {
    margin: 0 0 20px;
}

#page_contribution .activity_info .activity_txt p {
    font-size: 1em;
    color: #ffffff;
}

#page_contribution .activity_info .activity_img ul {
    display: flex;
    justify-content: space-between;
}

#page_contribution .activity_info .activity_img ul li {
    flex-basis: 49%;
}


@media (min-width: 768px) {

}


@media (min-width: 1024px) {

}









/*========================================

page-career.php

========================================*/

/*----------------------------------------

#page_career

----------------------------------------*/

#page_career section table {
	width: 100%;
}

#page_career section table tr {
	display: block;
	border-bottom: solid 1px #a9a9a9;
	padding: 40px 0;
}

#page_career section table tr:last-of-type {
	border-bottom: none;
}

#page_career section table th {
	display: block;
	margin: 0 0 40px;
}

#page_career section table th h3 {
	border-left: solid 5px #ffffff;
	padding: 10px 0 10px 20px;
	text-align: left;
	font-size: 1.2em;
	font-weight: 700;
	color: #ffffff;
}

#page_career section table th h3 br {
	display: none;
}

#page_career section table td {
	display: block;
}

#page_career section table td ul li {
    margin: 0 0 10px;
}

#page_career section table td ul li:last-of-type {
    margin: 0;
}

#page_career section table td ul li p {
    color: #ffffff;
}


@media (min-width: 768px) {

    #page_career section table tr {
		display: flex;
	}

	#page_career section table th {
		flex-basis: 40%;
		margin: 0;
	}

	#page_career section table th h3 {
		font-size: 1.5em;
	}

	#page_career section table th h3 br {
		display: block;
	}

	#page_career section table td {
		flex-basis: 60%;
	}

}


@media (min-width: 1024px) {

}




/*----------------------------------------

#page_career / .player_list

----------------------------------------*/

#page_career .player_list {
    padding: 40px 0 0;
}

#page_career .player_list ul li {
    margin: 0 0 40px;
}

#page_career .player_list ul li:last-of-type {
    margin: 0;
}

#page_career .player_list ul li .name {
    font-size: 1.1em;
    font-weight: 700;
    color: #ffffff;
}

#page_career .player_list ul li .birthday {
    padding: 10px 0;
    font-size: 1em;
    color: #ffffff;
}

#page_career .player_list ul li .history {
    font-size: 1em;
    color: #ffffff;
}


@media (min-width: 768px) {

}


@media (min-width: 1024px) {

}









/*========================================

page-sponsor.php

========================================*/

/*----------------------------------------

#page_sponsor / .sponsor_list

----------------------------------------*/

#page_sponsor .sponsor_list ul li {
    margin: 0 0 40px;
}

#page_sponsor .sponsor_list ul li a {
    display: block;
}

#page_sponsor .sponsor_list .sponsor_logo img {
    transition: all 0.3s;
}

#page_sponsor .sponsor_list ul li a:hover img {
    opacity: 0.8;
}

#page_sponsor .sponsor_list .sponsor_name {
    padding: 10px 0 0;
}

#page_sponsor .sponsor_list .sponsor_name h2 {
    font-size: 1.1em;
    font-weight: 700;
    color: #ffffff;
}


@media (min-width: 768px) {

    #page_sponsor .sponsor_list ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #page_sponsor .sponsor_list ul li {
        flex-basis: 47.5%;
    }

}


@media (min-width: 1024px) {

    #page_sponsor .sponsor_list ul::after {
        display: block;
        content: '';
        width: 30%;
    }

    #page_sponsor .sponsor_list ul li {
        flex-basis: 30%;
    }

}









/*========================================

404.php

========================================*/

#page_404 .not_found {
    margin: 0 0 40px;
}

#page_404 .not_found p {
    font-size: 1em;
    font-weight: 500;
    line-height: 1.6;
    color: #ffffff;
}

#page_404 .not_found p br {
    display: none;
}

#page_404 .page_link a {
    position: relative;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 25px;
    font-size: 1em;
    font-weight: 700;
    color: #ffffff;
    background: #f9b700;
    border-radius: 5px;
    transition: all 0.3s;
}

#page_404 .page_link a:hover {
    background: #E38E33;
}

#page_404 .page_link a::after {
    font: var(--fa-font-solid);
    content: '\f054';
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}


@media (min-width: 768px) {

    #page_404 .not_found p {
        text-align: center;
        line-height: 2;
    }

    #page_404 .not_found p br {
        display: block;
    }

}


@media (min-width: 1024px) {

}