.info-section {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.info-section h2 {
    color: #8d6e63;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.info-section h3 {
    color: #6d4c41;
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.info-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.back-button-container {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #8d6e63; /* テキストカラーをテーマカラーに */
    background-color: transparent; /* 背景を透明に */
    border: 2px solid #8d6e63; /* ボーダーをテーマカラーに */
    border-radius: 50px; /* 丸みを帯びたデザイン */
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: none; /* シャドウはなし、または控えめに */
    width: 90%; /* 可変幅に変更 */
    max-width: 320px; /* 最大幅を指定 */
    box-sizing: border-box;
}

.btn-secondary:hover {
    background-color: #8d6e63; /* ホバーで背景色をテーマカラーに */
    color: #fff; /* ホバーでテキストカラーを白に */
    transform: translateY(-2px); /* わずかに浮き上がるアニメーション */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 控えめなシャドウ */
}