@charset "UTF-8";
/*--------------------- .accordion ---------------------*/
.accordion .ac_list {
  border-top: 1px solid #ccc;
  margin-top: 20px;
  padding: 20px 50px 0 0;
  position: relative;
}
.accordion .ac_list.question::before {
  background-color: #e63d8f;
  color: #fff;
  content: "Q";
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  padding: 8px 10px;
  position: absolute;
  top: 20px;
  left: 0;
  text-align: center;
}
.accordion .ac_list.last {
  border-bottom: 1px solid #ccc;
  padding-bottom: 22px;
}
.accordion .ac_inr {
  display: none;
}
.accordion .ac_box {
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  padding-left: 50px;
}
.accordion .ac_inr li.ac_content {
  border: none;
  padding: 20px 0 20px 50px;
  position: relative;
}
.accordion .ac_inr .ac_content::before {
  color: #e63d8f;
  content: "A";
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 30px;
  left: 13px;
  text-align: center;
}
.c_l_list {
  padding: 5px 0;
}

/*--------------------- .ac_icon ---------------------*/
.ac_icon, .ac_icon span {
  display: inline-block;
  transition: all .4s;
}
.ac_icon {
  float: left;
  height: 25px;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 25px;
  margin-top: -3px;
}
.last .ac_icon {
  margin-top: -13px;
}
.ac_icon span {
  background-color: #666;
  height: 2px;
  position: absolute;
  right: 5px;
  width: 70%;
}
.ac_icon span:nth-of-type(1) {
  top: 11px;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
}
.ac_icon span:nth-of-type(2) {
  top: 11px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.ac_icon.active span:nth-of-type(1) {
  display: none;
}
.ac_icon.active span:nth-of-type(2) {
  top: 11px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}



@media only screen and (max-width: 768px) {
  /*--------------------- .accordion ---------------------*/
  .accordion .ac_box {
    font-size: 18px;
  }
  
  
}