/* CSS Document */


/***********************************************************/
/**************************** faq **************************/



.accordion .accordion-item { border: 1px solid var(--gray); margin-bottom: 20px; }

.accordion button {
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  text-align: left;
  width: 100%;
  padding: 20px 60px 20px 30px;
  font-family: var(--font-header);
  border: none;
  background: none; cursor: pointer;
  outline: none;
}

.accordion button .accordion-title{ font-size: var(--t-head5); line-height: 1.6; font-weight: bold; padding-right: 30px; }


.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 50%; margin-top: -7px;
  right: 10px;
  width: 22px;
  height: 14px;
  background-image: url('../images/icon/icon-down.svg'); background-repeat: no-repeat; background-size: cover; filter: var(--filter-primary);
  transition: all 0.3s ease; 
}
.accordion button[aria-expanded='true'] .icon {
  transition: all 0.3s ease; transform: rotate(180deg);
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  height: auto;
  transition: all 200ms linear;
  will-change: opacity, height;
}
.accordion .accordion-content {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, height 200ms linear;
  will-change: opacity, height;
}


.faq-article{ padding: 30px; }
.faq-article h3{ font-size: 20px; line-height: 1.2; margin-bottom: 10px; }
.faq-article p{ font-size: 15px; line-height: 1.6; margin-bottom: 30px; }
.faq-article ul{ list-style: disc; margin-left: 20px; margin-bottom: 30px; }
.faq-article ol{ list-style: decimal; margin-left: 20px; margin-bottom: 30px; }
.faq-article li{ font-size: 15px; line-height: 1.6; margin-bottom: 10px; }
.faq-article p:last-child,
.faq-article ul:last-child,
.faq-article ol:last-child{ margin-bottom: 0;}



@media (max-width: 1199px){

  .accordion button{ padding: 15px 30px 15px 20px; }
  .faq-article{ padding: 20px; }

}
@media (max-width: 576px){

  .accordion button{ padding: 10px 30px 10px 10px; }

}




/***********************************************************/
/***********************************************************/



