@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/








/************************************
** 表のスクロール
************************************/

/* テーブルのスクロール */
.table-scroll {
	overflow: auto;
	position: relative;
	max-width: 100%;
}
/* 横スクロール */
.table-scroll table {
	min-width: 600px;
	border-collapse: collapse;
	width: 100%;
}
.table-scroll th,
.table-scroll td {
	white-space: nowrap;
	font-size: 65%;
}
/* 上部のヘッダーを固定（HTML側のクラス名：divに「fixed-header」） */
.table-scroll.fixed-header th {
	position: sticky;
	top: 0;
	z-index: 2;
}
/* 左端の列を固定（HTML側のクラス名：divに「fixed-column」） */
.table-scroll.fixed-column th:first-child,
.table-scroll.fixed-column td:first-child {
	position: sticky;
	left: 0;
	z-index: 1;
}
.table-scroll.fixed-column th:first-child {
	background: #FAF9F5;
}
.table-scroll.fixed-column td:first-child {
	background: #FAFBFC;
}





