@charset "utf-8";

/* loading */
.gift [loading='lazy'] {
	background: url(/images/common/loading.gif) no-repeat center center;
	background-size: 25px 25px;
}

/* gift-nav */
.gift-nav {
	display: flex;
	width: 980px;
	margin: 0 auto;
}
.gift-nav li {
	width: calc(100% / 3);
}
.gift-nav li a,
.gift-nav li span {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	border-bottom: 3px solid #fff;
	font-size: 15px;
	text-align: center;
}
.gift-nav li a {
	border-bottom: 3px solid #fff;
	text-decoration: none;
}
.gift-nav li .active {
	border-bottom: 3px solid #151515;
	font-weight: bold;
}

/* gift-keyvisual */
.gift-keyvisual {
	width: 980px;
	margin: 0 auto;
}

/* gift-button */
.gift-button {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 424px;
	height: 54px;
	margin: 0 auto;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
	color: #333;
	font-size: 16px;
	text-decoration: none;
}
.gift-button::after {
	position: absolute;
	top: 50%;
	right: 20px;
	width: 6px;
	height: 6px;
	border: 0;
	border-right: solid 2px #333;
	border-bottom: solid 2px #333;
	transform: rotate(-45deg) translateY(-50%);
	content: '';
}
