/* sports */

@media (max-width: 767px) {

	#dwArts .dwgroup {
		padding: 0;
		margin: 0;
	}

}

@media (min-width: 768px) {

	#dwArts .cell01 { grid-area: cell01; }
	#dwArts .cell02 { grid-area: cell02; }
/* 	#dwArts .cell03 { grid-area: cell03; } */

	#dwArts .lv1-panel {
		display: grid;
		width: 100%;
		grid-template-areas:
			"cell01 cell02 . ."
			"cell03 cell03 cell03 cell03"
		;
		grid-template-columns: repeat(auto-fit, 4, 1fr);
		grid-template-rows: repeat(2, auto);
		gap: 10px;
	}

	#dwArts div.lv2-heading span { display: none; }
	#dwArts a { color: #D5485B; }
	#dwArts a:hover { text-decoration: underline; }

	#dwArts .lv2-title {
		background: #F3F3F3;
		font-size: clamp(0.75rem, 0.417rem + 0.69vw, 0.938rem);
		line-height: 1.4;
		padding: .25em .5em;
	}
	#dwArts .lv2-panel {
		font-size: clamp(0.625rem, 0.292rem + 0.69vw, 0.813rem);
	}

	#dwArts .accordion-lv2 {
		border: 1px #E8E8E8 solid;
		margin: 0;
	}

	#dwArts .dwgroup .accordion-lv2 + .accordion-lv2 {
		margin: 1em 0 0;
	}

	#dwArts .lv2-panel {
		padding: 1em;
		margin: 0;
	}
	#dwArts .lv2-panel li { line-height: 1.4; }

	/* cell03 */
	
	#dwArts .cell03 .lv2-panel {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		justify-content: space-between;
		gap: 1em; /* 行間・列間はお好みで */
	}
	#dwArts .cell03 .lv2-panel li {
		padding: 0 1em 0 0;
	}

}