body {
	margin: 0 auto;
	padding: 0 20px 80px;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
	letter-spacing: normal;
	color: #000;
	font-size: 16px;
	line-height: 1.8;
	text-align: justify;
	width: auto;
	max-width: 960px;
}

@media screen and (max-width: 600px) {
	body{
		padding: 0 10px 50px;
		font-size: 14px;
	}
}

h1{
	margin: 0 0 70px;
	padding-left: 23px;
	height: 140px;
	font-size: 30px;
	color: #000;
	line-height: 140px;
	font-weight: bold;
	position: relative;
}

h1::before{
	content: "";
	top: 0;
	left: calc( ( 100vw - 960px ) / 2 * -1);
	width: 100vw;
	height: 100%;
	background-color: #e2f7ed;
	position: absolute;
	z-index: -1;
}

h1::after{
	content: "";
	top: 49px;
	left: 0;
	width: 6px;
	height: 42px;
	background-color: #008354;
	border-radius: 3px;
	position: absolute;
}

@media screen and (max-width: 999px) {
	h1::before{
		left: -20px;
		width: calc( 100% + 40px );
	}
}

@media screen and (max-width: 600px) {
	h1{
		margin: 0 0 30px;
		padding: 25px 15px 22px 15px;
		height: auto;
		font-size: 16px;
		line-height: 1.3;
	}
	h1::before{
		left: -10px;
		width: calc( 100% + 20px );
	}
	h1::after{
		content: "";
		top: 23px;
		left: 0;
		width: 4px;
		height: calc( 100% - 44px );
		border-radius: 2px;
	}
}


.contents {
	margin-bottom: 80px;
}
@media screen and (max-width: 800px) {
	.contents {
		margin-bottom: 60px;
	}
}

@media screen and (max-width: 600px) {
	.contents {
		margin-bottom: 40px;
	}
}

ol{
	padding: 40px;
	background-color: #f3f3f3;
	list-style-type: none;
	counter-reset: item;
}

@media screen and (max-width: 600px) {
	ol{
		padding: 20px;
	}
}

ol li{
	margin-top: 15px;
	text-indent: -1.3em;
	padding-left: 1.3em;
}

ol li:first-child{
	margin-top: 0;
}

ol li:before {
	counter-increment: item;
	content: counter(item)'.';
	padding-right: .5em;
	font-weight: bold;
	color: #008354;
}

@media screen and (max-width: 600px) {
	ol li{
		margin-top: 7px;
	}
}

.template-table {
	width: 100%;
	border-collapse : collapse;
	/*width: 100%;*/
}

.template-table th {
	border: 1px solid #ccc;
	background-color: #eff4f2;
	padding: 8px 5px;
	font-weight: bold;/*normal;*/
	font-size: 14px;
	line-height: 1.4;
	color: #008354;
	text-align: center;
}

.template-table th.left_align {
	text-align: left;
}

.template-table td {
	border: 1px solid #ccc;
	padding: 5px;
	font-size: 14px;
}

.number-cell {
	text-align: right;
	width: 75px;
}

@media screen and (max-width: 600px) {
	
	.template-table th {
		padding: 5px 2px;
		font-size: 10px;
	}
	
	.template-table th.left_align {
		text-align: left;
	}
	
	.template-table td {
		padding: 3px 2px;
		font-size: 10px;
		word-break: break-all;
	}
	
	.number-cell {
		width: auto;
	}
}

.div-title, .div-title-hist {
	margin-top: 80px;
	margin-bottom: 20px;
	padding: 21px 25px 18px 23px;
    font-size: 19px;
    line-height: 1.2;
    color: #008354;
    font-weight: bold;
	text-align: left;
	background-color: #f3f3f3;
	border-radius: 3px;
    position: relative;
}
.div-title::before, .div-title-hist::before {
	content: "";
	top: 14px;
	left: 0;
	width: 6px;
	height: calc( 100% - 28px );
	background: #008354;
	border-radius: 0 4px 4px 0;
	position: absolute;
}
@media screen and (max-width: 800px) {
	.div-title, .div-title-hist {
		margin-top: 60px;
	}
}

@media screen and (max-width: 600px) {
	.div-title, .div-title-hist {
		margin-top: 40px;
		margin-bottom: 47px;
		padding: 18px 15px 15px 18px;
		font-size: 15px;
		border-radius: 3px;
	}
	.div-title::before, .div-title-hist::before {
		top: 12px;
		width: 4px;
		height: calc( 100% - 24px );
		border-radius: 0 3px 3px 0;
	}
}

.out_link {
	text-align: right;
}

@media screen and (max-width: 600px) {

	.out_link {
		font-size: 13px;
	}
}

.comment {
	margin-top: 20px;
	margin-bottom: 40px;
	background-color: #eff4f2;
	padding: 30px;
}

@media screen and (max-width: 600px) {

	.comment {
		margin-top: 10px;
		margin-bottom: 20px;
		padding: 20px;
	}
}

/* a */
a:link {
	color: #008354;
	text-decoration: underline;
	transition: 0.5s;
}

a:visited {
	color: #008354;
	text-decoration: underline;
}

a:hover {
	color: #008354;
	text-decoration: none;
}

a:active {
	color: #008354;
	text-decoration: underline;
}

a.csv_btn {
	color: #fff;
	background-color: #008354;
	width: auto;
	font-size: 12px;
	text-decoration: none;
	font-weight: bold;
	padding: 5px 8px 5px 18px;
	margin-left: 20px;
	position: relative;
	display: inline-block;
	top: -2px;
	transition: 0.5s;
}

a.csv_btn::before {
	content: "";
	left: 8px;
	top: 9px;
	border-width: 3px 0 3px 5px;
	border-style: solid;
	border-color: transparent transparent transparent #fff;
	position: absolute;
}

a.csv_btn:hover {
	top: 1px;
	background-color: #006231;
}

@media screen and (max-width: 600px) {
	a.csv_btn {
		top: auto;
		right: 0;
		font-size: 11px;
		bottom: -35px;
		position: absolute;
	}
	
	a.csv_btn::before {
		content: "";
		left: 8px;
		top: 9px;
		border-width: 3px 0 3px 5px;
		border-style: solid;
		border-color: transparent transparent transparent #fff;
		position: absolute;
	}
	
	a.csv_btn:hover {
		top: 1px;
		background-color: #006231;
	}
}

span.kome {
	font-size: x-small;
}

.hist_list dt {
	clear: both;
	float: left;
	width: 130px;
}

.hist_list dd {
	margin-left: 140px;
	margin-bottom: 25px;
}

div[id^="cd_top3_nm_"], div[id^="ope_top3_nm_"], div[id^="cd_top5_nm_"], div[id^="ope_top5_nm_"] {
	padding: 5px 0;
	font-size: 18px;
	font-weight: bold;
}

div[id^="cd_top3_nm_"]:before, div[id^="ope_top3_nm_"]:before, div[id^="cd_top5_nm_"]:before, div[id^="ope_top5_nm_"]:before {
	content: "■";
	margin-right: 0.2em;
	color: #008354;
}

@media screen and (max-width: 600px) {

	div[id^="cd_top3_nm_"], div[id^="ope_top3_nm_"], div[id^="cd_top5_nm_"], div[id^="ope_top5_nm_"] {
		padding: 3px 0;
		font-size: 15px;
	}
}