/* Backボタン */
.back-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #d5c2bb;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #b3a3a0;
}

/* 製品ページタイトル */
h1.text-center {
    margin-top: 120px;
    font-size: 2rem;
    color: #333;
}

/* Q&Aセクション */
.qa-section {
    margin-top: 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.qa-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.qa-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #666;
}