/*font読み込み*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*リセット*/
body{
    padding: 0;
    margin: 0;
    background-color: var(--background-color);
    height: 1000px;
    font-family: 'Poppins','Noto Sans JP', sans-serif;
}

/*カーソル選択*/
::selection {
    background-color: rgba(198, 239, 255, 0.623);
}


/*スクロールバー*/
::-webkit-scrollbar {
    width: 13px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: none;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

::-webkit-scrollbar-thumb {
    background: var(--bar-track);
    border-radius: 10px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bar-hover);
}

::-webkit-scrollbar-thumb:active {
    background: var(--bar-active);
}

/*カーソルを禁止マークに*/
.cursor_not-allowed{
    cursor: not-allowed;
}

/*========================================*/
/*button*/
/*========================================*/
/*1=======================================*/
/*<a title="" target="_blank" href=""><button class="button1"><i class=""></i>LINK</button></a>*/
.button1 {
    color: #1D9AF2;
    border: 2px solid #1D9AF2;
    background-color: #ffffff;
    border-radius: 100px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.5em;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: 0.5s;
    font-weight: 700;
    margin: 5px;
}

.button1 i {
    padding-right: 10px;
}

.button1:hover{
    background-color: #1D9AF2;
    color: white;
}

/*2=======================================*/
/*<a title="" target="_blank" href="" class="button2"><i class=""></i></a>*/
.button2{
    color: #fff;
    background-color: #2c2c2c79;
    font-size: 18px;
    transition: 0.5s;
    margin: 5px;
    padding: 5px;
    border-radius: 100%;
    text-decoration: none;
}

/*========================================*/
/*link*/
/*========================================*/

.text-link{
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--text-link-color);
    transition: .3s;
}
  
.text-link::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    content: '';
    width: 0;
    height: 2px;
    background-color: var(--text-link-color);
    transition: .3s;
    transform: translateX(-50%);
}
  
.text-link:hover::after{
    width: 100%;
}

/*========================================*/
/*header*/
/*========================================*/
.header{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 60px;
    border-radius: 0px 0px 10px 10px;
    background-color: var(--header_bg-color);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px;
}

.header img{
    width: 45px;
    height: 45px;
    margin-left: 30px;
}

.header .logo{
    display: flex;
    align-items: center;
}

.header .logo h1{
    color: var(--logo-color);
    font-size: 30px;
}

.header nav{
    display: flex;
    align-items: center;
    justify-content: right;
    margin: 0 0 0 auto;
    padding-right: 30px;
}

.header ul{
    padding: 0;
}

.header li{
    list-style: none;
    float: left;
    font-size: 20px;
}

.header .text{
    margin-left: 30px;
}

.header .sns{
    padding-left: 10px;
}

.header .text i{
    padding-right: 10px;
}

.header a{
    text-decoration: none;
    transition: 0.3s;
}

.header .text a{
    color: var(--header_text-color);
}

.header .x a{
    color: var(--SNS_X-color);
}

.header .youtube a{
    color: var(--SNS_YouTube-color);
}

.header .discord a{
    color: var(--SNS_Discord-color);
}

.header .sns a{
    padding: 5px 10px;
    border-radius: 100vh;
}

.header .sns a:hover{
    background-color: #0000001f;
}

.header .text a:hover{
    color: var(--header_hover-color);
}

@media screen and (max-width:850px) {
    .header .logo h1{
        font-size: 0;
        display: none;
    }
}

@media screen and (max-width:760px) {
    .header li{
        font-size: 15px;
        padding-left: 10px;
    }
    .header img{
        padding-left: 15px;
    }
    .header nav{
        padding-right: 15px;
    }
    .header li i{
        padding-right: 5px;
    }
    .header .sns{
        font-size: 0;
        display: none;
    }
}

@media screen and (max-width:550px) {
    .header span{
        font-size: 0;
        display: none;
    }
    .header .text{
        margin-left: 15px;
    }
}

/*========================================*/
/*footer*/
/*========================================*/
.footer{
    margin-top: 50px;
    padding: 5px 30px;
    border-radius: 10px 10px 0px 0px;
    background-color: #ffffff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.footer .logo{
    display: flex;
    align-items: center;
    font-weight: 600;
}

.footer .logo p{
    font-size: 30px;
    color: var(--logo-color);
    margin: 0;
}

.footer .logo img{
    width: auto;
    height: 30px;
}

.footer .copyright{
    font-size: 1.5em;
    border-top: #e5e7eb solid 1px;
    padding-top: 10px;
    margin-top: 40px;
}

.footer ul{
    margin: 0;
    padding-left: 0;
    list-style: none;
    font-size: 1.5em;
}

.footer li{
    float: left;
    padding-right: 10px;
}

.footer li a{
    text-decoration: none;
    color: #494949;
    transition: 0.3s;
}

.footer li a:hover{
    color: #7e76ec;
}

@media screen and (max-width:700px) {
    .footer .copyright{
        font-size: 3vw;
    }
    .footer ul{
        font-size: 3vw;
    }
}
