@charset "utf-8";

/*
============================================================ */
/* button
============================================================ */
.btn {
  display: inline-block;
  position: relative;
  min-width: 385px;
  line-height: inherit;
  padding: 16px 48px;
  border-radius: 40px;
  outline: none;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-decoration: none !important;
  box-sizing: border-box;
  cursor: pointer;
}
button.btn {
  transition: .3s;
}
.btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 32px;
  width: 8px;
  height: 8px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: translateY(-50%) rotate(45deg);
  transition: all .2s ease-in-out;
}
.btn:hover {
  text-decoration: none !important;
}
.btn-01 {
  color: #fff;
  background: #323232;
}
.btn-01:after {
  border-color: #fff;
}
.btn-01:hover {
  background: #5D5D5D;
}

@media screen and (max-width: 1024px) {
  .btn {
    min-width: 37.6vw;
    font-size: 1.95vw;
  }
  .btn:after {
    right: 3.13vw;
  }
}

@media screen and (max-width: 599px) {
  .btn {
    min-width: inherit;
    width: 100%;
    font-size: 4.27vw;
  }
  .btn:after {
    right: 4.27vw;
  }
}

/*
============================================================ */
/* utilities
============================================================ */
.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

@media screen and (min-width: 812px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-center {
    text-align: center !important;
  }

  .text-sm-right {
    text-align: right !important;
  }
}
