@charset "UTF-8";
.wrap {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.contentBox .leftBox {
  padding: 0 50px 0 0;
}
@media (max-width: 1023px) {
  .contentBox .leftBox {
    padding: 0 0 30px 0;
  }
}
.contentBox .rightBox {
  padding: 0;
}
@media (max-width: 768px) {
  .contentBox .rightBox {
    display: none;
  }
}

.side_contactInfo {
  margin-top: 20px;
}

/*感謝資訊*/
.thankInfo {
  margin-bottom: 25px;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #ccc;
  font-size: 15px;
  color: #222;
  line-height: 1.8;
}

.btnBox.single .btn {
  overflow: hidden;
  position: relative;
}
.btnBox.single .btn * {
  position: relative;
  z-index: 3;
}
.btnBox.single .btn::before, .btnBox.single .btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  transition: 0.5s ease-in-out;
  z-index: 2;
}
.btnBox.single .btn::before {
  right: -50px;
  border-right: 50px solid transparent;
  border-bottom: 80px solid #54adba;
  transform: translateX(-100%);
}
.btnBox.single .btn::after {
  left: -50px;
  border-left: 50px solid transparent;
  border-top: 80px solid #54adba;
  transform: translateX(100%);
}
.btnBox.single .btn:hover {
  color: #fff;
}
.btnBox.single .btn:hover::before {
  transform: translateX(-49%);
}
.btnBox.single .btn:hover::after {
  transform: translateX(49%);
}