@charset "utf-8";
.button {
	width: 70%;
	margin-left: auto;
	margin-right: auto;
}

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

.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%;
}

.large-button .button {
	text-align: center;
	width: auto;
}
.button .mallLink {
	width: 600px;
	height: auto;
}
.large-button .button .mallLink {
	width: 601px;
	height: 159px;
}
.button img:nth-child(2),
.button img:nth-child(3) {
	display: none;
}
.large-button .button img {
	width: auto;
	transform: scale(1);
	max-width: 100%;
}

.text_link {
	margin-top: 20px;
	text-align: center;
}

/* add 20210312 */
@media screen and (max-width: 600px) {
.button .mallLink {
       width: 100%;
       height: auto;
}

.large-button .button .mallLink {
       width: unset;
       height: auto;
}
}

