@charset "UTF-8";
/*==============================================================================
1.プライバシーポリシー
==============================================================================*/

/*============================================================================================================================================================
==============================================================================================================================================================

	1.プライバシーポリシー

==============================================================================================================================================================
============================================================================================================================================================*/
.policy-intro{
    margin-bottom: 40px;
}

.policy-wrap{
    display: flex;
    flex-direction: column;
    gap:  40px;

    & > li{
        counter-increment: num-counter;

        & h2{
            margin-bottom: 10px;
            padding-left: 40px;
            position: relative;
            font-weight: var(--weight-bold);
            font-size: 1.8rem;

            &::before{
                content: counter(num-counter);
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                position: absolute;
                inset: 4px 0 0;
                background: url(../1_img/page-policy/num.svg);
                color: var(--color-white);
                font-family: var(--font-en);
                font-weight: var(--weight-bold);
                font-size: 1.5rem;
                letter-spacing: 0;
            }
        }

        & .policy_text{
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
    }
}

/*==============================================================================

	footer PC

==============================================================================*/
@media all and (min-width: 769px) {
    .policy-intro{
        margin-bottom: 60px;
    }
}