#q_and_a {
    width: 100%;
    
    padding-top: 10rem;
    padding-bottom: 10rem;

    background-color: #F7F9FA;
}

.questions_table {
  width: 100%;
  padding: 2.5rem 5rem;

  display: flex;
  flex-direction: column;
  align-items: center;

  border-radius: 1rem;
  background-color: white;
}

.question_content {
  width: 100%;
  padding: 2.5rem 1.5rem;
}

.question_content p{
  margin: 0;
}

.question_column_separator {
  border-bottom: 1px solid #C9CFD4;
}

.question {
  width: 100%;

  display: flex;
  justify-content: space-between;

  cursor: pointer;
}

.question_titles {
  display: flex;
  align-items: baseline;
}

.q_no,.a_no {
  width: 3rem;
  padding-right: 1rem;

  font-size: 20px;
  font-weight: 700;

  flex-grow: 0;
  flex-shrink: 0;

  box-sizing: border-box;
}

.a_contents {
  display: flex;
  align-items: baseline;
}

.q_content, .a_content {
  font-size: 20px;
  font-weight: 400;
}

.a_no, .a_content {
  color: #515B65;
}

.answer {
  padding-top: 1rem;

  display: none;
  justify-content: space-between;
  align-items: baseline;
}

.answer_padding {
  width: 1.5rem;
  height: 1.5rem;
  
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
}

.accordion {
  display: block;
  cursor: pointer;
}

.question_check {
  display: none;
}

.question_check:checked+.question+.answer {
  display: flex;
}

.question_check+.question > .accordion_arrow {
  display: block;
  content: url('../img/arrow-down.svg');
}

.question_check:checked+.question > .accordion_arrow {
  content: url('../img/arrow-up.svg');
}


.q_other {
  width: 360px;
  height: 48px;
  margin: 0;
  margin-top: 40px;
  
  display: flex;
  flex-direction: column;
  justify-content: center;

  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  color: #121518;


  border: #121518 2px solid;
  border-radius: 0.5rem;
  cursor: pointer;
}

@media screen and (max-width: 1189px) {
  #q_and_a {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .questions_table{
      padding: 24px 12px;
  }
}

@media screen and (max-width: 585px) {
  .question_content {
    padding: 20px 1rem;
  }

  .q_no,.q_content,.a_no,.a_content {
    font-size: 1rem;
  }

  .q_no {
    margin-right: 0.5rem;
  }

  .q_other {
    height: 3rem;

    max-width: 240px;
    width: 100%;
  }
}

  
