@charset "utf-8";
/*共通設定*/
.header {
    opacity: 0;
}

.terms-con {
    margin-bottom: 60px;
}

.terms-h2 {
    font-size: 20px;
    margin-bottom: 8px;
}

.num-title {
    font-size: 16px;
}

.terms-flex {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 4px;
    gap: 24px;
}

.terms-txt {
    width: 90%;
}

.txt-flex {
    display: flex;
    gap: 8px;
}
/*終わり*/  

/*<section class="terms-title">*/
.terms-title {
    background: #736969;
    text-align: center;
    padding: 50px 5vw;
}

.terms-h1 {
    font-size: 30px;
    color: #fff;
}

.terms-h1 span {
    display: block;
    font-size: 16px;
    font-weight: normal;
}
/*終わり*/ 

/*<section class="terms">*/

    /*<div class="terms-18">*/
.num-table {
    margin: 16px 0;
}

.b-square {
    margin: 16px 0 8px 0;
}

.terms-18-dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.terms-18-dl dt {
    width: 10%;
}

.terms-18-dl dd {
    width: 90%;
}

.terms-18-table {
    width: 100%;
    border: solid 1px #ddd;
    border-collapse: collapse;
    text-align: center;
}

.terms-18-table th,
.terms-18-table td {
    border: solid 1px #ddd;
}

.terms-18-table th {
    background-color: #FFF7E6;
    padding: 8px;
}

.terms-18-table .first-td {
    background-color: #FFF7E6;
    font-weight: 600;
}

.terms-18-table td {
    padding: 8px;
}

.x-scroll {
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/*スクロールバー非表示（Chrome・Safari）*/
.x-scroll::-webkit-scrollbar{
    display:none;
}
/*終わり*/ 


/*タブレット*/
@media (max-width: 1024px) {  
/*共通設定*/
/*終わり*/  
}    


/*スマホ*/
@media (max-width: 599px) {
/*共通設定*/
    .terms-h2 {
        font-size: 16px;
    }

    .terms-flex {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        width: 100%;
        gap: 8px;
    }
    
    .terms-flex .num {
        width: 30px;
    }

    .txt-flex {
        margin-top: 2px;
    }
/*終わり*/ 

/*<section class="terms">*/

    /*<div class="terms-05">*/
    .terms-05 .terms-flex {
        display: block;
    }

    .terms-05 .terms-txt {
        width: 100%;
    }

    /*<div class="terms-10">*/
    .terms-10 .terms-txt {
        width: 100%;
    }

    /*<div class="terms-11">*/
    .terms-11 .terms-txt {
        width: 100%;
    }

    /*<div class="terms-18">*/
    .terms-18-dl dt {
        width: 100%;
        font-weight: 600;
    }
    
    .terms-18-dl dd {
        width: 100%;
        margin-bottom: 16px;
    }

    .terms-18-table th,
    .terms-18-table td {
        font-size: 12px;
    }
        
    .x-scroll {
        overflow-x: auto; /* tableタグのはみ出た要素を隠す */
        white-space: nowrap; /* テキストの折り返しなし */
    }

    .terms-18-table {
        width: 140%; /* tableタグの親要素より広く */
    }

}    