/* グローバルスタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

/* セクションラッパー */
.section-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Hero専用の調整 */
.section-hero {
    overflow: visible !important;
    position: relative;
    background: transparent !important;
    padding: 0 !important;
}

/* Heroセクションのスタイルを強制適用 - PC版のみ */
@media (min-width: 769px) {
    .section-hero .hero-section {
        position: relative !important;
        height: 850px !important;
        overflow: visible !important;
        margin: 80px 0 20px !important;
    }
}

/* Header専用の調整 */
.section-header {
    position: relative;
    z-index: 1001;
}

