@charset "UTF-8";
/* opacity: 0.3 */
/* ブレイクポイント設定 */
/* デフォルト 375px ~ 575px */
/* 374px 以下で適用 */
/* 576px ~ 767px で適用 */
/* 768px ~ 959px で適用 */
/* 960px 以上で適用 */
.button {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  height: 50px;
  text-align: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.button:hover {
  opacity: 0.75;
}
.button:active {
  opacity: 0.5;
}
@media screen and (min-width: 960px) {
  .button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 60px;
    gap: 16px;
  }
}
.button--primary {
  background-color: #008d54;
}
.button--secondary {
  background-color: #008d54;
}
.button__text {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
  -webkit-box-flex: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
  margin-left: 32px;
}
@media screen and (min-width: 960px) {
  .button__text {
    font-size: 15px;
  }
}
.button__icon {
  margin-right: 22px;
}
@media screen and (min-width: 960px) {
  .button__icon {
    margin-right: 18px;
  }
}