@charset "utf-8";
.faq{
  max-width: 960px;
  padding: 0 16px;
  margin: 32px auto 80px;
}

.faq h1{
  margin: 0px 0px 32px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.5;
  text-align: center;
  color: #225A9E;
  font-weight: 400;
  font-size: 1.625rem;
}

.faq .subtitle{
  text-align: center;
}

.faq section{
  padding: 64px 0 0;
}

.faq section h2{
  border-bottom: 1px solid #000;
  font-size: 1.625rem;
  margin-bottom: 20px;
  font-weight: 400;
}

.faq section ul{
  padding-top: 29px;
}

.faq section ul li{
  padding-bottom: 24px;
  font-size: 1rem;
}

.faq .btn{
  max-width: 350px;
  margin: 24px auto 0;
}

.faq .btn a{
  display: block;
  background-color:#1976D2;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 18px 0;
  border-radius: 60px;
}


@media screen and (max-width:768px) {
  .faq section h2 {
    font-weight: 400;
  }
}

/* ---- Q&A base ---- */
.qa {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  display: grid;
  gap: 20px;            /* カード間の余白 */
}

.qa__card{
  position: relative;
      padding: 0 30px;
}

.qa__row{
  display: grid;
  grid-template-columns: 2.2em 1fr; /* 左にQ/A、右に本文 */
  align-items: start;
  margin-bottom: 20px;
}

.qa__label{
  display:inline-block;
  font-weight:700;
  color:#111;
  letter-spacing:.02em;
  line-height:1.9;
}

/* Q / A 表示（コロン付き） */
.qa__row--q .qa__label::before{ content:"Q：";     font-weight: 400;}
.qa__row--a .qa__label::before{ content:"A：";     font-weight: 400;}

.qa__question{
margin: 0;
    font-weight: 400;
    color: #111;
    font-size: 16px;
}

.qa__answer p{
  margin:0 0 .6em;
  line-height: 1.6;
  font-size: 15px;
}
.qa__answer p:last-child{ margin-bottom:0; }

/* モバイル微調整 */
@media (max-width: 769px){
  .qa{ gap:16px; }
  .qa__row{ grid-template-columns: 2em 1fr;         margin-bottom: 15px;}
  .qa__card {
    padding: 0;
  }
}
