/* common パーツ */
/* メモ：タイトルfontはclass名"ff-Os-St"を付与も可能。 */
ol li:before {
    display: none !important;
}

.text-red {
    color: #e6002d;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .text-red {
        text-align: center;
    }
}

.text-underline {
    text-decoration: underline;
}

.d-flex {
    display: flex;
}

@media screen and (max-width: 768px) {
    .d-flex {
        flex-direction: column;
    }
}

.bold {
    font-weight: bold;
}

p.big-red-text {
    font-size: 4.8rem;
    color: #e6002d;
    font-weight: bold;
    line-height: 1.4;
}

@media screen and (max-width: 768px) {
    p.big-red-text {
        font-size: 1.5rem;
        text-align: center;
    }
}

p.number {
    font-family: "Oswald-Stencil";
    padding: 27px 15px;
    background: #e6002d;
    width: 44px;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

@media screen and (max-width: 768px) {
    p.number {
        width: 39px;
        padding: 33px 15px;
    }
}

.border-box {
    border: 2px solid #333;
    padding: 30px;
}

.border-box p.title {
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 36px;
}

@media screen and (max-width: 768px) {
    .border-box p.title {
        font-size: 2.4rem;
    }
}

a.more-link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 30px;
    padding: 10px 20px;
    margin: 0 auto;
    border: 1px solid #333;
    width: 10em;
    color: #333;
    font-size: 3rem;
    margin-top: 30px;
}

a.more-link:hover {
    color: #333;
    opacity: .7;
    text-decoration: none;
}

/* 本編 */

ol.flow li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0 20px;
}

ol.flow .text-wrapper p {
    margin: 0;
}
ol.flow .text-wrapper p.small-text {
    font-size: 13px;
}

.container.player-entry {
    padding: 60px 0;
}

@media screen and (max-width: 768px) {
    .container.player-entry .flex-wrapper {
        flex-direction: column;
    }
}

.logo-wrapper {
    margin-bottom: 50px;
}

.title-wrapper {
    margin-bottom: 50px;
}

.logo-wrapper img {
    width: 160px;
}

.change-button-wrapper {
    display: flex;
    align-items: center;
    gap: 0 30px;
    margin-bottom: 100px;
    display: none;
}

@media screen and (max-width: 768px) {
    .change-button-wrapper {
        margin-bottom: 50px;
    }
}

.change-button-wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-radius: 7px;
    color: #fff;
    font-size: 22px;
}

.change-button-wrapper a:hover {
    text-decoration: none;
    opacity: .7;
    color: #fff;
}

.change-button-wrapper a.jp {
    background: #e6002d;
}

.change-button-wrapper a.en {
    background: gray;
}

#kv-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

@media screen and (max-width: 768px) {
    #kv-wrapper .title-wrapper {
        width: 80%;
    }
}

#kv-wrapper .left-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
}

#kv-wrapper .right-wrapper {
    width: 50%;
}

@media screen and (max-width: 768px) {
    #kv-wrapper .right-wrapper {
        width: auto;
    }
}

a.entry-button {
    color: #333;
    font-size: 4rem;
    background: #e6002d;
    padding: 20px 40px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 60px;
    line-height: 1;
    width: 400px;
    margin: 30px auto;
    position: relative;

    /* pointer-events: none; */
    /* cursor: inherit; */
}

@media screen and (max-width: 768px) {
    a.entry-button {
        width: 90%;
        font-size: 3rem;
    }
}
a.entry-button:hover {
    
}

a.entry-button::before {
    /* content: '11/1〜 ENTRY START';
    color: #fff;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    font-size: 24px; */
}

a.entry-button:hover {
    text-decoration: none;
    opacity: .7;
    color: #333;
}

a.entry-button span {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-size: 2rem;
}

.container.player-entry .section:not(:first-of-type) {
    padding: 60px 10px;
}

@media screen and (max-width: 768px) {
    .container.player-entry .section:not(:first-of-type) {
        padding: 40px 10px;
    }
}

.container.player-entry h1 {
    text-align: center;
    color: #e6002d;
    font-size: 7rem;
    font-family: "Oswald-Stencil";
    line-height: 1;
    letter-spacing: 0.1px;
    /* transform   : scale(1.7, 0.7);    */
    font-weight: normal!important;
}

@media screen and (max-width: 768px) {
    .container.player-entry h1 {
        font-size: 5rem;
        /* font-size: 12vw; */
    }
}

.container.player-entry h1 span {
    font-size: 3rem;
    font-family: "Oswald-Bold";

}

.container.player-entry h2 {
    font-family: "Oswald-Stencil";
    text-align: center;
    margin-bottom: 100px;
    color: #e6002d;
    font-size: 7rem;
}

@media screen and (max-width: 768px) {
    .container.player-entry h2 {
        width: 100%;
        margin: 0 auto 50px;
        font-size: 5rem;
    font-weight: normal!important;
    }

    .container.player-entry h2.sp-small {
        font-size: 3.6rem;
    }

    .container.player-entry h3.sp-small {
        font-size: 1.6rem;
    }
}

.container.player-entry h3 {
    text-align: center;
    background: #333;
    color: #fff;
    border-radius: 7px;
    padding: 10px 20px;
    margin-bottom: 40px;
    font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
    .container.player-entry h3 {
        font-size: 2rem;
    font-weight: normal!important;
    }
}

.flex-wrapper {
    gap: 0 30px;
}


#intro .flex-wrapper p {
    width: 50%;
}

#intro .flex-wrapper .image-wrapper {
    width: 50%;
}

@media screen and (max-width: 768px) {
    #intro .flex-wrapper p {
        width: 100%;
    }

    #intro .flex-wrapper .image-wrapper {
        width: 100%;
    }
}

#whats-player .left-wrapper {
    width: 50%;
}

#whats-player .right-wrapper {
    width: 50%;
}

@media screen and (max-width: 768px) {
    #whats-player .left-wrapper {
        width: 100%;
    }

    #whats-player .right-wrapper {
        width: 100%;
    }
}

#whats-player .d-flex {
    gap: 0 30px;
}

#team-play .d-flex {
    gap: 0 30px;
}

#team-play .left-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
    #team-play .left-wrapper .border-box {
        margin-bottom: 30px;
    }
}

#play-game .d-flex .left-wrapper {
    width: 40%;
}

@media screen and (max-width: 768px) {
    #play-game .d-flex .left-wrapper {
        width: 100%;
    }
}

#play-game .d-flex .right-wrapper {
    width: 60%;
}

@media screen and (max-width: 768px) {
    #play-game .d-flex .right-wrapper {
        width: 100%;
    }
}

#play-game .d-flex {
    gap: 0 30px;
    margin-bottom: 30px;
}

ul.list-wrapper {
    flex-wrap: wrap;
    display: flex;
    gap: 30px;
}

ul.list-wrapper li.h3List {
    width: 48%;
}

ul.list-wrapper li.h3List p {}

@media screen and (max-width: 768px) {
    ul.list-wrapper li.h3List {
        width: 100%;
    }
}

ul.list-wrapper li.h3List .image-wrapper.weare3x3 {
    margin-bottom: 60px;
}

ul li:before {
    display: none !important;
}

.section.section06 .image-wrapper {}

#u24special .d-flex {
    gap: 0 30px;
}

#u24special .text-red.bold {
    font-size: 6rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    #u24special .text-red.bold {
        font-size: 4rem;
    }
}

#u24special .d-flex .left-wrapper {
    width: 50%;
}

#u24special .d-flex .right-wrapper {
    width: 50%;
}

@media screen and (max-width: 768px) {
    #u24special .d-flex .left-wrapper {
        width: 100%;
    }

    #u24special .d-flex .right-wrapper {
        width: 100%;
    }
}

ul.image-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
}

ul.image-list li {
    width: 23%;
    padding-left: 0;
}

@media screen and (max-width: 768px) {
    ul.image-list li {
        width: 45%;
        gap: 0 15px;
    }
}

ul.image-list li .title {
    font-size: 2rem;
    text-align: center;
    margin-top: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}

@media screen and (max-width: 768px) {
    ul.image-list li .title {
        font-size: 1.6rem;
    }
}

ul.player-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 16px;
}

@media screen and (max-width: 768px) {
    ul.player-wrapper {
        flex-direction: column;
    }
}

ul.player-wrapper li {
    display: flex;
    align-items: center;
    width: 49%;
    padding: 0;
}
@media screen and (max-width: 768px) {
    ul.player-wrapper li {
        flex-direction: column;
        width: 100%;
    }
}

ul.player-wrapper li .image-wrapper {
    margin-right: 20px;
    width: 30%;
}
@media screen and (max-width: 768px) {
    ul.player-wrapper li .image-wrapper {
        margin-bottom: 20px;
    } 
}

ul.player-wrapper li .player-text {
    width: 70%;
    font-size: 13px;
}
@media screen and (max-width: 768px) {
    ul.player-wrapper li .player-text {
        width: 90%;
    }
}

ul.player-wrapper li .name {
    font-weight: bold;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.button_add_text {
    color: #E6002C;
    margin-bottom: -20px;
    text-align: center;
}