/* ========================================
   Center Styles
   - Center alignment for section-container content
   ======================================== */

/* section-container内の見出しとリンクを中央揃え */
.section-container {
    text-align: center;
}


.section-container a:not(.link-button) {
    display: inline-block;
    text-align: center;
    margin: 0.5rem auto;
}

.section-container button {
    display: block;
    margin: 0.5rem auto;
}

