.policy{
    margin-block: 60px;
    background-color: var(--white);
    border-radius: 30px;
    padding: 32px 15px;
    width: calc(345%/ var(--width-sp)*100);
}
@media(min-width:768px){
    .policy{
        margin-block: 80px;
        border-radius: 40px;
        padding: 44px 36px;
        max-width: 1080px;
    }
}
.section{
    margin-bottom: 24px;
}
.section:last-child{
    margin-bottom: unset;
}
.policy__h2{
    letter-spacing: 0.1em;
    line-height: 1.2;
    padding-block: 12px;
    padding-inline: 36px 24px;
    border: 1px solid var(--text-color);
    border-radius: 12px;
    margin-bottom: 16px;
    position: relative;
}
@media(min-width:768px){
    .policy__h2{
        font-size: 20px;
        line-height: 1;
    }
}
.policy__h2::before{
    content: "";
    display: block;
    width: 4px;
    height: calc(100% - 24px);
    background-color: var(--text-color);
    position: absolute;
    top: 50%;
    left: 24px;
    translate: 0 -50%;
}
.policy__text{
    padding-inline: 12px;
    color: var(--sub-text-color);
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.policy__text:last-child{
    margin-bottom: unset;
}
.policy__text--keep p{
    word-break: keep-all;
    white-space: pre-wrap;
}

.policy__text p{
    margin-bottom: 8px;
}
.policy__text p:last-child{
    margin-bottom: unset;
}

.policy__h3{
    padding-left: 12px;
    margin-bottom: 8px;
    position: relative;
}
.policy__h3::before{
    content: "";
    display: block;
    width: 4px;
    height: 100%;
    border-radius: 1px;
    background-color: var(--yellow-icon);
    position: absolute;
    top: 0;
    left: 0;
}
.policy__ol{
    counter-reset: number 0;
}
.policy__li{
    margin-bottom: 8px;
    padding-left: 2em;
    position: relative;
}
.policy__li::before{
    counter-increment: number 1;
    display: block;
    content: counter(number) ".";
    color: var(--sub-text-color);
    position: absolute;
    top: 0;
    left: 0;
}
.policy__li:last-child{
    margin-bottom: unset;
}
.policy__li p{
    margin-bottom: unset;
}
.policy__h4{
    margin-bottom: 8px;
}
.policy__h4 + .policy__ol .policy__li{
    margin-bottom: 4px;
}
.policy__boss{
    text-align: right;
    width: fit-content;
    margin-left: auto;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: var(--sub-text-color);
    margin-bottom: 24px;
}
@media(min-width:768px){
    .section{
        margin-bottom: 36px;
    }
    .policy__h2{
        font-size: 20px;
    }
    .policy__text{
        font-size: 16px;
    }
    .policy__boss{
        font-size: 16px;
        margin-top: -4px;
        margin-bottom: 36px;
    }
}