@charset "UTF-8";
/* CSS Document */

/*==================
common
====================*/
.top1em {
    margin-top: 1em;
}

.sec_02 h3 {
    margin-top: 60px;
}

@media (max-width: 768px) {
    .sec_02 h3 {
        margin-top: 40px;
    }
    section h3:nth-of-type(n + 2) {
        margin-top: 40px;
    }
}


/*==================
sec_03
====================*/
.sec_03 h4 {
    margin-top: 40px;
}

.sec_03 .table_wrapper {
    padding: 12px 20px;
}
.sec_03 .table_wrapper:nth-of-type(n + 2) {
    margin-top: 6px;
}
.sec_03 .table_wrapper h5 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--BL-color);
}

/*テーブル*/
.sec_03 .table_wrapper table {
    max-width: 730px;
    margin-top: 8px;
}
.sec_03 .table_wrapper table th {
    border: 1px solid #D5D5D5;
    padding: 8px 20px 9px;
    background: #F3F3F3;
    font-weight: 500;
}
.sec_03 .table_wrapper table td {
    border: 1px solid #D5D5D5;
    padding: 8px 20px 9px;
    text-align: right;
}

.sec_03 .table_wrapper table .thead th {
    width: calc(100% / 3);
    padding: 12px 0;
    text-align: center;
}

.sec_03 .table_wrapper table .thead td {
    width: calc(100% / 3);
    padding: 8px 20px 9px;
    text-align: right;
}

@media (max-width: 768px) {
    .sec_03 .table_wrapper {
        padding: 0;
    }
    .sec_03 .table_wrapper:nth-of-type(n + 2) {
        margin-top: 24px;
    }
    .sec_03 .table_wrapper table th {
        padding: 6px 10px 7px;
        width: 38%;
    }
    .sec_03 .table_wrapper table td {
        padding: 6px 10px 7px;
        width: calc((100% - 38%) / 2);
    }   
    .sec_03 .table_wrapper table .thead th {
        padding: 10px 0;
        text-align: center;
    }

    .sec_03 .table_wrapper table .thead th {
        
    }
    .sec_03 .table_wrapper table .thead td {
        
        padding: 8px 20px 9px;
        text-align: right;
    }
}

/*==================
sec_04~
====================*/
.disc_list li {
    padding-left: 18px;
    position: relative;
}
.disc_list li::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--BL-color);
    border-radius: 5px;
    position: absolute;
    top: 0.6em;
    left: 0;
}
.disc_list li:nth-of-type(n + 2) {
    margin-top: 10px;
}

.dl_list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.dl_list dt {
    font-size: 2rem;
    font-weight: 500;
    color: var(--BL-color);
    margin-bottom: 2px;
}

@media (max-width: 768px) {
    .dl_list {
        gap: 20px;
    }
}

/*==================
sec_05
====================*/
.sec_05 .dl_list {
    margin-top: 40px;
}