@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background-color: #D5C383; 
    color: #2D354D;

}

html {
    font-family: 'Zen Kaku Gothic New', sans-serif;

}

p{
    color: #D5C383;
    display: block;
}

a{
    color: #D5C383;
}

h1{
    color: #D5C383;
}

.BG{
     background-color: #2D354D; 
}

.T2{ 
    margin-left: 3%;
    width: 27.5px;
    height: 45px;
    max-width: 100%;
    max-height: 100%;
    left: 0;
    transition: .3s;
}

.T2:hover{
    transform: scale(1.05);
    transition: .3s;
}

.container {
    width: 100%;
    background-color: #2D354D;
    margin: 0 auto;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.wide{
    width: 1500px;
    margin: 0 auto;
}


.wrapper{
    height: 100%;
    min-height: 100vh;
    position: relative;
    padding-bottom: 171px;
    box-sizing: border-box;
}

/* ヘッダー */



.header {
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    position: fixed;
    box-shadow: 0 0 30px #0e0e0e;
}

.header_menu li {
    width: 120px;
    font-size: 16px;
    color: #D5C383;  
    text-align: center;
    border-left: 1px solid #B1B1B1;
}

.header_menu li:last-child{
    border-right: 1px solid #B1B1B1;
} 

.header_menu li a{
    position: relative;
    text-decoration: none;
}

.header_menu li a::after {
    content: "";
    position: absolute;
    top: 25px;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0%;

    background-color: #D5C383;
    transition: width 0.3s
}

.header_menu li.is--current a::after {
    width: 100%;
}

.header_menu li a:hover::after {
    width: 100%;
}

.to_creative {
    font-size: 16px;
    color: #D5C383;
    margin-right: 51px;
    transition: 0.2s;
}

.to_creative:hover{
    color: #FFF;
    transition: 0.2s;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding-bottom: 171px;
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    overflow: visible;
    
}

::-webkit-scrollbar {
    width: 0%;
  }

::-webkit-scrollbar-thumb{
    background-color: transparent;
}

::-webkit-scrollbar-track{
    background-color: transparent;
}



@media screen and (max-width: 720px){
    .header_menu li {
        display: none;
    }

    .to_creative{
        display: none;
    }

    .hide_mobile{
        display: block !important;
    }
}


@media screen and (max-width: 720px) {
    ::selection {
        background-color: initial;
        color: initial;
    }

    .T2:hover {
        transform: none;
    }

    .header_menu li a::after {
        width: 0 !important;
    }

    .header_menu li.is--current a::after,
    .header_menu li a:hover::after {
        width: 0 !important;
    }

    .visual_inner img:hover {
        transform: none;
        box-shadow: none;
    }

    .article-container:hover {
        transform: none;
        box-shadow: none;
    }

    .profile_pic a img:hover {
        transform: none;
    }

    .mailadress a:hover::after {
        width: 0;
        left: 50%;
    }

    .to_creative:hover{
        color: #D5C383;
        transition: 0.2s;
    }

    .BDGlogo img:hover{
        transform: none;
        transition: 0.2s;
    }
}


/* ハンバーガーメニュー */
#menu_btn_check{
    display: none;
}

.hide_mobile{
    display: none;
}

.menu_btn {
    z-index: 1001;
    position: relative;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    padding-right: 51px;
    
}
.menu_btn span,
.menu_btn span:before,
.menu_btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #D5C383;
    position: absolute;
    transition: 0.2s;
}

.menu_btn span:before {
    bottom: 8px;
}

.menu_btn span:after {
    top: 8px;
}

.menu_btn span{
    background-color: transparent;
}

#menu_btn_check:checked ~ .menu_btn span::before{
    bottom: 0;
    transform: rotate(45deg);
    transition: 0.2s;
}

#menu_btn_check:checked ~ .menu_btn span::after{
    top: 0;
    transform: rotate(-45deg);
    transition: 0.2s;
}

.menu_content{
    z-index: 900;
    width: 100%;
    height: 100%;
    top: 0;
    left: 100%;
    position: fixed;
    background-color: #2D354D;
    transition: all 0.5s;
    z-index: 80;
}

.menu_content ul{
    padding: 50px;
    color: #D5C383;
    font-size: 30px;
}


.menu_content ul li{
    border-bottom: solid 1px #B1B1B1;
    padding: 20px;
}

.menu_content_logo{
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    text-align: center;
} 

.menu_content_logo img{
    width: 30%;
    height: auto;

}

#menu_btn_check:checked ~ .menu_content {
    left: 0%;
}

.is--current_menu a{
    padding-left: 10px;
    border-left: solid 5px #D5C383;
    height: 20px;
}


/* ここからメイン */


/* index */
main{
    position: relative;
    margin-bottom: 171px;
    flex: 1;
}

.visual_inner{
    padding-top: 143px;
    text-align: center;
}

.visual_inner img {
    position: relative;
    margin: auto;    
    width: 100%;
    /* padding: 0px 50px; */
    /* max-width: 750px; */
    transition: 0.5s;
}

.visual_image {
    padding: 0px 50px;
}

.visual_inner img:hover{
    transform: scale(1.01);
    box-shadow: 0 0 25px #252525;
    transition: 0.5s;
    transition-timing-function: ease;
}

@media screen and (max-width: 720px){
    .visual_inner img:hover{
        transform: none;
        box-shadow: none;
        transition: 0.5s;
        transition-timing-function: ease;
    }
}

.News-size{
    max-width: 80%;
    max-height: 80%;
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 25px;
    margin: 0 auto;
}

/* ---------------------------------------------------------------------------------------------------------- */


.article{ 
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 4%; 
    width: 100%;
    height: 100%;
    max-width: 80%;
    max-height: 80%;
    margin: 0 auto; 
}

.article-container{
    background-color: #2D354D;
    max-width: 620px;
    height: auto;
    margin: auto;
    transition: 0.5s;
    box-shadow: 0 0 5px #252525;
}

.article-container:hover{
    transform: scale(1.01);
    box-shadow: 0 0 25px #252525;
    transition: 0.5s;
}


@media screen and (max-width: 720px){
    .article-container:hover{
        transform: none;
        box-shadow: none;
        transition: 0.5s;
    }
}

.article-container img{
    
    max-width: 100%;
    max-height: 100%;
    padding: 10px;
    padding-bottom: 5px;
    margin: 0 auto;
    position: relative;
    display: flex;
}

.article-date{
    font-size: 12px;
    color: #D5C383;
    padding-left: 10px;
    padding-right: 10px;
}

.explain{
    font-size: 15px;
    color: #D5C383;  
    padding: 10px;
    padding-top: 5px;
    padding-bottom: 15px;
}

.detail{
    text-align: right;
    padding-bottom: 15px;
    padding-right: 10px;
}

.detail a{
    font-size: 15px;
    color: #2D354D;  
    background:#D5C383;
    padding: 3px 20px 3px ;
    border-radius: 5px;
}

/* about */

.border_line{
    border-bottom:solid 1px #B1B1B1;
    width: 80%;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.about_T2 video{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 150px;
    width: 20%;
    height: 20%;
    margin: 0 auto;
    user-select: none;
}



.introduce_BDG{
    font-weight: bold;
    text-align: center;
    padding-top: 80px;
    font-size: 30px;
}

.introduce{
    text-align: center;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 20px;
    padding-top: 20px;
    width: 80%;
    font-size: 20px;
}

.BDGcreative_title{
    font-weight: bold;
    position: relative;
    font-size: 20px;
    text-align: center;
    width: 70%;
    margin: 0 auto;
    height: 0 auto;
    padding-top: 40px;
    padding-bottom: 20px;
}


.BDGcreative_explain{
    font-size: 20px;
    text-align: center;
    width: 70%;
    margin: 0 auto;
    height: 0 auto;
    padding-bottom: 70px;
}

.BDGesports_title{
    font-weight: bold;
    color: #D5C383;
    font-size: 20px;
    text-align: center;
    width: 70%;
    margin: 0 auto;
    height: 0 auto;
    padding-bottom: 20px;
}

.BDGesports_explain{
    font-size: 20px;
    text-align: center;
    width: 70%;
    margin: 0 auto;
    height: 0 auto;
    padding-bottom: 140px;
}

.esports_creative{
    width: 60%;
    height: 0 auto;
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 80px;
    user-select: none;
}

.mobile{
    display: none;
    padding-top: 150px;
    width: 7%;
    height: 7%;
    margin: 0 auto;
    user-select: none;
}


@media screen and (max-width: 720px){
    .esports_creative{
        width: 90%;
        height: 0 auto;
        margin: 0 auto;
        padding-top: 80px;
        padding-bottom: 80px;
        user-select: none;
    }

    .mobile{
        display: block;
    }

    .about_T2 video{
        display: none;
    }


}



/* メンバー */

.members_container{
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 6%; 
}

.members_title{
    font-size: 25px;
    font-weight: bold;
    padding-top: 150px;
    padding-bottom: 60px;
    text-align: center;
}

.members_list{
    padding-top: 50px;
    width: 70%;
    height: 0 auto;
    margin: 0 auto;
}

.member_card{
    padding: 10px;
}

.profile_pic a{
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile_pic a img{
    width: 100%;
    height: auto;
    max-width: 150px;
    max-height: auto;
    min-width: 100px;
    min-height: auto;
    transition: 0.3s;
    border-radius: 100%;
}

.profile_pic a img:hover{
    transform: scale(1.05);
    transition: 0.3s;
}

@media screen and (max-width: 720px){
    .profile_pic a img:hover{
        transform: none;
        transition: 0.3s;
    }

    .members_container{
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        gap: 6%; 
    }


}

@media screen and (max-width: 540px){
    .members_container{
        display: grid;
        grid-template-columns: repeat(2, 1fr); 
        gap: 6%; 
    }

}



.members_name{
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 5px;

}

.job{
    text-align: center;
    padding-bottom: 5px;
    opacity: 70%;
}

.sns_allign li{
    display: flex;
    text-align: center;
    justify-content: center;
}



.member_sns{
    padding: 5px;
    justify-content: center;
    text-align: center;
}

.member_sns a img{
    filter: invert(85%) sepia(28%) saturate(475%) hue-rotate(3deg) brightness(89%) contrast(89%);
    width: 15px;
    height: 15px;
    transition: 0.4s;
}

.member_sns a img:hover{
    filter: sepia(28%) saturate(475%) brightness(8900%) contrast(89%) invert(100%);
    transition: 0.4s;
}


/* コンタクト */

.contact_title{
    font-size: 25px;
    font-weight: bold;
    padding-top: 150px;
    padding-bottom: 60px;
    text-align: center;
}

.contact_esports_detail{
    text-align: center;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 40px;
    width: 80%;
    font-size: 15px;
}

.border_line_contact{
    margin: 0 auto;
    border-top: 1px solid #D5C383;
    padding-top: 60px;
    width: 70%;
}

.contact_creative_detail{
    text-align: center;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 40px;
    width: 80%;
    font-size: 15px;  
}

.mailadress_esports {
    color: #D5C383;
    text-align: center;
    font-weight: 200;
    font-size: 30px;
    margin: 0 auto; 
    padding-bottom: 60px;
}

.mailadress_esports a{
    position: relative;
    color: #D5C383;
    transition: 0.1s;
    font-weight: 600;
}

.mailadress_esports a::after {
    content: "";
    display: block;
    border-bottom: solid 2px #D5C383;
    width: 0;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transition: all 0.3s ease;
}

.mailadress_esports a:hover::after {
    width: 100%;
    left: 0;
}

.mailadress_creative {
    color: #D5C383;
    text-align: center;
    font-weight: 200;
    font-size: 30px;
    margin: 0 auto; 
    padding-bottom: 60px;
}

.mailadress_creative a{
    position: relative;
    color: #D5C383;
    transition: 0.1s;
    font-weight: 600;
}

.mailadress_creative a::after {
    content: "";
    display: block;
    border-bottom: solid 2px #D5C383;
    width: 0;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transition: all 0.3s ease;
}

.mailadress_creative a:hover::after {
    width: 100%;
    left: 0;
}

@media screen and (max-width: 720px){
    .mailadress_esports a:hover::after {
        width: 0%;
        left: 0;
    }

    .mailadress_esports {
        font-size: 20px;
        font-weight: 600;
    }

    .mailadress_creative a:hover::after {
        width: 0%;
        left: 0;
    }

    .mailadress_creative {
        font-size: 20px;
        font-weight: 600;
    }
    
}


/* ニュース */

    .news_article{ 
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        gap: 1%; 
        margin: 0;
        padding: 0 3%;
    }

    .news_article-container{
        background-color: #2D354D;
        max-width: 720px;
        height: auto;
        margin: auto;
        transition: 0.5s;
        box-shadow: 0 0 7px #252525;
        border-radius: 10px;
        overflow:  hidden;
    }


    @media screen and (max-width: 720px){
        .news_article{ 
            display: grid;
            grid-template-columns: repeat(2, 1fr); 
            gap: 1%; 
            margin: 0;
            padding: 0 3%;; 
        }
    }


    .news_article-container img{
        max-width: 100%;
        max-height: 100%;
        padding: 2px;
        padding-bottom: 5px;
        margin: 0 auto;
        position: relative;
        display: flex;
        transition: 0.4s;
    }
    
    .news_article-date{
        font-size: 12px;
        color: #D5C383;
        padding-top: 5px;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .news_explain{
        font-size: 15px;
        color: #D5C383;  
        padding: 10px;
        padding-top: 10px;
        padding-bottom: 25px;
    }
    
    .news_article-container:hover{
        box-shadow: 0 0 25px #252525;
        transition: 0.5s;
    }





    .News_title{
        font-size: 25px;
        font-weight: bold;
        padding-top: 150px;
        padding-bottom: 60px;
        text-align: center;
    }

    .inprogress{
        text-align: center;
    }

    .news_container{
        /* margin: auto; */
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
        padding: 50px 0px;
    }

    .embed_aspect_ratio{
        width: 100%;
        aspect-ratio: 16/9;
    }

    .video_credit{
        padding: 10px 0;
    }

    @media screen and (max-width: 850px){
        .news_container{
            padding: 50px 25px 0px 25px;
        }
        .visual_image {
            padding: 0px 25px;
        }
    }






    .date_text p{
        font-size: 15px;
        display: flex;
        justify-content: left;
    }

    .Share_button_bar{
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 auto;
        width: 100%;
        padding: 15px;
        /* display: flex;
        justify-content: right; */
        /* align-items: center; */
    }

    .Share_buttons{
        display: flex;
        align-items: center;
        justify-content: right;
    }

    .Share_text{
        padding: 0px 0px 0px 10px;
    }

    .Share_button_bar h1{
        margin: 0; 
        padding: 5px 0; 
    }

    .Share_button_bar a img{
        margin: 0 auto;
        padding: 0 auto;
        text-align:center;
        filter: invert(85%) sepia(28%) saturate(475%) hue-rotate(3deg) brightness(89%) contrast(89%);
        width: 15px;
        height: 15px;
        transition: 0.3s;
    }

    .Share_button_bar a img:hover{
        filter: sepia(28%) saturate(475%) brightness(890%) contrast(89%) invert(100%);
        transition: 0.3s;
    }

    .news_border_line{
        margin: 0 auto;
        /* padding-top: 10px;
        padding-bottom: 10px; */
        width: 100%;
        border-top: 1px solid #D5C383;
    }   

    .News_main_title{
        padding: 15px;
        padding-top: 50px;
        font-size: 25px;
        font-weight: bold;
        text-align: center;
    }

    .News_content{
        text-align: center;
        font-size: 17px;
        margin: 0 auto;
        width: 100%;
        padding: 15px;
        color: #D5C383;
        transition: 0.3s;
        user-select:none;
    }

    .News_content a{
        border-bottom: 1px solid #D5C383;
    }

    .News_content a:hover{
        color: white;
        transition: 0.3s;
    }

    .next_previous{
        font-size: 40px;
        color: #D5C383;
        margin: 0 auto;
        width: 100%;
        padding-top: 100px;
        display: flex;
        justify-content: space-between;
    }
    
    .next_previous a{
        text-align: center;
        transition: 0.3s;
    }

    .next_previous a:hover{
        color: white;
        transition: 0.3s;
        transform: scale(1.1);

    }

/* フッター */

.footer_container {
    position: absolute;
    text-align: center;
    bottom: 0;
    width: 100%;
    height: 151px;
    background-color: #2D354D;
    box-shadow: 0 0 30px #0e0e0e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer_text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 5%;
    box-sizing: border-box;
}

.footer_menu, .credit {
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none; 
}

.footer_menu li, .credit li {
    margin: 0;
    padding: 0;
}

.BDGlogo img {
    max-height: 50px;
}




.footer_menu{
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer_menu li{
    position: relative;
    text-align: center;
    font-size: 16px;
    color: #D5C383;
    display: inline-block;
    transition: 0.3s;
}


.footer_menu li:hover{
    color: #FFF;
    transition: 0.3s;
}

@media screen and (max-width: 720px){
    .footer_menu li:hover{
        color: #D5C383;
        transition: 0.3s;
    }
}


.footer_menu li:not(:last-child)::after {
    content: '';
    display: block;
    position: absolute;
    right: -10px;
    top: 0;
    height: 100%;
    border-right: 1px solid #B1B1B1;
}

.footer_menu li a{
    display: block;
    margin: 0 ;
    padding: 0;
}


.credit li {
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    color: #D5C383;
    display: inline-block;
}

.credit li a{
    display: block;
}

.footer_text li a{
    padding: 0 20px;
}


.BDGlogo a{
    display: block;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.BDGlogo img{
    width: 211.38px;
    height: 51.92px;
    margin: 0 auto;
    transition: 0.2s;
}

@media screen and (max-width: 720px){
    .BDGlogo img{
        display: none;
    }

    .footer_container{
        height: 101px;
    }


    .credit{
        text-align: center;
        padding-right: 40px;
        margin: auto;
    }

    .credit li {
        width: 100%;
        margin: auto;
        padding: 5px;
    }

    .footer_menu {
        padding-left: 40px;
        margin: 0 auto;
        padding: 0 auto;
    }

    .footer_menu li {
        width: 100%;
        border-right: none;
        margin-bottom: 10px;
        margin: auto;
        padding: 5px;
    }
    
    .footer_text {
        padding: 0 0.5%;
    }

}


/* 祝★１２００行目 */