@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font-family: "Times New Roman", serif;
    font-size: 1em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 610px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #071437;
    overflow: hidden;
    padding: 0;
}
h1 {
    margin: 0 0 1.2rem;
    font-size: 2.28em;
    line-height: 1.1;
    color: #1FC2F3;
    text-align: center;
}
h1 span {
    font-size: 0.5em;
}
h1 span:last-of-type {
    display: block;
    line-height: 1.2;
}
h2 {
    font-size: 1.15em;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    text-align: center;
}
a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.8rem;
    list-style: none;
}
li {
    padding-left: 1.2rem;
}
ul li:before {
    content: "»";
    display: inline-block;
    font-size: 1em;
    position: relative;
    float: left;
    margin-top: -1px;
    margin-left: -1.2rem;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.25rem 1.5rem 0;
}
article {
    padding: 0.7rem 1.5rem 0 2.5rem
}
.qr {
    text-align: center;
    padding-top: 0.5rem;
}
.qr p {
    font-weight: bold;
    color: #1FC2F3;
}
footer {
    padding: 0 1.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 0.89em;
    line-height: 1.3;
}
@media only screen and (max-width:609px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    i br {
        display: none;
    }
    article {
        padding: 0.7rem 1rem 0
    }
    .flex {
        flex-direction: column;
        align-items: center;
        padding: 0;
        gap: 1rem;
    }
    .right {
        width: 100%;
    }
    footer {
        flex-direction: column;
        align-items: center;
    }
    footer p {
        text-align: center;
        padding-bottom: 1rem;
    }
}