@charset "Shift_JIS";

/*=========================================================


	Site Name   ichigan info2
	File Name   table.css

	Create Date 2020/04/03

==========================================================*/


/*--------------- テーブルのデザインをshare5に合わせる -------------------*/
table {
    font-size: 16px;
    font-size: 1rem;
    width: 100%;
	text-align: center;
}

table th, table td {
    vertical-align: middle;
    padding: 14px 10px;
    border: 1px solid #e4e7ec;
}

table th.table--gray {
	background: rgba(255,255,255,1.00);
}

.c5-table {
    margin: 20px 0 40px;
}

.c5-table th, .c5-table td {
    vertical-align: top;
    padding: 14px 10px;
    border: 1px solid #e4e7ec;
}

.c5-table th {
    text-align: center;
}
.c5-table td {
    text-align: left;
}

/* 横スクロールバー__Start */
.c5-scrollbar_wrap {
  position: relative;
  overflow-x: scroll;
  margin: 2rem 0;
  border-radius: 5px; 
}
@media only screen and (min-width: 767px) {
    .c5-scrollbar_wrap {
      overflow-x: initial;
      /*height: auto;*/
      border: none; }
}
.c5-scrollbar_wrap__table {
    position: absolute;
    width: 800px;
    height: 100%;
}
@media only screen and (min-width: 767px) {
	.c5-scrollbar_wrap__table {
        width: 100%;
        position: initial;
	}
}
.c5-scrollbar_wrap__table table {
      width: 800px;
}
@media only screen and (min-width: 767px) {
	.c5-scrollbar_wrap__table table {
		width: 100%; 
	}
}
.c5-scrollbar_wrap__table table tr {
	height: 60px;
	background: rgba(255,255,255,1.00);
	font-size: clamp(14px, 2vw, 16px);
}
.c5-scrollbar_wrap__graph {
    position: absolute;
    width: 200%;
    height: 100%;
}
@media only screen and (min-width: 767px) {
	.c5-scrollbar_wrap__graph {
		width: 100%;
        position: static;
	}
}
.heightTable {
    height: 260px;
}
@media only screen and (min-width: 767px) {
	.heightTable {
		height: auto;
	}
}

/* スクロールバーの幅と高さを設定する */
.scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px; }

/* スクロールバーの形を設定する */
.scrollbar-thumb-rounded::-webkit-scrollbar-thumb {
  border-radius: 0.5rem; }

/* スクロールバーの色を設定する */
.scrollbar-thumb-black::-webkit-scrollbar-thumb {
  --bg-opacity: 1;
  background-color: rgba(0, 0, 0, 0.3); }
/* 横スクロールバー__end */