.table {
    width: calc(100% - 40px);
    margin-left: auto;
    border-collapse: collapse;
}

.table tr {
    border-bottom: 1px solid #D9D9D9;
}

.table tr:last-child {
    border-bottom: none;
}

.table tbody th{
    background: #1B1E49;
    color: #fff;
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-size: 18px;
  line-height: 180%;
    letter-spacing: 0.05em;
    padding: 18.5px;
    width: 180px;

}

.table tbody td{
    background: #fff;
    color: #1B1E49;
    padding: 20px 40px;
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    letter-spacing: 0.05em;
    width: calc(100% - 180px);
    font-family: "Noto Sans JP", sans-serif;

}

@media (max-width: 768px) {
    .table {
        width: 100%;
        margin-left: auto;
        border-collapse: collapse;
    }
    
    .table tr {
        border-bottom: 1px solid #D9D9D9;
    }
    
    .table tr:last-child {
        border-bottom: none;
    }
    
    .table tbody th{
        font-size: 14px;
        padding: 27.5px 12.5px;
        width: 95px;
        letter-spacing: normal;
    
    }
    
    .table tbody td{
        padding: 15px 20px;
        font-size: 14px;
        width: calc(100% - 95px);    
    }
    
    
}