.table-container {
    margin: 20px 0;
    width: 85%;
    float: left;
    border-collapse: collapse;
}

.table-container table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

.table-container th, .table-container td {
    padding: 25px 0px 25px 0px;
    text-align: left;
    vertical-align: top;
    position: relative; /* 擬似要素のために必要 */
    background-color: #fff; /* 背景を白に */
    border-bottom: none; /* 下線を消す */
    line-height: 1.5em;
}

.table-container tr {
    position: relative; /* 擬似要素を相対位置に配置 */
    vertical-align: middle;
}

.table-container tr::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px; /* 線の太さ */
    background: linear-gradient(to right, #130A3F, #433EFD, #0DC1EC); /* グラデーション */
    opacity: 0.5;
}

.table-container th {
    background-color: #fff;
    font-weight: normal;
    font-size: 20px;
    white-space: nowrap;
    width: 13%;
    vertical-align: middle;
}

.table-container tr:last-child::after {
    font-size: 20px;
    font-weight: normal;
}

.table-container td {
    font-size: 20px;
}

/* フッター */
.footer-mobile{
    display: none;
}
.footer-wrapper {
    background-size: cover;
    margin: auto;
    background-color: #FFFFFF;
    height: 400px;
    display: flex;
    align-items: center; /* 縦方向の中央揃え */
    justify-content: center; /* 横方向の中央揃え */
    clear: both;
    max-width: 1440px;
}

.footer-pc {
    width: 100%; /* フッター全体の幅を100%に広げる */
}

.footer-container {
    max-width: 1440px; /* コンテンツ幅を1080pxに制限 */
    width: 100%;
    padding: 0px 90px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.footer-logo {
    margin-top: 20px;
    margin-bottom: 40px;
}

.footer-nav {
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px;
}

.footer-nav ul li {
    margin: 0;
}

.footer-nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: normal;
    font-size: 20px;
}

.footer-copy {
    color: #666;
    font-size: 20px;
    margin-top: 10px;
}

/* プライバシーポリシー */
.privacy-policy-container{
    padding: 40px 100px;
    line-height: 1.5;
}

.privacy-policy-container h3{
    padding-top: 30px;
}
.privacy-policy-container ol{
    padding-left: 1.5em;
}
.list_num li{
    display: list-item;    
    list-style: decimal;
}
.list_alphabet li{
    display: list-item;
    list-style-type: lower-alpha;
}
.list-i li{
    display: list-item;
    list-style-type: lower-roman;
}

@media screen and (max-width:1000px) {
    .privacy-policy-container{
        padding: 10px 10px;
        line-height: 1.5;
    }
}
@media screen and (max-width:650px){
    .privacy-policy-text{
        margin-top: 10px;
        font-size: 12px;
        color: #1A1F4A;
        text-align: left;
        line-height: 1.5;
    }
        /* フッター
    --------------------------- */
    .footer-pc{
        display: none;
    }
    .footer-mobile{
        display: initial;
    }
    .footer-wrapper{
        width: 95%;
        height: 300px;
        text-align: left;
        justify-content: flex-start;
    }
    .footer-container{
        padding: 20px 10px;
        display: flex;
        flex-wrap: wrap;
        /* justify-content: space-between; */
        margin: 0 auto;
        color:#1D2249;
        width: 100%;
    }
    .footer-logo{
        width: 100px;
        height: 30px;
    }
    .footer-list{
        max-width: 100%;
    }
    .footer-bold{
        font-weight: bold;
    }
    .footer-list li{
        padding: 0 0 20px 0;
    }
    .footer-list li a{
        color: #000000;
    }


    .table-container {
        margin: 10px 0;
        width: 100%;
        float: left;
        border-collapse: collapse;
    }
    .table-container th, .table-container td {
        padding: 10px 5px;
        text-align: left;
        vertical-align: top;
        position: relative; /* 擬似要素のために必要 */
        background-color: #fff; /* 背景を白に */
        border-bottom: none; /* 下線を消す */
    }
    .table-container th {
        background-color: #fff;
        font-weight: normal;
        font-size: 14px;
        white-space: nowrap;
        vertical-align: middle;
    }
    
    .table-container tr:last-child::after {
        font-size: 14px;
        font-weight: normal;
    }
    .table-container td {
        font-size: 14px;
    }
}
