/* 右に矢印アイコンボタン */
.btn001 {
    width: 250px;
    text-align: center;
    margin: 50px auto 20px;
    position: relative;
}
.btn001 a {
    color: #fff;
	font-size: 1em;
	line-height: 1em;
	font-weight: 400;
	padding: 18px 44px 18px 24px;
	display: block;
	background-color: var(--gift-purple);
	border-radius: 10px;
	position: relative;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn001 a::after {
	content: "";
	position: absolute;
	right: 18px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
}
.btn001 a:hover {
	color: #fff;
	text-decoration: none;
	opacity: 0.75;
	transform: translateY(-3px);
}