@charset "UTF-8";

/* ===============================================
   frequently asked questions
=============================================== */

/* question
----------------------------- */
.re_hdg-lv2_faq {
  width: 100%;
  height: 44px;
  border-bottom: solid #FFFFFF 2px;
  background-color: #3d5d93;
  cursor: pointer;
  position: relative;
  color: #FFFFFF;
  -webkit-perspective: none;
  perspective: none;
}
.re_hdg-lv2_faq:hover {
  background: #304b7a;
}
.re_hdg-faq_txt {
  font-size: 14px;
  line-height: 44px;
  color: #FFFFFF;
  font-weight: bold;
  padding-left: 14px;
}
.re_hdg-faq_txt:before {
  content: "Q.";
  margin-right: 5px;
  font-weight: normal;
  font-family:Helvetica, sans-serif;
}


/* answer
----------------------------- */
.re_answer-faq {
  color: #333333;
  font-size: 14px;
  line-height: 22px;
  padding: 25px 0 28px;
  display:none;
}
.re_answer-faq_txt {
  margin-bottom: 10px;
}
.re_answer-faq > .re_answer-faq_txt:last-child {
  margin-bottom: 0;
}



/* ==================================== 
  accordion
==================================== */

/* accordion CLOSE
----------------------------- */
.re_hdg-lv2_faq:before,
.re_hdg-lv2_faq:after {
  font-size: 0;
  position: absolute;
  content:'';
  background:#FFFFFF;
  display:block;
  opacity: 1;
  -moz-transition: all 0.25s linear;
  -webkit-transition: all 0.25s linear;
  -o-transition: all 0.25s linear;
  -ms-transition-property: all 0.25s linear;
  transition: all 0.25s linear;
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.re_hdg-lv2_faq:before {
  top: 13px;
  right: 27px;
  width: 2px;
  height: 18px;
}
.re_hdg-lv2_faq:after {
  top: 21px;
  right: 19px;
  width: 18px;
  height: 2px;
}


/* accordion OPEN
----------------------------- */
.re_hdg-lv2_faq.re_js-active:before {
  opacity: 0;
}
.re_hdg-lv2_faq.re_js-active:before,
.re_hdg-lv2_faq.re_js-active:after {
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}