/* ===============================
 Q&A セクション
=============================== */
@media screen and (min-width: 768px) {
}
.qa-section {
 background-color: #000;
 color: #fff;
 padding: 150px 0 100px;
 text-align: left;
}

.qa-section .wrap-l {
 max-width: 1000px;
 margin: 0 auto;
}

.qa-title {
 text-align: center;
 font-family: "Montserrat Alternates", sans-serif;
 font-weight: 700;
 font-size: 2.6rem;
 color: #d27a00;
 margin-bottom: 60px;
}

/* Q&Aリスト */
.qa-list {
 display: flex;
 flex-direction: column;
 gap: 50px;
}

.qa-item {
 border-top: 1px solid #333;
 padding-top: 30px;
}

.qa-item:last-child {
 border-bottom: 1px solid #333;
 padding-bottom: 30px;
}

.qa-question {
 display: flex;
 flex-direction: column;
 font-family: "Noto Sans JP", sans-serif;
 font-weight: bold;
 font-size: 1.2rem;
 margin-bottom: 10px;
 line-height: 1.8;
}
@media screen and (min-width: 768px) {
 .qa-question {
  display: flex;
  flex-direction: row;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
  line-height: 1.8;
 }
}
.qa-answer {
 display: flex;
 flex-direction: column;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 1rem;
 color: #ccc;
 line-height: 1.8;
}
@media screen and (min-width: 768px) {
 .qa-answer {
  display: flex;
  flex-direction: row;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #ccc;
  line-height: 1.8;
 }
}
.qa-q {
 color: #f7a800;
 margin-right: 8px;
 font-weight: bold;
 font-family: "Poppins", sans-serif;
}

.qa-a {
 color: #d27a00;
 margin-right: 8px;
 font-weight: bold;
 font-family: "Poppins", sans-serif;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
 .qa-section {
  padding: 100px 0px;
 }

 .qa-title {
  font-size: 2rem;
  margin-bottom: 40px;
 }

 .qa-question {
  font-size: 1.1rem;
 }

 .qa-answer {
  font-size: 0.95rem;
 }
}
