@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #373737;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #0000ff;
    text-decoration: underline;

}

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.15rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0 0 1rem 1rem;
    list-style-type: none;
}

ul li::before {
    content: '\1F782';
    color: #B1B0B1;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

header {
    display: flex;
    justify-content: center;
}

article {
    border: 1px solid #dcdada;
}

article section {
    border-bottom: 1px solid #dcdada;
    padding: 1rem;
}

.title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.logo {
    border: 1px solid #fff;
    padding: 0 3rem;
    border-radius: 10px;
}

.margin {
    margin-bottom: 2rem;
}

.margin2 {
    margin-bottom: 3rem;
}

.info {
    display: flex;
    gap: 3rem;
    padding: 2rem 1rem 1rem;
}

.info section {
    width: 50%;
}
.center {
    text-align: center;
}

.info p {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.info .qr {
    display: flex;
    gap: 3rem;
}


@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}


@media only screen and (max-width: 40rem) {
    .title {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
}

