/* #region リセットとベーススタイル */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

/* #endregion */

/* #region メインコンテンツ */

.main-content {
    padding: 40px;
}

.page-title {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 10px;
    color: #333;
}

/* #endregion */

/* #region セクション共通スタイル*/

.subsection-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: 30px;
    margin-bottom: 20px;
}
/* #endregion */

/* #region ヘッダー／フッター */
.header {
    background: white;
    padding: 20px 40px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.footer {
    background: #f8f9fa;
    padding: 30px 40px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    margin-top: 60px;
}

.footer-text {
    font-size: 12px;
    color: #999;
    line-height: 1.8;
}

/* #endregion */

/* #region レスポンシブデザイン */
@media (max-width: 768px) {
    .main-content {
        padding: 20px;
    }

    .header {
        padding: 15px 20px;
        flex-wrap: nowrap;
        gap: 12px;
    }

    .logo {
        min-width: 0;
        flex-shrink: 1;
    }

    .logo h1 {
        font-size: 18px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

}




