/* FAQセクション用CSS */
.faq {
  background: #ebfefc;
  padding: 40px 24px 56px;
  max-width: 600px;
  margin: 0 auto 35px;
}
.faq-header {
  margin-bottom: 24px;
}
.faq-en {
  font-size: var(--12px);
  font-weight: 600;
  color: #156fc6;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.faq-ja {
  font-size: var(--22px);
  font-weight: 600;
  color: #27292b;
  letter-spacing: 0.05em;
  margin: 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  padding: 16px 24px; /* 上下左右を少し増やしてアイコンのはみ出し分を確保 */
  overflow: visible;
}
.faq-item.open .faq-toggle-svg {
  transform: rotate(45deg);
  transition: transform 0.2s;
}
.faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  padding-bottom: 10px;
  background-color: #fff;
}

.qa-icon {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--16px);
  font-weight: 600;
  margin-right: 16px;
  flex-shrink: 0;
  background-color: #ffee56;
  color: #156fc6;
  position: relative;
  transform: rotate(45deg);
  border-radius: 4px;
}

.qa-icon span {
  display: inline-block;
  transform: rotate(-45deg); /* 文字を元の向きに戻す */
}
.faq-a-icon {
  border: 1px solid #e3e3e3;
  background-color: #fff;
  color: #156fc6;
}

.faq-q-text,
.faq-a-content {
  font-size: var(--14px);
  font-weight: 600;
  color: #27292b;
  flex: 1;
  line-height: 2;
}
.faq-a-content a {
  color: #156fc6;
  font-size: var(--13px);
  font-style: normal;
  font-weight: 600;
  line-height: 200%;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.faq-a-content .link-icon {
  vertical-align: middle;
}
.faq-q-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.faq-toggle-svg {
  transition: transform 0.2s;
}
.faq-q-toggle svg {
  display: block;
}

.faq-a {
  margin-top: 32px;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
