/* よくある質問ページ専用スタイル */
.q-and-a-section {
    max-width: 800px;
    margin: 0 auto;
}

.q-and-a-section h1 {
    font-size: 2rem;
    color: #24292f;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.faq-section {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(36, 41, 47, 0.12);
    border: 1px solid #d1d9e0;
    padding: 2rem;
    margin-bottom: 2rem;
}

.faq-section h2 {
    font-size: 1.5rem;
    color: #24292f;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid #0969da;
    padding-bottom: 0.5rem;
}

.faq-content {
    color: #656d76;
    line-height: 1.6;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.faq-list li {
    padding: 0.8rem 0;
    border-left: 3px solid #0969da;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    background: #f6f8fa;
    border-radius: 0 4px 4px 0;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f6f8fa;
    border-radius: 8px;
    border-left: 4px solid #0969da;
}

.faq-item h3 {
    font-size: 1.1rem;
    color: #24292f;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-answer {
    color: #656d76;
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: #24292f;
    font-weight: 600;
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    padding: 0.75rem 1rem;
    background: #f6f8fa;
    border-radius: 6px;
    margin-bottom: 0.5rem;
    border-left: 3px solid #0969da;
}

.spec-list strong {
    color: #24292f;
    font-weight: 600;
}

.tip-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f6f8fa;
    border-radius: 8px;
    border-left: 4px solid #fd79a8;
}

.tip-item:last-child {
    margin-bottom: 0;
}

.tip-item h4 {
    font-size: 1.1rem;
    color: #24292f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tip-item p {
    color: #656d76;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.tip-item p:last-child {
    margin-bottom: 0;
}

.terms-link {
    color: #0969da;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    background: #f1f8ff;
    border-radius: 6px;
    border: 1px solid #d1d9e0;
    display: inline-block;
    transition: all 0.2s ease;
}

.terms-link:hover {
    color: #0860ca;
    background: #dbeafe;
    border-color: #0969da;
    text-decoration: none;
}