@charset "UTF-8";

/*------------------テーブル調整------------------*/
#table+section table th,#table+section table th {
    border: 1px solid var(--i_border_color, rgba(125,125,125,0.5));
}
#table+section table td,#table+section table td {
    border: 1px solid var(--i_border_color, rgba(125,125,125,0.5));
}
#table+section table .btn_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
#table+section .contents_btn01 {
  text-align: left;
  margin-top: 1rem;
}
@media screen and (max-width: 900px) {
    #table+section .content_wrapper {
        overflow-x: auto;
    }
    #table+section table {
        white-space: nowrap;
        width: 1000px;
    }
    #table+section table td,#table+section table td {
        white-space: normal;
    }
}