@charset "UTF-8";

/* リンクボタン */

a{
	color: #333;
	text-decoration: none;
}

.button {
    display: inline-block;
    padding: .5em 2.5em .4em 1em;
    border: 1px solid #a5a5a5;
    border-radius: 5px;
    background: #fff;
    position: relative;
    line-height: 1.4;
    transition: all ease .20s;
  }
  .button::after {
    content: '＞';
    position: absolute;
    top: 50%;
    right: 1.2em;
    transform: translateY(-50%);
    transition: all 0.3s ease 0s;
  }
  .button:hover {
    background: #886349;
    border-color: #fff;
    color: #fff;
  }
  .button:hover::after {
    right: 0.8em;
    color: #fff;
  } 
