@charset "utf-8";
.button {
	width: 100%;
}

.button .mallLink.reserve,
.button .mallLink.waiting,
.button .mallLink.soldout {
	position: relative;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.button .mallLink.soldout {
	cursor: default;
	pointer-events: none;
}

.button .mallLink.soldout::after {
	content: "売り切れ";
	position: absolute;
	z-index: 1;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background-color: #777;
	font-weight: 700;
}

.button .mallLink.reserve::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/btn_index02_no.png) no-repeat 0 0/100%;
	content: "";
}
.button .mallLink.reserve::after {
	opacity: 0;
	visibility: hidden;
	transition: all .3s;
}
.button .mallLink.on.reserve::after {
	opacity: 1;
	visibility: visible;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all .3s;
	background: url(../img/btn_index02_on.png) no-repeat 0 0/100%;
	content: "";
}

.button .mallLink.waiting::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/btn_index03_no.png) no-repeat 0 0/100%;
	content: "";
}
.button .mallLink.waiting::after {
	opacity: 0;
	visibility: hidden;
	transition: all .3s;
}
.button .mallLink.on.waiting::after {
	opacity: 1;
	visibility: visible;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all .3s;
	background: url(../img/btn_index03_on.png) no-repeat 0 0/100%;
	content: "";
}

.button img {
	width: 100%;
}

.text_link {
	margin-top: 0px;
}

