@charset "utf-8";

.btn-block {
  transition: all .4s;
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  background-color: #0F0F16;
  color: var(--c-white);
  min-width: 335px;
  width: fit-content;
  max-width: 100%;
  padding: 10px 70px 10px 20px;
  border-radius: 10px;
}

.btn-block:hover {
  opacity: 0.6;
}

.btn-block__main {
  font-size: 40px;
  letter-spacing: 0;
  font-weight: 500;
  font-family: var(--ff-en);
}

.btn-block__sub {
  font-size: 15px;
  letter-spacing: 0.03em;
  font-weight: bold;
  line-height: 1.2666;
  text-align: center;
}

.btn-block::after{
  position: absolute;
  top: 50%;
  right: 1.2em;
  transform: translateY(-50%);
  content: '';
  display: block;
  background-image: url('data:image/svg+xml,<svg width="36" height="35" viewBox="0 0 36 35" fill="none" xmlns="http://www.w3.org/2000/svg"><g clip-path="url(%23clip0_540_8)"><path d="M1.97151 17.4282L32.8516 17.5718" stroke="%23EA5504" stroke-width="4"/><path d="M19.5057 3.6499L33.2119 17.4257L19.7518 30.9543" stroke="%23EA5504" stroke-width="4"/></g><defs><clipPath id="clip0_540_8"><rect width="36" height="35" fill="white"/></clipPath></defs></svg>');
  background-repeat: no-repeat;
  background-size: cover;
  width: 32px;
  aspect-ratio: 1;
}

@media screen and (max-width: 768px) {
  .btn-block__main {
  font-size: 28px;
  }
  .btn-block__sub {
  font-size: 14px;
  }
  .btn-block {
    flex-wrap: wrap;
    gap:8px;
  }
}
