@charset "utf-8";

/* ==========================================
  Button Components
========================================== */

/* Base CTA Button
------------------------------ */
.bz-cta a {
  margin: auto;
  color: var(--color__white);
  width: 232px;
  width: 19.5rem;
  height: 55px;
  height: 4.4375rem;
  background: var(--gradient-primary);
  border: solid var(--color__white) 1px;
  border: solid var(--color__white) 0.0625rem;
  box-shadow: 0 0 20px rgb(255 255 255 / 50%);
  box-shadow: 0 0 1.25rem rgb(255 255 255 / 50%);
  border-radius: var(--radius__round);
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.1em;
}

.bz-cta a:after {
  content: "";
  display: inline-block;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  background-image: url("../../../img/arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 15px;
  margin-left: 0.9375rem;
  vertical-align: middle;
}

/* Contact CTA Button
------------------------------ */
.bz-contact__cta-btn {
  display: flex;
  color: var(--color__white);
  width: 315px;
  width: 19.6875rem;
  height: 58px;
  height: 3.625rem;
  border-radius: 88.235px;
  border-radius: 5.5146875rem;
  background: #255ff4;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  margin-bottom: 1rem;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.bz-contact__cta-btn:last-child {
  margin-bottom: 0;
}

/* Fixed Bottom Button
------------------------------ */
.kotei-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000000eb;
  z-index: var(--z-index__modal);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  padding: 10px 0;
  padding: 0.625rem 0;
}

.kotei-btn.visible {
  transform: translateY(0);
  bottom: 0;
}

.kotei-btn.hidden {
  transform: translateY(200%);
}

.kotei-cta__btn a {
  margin: auto;
  color: var(--color__white);
  max-width: 300px;
  width: 60%;
  height: 49px;
  height: 3.0625rem;
  background: var(--gradient-primary);
  border: solid var(--color__white) 1px;
  border: solid var(--color__white) 0.0625rem;
  box-shadow: 0 0 20px rgb(255 255 255 / 50%);
  box-shadow: 0 0 1.25rem rgb(255 255 255 / 50%);
  border-radius: var(--radius__round);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
}

.kotei-cta__btn a:after {
  content: "";
  display: inline-block;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  background-image: url(../../img/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 15px;
  margin-left: 0.9375rem;
  vertical-align: middle;
}

/* Media Queries
------------------------------ */
@media (min-width: 768px) {
  .bz-cta__btn a {
    width: 302px;
    width: 25.875rem;
    height: 64px;
    height: 5rem;
    font-size: 16px;
    font-size: 1.2rem;
  }

  .bz-head__btn a {
    font-size: 12.3px;
    font-size: 0.76875rem;
    width: min(20vw, 232px);
    font-size: min(1.1vw, 12.3px);
  }

  .kotei-cta__btn a {
    margin-right: 1%;
    max-width: 250px;
    height: 59.2px;
    height: 3.7rem;
  }

  .kotei-btn {
    background-color: initial;
  }

  .bz-contact__cta-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    gap: 1rem;
  }
}
