.btn_01 {
  width: 80.9%;
  top: 81.5%;
  left: 10%;
}

.btn_02 {
  width: 75.5%;
  top: 81%;
  left: 12.25%;
}

.btn_03 {
  width: 75.5%;
  top: 73%;
  left: 12.25%;
}

.btn_04 {
  width: 30.4%;
  top: 61%;
  left: 66.5%;
}

.btn_05 {
  width: 30.4%;
  top: 56%;
  left: 66.5%;
}

.btn_06 {
  width: 30.4%;
  top: 62%;
  left: 66.5%;
}

.thing06-1 {
  width: 99.4%;
  top: 0%;
  left: 0%;
}

.thing08-1 {
  width: 38.9%;
  top: 38.5%;
  left: 11%;
  cursor: pointer;
}

.thing08-2 {
  width: 37%;
  top: 55.3%;
  left: 53%;
  cursor: pointer;
}

.thing08-3 {
  width: 48%;
  top: 63%;
  left: 5%;
  cursor: pointer;
}

.thing08-4 {
  width: 35.5%;
  top: 88.7%;
  left: 16%;
  cursor: pointer;
}

.tel {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 30%;
}
.line {
  position: absolute;
  top: 61%;
  left: 0%;
  width: 100%;
  height: 27%;
}

.shrink {
  animation: shrink 2s infinite ease-in-out;
}

@keyframes shrink {
  0% {
    scale: 1;
  }

  50% {
    scale: 1.05;
  }

  100% {
    scale: 1;
  }
}

.popBG {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0%;
  top: 0%;
  z-index: 1000;
  background-color: rgb(0, 0, 0, 0.7);
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}

.popControl--active {
  opacity: 1;
  visibility: visible;
}

.popContainer {
  max-width: 1000px;
  width: 100%;
  /* 這裡回推高度要跟【js-xmark】的字體大小一致 且要【負數】 */
  margin: 5rem auto 0 auto;
}

.xmarkControl {
  position: sticky;
  top: 2%;
  cursor: pointer;
  border-radius: 5px;
}

.js-xmark {
  position: absolute;
  right: 2%;
  font-size: 3rem;
  padding: 0 0.5%;
  border-radius: 5px;
  background-color: #000;
  color: #fff;
  transition: all 0.3s;
}

.js-xmark:hover {
  background-color: #fff;
  color: #000;
  rotate: 180deg;
}

@media (max-width: 768px) {
  .popContainer {
    width: 90%;
    /* 這裡回推高度要跟【js-xmark】的字體大小一致 且要【負數】 */
    margin: 0.5rem auto 0 auto;
  }

  .js-xmark {
    font-size: 2.5rem;
    padding: 0 1%;
  }
}
