#chronology_body .block {
	max-width: 90vw;
	height: 100vh;
	position: relative;
	display: flex;
	justify-content: space-between;
	gap: 2.5%;
	transform: translateX(0);
}

.navPc {
	position: relative;
	flex: 0 0 auto;
	width: 12.5%;
	overflow-x: hidden;
	z-index: 1;
}

.header {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	font-size: 1.2rem;
	font-weight: 500;
}

.headVal,
.headVal {
	color: var(--glay-3);
}

.headVal.current {
	color: black;
}

.indicator {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 5%;
	font-size: 1.2rem;
	font-weight: 500;
	margin-top: 0.5rem;
}

.gridIndex,
.grid {
	position: relative;
	display: grid;
	grid-template-rows: repeat(78, 1.2rem);
	row-gap: 0.6rem;
}

.grid ~ .grid {
	background-size: cover;
	background-repeat: no-repeat;
}

/*.grid-2 ~ .grid-2.current {
	background-color: var(--green-1);
}*/

.gridIndex .index {
	position: relative;
	color: var(--glay-3);
	padding-top: 0.33rem;
}

.gridIndex .index.current {
	color: black;
}

.grid .dot {
	position: relative;
	pointer-events: none;
	cursor: default;
}

.grid.current .dot {
	pointer-events: inherit;
	cursor: pointer;
}

.grid .index ~ .index::before,
.grid .dot ~ .dot::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	border-top: 1px dashed var(--glay-3);
}

.grid .dot::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	display: inline-block;
	width: 1.2rem;
	height: 1.2rem;
	background-color: var(--glay-4);
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 50%;
	scale: 1;
	translate: 0 -22.5%;
	transition: all 0.5s;
}

.grid .dot.hidden::after {
	display: none;
}

.grid .dot.current::after {
	scale: 1.3;
	background-color: var(--green-2);
}

.grid .dot:nth-of-type(odd)::after {
	transform: translateX(-75%);
}

.grid .dot:nth-of-type(even)::after {
	transform: translateX(25%);
}

.grid .wave {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -5;
	display: block;
	width: 100%;
	height: calc(100% + 18px);
	background-image: url(../img/chronology/wave-gray.svg?02);
	background-repeat: no-repeat;
	background-position: 60% -9.75px;
}

.grid.current .wave {
	background-image: url(../img/chronology/wave-green.svg?04);
}

input[name="tabSwitch"] {
	display: none;
}

.tabs {
	width: 100%;
}

.tabs__head {
	display: flex;
}

.tabLabel {
	position: relative;
	flex: 1;
	color: var(--green-5);
	font-size: 3.6rem;
	font-weight: 700;
	background-color: var(--glay-4);
	border: solid 2px var(--glay-4);
	border-bottom: none;
	border-radius: 48px 48px 0 0 ;
	padding: 0.5em 0;
	z-index: 1;
	cursor: pointer;
}

.tabContent {
	position: relative;
	flex: 100%;
	display: none;
	padding: 2.5%;
	background-color: var(--glay-2);
	margin-top: -2px;
	border: 2px solid var(--green-2);
	overflow: hidden;
}

.tabs input:checked + .tabLabel {
	color: var(--green-2);
	background-color: var(--glay-2);
	border: solid 2px var(--green-2);
	border-bottom: solid 2px var(--glay-2);
}

#tabContent--1.current,
#tabContent--2.current {
	display: block;
}

.tabContent table {
	display: block;
	table-layout: fixed;
	width: 100%;
	height: 80vh;
	overflow-y: scroll;
	border-collapse: collapse;
	border-spacing: 0;
	scroll-padding-top: 56px;
}

.tabContent tbody {
	scroll-padding-top: 56px;
}

.tabContent .js-trg {
	visibility: hidden;
	opacity: 0;
}

.tabContent tbody tr:nth-of-type(odd) td {
	background-color: var(--glay-3);
}

.tabContent td {
	font-size: 1.4rem;
	text-align: justify;
	border: 2px solid var(--glay-4);
	border-top: none;
	border-bottom: none;
	padding: 1em;
}

.tabContent tbody tr:first-of-type td {
	position: sticky;
	top: 0;
	color: white;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: center;
	vertical-align: middle;
	padding: 1em;
	background-color: var(--green-2);
	z-index: 5;
}

.tabContent tbody tr:last-of-type td {
	/*height: 80vh;*/
	border-bottom: 2px solid var(--glay-4);
}

.tabContent .lastAnchor {
	height: 80vh;
}


.tabContent tbody tr:first-of-type td:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-top: 2px solid var(--glay-4);
	border-bottom: 2px solid var(--glay-4);
	z-index: -1;
}

.tabContent .js-td--j:nth-of-type(1) {
	width: 15%;
}

.tabContent .js-td--j:nth-of-type(2) {
	width: 10%;
}

.tabContent .js-td--j:nth-of-type(3) {
	width: 18%;
}

.tabContent .js-td--j:nth-of-type(4) {
	width: 37.5%;
}

.tabContent .js-td--w:nth-of-type(1) {
	width: 15%;
}

.tabContent .js-td--w:nth-of-type(2) {
	width: 15%;
}

.tabContent .js-td--w:nth-of-type(3) {
	width: 32.5%;
}

.label {
	display: none;
}



.ad {
	display: none;
}

.ad.active {
	display: table-row;
 }

 .scroll_div{
 	position: relative;
 	scroll-snap-type: y mandatory;
 }

 .scroll_div tr{
 	scroll-snap-align: start;
 }

@media only screen and (max-width: 960px) {

	.navPc.only-pc {
		display: none;
	}

	.navCnt {
		text-align: left;
		margin-top: calc(var(--mt-s) /2);
	}

	.navCnt__nav {
		display: grid;
		grid-template: repeat(4, 1em) / repeat(2, 50%);
		grid-template-areas: 
			"left-1 right-1"
			"left-2 right-2"
			"left-3 right-3"
			"left-4 right-4";
		row-gap: 1.5em;
	}

	.navCnt__nav li {
		position: relative;
		font-weight: 700;
	}

	.navCnt__nav li::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		display: inline-block;
		width: 0.5em;
		height: 1em;
		background-image: url(../img/common/tri-icon.svg);
		background-size: cover;
		background-repeat: no-repeat;
	}

	.navCnt__nav li ~ li {
		/*margin-top: 1.5em;*/
	}

	.navCnt__nav li a {
		padding-left: 1em;
	}

	.navCnt__nav li:nth-of-type(1) {
		grid-area: left-1;
	}

	.navCnt__nav li:nth-of-type(2) {
		grid-area: left-2;
	}

	.navCnt__nav li:nth-of-type(3) {
		grid-area: left-3;
	}

	.navCnt__nav li:nth-of-type(4) {
		grid-area: left-4;
	}

	.navCnt__nav li:nth-of-type(5) {
		grid-area: right-1;
	}

	.navCnt__nav li:nth-of-type(6) {
		grid-area: right-2;
	}

	.navCnt__nav li:nth-of-type(7) {
		grid-area: right-3;
	}

	.navCnt__nav li:nth-of-type(8) {
		grid-area: right-4;
	}

	.tabLabel {
		font-size: 3.2rem;
	}

	.tabContent table {
		/*border-bottom: 2px solid var(--glay-4);*/
		margin-top: var(--mt-s);
	}

	.tabContent tbody {
		border: none;
	}

	.historyTr {
		display: inline-block;
		width: 100%;
	}

	.tabContent tbody tr:first-of-type {
		display: none;
	}

	.tabContent tbody tr ~ tr {
		margin-top: 8px;
	}

	.tabContent tbody tr:nth-of-type(odd) td {
		background-color: var(--glay-2);
	}

	.tabContent td {
		display: block;
		min-width: 100%;
		width: 100%;
		border-top: 2px solid var(--glay-4);
		border-right: 2px solid var(--glay-4);
		padding: 0.5em;
	}

	.tabContent tbody tr td:nth-of-type(odd) {
		background-color: var(--glay-3);
	}

	.tabContent tbody tr td:last-of-type {
		border-bottom: 2px solid var(--glay-4);
	}

	.tabContent tbody tr:nth-of-type(2) td {
	}

	.tabContent tbody tr:last-of-type td {
		/*display: none;*/
	}

	.tabContent td.spHeading {
		display: block;
		font-size: 3.2rem;
		font-weight: 500;
		background-color: transparent !important;
		border: none !important;
		margin-top: var(--mt-s);
		margin-bottom: calc(var(--mt-s) * 0.1);
	}

	#chronology_body #sns {
		margin-top: calc(var(--mt-l) * 1.5);
	}
}

@media only screen and (max-width: 767px) {
	.tabLabel {
		font-size: 2.2rem;
		border-radius: 24px 24px 0 0;
	}

	.tabContent td .only-sp {
		display: block;
	}	
}

@media print {
	#chronology_body .block { 
		width: 100vw;
	}

	.navPc.only-pc {
		display: none;
	}
}
