@charset "UTF-8";

/*ボタン2つ並び*/
.button-wrap {
	display: flex;
}

.button-wrap a {
      display: inline-flex;
      justify-content: center;
      width: 100%;
    }

@media screen and (max-width: 834px) {
      .button-wrap {
        flex-direction: column;
      }

      .button-wrap a {
		margin-top: 1em;
        width: 100%;
      }
    }

