/*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: rgb(198, 239, 255);
}


/*スクロールバー*/
::-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);
}

/*========================================*/
/*header*/
/*========================================*/
.header{
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    
    width: 100%;
    backdrop-filter: blur(5px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px;
}

.header img{
    width: 45px;
    height: 45px;
    padding: 10px;
    border-radius: 100vh;
}

.header .logo{
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.header .logo h1{
    color: var(--logo-color);
    font-size: 30px;
    margin: 10px 0;
}

.header nav{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: right;
    margin: 0 0 0 auto;
    padding-right: 30px;
}

.header ul{
    padding: 0;
    margin: 5px 0;
}

.header li{
    list-style: none;
    float: left;
    margin-left: 30px;
    font-size: 20px;
    display: flex;
}

.header li i{
    padding-right: 10px;
}

.header a{
    text-decoration: none;
    transition: 0.3s;
}

.header p{
    margin: 0;
}

.header .text a{
    color: var(--header_text-color);
}

.header .text a:hover{
    color: var(--header_hover-color);
}

.header .invite a{
    padding: 3px 10px;
    border-radius: 5px;
    background-color: rgb(0, 119, 255);
    color: #fff;
}

.header .invite a:hover{
    background-color: rgb(69, 156, 255);
    color: #fff;
}

@media screen and (max-width:745px) {
    .header li{
        font-size: 15px;
    }
    .header .logo h1{
        display: none;
    }
}

@media screen and (max-width:525px) {
    .header span{
        font-size: 0;
    }
}

/* HOME */
.home_top{
    background-repeat: no-repeat; /*背景画像あまりに繰り替えさない*/
    background-size: cover; /*背景画像サイズ*/
    background-position: center center; /*背景画像ポジション*/
    padding-bottom: 50px;
    color: #000000;
}

.home_top .in{
    padding: 10% 20%;
    display: flex;
    padding-bottom: 0;
}

.home_top .in div{
    margin: 30px auto;
    margin-bottom: 0;
}

.home_top .in .img img{
    width: 40em;
}

.home_top .in .text{
    margin: auto;
    padding: 20px;
    border-radius: 1em;
}

.home_top .in .text h1{
    font-size: 80px;
    margin: 0;
}
.home_top .in .text h2{
    font-size: 30px;
    margin: 0;
}

.home_top .in .text p{
    font-size: 1.5em;
    color: #6d6767;
    margin: 0;
}

.home_top .button{
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.home_top .button p{
    text-align: center;
    border-radius: 0.5em;
    font-size: 1.3em;
    margin: 10px 30px;
    padding: 20px 60px;
}

.home_top .button a{
    color: #ffffff;
    text-decoration: none;
}

.home_top .button p i{
    padding-right: 5px;
}

.home_top .button .invite{
    background-color: #6e95cf;
    transition: 0.5s;
}

.home_top .button .command{
    transition: 0.5s;
    border: #6e95cf solid 3px;
}

.home_top .button a .command{
    color: #6e95cf;
}

.home_top .button .invite:hover{
    background-color: #5660e4;
}
.home_top .button .command:hover{
    background-color: #e7d7d786;
}
