@charset "utf-8";

#root{
    position: relative;
    max-width: 1024px;
    margin: 100px auto 0 auto;
}

.logo{
    width: 100%;
    padding-bottom: 20px;
    border-bottom:3px solid #2a1b3d;
    margin-bottom: 50px;
}

.logo > img{
    width:240px;
}

section{
    width:100%;
}

.article{
    width:100%;
}

.langBtn{
    position: absolute;
    top:30px;
    right:12px;
    font-size: 1.4rem;
    font-weight: 700;
}

h1{
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 35px;
}

p{
    width:100%;
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 10px;
    font-weight: 400;
}

ul{
    width:100%;
    padding: 35px 30px;
    background-color: #ebebeb;
    border-radius: 20px;
    margin: 30px auto;
}

ul > li{
    width:100%;
    margin-bottom: 30px;
    font-size: 1.6rem;
    line-height: 1.3;
}
ul > li:last-child{
    margin-bottom: 0;
}

#articleEn{
    display: none;
}




@media screen and (max-width: 375px){
    #root{
        max-width: auto;
        width:100%;
        margin: 50px auto;
        padding:0 15px;
    }
    .logo{
        width: 100%;
        padding-bottom: 20px;
        border-bottom:3px solid #2a1b3d;
        margin-bottom: 25px;
    }
    
    .logo > img{
        width:180px;
    }
    
    h1{
        font-size:2rem;
    }
    
    p{
        font-size: 1.2rem;
    }
    
    ul{
        
        padding: 15px;
        background-color: #ebebeb;
        margin: 30px auto;
    }
    
    ul > li{
        width:100%;
        margin-bottom: 30px;
        font-size: 1.2rem;
    }

}
