@charset "utf-8";
/* CSS Document */

.table-wrap {
    overflow-x : auto; 
}

.tab-type {
    width: 100%;
    min-width: 600px; 
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 2px 0;
  /*  white-space: nowrap;  折り返し禁止 */    
}
.tab-type th,
.tab-type td {
    /*font-size: 14px;*/
    border: none;
    /*padding: 8px;*/
    background: #e8e6f3;
    text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
letter-spacing: 0.1rem;
}
.tab-type td {
    /*font-size: 15px;*/
padding: 12px;
}
.tab-type tr:nth-child(even) th,
.tab-type tr:nth-child(even) td {
  background: #eaf6fe;
}
.tab-type thead th {
    border-radius: 6px 6px 0 0;
    color: #fff;
padding: 8px;
}
.tab-type thead th:nth-child(1) {
    background: #eaf6fe;
    background-color: transparent;
    color: #000;
}
.tab-type thead th:nth-child(2) {
    background: #14116e;
}
.tab-type thead th:nth-child(3) {
    background: #b50165;
}
.tab-type thead th:nth-child(4) {
    background: #6f9b12;
}
.tab-type tbody tr:first-child th{
    border-radius: 6px 6px 0 0;
}
.tab-type tbody tr:last-child th,
.tab-type tbody tr:last-child td{
    border-radius: 0 0 6px 6px;
}
/*.tab-type thead th:nth-child(3)  {
  border-top:solid 4px #b50165;
  border-left:solid 4px #b50165;
  border-right:solid 4px #b50165;
}
.tab-type tbody td:nth-child(3)  {
  border-left:solid 4px #b50165;
  border-right:solid 4px #b50165;
}
.tab-type tbody tr:last-child td:nth-child(3){
    border-bottom:solid 3px #b50165;
}
.tab-type th.bg-01 {background:#dcdae6;}
.tab-type th.bg-02 {background:#a3bacc;}*/


@media screen and (max-width: 480px) {
.table-wrap {
    position: relative;
}

.table-wrap::before {
    content: 'スクロール';
    font-size: 14px;
    color: #666;
    position: absolute;
    top: 0;
    left: 5px;
}
.table-arrow {
    display: block;
    position: relative;
}
.table-arrow::before {
    content: '';
    position: absolute;
    top:20px;
    left:5px;   
    width: 100px;
    height: 1px;
    background:#666;  
}
.table-arrow::after {
    content: '';
    position: absolute;
    top:15px;
    left:90px;   
    width: 15px;
    height:1px;
    background:#666;
    transform: rotate(35deg);
}
}