html,body{
    scroll-behavior: smooth;
}

body{
    position: relative;
}

#back-top {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    color: #cc004a;
    box-shadow: 0 23px 26px rgba(231, 112, 153, 0.3019607843);
    height: 50px;
    width: 50px;
    background-color: white;
    font-size: 25px;
    z-index: 5;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    padding-bottom: 10px;
}

#back-top.scrolled {
    display: flex;
    bottom: 5rem;
}

.privacy-content {
    padding-bottom: 200px;
}

.main-container {
    width: 95vw;
}

.main-container .background {
    width: 1000px;
    aspect-ratio: 1/1;
    position: absolute;
    top: -70px;
    right: -10vw;
    z-index: 1;
    transform: rotateY(180deg);
}

@media screen and (max-width: 1440px) {
    .main-container .background {
        width: 800px;
        top: -2px;
    }
}

@media screen and (max-width: 1024px) {
    .main-container .background {
        width: 500px;
        top: 40px;
    }
}

@media screen and (max-width: 800px) {
    .main-container .background {
        display: none!important;
    }
}

.privacy-content h1 {
    margin-bottom: 34px;
    font-weight: 700;
    font-size: 46px;
    line-height: 1.3;
    letter-spacing: 0;
    vertical-align: middle;
}

.privacy-content h2 {
    margin: 34px 0 24px;
    font-size: 24px;
    line-height: 34px;
    color: #48453B;
}

.privacy-content h3 {
    margin: 20px 0 16px;
    font-size: 18px;
    line-height: 28px;
    color: #48453B;
    font-weight: bold;
}

.privacy-content h4 {
    margin: 20px 0 16px;
    font-size: 17px;
    line-height: 28px;
    color: #48453B;
    font-weight: bold;
}

@media screen and (max-width: 800px) {
    .privacy-content h1 {
        font-size: 36px;
    }

    .privacy-content h2 {
        margin: 24px 0 24px;
        font-size: 20px;
    }

    .privacy-content h3 {
        font-size: 17px;
    }
}

.privacy-content ol[type="a"] li,
.privacy-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    margin-bottom: 16px;
}

.privacy-content p strong {
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
}

.privacy-content a {
    color: #D50C51;
}

.privacy-content ol[type="a"] {
    list-style-type: lower-alpha;
    margin-left: 20px;
}


.privacy-content .update-date {
    margin-top: 40px;
}

.privacy-content .list-styled {
    list-style: decimal;
}

.privacy-content p .fake-link {
    color: #D50C51;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
    display: block;
    text-decoration: none;
    width: auto;
}

.privacy-content p .fake-link > span {
    text-decoration: underline;
}

.background-red {
    background: #D50C51;
    color: white;
}

.background-red-light {
    background: #E77098;
    color: white;
}

.privacy-content table {
    border-collapse: collapse;
    width: 100%;
    min-width: 900px;
}

.privacy-content .table {
    width: 100%;
    overflow: auto;
}

.privacy-content table tr {
    border: 1px solid #DEDEDE;
}

.privacy-content table tr td {
    padding: 20px 20px;
    line-height: 1.5;
    vertical-align: middle;
}


