*,
::after,
::before {
    box-sizing: border-box;
}

a {
    color: #222222;
    text-decoration: none;
}

    a:hover {
        color: #222222;
        text-decoration: underline;
    }

body {
    background-color: white;
    color: #212529;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 0 0 1rem 0;
    margin: 0;
    text-align: left;
}

button {
    appearance: none;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
}

footer {
    border-radius: 0;
    color: #555555;
    display: flex;
    font-size: 0.8rem;
    margin-top: 2rem;
    text-align: center;
}

    footer > * {
        margin: auto;
    }

    footer a {
        color: inherit;
    }

        footer a:hover {
            color: inherit;
        }
    
    footer .large-screen {
        display: none;
    }

h1, h2, h3, h4, h5, h6 {
    color: inherit;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

img {
    border-style: none;
    object-fit: contain;
}

p {
    margin: 0;
}

    p + p {
        margin-top: 1rem;
    }

section {
    display: flex;
    flex-direction: column;
}

section > * {
    margin: auto;
}

.break {
    display: none;
}

.header {
    margin: auto;
    max-width: 768px;
    overflow: hidden
}

    .header .lower {
        background-color: #66a094;
        padding: 0 1rem 1rem 1rem;
    }

        .header .lower .inner {
            border: 0.5rem solid #f0edc3;
            border-top: none;
            display: flex;
            height: 100%;
            padding: 0.75rem 1rem;
            text-align: center;
        }

            .header .lower .inner p {
                color: white;
                filter: drop-shadow(1px 1px 1px #00000055);
                font-size: 0.9rem;
                font-weight: bold;
                line-height: 1.2rem;
                margin: auto;
            }

    .header .upper {
        background-color: #262f41;
        padding: 1rem 1rem 0 1rem;
    }

        .header .upper .inner {
            border: 0.5rem solid #f0edc3;
            border-bottom: none;
            color: white;
            display: flex;
            flex-direction: column;
            height: 100%;
            padding: 2rem;
            text-align: center;
        }

            .header .upper .inner h1 {
                font-size: 3.5rem;
                line-height: 3.5rem;
                margin: 1.5rem 0 0 0;
            }

                .header .upper .inner h1 sup {
                    font-size: 1.5rem;
                }

            .header .upper .inner img {
                margin: auto;
                width: 15rem;
            }

    .header.small .upper .inner {
        flex-direction: column;
        justify-content: center;
        margin: auto;
        padding: 2rem;
        align-items: center;
    }

        .header.small .upper .inner h1 {
            font-size: 2.5rem;
            line-height: 2.5rem;
        }

        .header.small .upper .inner img {
            margin: auto;
            width: 6rem;
        }

.nobr {
    white-space: nowrap;
}
        
.sale-banner {
    background-color: #f0edc3;
    border-top: 3px solid #262f41;
    border-bottom: 3px solid #262f41;
    box-shadow: 0 2px 3px #0000001f, 0 6px 6px #00000014;
    color: #262f41;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.5rem;
    margin-top: 2rem;
    padding: 1rem;
    text-align: center;
}

.styled-text {
    font-family: "Times New Roman", Times, serif;
    font-style: italic;
}

.symbol {
    font-size: 70%;
}

@media (min-width: 576px) {
    footer .small-screen {
        display: none;
    }

    footer .large-screen {
        display: inline-block;
    }

    .header.small .upper .inner {
        flex-direction: row;
    }

    .header.small .upper .inner h1 {
        font-size: 3rem;
        line-height: 3rem;
        margin-top: 0;
    }

    .header.small .upper .inner img {
        margin: 0 2rem 0 0;
    }
}

@media (min-width: 768px) {
    body {
        padding: 1rem 0;
    }
    
    .break {
        display: inline;
    }

    .header {
        box-shadow: 2px 2px 3px #0000001f, 6px 6px 6px #00000014;
    }
}