.privacy:nth-of-type(n + 2){
    margin-top: 100px;
}

.privacy__inner{
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding-top: 50px;
}

.privacy__text{
    font-weight: 400;
    font-size: 16px;
    line-height: 200%;
    letter-spacing: 0.01em;
    color: #1B1E49;
}

.privacy__text span{
    display: block;
    margin-top: 10px;

}

.privacy__list{
    margin-top: 20px;
    padding-left: 50px;
}

.privacy__list li{
    list-style: decimal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    padding: 0!important;
}

.privacy__list li::before{
    display: none;
}

.privacy__list li:nth-of-type(n + 2){
    margin-top: 10px;
}

.privacy__post{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #1B1E49;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: end;
    align-items: end;
    text-align: right;
    margin-top: 30px;
}

.privacy__items{
    list-style: none;
  counter-reset: number;
}

.privacy__items li{
    position: relative;
    padding-left: 40px;
}

.privacy__items li::before{
    counter-increment: number;
  content: '（' counter(number) '）';
  position: absolute;
  left: 0;
}

/* テーブルスタイル */
.privacy table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    font-family: inherit;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.privacy table th {
    background-color: #B81C22;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    padding: 15px 12px;
    text-align: center;
    border: 1px solid #B81C22;
    line-height: 1.4;
}

.privacy table td {
    padding: 15px 12px;
    border: 1px solid #ddd;
    vertical-align: top;
    line-height: 1.6;
}




.privacy table td ul {
    margin: 0;
    padding-left: 20px;
}

.privacy table td ul li {
    list-style-type: disc;
    margin: 8px 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
}

.privacy table td ul li::before {
    display: none;
}

.privacy__dotlist{
    padding-left: 40px;
}

.privacy__dotlist li{
    list-style: disc;
    padding: 0;
}

.privacy__i li{
    list-style: lower-roman;
}

.privacy__en li{
    list-style: lower-alpha;
}

.privacy__dotlist li::before{
    display: none;
}

/* .privacy__contact-inner{
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
} */

.privacy__contact{
    border: 1px solid #B81C22;
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.privacy__contact-item{
    display: flex;
    align-items: start;
}

.privacy__contact-label{
    width: 100px;
    position: relative;
}

.privacy__contact-label::before{
    content: ":";
    position: absolute;
    left: 70px;
    top: 0;
    width: 10px !important;
    height: 10px !important;
}

.privacy__i{
    padding-left: 40px;
    margin-top: 10px;
}

.privacy__en{
    padding-left: 20px;
    margin-top: 10px;
}

.privacy__box{
    border: 1px solid #B81C22;
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.privacy__box div{
    border-bottom: 1px solid #B81C22;
    padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
    .privacy:nth-of-type(n + 2){
        margin-top: 50px;
    }
    
    .privacy__inner{
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 30px 20px;
    }
    
    .privacy__text{
        font-weight: 400;
        font-size: 14px;
        line-height: 180%;
        letter-spacing: 0.01em;
        color: #1B1E49;
    }
    
    .privacy__text span{
        display: block;
        margin-top: 15px;
    }
    
    .privacy__list{
        margin-top: 20px;
        padding-left: 30px;
    }
    
    .privacy__list li{
        list-style: decimal;
        font-weight: 400;
        font-size: 14px;
        line-height: 1.6;
        letter-spacing: 0.01em;
        padding: 0!important;
    }
    
    .privacy__list li::before{
        display: none;
    }
    
    .privacy__list li:nth-of-type(n + 2){
        margin-top: 15px;
    }
    
    .privacy__post{
        font-weight: 400;
        font-size: 14px;
        line-height: 1.5;
        letter-spacing: 0.01em;
        color: #1B1E49;
        display: flex;
        flex-direction: column;
        gap: 15px;
        justify-content: end;
        align-items: end;
        text-align: right;
        margin-top: 30px;
    }
    
    .privacy__items{
        list-style: none;
        counter-reset: number;
        padding-left: 0;
    }
    
    .privacy__items li{
        position: relative;
        padding-left: 30px;
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 1.6;
    }
    
    .privacy__items li::before{
        counter-increment: number;
        content: '（' counter(number) '）';
        position: absolute;
        left: 0;
        top: 0;
    }
    
    /* テーブルスタイル - モバイル対応 */
    .privacy table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        font-size: 14px;
        line-height: 1.6;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        border: none;
    }
    
    .privacy table,
    .privacy table thead,
    .privacy table tbody,
    .privacy table th,
    .privacy table td,
    .privacy table tr {
        display: block;
    }
    
    .privacy table thead {
        display: none;
    }
    
    .privacy table tr:first-child {
        display: none;
    }
    
    .privacy table tr {
        border: none;
        background-color: #fff;
        margin-bottom: 15px;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        border-left: 4px solid #B81C22;
    }
    
    .privacy table tr:last-child {
        margin-bottom: 0;
    }
    
    .privacy table td {
        border: none;
        position: relative;
        padding: 8px 0;
        text-align: left;
        word-break: break-word;
        hyphens: auto;
    }
    
    .privacy table td:before {
        content: attr(data-label);
        display: block;
        font-weight: bold;
        color: #B81C22;
        font-size: 13px;
        margin-bottom: 5px;
        padding-bottom: 3px;
        border-bottom: 1px solid #eee;
    }
    
    .privacy table td:not(:last-child) {
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #f5f5f5;
    }
    
    .privacy table td ul {
        margin: 8px 0 0 0;
        padding-left: 18px;
    }
    
    .privacy table td ul li {
        list-style-type: disc;
        margin: 6px 0;
        padding: 0;
        font-size: 13px;
        line-height: 1.5;
        color: #333;
    }
    
    .privacy table td ul li::before {
        display: none;
    }
    
    /* テーブル内のテキストの改善 */
    .privacy table td p {
        margin: 0;
        line-height: 1.6;
    }
    
    .privacy table td br {
        display: block;
        margin: 3px 0;
        content: "";
    }
    
    .privacy__dotlist{
        padding-left: 25px;
        margin: 10px 0;
    }
    
    .privacy__dotlist li{
        list-style: disc;
        padding: 0;
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 1.6;
    }
    
    .privacy__i{
        padding-left: 25px;
        margin-top: 10px;
    }
    
    .privacy__i li{
        list-style: lower-roman;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 8px;
    }
    
    .privacy__en{
        padding-left: 20px;
        margin-top: 10px;
    }
    
    .privacy__en li{
        list-style: lower-alpha;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 8px;
    }
    
    .privacy__dotlist li::before{
        display: none;
    }
    
    .privacy__contact{
        border: 1px solid #B81C22;
        padding: 15px;
        margin: 20px 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .privacy__contact-item{
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .privacy__contact-label{
        width: 100%;
        position: relative;
        font-weight: bold;
        color: #B81C22;
        padding-bottom: 5px;
        border-bottom: 1px solid #eee;
    }
    
    .privacy__contact-label::before{
        display: none;
    }
    
    .privacy__contact-content{
        font-size: 14px;
        line-height: 1.6;
        padding-left: 0;
    }
    
    .privacy__contact-time{
        margin-bottom: 5px;
        font-size: 13px;
        color: #666;
    }
    
    .privacy__contact-info{
        font-size: 14px;
        font-weight: 500;
    }
    
    .privacy__contact-note{
        display: block;
        font-size: 12px;
        color: #666;
        margin-top: 5px;
    }
    
    .privacy__box{
        border: 1px solid #B81C22;
        padding: 15px;
        margin: 20px 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .privacy__box div{
        border-bottom: 1px solid #B81C22;
        padding-bottom: 10px;
        font-size: 14px;
        line-height: 1.6;
    }
    
    .privacy__box div:last-child{
        border-bottom: none;
        padding-bottom: 0;
    }
}