/* CSS Document */
/* /government/comm/future009.asp */

/* timeline */
.timeline *  {
	box-sizing: border-box;
}
.timeline {
    position: relative;
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
	margin-bottom: 32px;
}
.timeline::after {
    position: absolute;
    content: '';
    bottom: -20px;
    left: 0;
    height: 0;
    width: 0;
    border-style: solid;
    border-width: 8px 6px 0 6px;
    border-color:  #3b81c7 transparent transparent transparent;
} 
.timeline > li {
    position: relative;
    display: flex;
    flex: 1 1;
	max-width: 480px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
    font-feature-settings: "palt";
    z-index: 0; 
}
.timeline > li:first-child:before {
	position: absolute;
    content: '';
	top: 0;
	left: 1px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #3b81c7;
}
.timeline > li::after {
    position: absolute;
    content: '';
    top: 0;
    left: 5px;
    height: 100%;
    width: 2px;
    background-color: #3b81c7;
    z-index: -1;
}
.timeline > li:last-child::after {
	height: calc(100% + 16px);
}
.timeline > li > div {
	height:100%;
	width: 100%;
}
.timeline_item {
	margin-top: 20px;
	margin-left: -8px;
    padding: 8px;
	border: 1px solid #3b81c7;
	border-radius: 4px;
	background-color: #fff; 
}
.timeline_item .title {
	padding-bottom: 4px;
	border-bottom: 1px solid #3b81c7;
	color: #3b81c7;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
	text-align: center;
	font-feature-settings: "palt";
}
.timeline_item .date {
	margin-top: 8px;
	padding: 2px;
	background-color: #3b81c7;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
	text-align: center;
	font-feature-settings: "palt";
}
.timeline_item .timeline_list_content {
	margin-top: 12px;
	margin-left: 1.5em;
}
.timeline_item .timeline_list_content > li {
	list-style: square ;
	line-height: 1.4;
}
.timeline_item .timeline_list_content > li + li {
	margin-top: 8px;
}
.timeline_item .timeline_list_content > li > .checkmark {
	margin-top: 8px;
	margin-left: -1em;
}     
.timeline_item .timeline_list_content > li > .checkmark li {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 4px;
	line-height: 1.2;
}   
.timeline_item .timeline_list_content > li > .checkmark li + li {
	margin-top: 4px;
}    
.timeline_item .timeline_list_content > li > .checkmark li::before {
	content: '';
	border-left: 1px solid #333;
	border-bottom: 1px solid #333;
	transform: rotate(-45deg);
	height: 3px;
	width: 6px;
} 
.timeline > li:first-child .timeline_item > .timeline_list_content > li > .checkmark li:first-child::before {
	content: none;
}
@media (min-width: 1200px) { 
	.timeline {
		margin-right: 24px;
		flex-flow: row;
		justify-content: center;
		margin-bottom: 0;
	}
	.timeline::after {
		top: 7px;
		right: -20px;
		bottom: 0;
		left: auto;
		border-width: 6px 0 6px 8px;;
		border-color: transparent transparent transparent #3b81c7;
	}
	.timeline > li {
		flex-flow: column;
		align-items: flex-start;
	}
	.timeline > li:first-child:before {
		top: 8px;
		left: 0;
	} 
	.timeline > li::after {
		top: 12px;
		left: 0;
		height: 2px;
		width: 100%;
	}
	.timeline > li:last-child::after {
		height: 2px;
		width: calc(100% + 20px);
	}
	.timeline > li > div {
		padding-left: 24px; 
	}
	.timeline_item {
		height: 100%;
		margin-top: 0;
		margin-left: -8px;
	} 
}

/* effect_area */
.effect_area * {
	box-sizing: border-box;
}	
.effect_area {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 24px;
}
.effect_item {
	width: 100%;
	max-width: 480px;
	margin-right: auto;
	margin-left: auto;
}
.effect_item > hgroup {
	margin-bottom: 16px;
	text-align: center;
}
.effect_item > hgroup > .effect_title {
	color: #3b81c7;
	font-size: 16px;
	font-weight: 700;
}
.effect_item > hgroup > .effect_sub_title {
	margin-top: 8px;
	color: #3b81c7;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
}
@media screen and (min-width: 1024px) {	
	.effect_area > div {
		width: calc(100%/2 - 12px);
	}
}
/* step */
.stepper {
	counter-reset: my-counter;
}
.stepper_item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-bottom: 16px;
	font-size: 14px;
	line-height: 1.2;
	font-feature-settings: "palt";
}
.stepper_item::before {
	content: counter(my-counter);
	counter-increment: my-counter;
	flex: 0 0 18px;
	height: 18px;
	border-radius: 50%;
	background-color: #3b81c7;

	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}
.stepper_item:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 0;
	top: 18px;
	bottom: 0;
	transform: translateX(calc(18px / 2.5));
	width: 2px;
	background-color: #d3d3d3;
}

/*chart */
.chart .percent {
	position: relative;
	width: 200px;
	height: 200px;
	margin: auto;
}
.chart .percent svg {
	position: relative;
	width: 200px;
	height: 200px;
	transform: rotate(-90deg);
}
.chart .percent svg circle {
	position: relative;
	fill: none;
	stroke-width: 20;
	stroke: #d3d3d3;
	stroke-dasharray: 628;
	stroke-dashoffset: 0;
}
.chart .percent .number {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
}
.chart .percent .number > * {
	color:#3b81c7;
	line-height: 1.4;
	font-weight: 700;
	text-align: center;
}
.chart .percent .number .title {
	font-size: 16px;
	font-weight: 700;
}
.chart .percent .number .title .numeral {
	font-size: 24px;
}
.chart .percent .number .title .symbol {
	font-size: 12px;
}
.chart .percent .number .note {
	font-size: 14px;
	letter-spacing: 0;
}
.chart .percent .line {
	stroke-dashoffset: 209.12;
	stroke: #3b81c7;
	;
}

/* table */
.secArticleDetail table.future009_table {
	border-collapse: separate;
	border-spacing: 4px 4px;
}
.secArticleDetail table.future009_table * {
	border: none;
	font-weight: 500;
}
.secArticleDetail table.future009_table th {
	background-color: transparent;
	color: inherit;
	letter-spacing: .15em;
}
.secArticleDetail table.future009_table th span {
	padding: 2px 1em;
}
.secArticleDetail table.future009_table th:nth-of-type(1) span {
	background-color: #f9e8c2;
}
.secArticleDetail table.future009_table th:nth-of-type(3) span {
	background-color: #c5eadc;
}
.secArticleDetail table.future009_table td.company {
	background-color: #fdf6ec;
}
.secArticleDetail table.future009_table td.government {
	background-color: #e9f8f3;
}
.secArticleDetail table.future009_table td {
	padding: 16px 12px;
}
.secArticleDetail table.future009_table td p {
	font-size: 14px;
	line-height: 1.5;
}
@media (min-width: 48em) {
	.secArticleDetail table.future009_table td p {
		font-size: 14px;
	}
}
table.future009_table .float img {
	float: left;
  	margin-right: 16px; 
  	width: 64px;
}
.secArticleDetail table.future009_table td p + p {
	margin-top: 8px;
}
.secArticleDetail table.future009_table td.vertical_top {
	vertical-align: top;
}
.secArticleDetail table.future009_table td.arrow {
	padding: 0;
}
table.future009_table .arrow_triangle {
	margin-top: 0;
    height: 16px;
    width: 32px;
	background-color: #ffd400;	
}
.secArticleDetail table.future009_table th.bg_transparent {
	background-color: transparent;
}
.secArticleDetail table.future009_table td.mode_vertical {
    position: relative;
    display: table-cell;
    vertical-align: middle;
	width: 32px;
	padding: 0;
	background: #ffd400;
}
.secArticleDetail table.future009_table td.mode_vertical > span {
    position: relative;
    top: 0;
    bottom: 0;
    left: 50%;
    display: inline;
    transform: translate(-50%, 0%);
    white-space: nowrap;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 16px;
	letter-spacing: .4em;
}
/* table scroll */
@media (min-width: 768px) {
    .pcColBox .colMain {
        min-width: 0;
    }
}
.scroll_box {
	overflow: hidden; 
}
.scrollText {
	display: none;
}
@media (max-width: 1023px) {
	.scroll_box {
		overflow-x: auto;}
	.scroll_box table {
		max-width: 100%;
		min-width: 784px;} 
	/*scrollbar */
	.scroll_box::-webkit-scrollbar {
		scrollbar-width: thin;
		height: 8px;}
	.scroll_box::-webkit-scrollbar-track {
		background: #eee;}
	.scroll_box::-webkit-scrollbar-thumb {
		background: #aaa;
		border: none;}
	.scroll_box::-webkit-scrollbar-thumb:hover {
		background: #999;}   
	.secArticleDetail table.future009_table td.fixed {
		position: sticky;
		left: 0;
		z-index: 10;
	}
	.scrollText {
		display: block;
		width: 48px;
		margin-top: 4px;
		color: #152768;
		font-size: 12px;
	}
	.lineArrow {
		margin: -7px 0 0 -7px;
		width: 100%;
		height: 8px;
		border-bottom: 1px solid #152768;
		border-right: 1px solid #152768;
		transform: skew(45deg);
	}
}