

/*ベース*/
.toggle {
	display: none;
}
.Label4 {		/*タイトル*/
	width: 94%!important;
	padding: 0;
	display: block;
	color: white;
	margin-left: 0;
	margin-bottom: 0;
	background-color: #004173;
	padding-top: 10px;
	padding-left: 10px;
	padding-bottom: 10px;
	border-radius: 7px;
	font-size: 4vw;
	text-align: center;
}

@media screen and (min-width: 750px) {
.Label4 {		/*タイトル*/
	width: 94%!important;
	padding: 0;
	display: block;
	color: white;
	margin-left: 0;
	margin-bottom: 0;
	background-color: #004173;
	padding-top: 20px;
	padding-left: 10px;
	padding-bottom: 20px;
	border-radius: 7px;
	font-size: 34px;
	text-align: center;
}
}
.Label4::before{		/*タイトル横の矢印*/
	content:"▼";
	width: 10px;
	height: 10px;
	position: absolute;
	top:2.4vw;
	right:5vw;
}

@media screen and (min-width: 750px) {
.Label4::before{		/*タイトル横の矢印*/
	content:"▼";
	width: 12px;
	height: 12px;
	position: absolute;
	top:calc( 50% - 8px );
	right:35px;
}
}

.Label4 {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
	width: 94%!important;
	overflow: hidden;
	margin: auto;
}
.content {		/*本文*/
	height: 0;
	overflow-x: auto;
	padding-top: 0;
	margin-top: 0;
	margin-left: auto;
	margin-right: auto;
	width: 96%;
}

.title-ken {
	background-color: #bfcfdc;
	width: calc(100% - 2px);
	padding: 10px auto;
	text-align: center;
	color: #05406c;
	text-align: center;
	font-size: 2.5em;
	line-height: 2em;
	font-weight: bold;
	border: 1px solid #00426f;
}

@media screen and (max-width: 750px) {
.title-ken {
	font-size: 1.5em;
	line-height: 1.4em;
	position: relative;
}
}
.title-tepo {
	background-color: #a3a3a3;
	width: calc(100% - 2px);
	padding: 10px auto;
	margin: auto;
	color: #ffffff;
	text-align: center;
	font-size: 2.2em;
	line-height: 2em;
	font-weight: bold;
	border-left: 1px solid #00426f;
	border-right: 1px solid #00426f;
}

@media screen and (max-width: 750px) {
.title-tepo {
	font-size: 1.5em;
	line-height: 1.4em;
	overflow: hidden;
}
}



.table-scroll {
  overflow-x: auto;
}



.table-scroll table {
  width: 180%;
  table-layout: fixed;
  margin-bottom: 1px;
  border-collapse: collapse;
  border-color: #00426f;
}

.table-scroll th,
.table-scroll td {
  width: 10%;
  padding: 15px;
  border: 1px #00426f solid;
  font-size: 2.2em;
  line-height: 1.5;
}


@media screen and (max-width: 750px) {
.table-scroll th,
.table-scroll td {
  font-size: 1.3em;
  line-height: 1.5;
}
}

.table-scroll td{
  width: 15%;
  text-align: center;
  background-color: #ffffff;
}

.table-scroll td.title{
	color: #00426f;
	font-weight: bold;
	font-size: 2em;
}

@media screen and (max-width: 750px) {
.table-scroll td.title{
	font-size: 1.1em;
}
}


.table-scroll th.sticky{
  position: sticky;
  width: 25%;
  font-size: 1.1em;
  top:0;
  left:0;
  border-left: none;
  border-right: none;
  background: none;
  font-weight: bold;
}

@media screen and (max-width: 750px) {
.table-scroll th.sticky{
  position: sticky;
  width: 32%;
  top:0;
  left:0;
  border-left: none;
  border-right: none;
  background: none;
  font-weight: bold;
}
}

.table-scroll th.sticky::before{
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-left: 1px #00426f solid;
  border-right: 1px #00426f solid;
  background-color: #ffffff;
  z-index: -1;
  box-sizing: content-box;
}

.content img{		/*本文*/
	width: 150%;
}

.toggle:checked + .Label4 + .content {	/*開閉時*/
	height: auto;
	transition: all .3s;
	padding-top: 10px;
}
.toggle:checked + .Label4::before {
	transform: rotate(-180deg) !important;
	position: absolute;
	top:calc( 50% - 3px );
	right: 15px;
}

@media screen and (min-width: 750px) {
.toggle:checked + .Label4::before {
	transform: rotate(-180deg) !important;
	position: absolute;
	top:calc( 50% - 3px );
	right: 16px;
}
}

.container {
  overflow-x: auto; /* tableタグのはみ出た要素を隠す */
  white-space: nowrap; /* テキストの折り返しなし */
  width: 300px;
}
table {
  border-collapse: collapse;
  width: 500px; /* tableタグの親要素より広く */
}
th {
  font-weight: 700;
}
th {
  border: 1px solid #ccc;
  color: #333;
  font-size: 16px;
  padding: 10px;
  width: 25%;
}
td {
  border: 1px solid #ccc;
  font-size: 16px;
  padding: 10px;
}