@charset "utf-8";

/* 全体設定 */

*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    font-family: sans-serif;
    font-weight: bold;

}

body {
    line-height: 1;
    max-width: 1920px;
    font-family: sans-serif;
}

img {
    max-width: 100%;
}

/* main共通設定 */

main {
    max-width: 1920px;
}

h2 {
    font-family: "Orbitron", sans-serif;
    color: #0a2b7e;
    font-weight: 900;
    font-size: 90px;
    width: 80%;
    text-align: left;
    margin: 0 auto;
}

h3 {
    font-family: "Orbitron", sans-serif;
    color: #0a2b7e;
    font-weight: 800;
    font-size: 40px;
    text-align: center;

}

.title {
    display: flex;
    overflow: hidden;
}

.title span {
    display: block;
    transform: translate(0, 105%);
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.title.-visible span {
    transform: translate(0, 0);
}

.title span:nth-child(2) {
    transition-delay: 0.06s;
}

.title span:nth-child(3) {
    transition-delay: 0.12s;
}

.title span:nth-child(4) {
    transition-delay: 0.18s;
}

.title span:nth-child(5) {
    transition-delay: 0.24s;
}

.title span:nth-child(6) {
    transition-delay: 0.30s;
}

.title span:nth-child(7) {
    transition-delay: 0.36s;
}


/* header */

header {
    position: relative;
}

.header-inner {
    position: fixed;
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 10;
    padding: 10px 0;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

.header-inner.headerColorScroll {
    background-color: #000000ab;
}

h1 {
    padding-left: 30px;
}

h1 img {
    width: 40px;
}

.toggle-menu-button {
    display: none;
}

nav {
    display: flex;
}

nav ul {
    display: flex;
}

nav .menu {
    padding: 0 10px;
}

nav .menu li {
    padding: 0 30px;
    align-content: center;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

nav .menu li a {
    font-family: "Orbitron", serif;
    color: #d3b962;
    text-shadow: #525252 1px 1px 1px;

}

nav .menu li:hover {
    transform: scale(1.1);
}

nav .sns-menu {
    padding-right: 30px;
}

nav .sns-menu li {
    padding: 0 15px;
    align-content: center;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

nav .sns-menu li:hover {
    transform: scale(1.05);
}

nav .sns-menu li a img {
    filter: drop-shadow(1px 1px 1px #525252);
}

.video_wrap {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.video_wrap #video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.video_wrap #video.sp_mov {
    max-height: 100%;
}

@media screen and (max-width: 1280px) {
    .video_wrap {
        height: 64.25vw;
    }
}

@media screen and (max-width: 768px) {
    .video_wrap {
        height: 100vh;
    }
}

@media screen and (max-width: 413px) {
    .video_wrap #video.sp_mov {
        max-height: 111%;
    }
}

/* sponsors */

.sponsors {
    margin-top: 100px;
}

.sponsors-title {
    text-align: center;
    color: #d2d2d2;
    font-size: 30px;
}

.sponsors ul {
    display: flex;
    justify-content: space-around;
    width: 80%;
    margin: 0 auto;
    padding-top: 30px;
}

.sponsors li {
    text-align: center;
}

.sponsors li a img {
    width: 90%;
}


/* about */

.about {
    margin-top: 200px;
}

.about .about-area {
    background-color: #0a2b7e;
    text-align: center;
    padding: 100px 0;
}

.about .about-area p {
    color: #fff;
    line-height: 2;
    font-weight: bold;
}

.about .about-area img {
    width: 50%;
    padding: 50px 0;
}

.bijoux {
    opacity: 0;
    visibility: hidden;
    transition: all 2.5s;
}

.bijoux.is-active {
    opacity: 1;
    visibility: visible;
}

.about .about-area .about-bijoux .year {
    color: #d3b962;
    font-family: "Orbitron", serif;
    font-size: 40px;
    line-height: 1;
}

.about .about-area .about-bijoux {
    width: 55%;
    margin: 0 auto;
    background-image: url(./img/line.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.about .about-area .about-bijoux .bijoux1 {
    text-align: left;
}

.about .about-area .about-bijoux .bijoux2 {
    text-align: right;
}

.about .about-area .about-bijoux .bijoux2 img {
    width: 200px;
    padding: 10px 0 0 10px;
}

.about .about-area .about-bijoux .bijoux3 {
    text-align: left;

}

.bijoux1,
.bijoux2,
.bijoux3 {
    opacity: 0;
    visibility: hidden;
    transition: all 2.5s;
}

.bijoux1.is-active {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.06s;

}

.bijoux2.is-active {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.6s;

}

.bijoux3.is-active {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.8s;

}

/* uniform */

.uniform {
    background-image: url(./img/back.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
}

.uniform .uniform-area {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 0 auto;
}

.uniform .uniform-area h2 {
    order: 2;
    text-align: center;
    font-size: 80px;
    line-height: 1.2;
}

.uniform .uniform-area img {
    width: 100%;
    animation: ani02 2s infinite;
    padding: 0 10px;
}

.home p,
.away p {
    text-align: center;
    font-family: "Orbitron", serif;
    color: #0a2b7e;
    font-weight: bold;
    font-size: 30px;
    padding-top: 10px;
}

@keyframes ani02 {


    0% {

        transform: translateY(0);
    }


    50% {

        transform: translateY(-4%);
    }


    100% {

        transform: translateY(0);
    }


}

.uniform .uniform-area .home {
    order: 1;
}

.uniform .uniform-area .away {
    order: 3;
}

/* news */
.news {
    margin-top: 200px;
}

.news a {
    width: 80%;
    display: flex;
    background-color: #f5f5f5;
    margin: 20px auto;
    border-radius: 20px;
    color: #0a2b7e;
    position: relative;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    align-items: center;
    padding: 30px 0;

}

.news a:hover {
    background-color: #696969;
    color: #fff;
}


.news a:before {
    content: '';
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
}

.news a:after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 26px;
    bottom: 0;
    margin: auto;
}


.news .release {
    font-family: "Orbitron", sans-serif;
    font-size: 20px;
    width: 200px;
    text-align: center;

}


.news .news-text {
    line-height: 3;
}


/* special */

.special {
    margin-top: 200px;
}

.special .youtube {
    display: flex;
    flex-direction: row-reverse;
    width: 80%;
    margin: 0 auto;
    justify-content: center;
}

.special .youtube .youtube-text {
    align-content: center;
    width: 50%;
    aspect-ratio: 1/1;
    border: #0a2b7e solid 3px;

}

.special .youtube .youtube-area {
    background-color: #0a2b7e;
    width: 50%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.special .youtube .youtube-area iframe {
    width: 80%;
    height: 80%;
}

.special .instagram {
    display: flex;
    width: 80%;
    margin: 0 auto;
    justify-content: center;
}

.special .instagram .instagram-text {
    align-content: center;
    width: 50%;
    aspect-ratio: 1/1;
    border: #0a2b7e solid 3px;
}

.special .instagram .instagram-area {
    background-color: #0a2b7e;
    width: 50%;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

.special p {
    text-align: center;
    color: #0a2b7e;
    line-height: 1.5;
    padding-top: 30px;
}

/* slider */

.slider {
    width: 100%;
    margin: 0 auto;
    margin-top: 100px;
}

/* bunner */
.bunner {
    margin-top: 200px;
    text-align: center;
}

.bunner img {
    width: 50%;
}



/* footer */

footer {
    background-color: #d3b962;
    margin-top: 200px;
    padding: 50px 0;
}

footer ul {
    display: flex;
    justify-content: space-around;
    width: 80%;
    margin: 0 auto;
    align-items: center;
}

footer ul li {
    text-align: center;
}

footer ul li a img {
    width: 60%;
}

footer p {
    color: #fff;
    text-align: center;
    padding-top: 50px;
}

/* team page */
.header-img {
    background-image: url(./img/header.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
    align-content: center;
}

.header-img .team-title {
    color: #fff;
}

.member-area {
    width: 80%;
    margin: 0 auto;
    margin-top: 100px;
}

.member-area h3 {
    text-align: left;
    padding: 10px 0 10px 30px;
}

.member-area .position {
    color: #0a2b7e;
    background-color: #d3b962;
}

.member-area .position2 {
    color: #d3b962;
    background-color: #0a2b7e;
}

.gk,
.df,
.md,
.fw {
    padding-bottom: 50px;
}

.gk-member,
.df-member {
    display: flex;
    justify-content: flex-start;
    padding: 50px 0 80px 0;
}

.md-member,
.fw-member {
    display: grid;
    justify-content: flex-start;
    padding: 50px 0 80px 0;
    grid-template-columns: repeat(4, 1fr);
    row-gap:70px
}


.member {
    text-align: center;
    padding: 0 30px;
}

.member img {
    width: 70%;
}

.member p {
    text-align: center;
    color: #0a2b7e;
    font-weight: bold;
    padding-top: 30px;
    font-size: 20px;
    position: relative;
}

.member p::after {
    content: '';
    width: 200px;
    height: 30px;
    border-bottom: solid 3px;
    border-right: solid 3px;
    transform: skew(30deg);
    position: absolute;
    color: #d3b962;
    left: 10%;
}

/* match page */

.match-area {
    margin-top: 100px;
}

.match-area .tab-area {
    display: flex;
    justify-content: space-around;
    width: 50%;
    margin: 0 auto;
}

.tab {
    color: #d3b962;
    font-family: "Orbitron", sans-serif;
    border: #d3b962 solid 3px;
    font-size: 36px;
    font-weight: 900;
    padding: 10px;
    cursor: pointer;
    text-align: center;

}

.tab:nth-child(2) {
    color: #0a2b7e;
    border: solid #0a2b7e 3px;
}

.tab.open {
    background-color: #d3b962;
    color: #fff;
}

.tab.open:nth-child(2) {
    background-color: #0a2b7e;
    color: #fff;
}

.content-area {
    background-color: #0a2b7e;
    margin-top: 100px;
    padding: 100px 0;
}

.content {
    display: none;
}


.content.is-show {
    display: block;
}

.game {
    display: flex;
    font-family: "Orbitron", sans-serif;
    color: #d3b962;
    font-weight: 900;
    border: #d3b962 solid 1px;
    width: 80%;
    margin: 0 auto 30px;
    padding: 30px 50px;
    align-items: center;
    justify-content: space-around;
}

.game .game-text {
    width: 15%;
}

.game .day {
    font-size: 40px;
    align-items: baseline;
}

.game .day p:nth-child(2) {
    font-size: 26px;
}

.game .place {
    padding-top: 20px;
}

.game .time p {
    font-size: 24px;
    padding-top: 5px;
}

.game span {
    width: 20px;
    height: 1px;
    background-color: #fff;
}

.game .vs {
    display: flex;
    width: 30%;
}

.game .vs p {
    font-size: 26px;
}

.game .vs p:nth-child(2) {
    padding-left: 10px;
}

.game .h-a {
    background-color: #d3b962;
    color: #fff;
    padding: 10px;
}

.game .myscore {
    font-size: 40px;
}

/* contact page */

.contact-area {
    width: 90%;
    margin: 100px auto 0;
}

@media (max-width: 1000px) {

    h2 {
        font-size: 80px;
    }

    .uniform .uniform-area h2 {
        font-size: 60px;
    }

    .about .about-area .about-bijoux {
        width: 70%;
    }

    .bunner img {
        width: 60%;
    }

}

@media (max-width: 800px) {

    h1 {
        padding-left: 15px;
    }

    .toggle-menu-button {
        display: block;
        width: 60px;
        height: 60px;
        border: none;
        border-radius: 0;
        outline: 0;
        z-index: 10;
        cursor: pointer;
        background-color: transparent;
    }

    .toggle-menu-button span {
        display: block;
        width: 45px;
        height: 5px;
        background-color: #d3b962;
        position: relative;
        box-shadow: #525252 1px 1px 1px;

    }

    .toggle-menu-button span::before {
        content: "";
        display: block;
        width: 45px;
        height: 5px;
        background-color: #d3b962;
        position: absolute;
        top: -12px;
        transition-duration: 0.5s;
        box-shadow: #525252 1px 1px 1px;

    }

    .toggle-menu-button span::after {
        content: "MENU";
        display: block;
        color: #d3b962;
        position: absolute;
        font-weight: bold;
        top: 12px;
        left: 3px;
        transition-duration: 0.5s;
        text-shadow: #525252 1px 1px 1px;

    }

    .toggle-menu-button.is-show span {
        top: 0;
        transform: rotate(-45deg);
        transition-duration: 0.5s;
    }

    .toggle-menu-button.is-show span::before {
        top: 0;
        transform: rotate(90deg);
        transition-duration: 0.5s;
    }

    .toggle-menu-button.is-show span::after {
        display: none;
    }

    nav {
        position: absolute;
        top: -400%;
        text-align: center;
        z-index: 5;
        justify-content: center;
        display: block;
    }

    nav.is-show {
        transition-duration: 0.8s;
        background-color: #000;
        top: 0%;
        left: 0;
        width: 100%;
        padding: 30px 0;
    }

    nav ul {
        display: block;
    }

    nav .menu {
        padding: 0 0 10px 0;
    }

    nav .menu li {
        padding: 10px 0;
    }

    nav .sns-menu {
        padding-right: 0px;
    }

    nav .sns-menu li {
        padding: 10px 0;
    }

    nav .menu li a {
        font-size: 22px;
    }

    .sponsors ul {
        width: 100%;
    }

    .sponsors li a img {
        width: 80%;
    }

    h2 {
        width: 90%;
    }

    .about .about-area img {
        width: 80%;
    }

    .about .about-area p {
        width: 90%;
        margin: 0 auto;
        font-size: 14px;
    }

    .about .about-area .about-bijoux {
        width: 90%;
    }

    .about .about-area .about-bijoux .year {
        font-size: 30px;
    }

    .uniform {
        padding: 60px 0;
        background-position: center;
    }

    .uniform .uniform-area {
        display: block;
        width: 100%;
    }

    .uniform .uniform-area h2 {
        margin-bottom: 30px;
    }

    .uniform .uniform-area .home {
        padding: 30px 0;
        text-align: center;
    }

    .uniform .uniform-area .away {
        padding: 30px 0;
        text-align: center;
    }

    .uniform .uniform-area img {
        width: 40%;
        padding: 0;
    }

    .news a {
        width: 90%;
    }

    .news .news-text {
        width: 50%;
    }

    .special .youtube {
        display: block;
        width: 90%;

    }

    .special .youtube .youtube-text {
        margin: 0 auto;
        width: 100%;
    }

    .special .youtube .youtube-area {
        margin: 0 auto;
        width: 100%;

    }

    .special .instagram {
        display: block;
        width: 90%;

    }

    .special .instagram .instagram-text {
        margin: 0 auto;
        width: 100%;

    }

    .special .instagram .instagram-area {
        margin: 0 auto;
        width: 100%;

    }

    h3 {
        font-size: 30px;
    }

    .bunner img {
        width: 90%;
    }

    footer ul {
        width: 100%;
    }

    .gk-member,
    .df-member,
    .md-member,
    .fw-member {
        display: block;
    }

    .member {
        text-align: center;
        padding: 0 0 50px 0;
    }

    .member img {
        width: 40%;
    }

    .member p::after {
        left: 33%;
    }

    .match-area .tab-area {
        display: block;
        width: 70%;
    }

    .tab {
        margin: 10px auto;
    }

    .game {
        width: 90%;
        padding: 30px;
    }

}

@media (max-width: 500px) {
    h2 {
        font-size: 60px;
    }

    .about .about-area .about-bijoux .bijoux1 {
        width: 40%;
        margin: 0 auto 0 0;
    }

    .about .about-area .about-bijoux .bijoux2 {
        width: 40%;
        margin: 0 20px 0 auto;
    }


    .about .about-area .about-bijoux .bijoux3 {
        width: 40%;
        margin: 0 auto 0 0;

    }

    .about {
        margin-top: 100px;
    }

    .news {
        margin-top: 100px;
    }

    .news a {
        display: block;
        padding: 30px;
    }

    .news .news-text {
        width: 100%;
        line-height: 2;
    }

    .news .release {
        text-align: left;
        line-height: 1.5;
    }

    .news a:before {
        display: none;
    }

    .news a:after {
        display: none;
    }

    .special {
        margin-top: 100px;
    }

    h3 {
        font-size: 40px;
    }

    .bunner {
        margin-top: 100px;
    }

    .bunner img {
        width: 100%;
    }

    footer {
        margin-top: 100px;
    }

    .member p::after {
        left: 18%;
    }

    .gk-member,
    .df-member,
    .md-member,
    .fw-member {
        padding: 50px 0 0 0;
    }

    .game {
        display: block;
    }

    .game .day {
        display: flex;
    }

    .game .game-text {
        width: 100%;
    }

    .game .vs {
        display: block;
        width: 100%;
    }

    .game img {
        display: none;
    }

    .game .place {
        padding: 20px 0;
    }

    .game .myscore {
        padding-bottom: 20px;
    }

    .game .vs p:nth-child(2) {
        padding-left: 0px;
        padding-bottom: 20px;
    }
}