:root {
  --footer-height: 88px;
  --footer-height-sp: 60px;
}

.l-wrapper {
  margin-bottom: var(--footer-height);
}

.bottom-fixed {
  height: var(--footer-height);
  background: #1a1a1a;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

@media screen and (max-width: 767px) {
  .l-wrapper {
    margin-bottom: var(--footer-height-sp);
  }

  .bottom-fixed {
    height: var(--footer-height-sp);
    padding: 1vw;
  }
}

.bottom-fixed .text {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: #FFFFFF;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .bottom-fixed .text {
    display: none;
  }
}

.bottom-fixed .text img {
  width: 22px;
  vertical-align: middle;
  margin-bottom: 0.21em;
  margin-left: 2px;
}

@media screen and (max-width: 767px) {
  .bottom-fixed .text img {
    width: 2.9333333333vw;
    margin-left: 0.6666666667vw;
  }
}

.bottom-fixed .button {
  margin: 0;
}

.bottom-fixed .button_link {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  width: 420px;
  height: 50px;
  color: #FFFFFF;
  background: linear-gradient(180deg, #d31618 50%, #b21e22 50.1%);
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-right: 20px;
  align-items: center;
  border-radius: 100px;
  position: relative;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .bottom-fixed .button_link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    cursor: pointer;
  }

  .bottom-fixed .button_link:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .bottom-fixed .button {
    width: 100%;
    height: 100%;
  }

  .bottom-fixed .button_link {
    width: 100%;
    height: 100%;
    border-radius: 6.6666666667vw;
    font-size: 2.6666666667vw;
  }
}

.bottom-fixed .button_link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left: 7px solid #FFFFFF;
}

@media screen and (max-width: 767px) {
  .bottom-fixed .button_link::before {
    right: 2.6666666667vw;
    border-width: 0.6666666667vw;
    border-left-width: 1.3333333333vw;
  }
}

.bottom-fixed .button_white {
  font-size: 1.6rem;
  font-weight: 900;
  color: #b62627;
  letter-spacing: 0.07em;
  display: inline-block;
  background: #FFFFFF;
  padding: 0.2em 2em;
  border-radius: 30px;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .bottom-fixed .button_white {
    font-size: 2.1333333333vw;
    border-radius: 2.6666666667vw;
    margin-right: 1.3333333333vw;
    padding: 0.15em 0.5em 0.1em;
  }
}

.bottom-fixed .button_number {
  font-size: 1.1em;
  line-height: 1;
}

.bottom-fixed .button_small {
  font-size: 0.9em;
}

.bottom-fixed .button_icon {
  display: inline-block;
  position: relative;
  padding-left: 1.4em;
}

.bottom-fixed .button_icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 1em;
  height: 1.1em;
  background: url("../images/common/icon_doc_white.svg") no-repeat center center/contain;
}