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

/* FAQ Single Container */
.faq-single {
  width: calc(100% - 40px);
  max-width: 500px;
  margin: 80px auto 60px;
  padding-top: 90px;
}

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

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

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

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

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

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

.faq__a-text {
  flex: 1;
  font-size: 14px;
  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: 1.5em;
}

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

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

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

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