@charset "utf-8";
/* CSS Document */

.qa_inner{
  max-width: 1024px;
  width: 90%;
  margin: auto;
  padding: 60px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  @media screen and (max-width: 768px){
    padding: 40px 0;
    gap: 40px;
  }
}
.main_title{
  font-size: 2rem;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bg-color);
  display: flex;
  align-items: center;
  gap: 20px;
  span{
    font-size: 3.6rem;
    font-family: "Barlow", sans-serif;
  }
}
.qa_box_detail_list{
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.qbd_top{
  background: var(--bg-color);
  color: #fff;
  padding: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}
.q{
  font-family: "Barlow", sans-serif;
  font-size: 2.4rem;
  white-space: nowrap;

}
.qbd_bot{
  background: #F8F8F8;
  padding: 30px 20px;
  display: flex;
  gap: 10px;
}
.a{
  font-family: "Barlow", sans-serif;
  font-size: 2.4rem;
  color: #D61212;
  font-weight: bold;
  white-space: nowrap;
}
.more_btn{
  background: #F8F8F8;
}
.more_btn::after{
  @media screen and (max-width: 768px){
    width: 40px;
    background-size: contain;
  }
}
.more_btn--flex{
  display: flex;
  gap: 20px;
  margin-top: 20px;
  @media screen and (max-width: 768px){
    flex-direction: column;
  }
}

#footer{
  padding-top: 120px;
}
@media screen and (max-width: 768px) {

}
@media print {
}

