/**
 * 旧テーマ互換：icon-arrow-r
 *
 * 2026-07-20：旧style.cssから内容を変更せず分割。
 */

/* 賢威の icon-arrow-r をSWELLで再現 */
.icon-arrow-r {
	position: relative;
	padding-left: 29px;
}

/* 矢印の横線 */
.icon-arrow-r::before {
	content: "";
	position: absolute;
	left: 2px;
	top: 50%;
	width: 14px;
	height: 2px;
	background-color: #baa15f;
	transform: translateY(-50%);
	box-sizing: border-box;
}

/* 矢印の先端 */
.icon-arrow-r::after {
	content: "";
	position: absolute;
	left: 14px;
	top: 50%;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 10px solid #baa15f;
	transform: translateY(-50%);
}
