/* ========================================
   助成・支援制度 個別ページ
======================================== */

/* Hero Section */
.single-support-hero-section {
    background-color: #53834F;
    padding: 40px 20px 60px;
}

.single-support-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Title */
.single-support-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin: 0 0 20px 0;
    font-family: 'Zen Maru Gothic', 'Zen Maru Gothic', sans-serif;
    line-height: 1.6;
}

/* Dots */
.single-support-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.single-support-dot {
    width: 12px;
    height: 12px;
    background-color: #E6AE25;
    border-radius: 50%;
}

/* Content Section */
.single-support-content-section {
    background-color: #FBF9F4;
    padding: 60px 20px 80px;
}

/* Detail Card */
.support-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

/* Info Row (情報掲載日、県等入受理) */
.support-info-row {
    margin-bottom: 20px;
}

.support-info-label {
    font-size: 14px;
    color: #333333;
    font-weight: 500;
}

.support-application-button {
    display: inline-block;
    padding: 10px 30px;
    background-color: #53834F;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.support-application-button:hover {
    background-color: #3d6139;
}

/* Detail Rows (所管、概要など) */
.support-detail-row {
    display: flex;
    align-items: flex-start;
    background-color: #ffffff;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    gap: 20px;
}

.detail-label-cell {
    flex: 0 0 auto;
    min-width: 120px;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    padding-right: 20px;
    border-right: 1px solid #E5E5E5;
}

.detail-value-cell {
    flex: 1;
    font-size: 14px;
    line-height: 1.8;
    color: #333333;
    background-color: #ffffff;
}

/* 詳細はコチラ ボタン */
.support-detail-button-row {
    margin-top: 30px;
}

.support-detail-link-button {
    display: block;
    width: 100%;
    padding: 16px 40px;
    background-color: #53834F;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.support-detail-link-button:hover {
    background-color: #3d6139;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Back Button */
.support-back-button-container {
    margin-top: 40px;
    text-align: center;
}

.support-back-button {
    display: inline-block;
    padding: 14px 40px;
    background-color: #53834F;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.support-back-button:hover {
    background-color: #3d6139;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .single-support-title {
        font-size: 22px;
    }
    
    .support-detail-card {
        padding: 20px;
    }
    
    .support-detail-row {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }
    
    .detail-label-cell {
        font-size: 13px;
        min-width: auto;
        padding-right: 0;
        padding-bottom: 10px;
        border-right: none;
        border-bottom: 1px solid #E5E5E5;
    }
    
    .detail-value-cell {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .single-support-title {
        font-size: 18px;
    }
    
    .support-detail-card {
        padding: 15px;
    }
    
    .detail-label-cell,
    .detail-value-cell {
        padding: 15px;
        font-size: 13px;
    }
    
    .support-detail-link-button,
    .support-back-button {
        width: 100%;
        max-width: 300px;
    }
}
