/* 初回ウェルカム画面（SP / PC 共通） */
@import url("/static/page_title.css");

.welcome-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial,
        "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
    color: #111;
}

.welcome-wrap {
    padding: 0 24px 24px;
}

.welcome-panel {
    max-width: 420px;
    margin: 0 auto;
    padding: 24px 20px 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.welcome-branch {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #666;
    text-align: center;
}

.welcome-title {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    color: #111;
}

.welcome-lead {
    margin: 0 0 16px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    color: #222;
}

.welcome-desc {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.75;
    color: #333;
}

.welcome-points {
    margin: 0 0 20px;
    padding: 14px 16px;
    list-style: none;
    background: rgba(255, 242, 200, 0.55);
    border: 1px solid rgba(201, 162, 39, 0.35);
    border-radius: 10px;
}

.welcome-points li {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.65;
    color: #333;
}

.welcome-points li:last-child {
    margin-bottom: 0;
}

.welcome-points strong {
    color: #4a3d08;
}

.welcome-register {
    margin-bottom: 22px;
}

.welcome-register h2 {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 800;
    color: #111;
}

.welcome-register ul {
    margin: 0 0 10px;
    padding-left: 1.2em;
}

.welcome-register li {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.welcome-note {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: #666;
}

.welcome-enter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    padding: 16px 20px;
    background: #c41e3a;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(196, 30, 58, 0.28);
    transition: transform 0.1s ease, background 0.1s ease;
}

.welcome-enter-btn:active {
    transform: scale(0.98);
    background: #a81830;
}

.welcome-page-pc .welcome-enter-btn:hover {
    transform: translateY(-1px);
    background: #a81830;
}

.welcome-footer-hint {
    margin: 14px 0 0;
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
    color: #666;
}

/* PC */
body.welcome-page-pc .welcome-panel {
    max-width: 520px;
    padding: 28px 28px 32px;
}
