body::before{
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent), url(../images/policy/header.webp);
}
#first-view{
    height: 100vh;
    height: 100dvh;
}
article{
    scroll-snap-type: y mandatory;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    overflow-x: hidden;
}
.link-btn{
    border: solid 1px rgb(255, 255, 255);
    position: relative;
    font-weight: 300;
    padding: 10px 20px;
    color: rgb(255, 255, 255);
    letter-spacing: 0.5em;
    width: 300px;
    display: block;
}
.link-btn::before{
    content: "";
    background: rgb(255, 255, 255);
    width: 30px;
    height: 1px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: -15px;
}
.link-btn:hover{
    background: rgb(100, 100, 100);
}
#first-view h1{
    white-space: nowrap;
}
/*--------------------------------------------
max-width 810
--------------------------------------------*/
@media (max-width: 810px) {
    .link-btn{
        width: 200px;
        font-size: 0.8rem;
    }
}



/*--------------------------------------------

policy

--------------------------------------------*/
#policy {
    background: linear-gradient(rgba(0, 0, 0, 0) ,rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 50px;
    padding: calc(5% + 60px) 5%;
    min-height: 100vh;
    min-height: 100dvh;
    height: fit-content;
}
#policy > div, #policy > p{
    max-width: 1200px;
    width: 80%;
}
#policy > p{
    text-align: center;
    line-height: 1.8em;
}
#policy h2{
    text-align: center;
    border-top: solid 1px rgb(255, 255, 255);
    border-bottom: solid 1px rgb(255, 255, 255);
    padding: 20px 0;
    margin-bottom: 30px;
}
#policy div > p{
    line-height: 1.8em;
}
#policy ol{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
#policy ol p{
    font-size: 1.2rem;
    padding-bottom: 10px;
}
#policy ol li::marker{
    font-size: 1.2rem;
}


/*--------------------------------------------
max-width 810
--------------------------------------------*/
@media (max-width: 810px) {
    #policy > div, #policy > p{
        width: 100%;
    }
    #policy ol p{
        font-size: 1rem;
    }
}
