/* =========================================
   Shared Components
   各ページ共通で使用するパーツのスタイル
========================================= */

/* ---------- Section Standard ---------- */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    color: var(--color-main);
    margin-bottom: 20px;
}

/* ---------- Municipality Hero ---------- */
.page-hero {
    background: #f8f8f8;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.page-hero h1 {
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 10px;
}

.hero-subtext {
    font-size: 1.2rem;
    color: #666;
}

/* ---------- Action Button ---------- */
.action-box {
    text-align: center;
    margin-top: 40px;
}

.btn-large {
    display: inline-block;
    padding: 20px 60px;
    background: var(--color-accent);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 155, 56, 0.4);
    transition: all 0.3s;
}

.btn-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 155, 56, 0.5);
    background: #ff8c1a;
}

/* ---------- Form Frame ---------- */
.form-container {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.placeholder-img {
    background: #eee;
    border: 2px dashed #ccc;
    padding: 100px 20px;
    text-align: center;
    color: #999;
    border-radius: var(--radius);
    margin-bottom: 30px;
}


.radio-group,
.checkbox-group {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.radio-group label,
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}