<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.graph-bar{
	--_bar-height1: 100%;
	--_bar-height2: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr 1fr 1fr 1fr auto;
	text-align: center;
	height: 220px;
	margin: 2.5em auto 1em;
	padding: 0 1em;
	width: min(600px, 100%);
	position: relative;
}
/*.graph-bar::before{
	content: attr(data-max)'ä¸‡å††';
	position: absolute;
	font-size: 0.75em;
	bottom: 100%;
}*/
.graph-value{
	border-bottom: 1px solid;
	display: grid;
	grid-row: 1 / 5;
	position: relative;
}
.graph-value small{
	position: absolute;
	width: 100%;
	bottom: 100%;
	font-size: 0.75em;
	font-weight: 600;
}
.graph-value div{
	font-size: 0.95em;
	/*background: #d1d1d1;*/
	width: min(200px, 90%);
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: end;
	font-weight: 600;
	color: #fff;
}
.graph-value1{
	border-left: 1px solid;
	grid-column: 1;
}
.graph-value2{
	grid-column: 2;
}
.graph-val1{
	height: var(--_bar-height1);
	background: #1ba0e5;
}
.graph-val1+small{
	color: #1ba0e5;
}
.graph-val2{
	height: var(--_bar-height2);
	background: #1477a8;
}
.graph-val2+small{
	color: #1477a8;
}
.graph-label{
	font-size: 0.85em;
	grid-row: 5;
}
.crossline{
	grid-column: 1 / -1;
	grid-row: 1;
	border-bottom: 1px solid #dfdfdf;
}
.crossline:nth-child(2){
	grid-row: 2;
}
.crossline:nth-child(3){
	grid-row: 3;
}
.piecharts{
	container-type: inline-size;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 2rem;
	margin: 2em 0;
}
.piechart{
	width: clamp(200px, 39vw, 430px);
	--_pie1: 0%;
	--_pie2: 0%;
	--_pie3: 0%;
	--_pie4: 0%;
	--_pie5: 0%;
	--_pie2_add: calc(var(--_pie1) + var(--_pie2));
	--_pie3_add: calc(var(--_pie1) + var(--_pie2) + var(--_pie3));
	--_pie4_add: calc(var(--_pie1) + var(--_pie2) + var(--_pie3) + var(--_pie4));
	--_pie5_add: calc(var(--_pie1) + var(--_pie2) + var(--_pie3) + var(--_pie4) + var(--_pie5));
	text-align: center;
}
@container (max-width: 800px) {
  .piechart {
	width: min(300px, 100%);
  }
}
.piechart-output{
	width: 100%;
	border-radius: 50%;
	aspect-ratio: 1;
	background: conic-gradient(
		#62bdea var(--_pie1),
		#1270fc 0 var(--_pie2_add),
		#1ba0e5 0 var(--_pie3_add),
		#157eb3 0 var(--_pie4_add)
		);
	position: relative;
	display: grid;
	place-items: center;
}
.piechart-output5{
	background: conic-gradient(
		#62bdea var(--_pie1),
		#1270fc 0 var(--_pie2_add),
		#1ba0e5 0 var(--_pie3_add),
		#157eb3 0 var(--_pie4_add),
		#094e71 0 var(--_pie5_add)
		);
}
.piechart-output div{
	--_angle: 0;
	--_dist: 7.5rem;
	position: absolute;
	color: #FFF;
	translate: calc(var(--_dist) * cos(360deg * var(--_angle) - 90deg))
		calc(var(--_dist) * sin(360deg * var(--_angle) - 90deg));
	line-height: 0.75;
	/*translate: calc(10rem * cos(30deg))
		calc(10rem * sin(30deg));*/
}
.piechart-output div:nth-child(5){
	--_dist: 11rem;
}
.piechart-output small{
	font-size: 0.7em;
	font-weight: 600;
}
#custom_html-34{
	max-width: 100%;
	overflow-x: auto;
}
.txt--right{
	text-align: right;
}
.price-table{
	text-align: center;
}
.price-lists{
	padding: 1em 1em 1em 2em;
	border: 3px solid rgba(27,160,229,0.5);
}
.piechart-labels{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5em;
	font-size: 0.75em;
	line-height: 1;
	margin: 1em 0;
}
.piechart-labels&gt;div{
	border-left: 1em solid;
	padding-left: 0.5em;
}
.piechart-labels&gt;div:nth-child(1){
	border-color: #62bdea;
}
.piechart-labels&gt;div:nth-child(2){
	border-color: #1270fc;
}
.piechart-labels&gt;div:nth-child(3){
	border-color: #1ba0e5;
}
.piechart-labels&gt;div:nth-child(4){
	border-color: #157eb3;
}
.piechart-labels&gt;div:nth-child(5){
	border-color: #094e71;
}
sup,
.txt-red{
	color: crimson;
}</pre></body></html>