@charset "utf-8";


/* 
==============================================================*/

#innerLink a {
	/*font-size: 200%;*/
}



/* ボタンアニメーション
==============================================================*/

.btn-animation {
  display: inline-block;
  width: 100%;
  text-align: center;
  background-color: #e60012;
  border: 2px solid #333;
  font-size: 20px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  padding: 20px 24px;
  border-radius: 4px;
  position: relative;
}

.btn-animation span {
  position: relative;
  z-index: 1;
}

.btn-animation::before,
.btn-animation::after {
  content: "";
  display: block;
  background-color: #f3f3ef;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: .2s;
}
.btn-animation::before {
  left: 0;
}
.btn-animation::after {
  right: 0;
}

.btn-animation:hover:before,
.btn-animation:hover:after {
  width: 0;
  background-color: #f3f3ef;
}

.btn-animation:hover {
  color: #fff;
	text-decoration: none;
}



















