@charset "UTF-8";

html {
	font-weight: 500;
	font-family:"ヒラギノ角ゴ ProN W5", "Hiragino Kaku Gothic ProN", 游ゴシック, "Yu Gothic", sans-serif;
}
@media screen and (max-width: 999px) {
	html { font-size		: 50%; }
/* 	html { font-size		: 52%; } */
}
@media screen and (min-width: 1000px) {
	html { font-size		: 60%; }
}
/******************** .bodybase ********************/
body {
	width			: 100%;
	position: relative;
	background-color: #eee;
	line-height		: 1.8;
	font-size		: 1.4rem;
}
/******************** main ********************/
main {
	background-color: #fff;
}
footer {
	font-weight		: 700;
	background-color: #ddd;
	white-space: nowrap;
	text-align: center;
	height			: var(--bcs-height);
	line-height		: var(--bcs-height);
}

article {
	padding: var(--space-unit) var(--space-unit);
	max-width: 4000px;
	margin: 0 auto;
}

.margin-area > *:nth-child(n + 2) {
	margin-top: var(--space-unit);
}


h2 {
	position: relative;
	padding: 0rem 0;
	text-align: center;
	font-size	: 2.0rem;
}
h3 {
	font-weight		: 700;
	padding			: 1rem 0rem;
	text-align: center;
	font-size	: 1.6rem;
	background-color: #eee;
/* 	color: #fff; */
}
h4 {
	font-weight		: 700;
	font-size	: 1.6rem;
}

details summary {
	text-align: center;
	margin-bottom: var(--space-unit);	
}


/********** tbl-area **********/
.tbl-area {
	border: 2px solid #CCC;
	max-height: calc(100vh - 280px);
	overflow: auto; /* 必要に応じてスクロールを追加 */
	background-color: #eee;
}


/* スクロールバー全体 */
::-webkit-scrollbar {
   width: 10px;
   height: 10px;
  background-color: #eee;
}

/* スクロールバーのスライダー部分 */
::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 0px;
}

/* スクロールバーのスライダー部分をホバー時 */
::-webkit-scrollbar-thumb:hover {
  background-color: #ccc;
}