@charset "utf-8";
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-regular.woff') format('woff'),
        url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-italic.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-italic.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-italic.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-italic.woff') format('woff'),
        url('../fonts/roboto-v30-latin-italic.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-italic.svg#Roboto') format('svg');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''),
        url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-v30-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-v30-latin-700.woff') format('woff'),
        url('../fonts/roboto-v30-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.5em 'Roboto', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 940px;
    margin: 1rem auto;
    border: 1px solid #000;
    background: #fff;
    overflow: hidden;
    padding: 2rem;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
.pb {
    padding-bottom: 0.5rem;
}
.center {
    text-align: center;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.7em;
    line-height: 1.1;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h3 {
    font-size: 1.25em;
    line-height: 1.3;
    font-weight: 400;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 0.5rem;
}
h4 {
    font-size: 1.25em;
    line-height: 1.3;
    margin: 0 0 1rem 2rem;
}
ul {
    padding: 0 0 1rem 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.box {
    margin-bottom: 1rem;
}
.box p {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0;
}
.box p>span:first-of-type {
    width: 140px;
    font-weight: 700;
}
.box p>span:last-of-type {
    flex: 1;
}
.width {
    display: inline-block;
    width: 70px;
}
.btn {
    text-align: right;
}
.btn a {
    display: inline-block;
    background-color: #EF4D38;
    color: #fff;
    box-shadow: inset 0 -3px 0 rgb(0 0 0 / 15%);
    padding: 0.625rem 1rem;
    border-radius: 3px;
    cursor: pointer;
}
.btn a:hover {
    background-color: #DC4734;
}
header {
    padding: 0 0 2rem;
}
@media only screen and (max-width:939px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
}
@media only screen and (max-width:768px) {
    header {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    .box p {
        flex-direction: column;
        margin-bottom: 0.5rem;
    }
    ul {
        padding-left: 0;
    }
    h4 {
        margin-left: 1rem;
    }
}