/**
 * FAQ Single Page Styles
 * よくある質問個別ページ PC用CSS
 */

/* FAQ Single Container */
.faq-single {
  width: calc(100% - 80px);
  max-width: 840px;
  margin: 108px auto 120px;
}

/* FAQ Article */
.faq__article {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 50px;
}

/* Question */
.faq__question {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.faq__q-label {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-tan);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
}

.faq__q-text {
  flex: 1;
  font-size: 24px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* Answer */
.faq__answer {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 50px;
}

.faq__a-label {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e5e5;
  color: #666;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
}

.faq__a-text {
  flex: 1;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.faq__a-text p {
  margin-bottom: 1.5em;
}

.faq__a-text p:last-child {
  margin-bottom: 0;
}

.faq__a-text img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
}

.faq__a-text ul,
.faq__a-text ol {
  margin: 1.5em 0;
  padding-left: 2em;
}

.faq__a-text li {
  margin-bottom: 0.5em;
}

.faq__a-text strong {
  font-weight: 600;
}

/* Back Link */
.faq__back {
  text-align: right;
  margin-top: 40px;
}

.faq__back-link {
  display: inline-block;
  font-size: 18px;
  line-height: 1.6;
  padding-right: 34px;
  transition: opacity 0.3s;
}

.faq__back-link:hover {
  opacity: 0.7;
}
