@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    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: 56.25rem;
	margin: 1rem auto;
	overflow: hidden;
    border: 1px solid #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.blue,
a.blue {
    color: #0e68ae;
}

h1 {
    font-size: 1.5rem;
    color: #0e68ae;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1rem;
    color: #0e68ae;
}

h3 {
    font-size: 1.1rem;
    color: #0e68ae;
    margin-bottom: 1rem;
    font-weight: 400;
}

p {
    margin-bottom: 1rem;
}

ul {
    margin: 0.5rem 0 1rem 0;
    list-style-type: none;
}

ul li {
    background: url(../images/circle.png) no-repeat left top;
    padding: 0 0 0.5rem 2rem;
}
 
.nowrap {
    white-space: nowrap;
}

header {
    border-bottom: 1.5rem solid #0e68ae;
}

main {
    display: flex;
}

article {
    background: url(../images/bg.png) top right no-repeat ;
    padding: 2rem;
}

aside {
    background-color: #f6b245;
    padding: 2rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

aside p {
    hyphens: auto;
}

.img {
    display: inline;
    margin-top: 0.25rem;
}

footer {
    background-color: #0e68ae;
    height: 1.5rem;
}

iframe {
    display: block;
    width: 100%;
    height: 28.125rem;
}


.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 52.4%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}


.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


@media only screen and (max-width: 56rem) {
    #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: 48rem) {

    main {
        flex-direction: column;
    }
}

@media only screen and (max-width: 40rem) {
    article,
    aside {
        padding: 1rem;
    }
}

