/**
 * Common Component Styles
 *
 * @package NONKE_SPA
 * @since 1.0.0
 */

/* ==========================================================================
   ページヘッダー
   ========================================================================== */
.p-pageHeader {
    background: #303c09;
    color: #fff;
    padding: 15px 0;
    text-align: center;
}

.p-pageHeader__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.p-pageHeader__subtitle {
    font-size: 16px;
    opacity: 0.8;
    letter-spacing: 0.1em;
    margin-bottom: 0;
}

/* ==========================================================================
   セクションタイトル
   ========================================================================== */
.c-sectionTitle {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: #d9d9d9;
}

.c-sectionSubtitle {
    font-size: 14px;
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
}

/* ==========================================================================
   コンテナ
   ========================================================================== */
.l-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   ボタン
   ========================================================================== */
.c-button {
    display: inline-block;
    padding: 12px 32px;
    background: #303c09;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.c-button:hover {
    background: #1f2806;
    transform: translateY(-2px);
}

.c-button--yellow {
    background: #fff5b8;
    color: #303c09;
}

.c-button--yellow:hover {
    background: #ffe480;
}

.c-button--green {
    background: #303c09;
    color: #fff;
}

.c-button--green:hover {
    background: #1f2806;
}

.c-button--outline {
    background: transparent;
    border: 2px solid #303c09;
    color: #303c09;
}

.c-button--outline:hover {
    background: #303c09;
    color: #fff;
}

.c-button--large {
    padding: 20px 60px;
    font-size: 18px;
}

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media (max-width: 768px) {
    .p-pageHeader {
        padding: 20px 0;
    }
    
    .p-pageHeader__title {
        font-size: 20px;
    }
    
    .p-pageHeader__subtitle {
        font-size: 14px;
    }
    
    .c-sectionTitle {
        font-size: 24px;
    }
    
    .c-button {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .c-button--large {
        padding: 16px 40px;
        font-size: 16px;
    }
}