.index-section-list {
	background-color: rgba(246, 248, 249, 1);
}

.index-section-list__group {
	padding: 80px 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.index-section-list__item {
	padding: 32px;
	background-color: #fff;
	height: 280px;
	border-radius: 20px;
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 50%;
	position: relative;
	transition: 0.2s ease;
}

.index-section-list__item:hover {
	-webkit-box-shadow: 0px 5px 20px 2px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 5px 20px 2px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 5px 20px 2px rgba(0, 0, 0, 0.3);
}

.index-section-list__item-name {
	width: 65%;
	font-size: 22px;
	font-weight: 700;
	color: #000;
}

.index-section-list__item-arrow {
	position: absolute;
	top: 32px;
	right: 32px;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(0, 0, 0, 0.5);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.2s ease;
}

.index-section-list__item:hover .index-section-list__item-arrow{
	border: 1px solid rgba(239, 127, 26, 1);
	background-color: rgba(239, 127, 26, 1);	
}

.index-section-list__item:hover .index-section-list__item-arrow svg path {
	stroke: #fff;
	stroke-opacity: 1;
}

