@charset "UTF-8";

#faq.container {
  width: 800px;
  margin-bottom: 80px;}
.title_faq {
  font-size: 2rem;
  padding-top: 4rem;
  padding-bottom: 2rem;}
.title_faq:first-child {
  padding-top: 0;}
.txt_q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: .8rem 1rem .8rem 2.8rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #505050;
  background: #dbebf8;
  position: relative;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  transition: color .3s;}
.txt_q:before {
  font-family: "Font Awesome 5 Free";
  content: '\f128';
  font-weight: 900; 
  display: inline-block;
  position: absolute;
  padding: 0em;
  color: white;
  background: #81a1e4;
  width: 40px;
  text-align: center;
  height: 40px;
  line-height: 40px;
  left: -1em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 50%;
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.29);
  border-bottom: solid 2px #4967b4;}

.txt_a {
  font-size: 1.6rem;
  padding: 1rem;}



/* Accordion */
.accordion h3:not(.collapsed) {
  color: #406AFF;}
.accordion .accordion-icon {
  font-size: .8rem;
  font-weight: 600;
  transform: rotate(45deg);
  transition: transform .3s;}
.accordion .accordion-icon.accordion-icon-active {
  transform: rotate(90deg);}
.accordion-item {
  margin-bottom: 1rem;
  background-color: rgba(248, 249, 250, 0.75);
  border-radius: 4px;
  transition: background .3s;
  border: solid 1px #edeff1;}
.accordion-item.accordion-item-active {
  background-color: #fff;}
.accordion h3:hover {
  color: #406AFF;}



