body {
    font-family: 'ゴシック', sans-serif;
    color: #000;
}

.product-buttons {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
}

.product-buttons h2 {
    font-size: 28px; /* 見出しも少し大きく */
    font-weight: bold;
    margin-bottom: 25px; /* 余白も少し調整 */
    text-align: center;
}

.product-buttons .button-container {
    display: flex;
    justify-content: center;
    gap: 25px; /* ボタン間隔も少し広めに */
    flex-wrap: wrap;
}

.product-buttons .button {
    display: inline-block;
    padding: 15px 30px; /* ボタンの内側余白を増やして大きく */
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px; /* フォントサイズを大きく */
    border-radius: 5px;
    transition: background-color 0.3s;
}

.product-buttons .button:hover {
    background-color: #b89e27;
}