@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #001E50;
    font-family: Arial, sans-serif;
    font-size: 0.75em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 750px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff url('./bg.svg') no-repeat center;
    background-size: 100% auto;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    padding: 1rem 1rem 0.5rem;
    font-size: 2em;
    line-height: 1.1;
    background-color: #00B46E;
    color: #fff;
    position: absolute;
    left: 3rem;
    top: 15rem;
    width: 64%;
}
h1 span {
    font-size: 0.74em;
    line-height: 1.3em;
    display: block;
}
h2 {
    font-size: 1.2em;
    line-height: 1.25;
    color: #fff;
    background-color: #00B46E;
    margin-bottom: 1rem;
    padding: 0.375rem 0.5rem;
    width: fit-content;
}
h3 {
    font-size: 1.25em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1.25em;
    list-style: none;
}
li {
    padding-left: 4rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-top: -2px;
    margin-left: -1.25rem;
}
header {
    padding: 0 1rem 0 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
header > img {
    width: 72%;
}
main {
    padding: 6rem 2rem 1rem;
}
.box {
    padding-top: 1rem;
}
figure img {
    width: 30px;
}
.box > a img {
    width: 165px;
    margin-bottom: 0.75rem;
}
.box p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
}
.box p img {
    width: 25px;
}
.flex {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.flex p {
    display: flex;
    flex-direction: column;
    width: 110px;
    margin: 0.5rem;
}
.flex p img {
    width: 60px;
}
.small {
    font-size: 0.75em;
    line-height: 1.3em;
}
.flex1 {
    display: flex;
    justify-content: space-between;
    gap: 0.375rem;
}
.flex1 div {
    width: 48%;
}
.flex1 figure {
    font-size: 2.25em;
    line-height: 1.3em;
    display: flex;
    justify-content: flex-start;
    gap: 0.25rem;
}
.avt {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    object-fit: cover;
}
.logo img {
    width: 100px;
}
footer p {
    background-color: #00B46E;
    text-align: center;
    padding: 1rem 2rem;
    margin: 1rem 0 0;
}
footer p a {
    color: #00B46E;
    background-color: #fff;
    padding: 0.5rem 2.5rem;
    display: inline-block;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    header {
        display: block;
        padding: 0;
    }
    header > img {
        width: auto;
    }
    h1 {
        position: static;
        margin: 0.5rem 1rem;
        padding: 0.5rem 1rem;
        text-align: center;
        width: auto;
    }
    h1 br {
        display: none;
    }
    .box {
        text-align: center;
        width: fit-content;
        margin: 0 auto;
    }
    main {
        padding: 1rem;
    }
    .flex1 {
        display: block;
    }
    .flex1 div {
        width: auto;
        text-align: center;
    }
    .flex1 figure {
        margin: 0 auto 1rem;
        justify-content: center;
    }
    footer p {
        text-align: center;
    }
}
@media only screen and (max-width: 380px) {
    li {
        padding-left: 1rem;
    }
    .flex p {
        width: 100%;
        text-align: center;
        align-items: center;
        margin: 1rem;
    }
}