/**
 * Completion Section Block Frontend Styles
 */

.will-completion-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 48px;
}

.will-completion-section h1 {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 48px;
    color: #101828;
    margin: 0 0 24px 0;
    letter-spacing: 0.3516px;
}

.will-completion-section p {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #364153;
    margin: 0;
    letter-spacing: -0.4492px;
}

.will-completion-section a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #101828;
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.4395px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.will-completion-section a:hover {
    background-color: #1e293b;
}

.will-completion-section a svg {
    width: 16px;
    height: 16px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .will-completion-section {
        padding: 48px 24px;
    }

    .will-completion-section h1 {
        font-size: 36px;
        line-height: 40px;
    }

    .will-completion-section p {
        font-size: 18px;
        line-height: 26px;
    }

    .will-completion-section a {
        font-size: 16px;
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    .will-completion-section {
        padding: 32px 16px;
    }

    .will-completion-section h1 {
        font-size: 28px;
        line-height: 32px;
    }

    .will-completion-section p {
        font-size: 16px;
        line-height: 24px;
    }
}

