/* ===== リセット & 基本設定 ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sawarabi Mincho', serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background: #fff;
}

/* ===== 共通クラス ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== メインコンテンツ ===== */
.site-main {
    padding-top: 0px;
}

/* ===== 共通セクションタイトル ===== */
.section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 60px;
    color: #333;
}

/* ===== セクション共通ボタン ===== */
.section-cta {
    margin-top: 50px;
    text-align: center;
}

.section-cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: #009944;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 211, 122, 0.3);
}

.section-cta-button:hover {
    background: #00B968;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 211, 122, 0.4);
    color: #fff;
}

/* レスポンシブ：スマートフォン */
@media (max-width: 768px) {
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-cta {
        margin-top: 30px;
    }
    
    .section-cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}