@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p a.ins{
    color: #0545AC;
    text-decoration: underline;
}
p.color {
    color: #E67E23;
}
h1, h2 {
    color: #CC6D00;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 2rem;
    font-size: 1.692em;
    line-height: 1.1;
}
h2 {
    font-size: 1.5em;
    line-height: 1.3;
    margin: 1rem 0 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #0545AC;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
ul li {
    padding: 0 0 0.3rem 1rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
ul ul li:before {
    content: "o";
    font-size: 0.7em;
}
ul ul {
    padding-bottom: 0;
}
header {
    background: #1994C7;
    padding: 0 1rem 1rem;
    display: flex;
    justify-content: flex-end;
}
article {
    padding: 2rem;
    position: relative;
}
footer {
    padding: 2rem 1rem;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.left {
    width: 60%;
}
.left p {
    text-align: justify;
}
.right {
    width: 35%;
}
.iframe {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    margin: 2rem 0;
}
.iframe iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}
.button {
    text-align: center;
}
.button a {
    display: inline-block;
    background: #0089C1;
    padding: 1rem 2rem;
    margin: 1rem auto;
    cursor: pointer;
    border: 0.1rem solid #0089C1;
    transition: all 140ms ease 0s;
    -moz-transition: all 140ms ease 0s;
    -webkit-transition: all 140ms ease 0s;
    color: #fff;
    border-radius: 4px;
}
.button a:hover {
    background-color: #1994C7;
    text-decoration: none;
}
footer {
    display: flex;
    justify-content: center;
    gap: 0 1rem;
}
@media only screen and (max-width:899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    .flex{
        flex-direction: column;
    }
    .flex p{
        text-align: left;
    }
    .flex div{
        width: 100%;
    }
    .hide_m{
        display: none;
    }
}
@media only screen and (max-width: 480px) {
    article{
        padding: 1rem;
    }
}