@charset "UTF-8";

/*------------------------------------------------------------
    meeting.html
------------------------------------------------------------*/
.meetingTable_wrap {
	overflow-x: auto;
	-ms-overflow-style: none; /* IE, Edge用 */
	scrollbar-width: none; /* Firefox用 */
}
/* スクロールバーを非表示 */
.meetingTable_wrap::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Edge用 */
}
.table_common {
    margin: 10px auto 20px;
    min-width: 720px; /* 横スクロールを確実に発生させる最小幅 */
    width: 100%;
    font-size: 1.6rem;
}
.meetingTable_wrap .table_common tbody th.dataTitle {
    background: #EFF0F2;
    border-right: 1px solid #707070;
    padding: 16px;
    vertical-align: baseline;
}
.meetingTable_wrap .table_common tbody th.dataTitle:last-of-type {
    border-right: 1px solid #707070;
}
.meetingTable_wrap tr th:first-of-type {
	position: -webkit-sticky;
	position: sticky;
	left: -1px;
	z-index: 2;
    min-width: 100px;
}
.meetingTable_wrap .table_common th {
    border: 1px solid #707070;
}
.meetingTable_wrap .table_common td {
    min-width: 300px; /* 最小幅を確保して横スクロールを促進 */
    padding: 16px;
    text-align: left;
    white-space: nowrap; /* テキストの折り返しを防ぐ */
    border: solid 1px #707070;
}
.number_list {
    margin-left: 1em;
}
.number_list li {
    font-size: 1.6rem;
}
.number_list li + li {
    margin-top: 10px;
}
@media print, screen and (min-width: 768px) {
    .table_common {
        margin: 40px auto 60px;
    }
    .meetingTable_wrap tr th:first-of-type {
        width: 200px;
    }
}
