@charset "utf-8";

#back {
	display: flex;
	justify-content: center;
	margin: var(--Margin_S) 0 0;
	& a {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		margin: var(--Size_12) 0 0;
		padding: 0 0 var(--Size_06) var(--Size_28);
		font-size: var(--A_font-size);
		color: var(--Color_R);
		font-weight: 600;
		& i {
			padding-left: var(--Size_04);
			font-size: var(--Size_12);
		}
	}
	& a:before {
		content: '';
		position: absolute;
		bottom: 0;
		right: 0;
		width: calc( 100% - 5px );
		height: 6px;
		background: var(--Color_R);
	}
	& a:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 38px;
		border-bottom: 38px var(--Color_R) solid;
		border-left: 38px transparent solid;
		aspect-ratio: 1 / 1;
	}
	& a:hover {
		color: var(--Color_K);
	}
	& a:hover:before {
		background: var(--Color_K);
	}
	& a:hover:after {
		border-bottom: 38px var(--Color_K) solid;
	}
}
