.faq-section {
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  background: #fff; /* or 薄いブランドカラー */
  border-radius: 8px;
}

.faq-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.faq-lead {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 0.75rem 1rem;
  display: flex;
  /*align-items: center;*/
  align-items: flex-start; 
  gap: 0.5rem;
  background: #fff;
  border: none;
  cursor: pointer;
}

.faq-q-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #000; /* ブランドカラー想定 */
  color: #fff;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.faq-q-text {
  flex: 1;
  text-align: left;
  font-size: 0.95rem;
}

.faq-toggle-icon {
/*  font-size: 1.1rem;
  color: #666;*/
display: block;
  width: 14px;
  height: 14px;
  position: relative;
  margin: auto;
}
.faq-toggle-icon:before, 
.faq-toggle-icon:after {
    content: "";
  position: absolute;
  background-color: #333;
}

/* 横線 */
.faq-toggle-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

/* 縦線（プラス用） */
.faq-toggle-icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
    transition: .3s;
}
.faq-toggle-icon.active:after {
    transform: rotate(-90deg);
}



.faq-answer {
  display: none; /* JSで開閉 */
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid #eee;
  display: none;
  gap: 0.75rem;
}

.faq-a-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ccc;
  color: #fff;
  font-size: 0.8rem;
   flex-shrink: 0;
  /*margin-right: 0.5rem;*/
}

.faq-answer p {
  display: inline;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
}
