body {
    background-size: cover;
}

@media (max-width:935px) {
    body {
        /* background-image: url('../img/general-bg-sp.webp'); */
        background-image: none;
    }
}

main {
    margin-top: 150px;
}

.privacy-policy-main-visual h1 {
    margin-top: 10%;
}

.privacy-policy-main-content h2 {
    text-align: center;
}

.privacy-policy-inner-content {
    padding-left: 30px;
}

.devider {
    width: 100%;
    border-bottom: 1px solid rgb(180, 180, 180);
    margin: 2.5% auto;
}

main .backlink-button-box {
    margin: 2% auto 7% auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

main .backlink-button {
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    padding: 16px 32px;
    line-height: 1.6em;
    width: 200px;
    color: white;
    font-size: 16px;
    border-radius: 10px;
    background-color: #F2728D;
    box-shadow: #f2728e35 0px 0px 20px;
}

main .backlink-button::after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(45deg);
}

main .backlink-button::before {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    transform: rotate(45deg) translate(130px, -130px);
}

main .backlink-button:hover {
    opacity: 0.9;
}

@media (max-width:768px) {
    .privacy-policy-main-visual h1 {
        margin-top: 25%;
    }
    .devider {
        margin: 15% auto;
    }
    .privacy-policy-inner-content {
        padding-left: 0px;
    }
    main .backlink-button-box {
        margin: 10% auto 2% auto;
    }
}


/* 関連記事 */