html {
    --primary-color: #2ca58d;
    --primary-hover: #1d6d5d;
    --secondary-color: #40d3b5;
    --bg-color: #f4f7f5;
    --card-bg: #d0ffcc;
    --text-color: #2c3e50;
    --text-muted: #7f8c8d;
    background-color: #f8faf9 !important;
}

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    background-color: #f8faf9 !important;
    color: var(--text-color);
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}



header {
    background-color: #2ca58d;
    padding: 30px 0;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
header h1 {
    color: white;
    margin: 0;
    text-align: center;
    font-size: 30px;
    letter-spacing: 1px;
}

/* メイン・ログインカードコンテナ */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    padding-top: 100px;
}

/* ログインカード */
.login-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0px 8px 24px rgba(46, 125, 50, 0.08);
    width: 100%;
    max-width: 400px;
    padding: 40px 32px;
    box-sizing: border-box;
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

/* こんにちはテキスト */
.login-card h2 {
    font-size: 26px;
    margin-top: 0px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 700;
}

.login-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* イラスト・画像エリア */
.illustration-container {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.illustration-container img {
    max-width: 150px;
    height: auto;
    object-fit: contain;
    /* 画像がない場合の仮の枠線（プレースホルダー用） */
    border-radius: 8px;
}

/* ボタンの共通スタイル */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
    margin-bottom: 16px;
    background-color: #ffffff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    /* background-color: #ffffff;
    color: #444444;
    border: 1px solid #dadce0; */
    box-shadow: 0px 2px 4px rgba(0,0,0,0.05);
}

.btn:hover {
    /* background-color: #f8f9fa;
    border-color: #c6c6c6; */
    background-color: #f8f9fa;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0px 4px 6px rgba(0,0,0,0.08);
}



/* コピーライトなどのフッター */
footer {
    text-align: center;
    padding: 16px;
    font-size: 13px;
    color: var(--text-muted);
}