@charset "utf-8";
.button {
  width: 120px;
  /*
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	*/
}
.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%;
}
.text_link {
  text-align: left;
}
/*
html {
	font-size: 62.5%;
	min-width: 960px;
}

*{
	margin: 0;
	padding: 0;
}


body {
	font-size: 1.6rem;
	font-family: "メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN",Osaka,sans-serif;
	line-height: 1.75;
}


.box{
	padding: 20px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
	
h2 {
	margin-bottom: 30px;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: left;
}

h3 {
	margin-bottom: 10px;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
}

.wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

.column {
	width: 30%;
	text-align: left;
}

.column:nth-child(n+4) {
	margin-top: 60px;
}

.column:not(:nth-child(3n+1)) {
	margin-left: 5%;
}

.column > .text {
	margin-top: 10px;
}

.column > .title {
	margin-top: 10px;
	font-weight: bold;
	color: #e3007f;
	font-size: 1.8rem;
}

.column > .image {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 100%;
}

.column > .image > a {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #ccc;
	transition: all .3s;
}

.column > .image > a[href]:hover {
	opacity: .7;
}

*/