@charset "utf-8";

/* reset */
*[data-sw-css='reset'],*[data-sw-css='reset']::before,*[data-sw-css='reset']::after{box-sizing:border-box}
*[data-sw-css='reset'] {margin:0;padding:0;line-height:1.5;}
[data-sw-css='reset'] >* p,[data-sw-css='reset'] >* div,[data-sw-css='reset'] >* h1,[data-sw-css='reset'] >* h2,[data-sw-css='reset'] >* h3,[data-sw-css='reset'] >* h4,[data-sw-css='reset'] >* h5,[data-sw-css='reset'] >* h6{margin:0;padding:0;overflow-wrap:break-word}

/* 設定 */
:root {
	/* text */
	--sw-text-color-0: #ffffff;
	--sw-text-color-1: #000000;
	--sw-text-color-2: #222222;
	--sw-text-color-3: #666666;
	--sw-text-color-4: #999999;
	/* border */
	--sw-border-color-0: #cccccc;
	--sw-border-color-1: #999999;
	--sw-border-color-2: #000000;
	/* background */
	--sw-background-color-0: #ffffff;
	--sw-background-color-0-alpha90: #ffffffe6;
	/*  */
	--sw-stock-color-up: #DD0000;
	--sw-stock-color-down: #1073BB;
	--sw-corporate-color: #878787;
	--sw-corporate-color-2: #535353;
}
.sw-container >* {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
}
#sw-stock-board {
	padding: 0;
	margin: 0;
	font-size: 1rem;
	line-height: 1.2;
	color: var(--sw-corporate-color-2);
}
#sw-stock-board h5, #sw-stock-board dl, #sw-stock-board dt, #sw-stock-board dd, #sw-stock-board p, #sw-stock-board div, #sw-stock-board a {
	padding: 0;
	margin: 0;
}
#sw-stock-board a, #sw-stock-board a:link, #sw-stock-board a:hover, #sw-stock-board a:visited {
	cursor: pointer;
	text-decoration: none;
	color: inherit;
}

/* 共通 ----------------------- */
*[data-sw-txt-hide='on'] {
	display: none;
}
.sw-arrow-right::after {
	content: ' ';
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-left: 3px;
	vertical-align:middle;
	border-top: 2px solid var(--sw-border-color-1);
	border-right: 2px solid var(--sw-border-color-1);
	transform: rotate(45deg);
}
.sw-arrow-symbol {
	position: relative;
	display: inline-block;
	margin-left: 0.5rem;
	padding: 0 0 0 16px;
	vertical-align: middle;
}
.sw-arrow-symbol::before,
.sw-arrow-symbol::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.sw-arrow-up, .sw-arrow-down {
	font-size: 20px;
	margin: 0.3rem 0.75rem;
	display: inline-block;
	line-height: 1;
	position: relative;
	width: 0.1em;
	height: 1em;
}
.sw-arrow-up {
	background: var(--sw-stock-color-up);
}
.sw-arrow-up::before {
	content: '';
	width: 0.65em;
	height: 0.65em;
	border: 0.1em solid var(--sw-stock-color-up);
	border-left: 0;
	border-bottom: 0;
	transform: rotate(-45deg);
	transform-origin: top right;
	position: absolute;
	top: -0.05em;
	right: 50%;
	box-sizing: border-box;
}
.sw-arrow-down {
	background: var(--sw-stock-color-down);
}
.sw-arrow-down::before {
	content: '';
	width: 0.65em;
	height: 0.65em;
	border: 0.1em solid var(--sw-stock-color-down);
	border-top: 0;
	border-right: 0;
	transform: rotate(-45deg);
	transform-origin: bottom left;
	position: absolute;
	left: 50%;
	bottom: -0.05em;
	box-sizing: border-box;
}

/* 株価情報 -----------------------共通 */
.sw-stock-data .sw-up-color {
	color: var(--sw-stock-color-up);
}
.sw-stock-data .sw-down-color {
	color: var(--sw-stock-color-down);
}
.sw-stock-data dl dt {
	text-align: left;
}
.sw-stock-data dl dd {
	text-align: right;
}
.sw-stock-data span[data-sw-id-name='change'],
.sw-stock-data span[data-sw-id-name='changeRatio'] {
	display: inline-block;
}

/* 株価情報 -----------------------レイアウト */
/* base --row left/right */
#sw-stock-board .sw-stock-data dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
#sw-stock-board .sw-stock-data dl >* {
	flex: 1 0 auto;
	align-content: flex-end;
}

#sw-stock-board .sw-stock-data dd{
	padding-top: 3px;
	padding-bottom: 3px;
}

/* base --column left/right */
#sw-stock-board .sw-stock-data[data-sw-data-type='column'] dl {
	justify-content: center;
	align-content: flex-start;
	padding-right: 10px;
	height: 5.55em;
	padding-top: 0px;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data.sw-grid-change dl > dt{
	margin: 10px 0;
}
#sw-stock-board .sw-stock-data[data-sw-data-type='column'] dl >* {
	width: 100%;
}
/*  --row dt */
#sw-stock-board .sw-stock-data[data-sw-text-align='left']:not([data-sw-data-type='column']) dl > dt,
#sw-stock-board .sw-stock-data[data-sw-text-align='right']:not([data-sw-data-type='column']) dl > dt {
	flex: 0 0 auto;/* 固有 */
	white-space: nowrap;/* 固有 */
}
/*  -- left/left */
#sw-stock-board .sw-stock-data[data-sw-text-align='left'] dl >* {
	text-align: left;
}
/*  -- right/right */
#sw-stock-board .sw-stock-data[data-sw-text-align='right'] dl >* {
	text-align: right;
}
/*  -- center/center */
#sw-stock-board .sw-stock-data[data-sw-text-align='center'] dl >* {
	text-align: center;
}
/*  -- center/right */
#sw-stock-board .sw-stock-data[data-sw-text-align='dt-center'] dl > dt {
	text-align: center;
}

/* 株価情報 -----------------------単位 */

/* 前日比率()ver */
#sw-stock-board .sw-stock-data dl [data-sw-id-name]:not([data-sw-id-name='changeRatio'])::after {
	content: attr(data-sw-unit-type);
}
#sw-stock-board .sw-stock-data [data-sw-unit-type]:not([data-sw-id-name='changeRatio'] >span):not([data-sw-id-name='volume'])::after{
	font-size: .6rem;
	margin-left: 0.25rem;
}
#sw-stock-board .sw-stock-data dl [data-sw-id-name='volume']::after {
	margin-left: 0.25rem;
}
#sw-stock-board .sw-stock-data dl [data-sw-id-name='changeRatio'] >span::before {
	font-size: 1rem;
	margin-left: 0.25rem;
}
#sw-stock-board .sw-stock-data dl [data-sw-id-name='changeRatio'] >span::before {
	content: attr(data-sw-unit-type);
}
#sw-stock-board .sw-stock-data dl [data-sw-id-name='changeRatio']::before {
	content: '(';
	margin-right: 0.1rem;
}
#sw-stock-board .sw-stock-data dl [data-sw-id-name='changeRatio'] >span::after {
	content: ')';
	margin-left: 0.1rem;
}

@container (max-width: 768px) {

	#sw-stock-board .sw-stock-data[data-sw-data-type='column'] dl {
		padding-right: 0;
		padding-top: 0;
	}
	#sw-stock-board .sw-stock-data [data-sw-unit-type]:not([data-sw-id-name='changeRatio'] >span):not([data-sw-id-name='volume'])::after {
		font-size: .8rem;
	}
	#sw-stock-board .sw-stock-data dd{
		padding-top: 3px;
		padding-bottom: 3px;
	}

}

@container (max-width: 630px) {

	#sw-stock-board .sw-stock-data.sw-grid.sw-grid-col3 dd,
	#sw-stock-board .sw-stock-data.sw-grid.sw-grid-col4 dd{
		width: 100%;
	}

}

@container (max-width: 600px) {

	#sw-stock-board .sw-stock-data.sw-grid-change dl:nth-of-type(1){
		align-items: flex-start;
	}
	#sw-stock-board .sw-stock-data.sw-grid-change dl:nth-of-type(1) dt{
		margin-top: 8px;
	}
	#sw-stock-board .sw-stock-data.sw-grid-change dl:nth-of-type(1) dd{
		margin-top: 2px;
	}
	#sw-stock-board .sw-stock-data.sw-grid-change dl dd > span{
		display: block;
	}
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data [data-sw-id-name='changeRatio']{
		padding-top: 5px;
	}

}

/* チャート ----------------------- */
#sw-chart {
	height: 120px;
	min-height: 120px;
}
#sw-chart-period {
	margin-bottom: 0.5rem;
	padding: 0.2rem 0.5rem;
	border: 1px solid var(--sw-border-color-0);
	border-radius: 6px;
	color: var(--sw-text-color-2);
}
[data-sw-chart-parent-element] > img {
	width:100%;
}

/* 全体 ----------------------- */
.sw-container {
	container-type: inline-size;
}
.sw-grid {
	display: grid;
	gap: 20px;/* 固有 */
}
.sw-grid[data-col=auto] {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}
.sw-grid[data-col=auto-strech] {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.sw-grid[data-col=auto-strech]>* {
	flex: 1 0 auto;
}
.sw-grid[data-col=auto]>* {
	flex: 1 1 100%;
}
.sw-grid[data-col="2"] {
	grid-template-columns: repeat(2, 1fr);
}
.sw-grid[data-col="3"] {
	grid-template-columns: repeat(3, 1fr);
}
.sw-grid[data-col="4"] {
	grid-template-columns: repeat(4, 1fr);
}
.sw-grid[data-col="5"] {
	grid-template-columns: repeat(5, 1fr);
}
.sw-grid[data-col="6"] {
	grid-template-columns: repeat(6, 1fr);
}
.sw-grid[data-col="7"] {
	grid-template-columns: repeat(7, 1fr);
}
.sw-grid[data-col="8"] {
	grid-template-columns: repeat(8, 1fr);
}
.sw-grid[data-col="9"] {
	grid-template-columns: repeat(9, 1fr);
}
.sw-grid[data-col="10"] {
	grid-template-columns: repeat(10, 1fr);
}
.sw-grid-col2{
	grid-template-columns: 20fr 21fr;
}
.sw-grid-col3{
	grid-template-columns: 4fr 3fr 4fr;
}
.sw-grid-col4{
	grid-template-columns: 10fr 10fr 10fr 11fr;
}

.lang_en .sw-grid-col2{
	grid-template-columns: 1fr 1fr;
}

.lang_en .sw-grid-col3{
	grid-template-columns: 1fr 1fr 1fr;
}

.lang_en .sw-grid-col4{
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-grid-col3.sw-stock-data dl > dt{
	width: 100%;
	margin-right: 0;
}

.lang_en #sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-grid-col3.sw-stock-data dl > dt{
	width: 100%;
	margin-right: 0;
}

@container (max-width: 980px) {
	.sw-grid-col3{
		grid-template-columns: 10fr 8fr 10fr;
	}
}

@container (max-width: 768px) {
	.sw-grid {
		gap: 20px 10px;
	}
}

@container (max-width: 630px) {
	.sw-grid{
		gap: 10px 10px;
	}
}

@container (max-width: 395px) {
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data.sw-grid-col4 dt{
		width: 100%;
	}
}

@container (max-width: 340px) {
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data.sw-grid-col3 dt{
		height: 33px;
	}
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data.sw-grid-col3 dt span:not([data-sw-txt-hide='on']){
		display: block;
		width: 100%;
	}
}

@container (max-width: 971px) {
	.lang_en #sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-grid-col4.sw-stock-data dl > dt{
		width: 100%;
	}
}

@container (max-width: 870px) {
	.lang_en #sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-grid-col4.sw-stock-data dl > dt{
		width: auto
	}
}

@container (max-width: 630px) {
	.lang_en #sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-grid-col4.sw-stock-data dl > dt{
		width: 100%;
	}
}

@container (max-width: 937px) {
	.lang_en #sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-grid-col3.sw-stock-data dl > dt{
		height: 32px;
		align-content: center;
	}
}

@container (max-width: 870px) {
	.lang_en #sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-grid-col3.sw-stock-data dl > dt{
		height: auto;
	}
}

@container (max-width: 455px) {
	.lang_en #sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-grid-col3.sw-stock-data dl > dt{
		height: 32px;
	}
}


/* テンプレ固有 ----------------------- */
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head {
	justify-content: flex-start;
	align-items: center;
	padding: 1rem 1.5rem;
	background-color: var(--sw-corporate-color-2);
	color: var(--sw-text-color-0);
	margin-bottom: 20px;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head.sw-stock-head-box{
	display: flex;
	width: 100%;
	flex-wrap: nowrap;
	justify-content: space-between;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head.sw-stock-head-box .sw-stock-head-inner:nth-of-type(1){
	width: calc(100% - 9rem - 50px);
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head.sw-stock-head-box .sw-stock-head-inner:nth-of-type(2){
	width: 9rem;
	display: flex;
	justify-content: flex-end;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head.sw-stock-head-box .sw-stock-head-inner:nth-of-type(1) h5,
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head.sw-stock-head-box .sw-stock-head-inner:nth-of-type(1) p,
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head.sw-stock-head-box .sw-stock-head-inner:nth-of-type(1) [data-sw-id-name='tradeDate']{
	padding-bottom: 3px;
	margin-right: 15px;
	display: inline-block;
	white-space: nowrap;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head.sw-stock-head-box .sw-stock-head-inner:nth-of-type(2) .sw-link{
	display: inline-flex;
	white-space: nowrap;
	padding-bottom: 0;
	align-items: center;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head > * {
	flex: 0 0 auto;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head .sw-link {
	margin-left: auto;
	margin-top: 2px;
	height: 28.2px;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head .sw-link svg {
	margin-bottom: 1px;
	margin-left: 5px;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] [data-sw-align-hight-chart],
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] [data-sw-chart-parent-element] {
	padding: 1.5rem;
	background-color: var(--sw-background-color-0-alpha90);
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] > .sw-grid[data-col="2"] {
	grid-template-columns: 1fr 400px;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data.sw-grid[data-col=auto-strech] {
	justify-content: stretch;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data dl > dt ,
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data.sw-grid[data-col=auto-strech] > dt {
	flex-grow: 0;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data dt {
	background-color: var(--sw-corporate-color-2);
	color: var(--sw-text-color-0);
	text-align: center;
	padding: 0.25rem 0.5rem;
	margin-right: .5rem;
	width: auto;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data[data-sw-element='2'],
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data[data-sw-element='3'] {
	border-top: 1px solid var(--sw-corporate-color-2);
	padding-top: 20px;
	gap: 5px 20px;
}
 #sw-stock-board[data-sw-temp-id='L-4845-3-C'] [data-sw-element='1'] [data-sw-data-type='column'] dt {
	margin-right: auto;
	margin-top: 10px;
	margin-bottom: 10px;
 }
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data [data-sw-id-name='changeRatio'] {
	margin-left: 10px;
}
#sw-stock-board .sw-stock-data.sw-grid.sw-grid-col4{
	border-top: 1px solid #888;
	border-bottom: 1px solid #888;
	padding: 15px 0;
}

/* フォント */
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head h5 {
	font-size: 1.235295rem;
	font-weight: normal;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head > p span:first-of-type,
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head [data-sw-id-name='tradeDate'],
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head .sw-link {
	font-size: 0.8rem;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data dd {
	font-weight: bold;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data [data-sw-id-name*='Date'],
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data [data-sw-id-name*='Time'] {
	font-weight: normal;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data dt {
	font-size: 0.70588rem;
	min-width: 5em;
}
.lang_en #sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data dt {
	font-size: 0.58rem;
	min-width: 6em;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data dd {
	font-size: 1rem;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data [data-sw-unit-type]::after {
	font-size: 0.8rem;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] [data-sw-element='1'] > .sw-stock-data dd {
	font-size: 1.75rem;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] [data-sw-element='1'] [data-sw-unit-type]:not([data-sw-id-name='volume'])::after {
	font-size: 1.5rem;
}
#sw-stock-board[data-sw-temp-id='L-4845-3-C'] [data-sw-element='1'] dd[data-sw-id-name='price'] {
	font-size: 3.2rem;
	line-height: 1;
	padding-top: 0;
	padding-bottom: 0;
}

@container (max-width: 870px) {
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] > .sw-grid[data-col="2"] {
		grid-template-columns: 1fr;
	}
}

@container (max-width: 768px) {
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head {
		gap: 5px 10px;
		padding: 1rem;
		align-items: flex-start;
	}
	.lang_en #sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head {
		gap: 5px 10px;
		padding: 1rem;
		align-items: flex-end;
	}
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] [data-sw-align-hight-chart],
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] [data-sw-chart-parent-element] {
		padding: 1rem;
	}
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data[data-sw-element='2'] {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] #sw-chart {
		height: 200px !important;
	}
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data dd {
		font-size: 1.25rem;
	}
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] [data-sw-element='1'] > .sw-stock-data dd {
		font-size: 1.5rem;
	}
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] [data-sw-element='1'] dd[data-sw-id-name='price'] {
		font-size: 2.4rem;
	}
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data dt{
		padding-left: .25rem;
		padding-right: .25rem;
	}
	#sw-stock-board .sw-stock-data.sw-grid.sw-grid-col4{
		padding-bottom: 7px;
	}
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head .sw-link {
		margin-top: 0;
	}
}

@container (max-width: 600px) {
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-data [data-sw-id-name='changeRatio']{
		font-size: 1rem;
	}
	#sw-stock-board .sw-stock-data dl [data-sw-id-name='changeRatio'] >span::before{
		font-size: .8rem;
	}
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] [data-sw-element='1'] [data-sw-unit-type]:not([data-sw-id-name='volume'])::after{
		font-size: 1rem;
	}
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head .sw-link {
		margin-top: 0px;
		height: 20px;
	}
}

@container (max-width: 319px) {
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head h5{
		font-size: 1rem;
	}
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head p{
		font-size: 0.8rem;
	}
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head [data-sw-id-name='tradeDate']{
		font-size: 0.7rem;
	}
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head .sw-link{
		font-size: 0.7rem;
	}
	#sw-stock-board[data-sw-temp-id='L-4845-3-C'] .sw-stock-head .sw-link {
		margin-top: 0;
		height: 18px;
	}
}

/* highcharts ----------------------- */
.highcharts-background,
.highcharts-plot-background {
	fill: #ffffff00;
}
.highcharts-plot-border {
	stroke-width: 0;/* 枠線不要な場合は0 */
}
.highcharts-axis-labels text {
	color: var(--sw-corporate-color-2) !important;
	fill: var(--sw-corporate-color-2) !important;
	font-size: 0.7em !important;
}
.highcharts-xaxis .highcharts-axis-line,
.highcharts-yaxis .highcharts-axis-line {
	stroke: var(--sw-corporate-color-2);
}
.highcharts-xaxis .highcharts-tick {
	stroke-width: 0;/* tick不要な場合は0 */
}
.highcharts-yaxis-grid .highcharts-grid-line {
	stroke-width: 1;
	stroke: var(--sw-corporate-color-2);
}
.highcharts-yaxis .highcharts-axis-line {/* 一番右のX軸grid不要な場合 */
	display: none;
}



