@charset "UTF-8";
#faq_back_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
#faq_back_modal .bg-blur {
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100%;
}
#faq_back_modal .faq_back_contents {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1000;
  background-color: #00a2ff;
  padding: 15px;
  width: 500px;
  margin-left: -250px;
  margin-top: -250px;
}
#faq_back_modal .faq_back_contents div {
  border: 1px solid #fff;
  padding: 20px;
  position: relative;
}
#faq_back_modal .faq_back_contents div p {
  color: #fffc66;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
#faq_back_modal .faq_back_contents div a {
  display: block;
  background-color: #ffffff;
  border-radius: 10px;
  color: #000;
  font-size: 25px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  padding: 15px;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5);
}
#faq_back_modal .faq_back_contents div a:last-child {
  margin-bottom: 0;
}
#faq_back_modal .faq_back_contents .faq_back_close {
  display: block;
  width: 60px;
  height: 60px;
  text-indent: -99em;
  overflow: hidden;
  position: absolute;
  right: -30px;
  top: -30px;
  z-index: 500;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background-color: #fff;
  border-radius: 40px;
  border: 2px solid #ddd;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5);
}
#faq_back_modal .faq_back_contents .faq_back_close em {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #000;
  position: absolute;
  left: 18px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  border: 1px solid #000;
}
#faq_back_modal .faq_back_contents .faq_back_close em:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 30px;
  left: 15px;
}
#faq_back_modal .faq_back_contents .faq_back_close em:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 30px;
  left: 15px;
}