.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;

  border-radius: var(--btn-radius);

  font-family: var(--btn-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  text-align: center;

  cursor: pointer;
  user-select: none;

  transition: var(--btn-transition);

  appearance: none;
  -webkit-appearance: none;
  padding: 0 24px;
  -moz-appearance: none;
}

.btn input {
  display: none;
}

.btn::selection,
.btn *::selection {
  background: transparent;
  color: inherit;
}

.btn::-moz-selection,
.btn *::-moz-selection {
  background: transparent;
  color: inherit;
}
.btn--primary:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5em;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  transform: translateX(-4em) skewX(-45deg);
}
.btn--primary:hover:before {
  animation: move-light 0.4s linear;
}
.btn--primary {
  width: max-content;
  height: var(--btn-height);

  background: var(--btn-primary-bg);
  color: var(--btn-primary-color);

  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;


  background: rgba(255, 255, 255, 0.6);

  transform: translateX(-4em) skewX(-45deg);
}

.btn--primary:hover::before {
  animation: move-light 0.4s linear;
}
.btn--primary, .btn--primary-lg {
 height: 71px;
  font-size: 24px;
  padding: 0 32px;
}
.btn--secondary {

  height: var(--btn-height);

  background: var(--btn-secondary-bg);
  border: 1px solid var(--btn-secondary-border);

  color: var(--btn-secondary-color);
}

.btn--secondary:hover {
  border-color: var(--btn-outline-border);
}
.btn--outline {

width: min-content;
  padding: 20px 32px;
  gap: 8px;
  font-size: 24px;
  white-space: nowrap;
color: var(--btn-outline-border);
  background: transparent;
  border: 1px solid var(--btn-outline-border);
  border-radius: 10px;
}
.btn--outline:hover {
  background: #161611;
}


@media only screen and (max-width: 720px) {
  .btn--outline {
    height: 44px;
    padding: 12px 24px;
    font-size: 15px; }
  .btn--primary {
    width: max-content;
    height: 44px;
    padding: 12px 24px;
    font-size: 15px;
    background: var(--btn-primary-bg);
    color: var(--btn-primary-color);

    position: relative;
    overflow: hidden;
  }}
.btn--primary-lg {
  height: var(--btn-lg-height);
  padding: 0 var(--btn-lg-padding-x);
  gap: var(--btn-gap);
  font-size: var(--btn-lg-font-size);
  border-radius: var(--btn-lg-radius);
}

.page-form__apk {
  width: 71px;
  height: 71px;
  align-content: center;
  text-align: center;
  border: 1px solid #5C6571;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 15px 0;
  cursor: pointer;
}
.page-form__apk > img {
  width: 30px;
  height: auto;
}
.page-form__apk:hover {
  background: #23272E;
}


@media only screen and (max-width: 1200px) {
  .page-form__apk {
    width: 48px;
    height: 48px;
    padding: 7px 0;

  }
  .page-form__apk > img {
    width: 30px;
    height: 31px;
  }
  .btn--secondary {

    height: 33px;
    font-size: 14px;


    color: var(--btn-secondary-color);
  }


}

@media only screen and (max-width: 720px) {
  .page-form__apk {
    width: 44px;
    height: 44px;
    padding: 7px 0;

  }
  .page-form__apk > img {
    width: 30px;
    height: 29px;
  }


}


.page-title {
  color: #F8FAFF;
  font-size: 56px;
  line-height: 110%;
  font-weight: 300;
}
.page-title .new-row-pc {
  width: 100%;
  display: block;

}
.page-title b {
  font-weight: 400; }
.page-title .color {
  color: #FFD52E; }
.page-title.size-80 {
  font-size: 80px; }
@media only screen and (max-width: 1200px) {
  .page-title .new-row-pc {
    width: max-content;
    display: inline;

  }
  .page-title {
line-height: 135%;
    font-size: 28px; }
  .page-title.size-80 {
    font-size: 50px; } }

@media only screen and (max-width: 1200px) {
  .btn--outline {
    height: 48px;
    padding: 12px 24px;
    font-weight: 400;
    font-size: 15px; }
  .btn--primary {
    width: max-content;
    height: 48px;
    padding: 12px 16px;
    font-size: 16px;
    background: var(--btn-primary-bg);
    color: var(--btn-primary-color);

    position: relative;
    overflow: hidden;
  }
  .btn--primary-lg {
    height: 48px;
    padding: 12px 18px;
    gap: var(--btn-gap);
    font-size: 16px;
    border-radius: 10px;
  }
}
@media only screen and (max-width: 720px) {
  .page-title {
    font-size: 30px;
    line-height: 120%}
  .page-title br {
    display: none; }
  .btn--primary-lg {
    height: 44px;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 10px;
  }
  .page-title.size-80 {
    font-size: 34px; } }
