/* Shrink */
.hvr-shrink {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

/* もっと詳しくページ移動 */
.kuwashiku {
	position: relative;
	display: inline-block;
	padding: .7em 5em;
	background-color: #fff;
	border: 1px solid #496991;
	color: #496991;
	text-align: center;
	text-decoration: none;
	margin: 1em 0;
}
.kuwashiku::after {
  position: absolute;
  top: 50%;
  right: .2em;
  content: '';
  margin-top: -5px;
  border: 7px solid transparent;
  border-top-width: 5px;
  border-bottom-width: 5px;
  border-left-color: #7BB1FB;
  transition: all .2s;
}
.kuwashiku:hover::after {
  right: -.05em;
}



