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

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
    padding: 16px;
    row-gap: 32px;
    color: #171717;
    font-style: normal;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: normal;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 100%;
}

.message {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    align-self: stretch;

    .en {
        font-size: 30px;
        font-weight: 700;
        line-height: 36px;
    }

    .ja {
        font-size: 20px;
        font-weight: 500;
        line-height: 28px;
    }
}

.caption {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

a {
    font-size: 14px;
    line-height: 24px;
    color: #2563EB;
}