div[class^="detail_"] ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	margin: 0 0 30px;
	padding: 0;
	gap: 25px 15px;
	font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', YuGothic, 'Yu Gothic', 'Meiryo UI', 'Osaka', sans-serif;
	color: var(--theme-1);
	font-weight: 600;
}
div[class^="detail_"] ul li,
div[class^="detail_"] ul li > * {
	box-sizing: border-box;
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 5px 5px 5px 0;
	border: 2px solid #dfdfdf;
	border-radius: 10px;
}
div[class^="detail_"] ul li {
	max-width: 80%;
	margin: 0 auto;
}
div[class^="detail_"] ul li::before,
div[class^="detail_"] ul li > *::before {
	content: '';
	box-sizing: border-box;
	display: block;
	width: 14%;
	min-width: 40px;
	margin: -5px 1.25em -5px 0;
	align-self: stretch;
	background: #f3eeeb url(/img/common/icon_btn_arrow_br.png) no-repeat center center;
	border-radius: 8px 0 0 8px;
	transition: background-color .5s ease-in-out;
}
div[class^="detail_"] ul li,
div[class^="detail_"] ul li > * {
	min-height: calc(3.5em + 10px);
}
div[class^="detail_"] ul li:has(a) {
	min-height: auto;
	padding: 0;
	border: none;
	border-radius: 0;
	min-width: 250px;
}
div[class^="detail_"] ul li:has(a)::before {
	content: none;
}
div[class^="detail_"] ul li a {
	background: #f9f6f5;
	border: 3px solid #ede5e0;
	margin: 0 auto;
	color: currentcolor;
	line-height: 1;
	text-decoration: none;
	outline: 5px solid rgb(0 0 0 / 0);
	font-size: clamp(1rem, 1.5vw, 1.35rem);
	transition: outline .5s ease-out, background-color .5s ease-out;
}
div[class^="detail_"] ul li a:hover,
div[class^="detail_"] ul li a:focus {
	text-decoration: underline;
	background-color: #fff;
	outline: 3px solid rgb(168 159 153 / .5);
}
div[class^="detail_"] ul li a:hover::before,
div[class^="detail_"] ul li a:focus::before {
	background-color: #f9f6f5;
}

@media ( min-width: 576px ) {
div[class^="detail_"] ul li {
		width: calc((100% - 25px) / 2);
		max-width: none;
		min-height: 76px;
		margin: 0;
	}
	div[class^="detail_"] ul li > * {
		min-height: 76px;
	}
}

@media ( min-width: 768px ) {}

@media ( min-width: 992px ) {
	div[class^="detail_"] ul {
		gap: 25px;
	}
}