@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-v27-latin-regular.eot');
    src: url('../fonts/noto-sans-v27-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v27-latin-regular.woff2') format('woff2'), url('../fonts/noto-sans-v27-latin-regular.woff') format('woff'), url('../fonts/noto-sans-v27-latin-regular.ttf') format('truetype'), url('../fonts/noto-sans-v27-latin-regular.svg#NotoSans') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/noto-sans-v27-latin-700.eot');
    src: url('../fonts/noto-sans-v27-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v27-latin-700.woff2') format('woff2'), url('../fonts/noto-sans-v27-latin-700.woff') format('woff'), url('../fonts/noto-sans-v27-latin-700.ttf') format('truetype'), url('../fonts/noto-sans-v27-latin-700.svg#NotoSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #3a434f;
    font: 1em/1.3em 'Noto Sans', Arial, sans-serif;
    background: #F5F5F5;
}
#wrapper {
    position: relative;
    max-width: 834px;
    margin: 1rem auto;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    padding-bottom: 1rem;
    font-size: 1.75em;
    line-height: 1.3;
    color: #0064aa;
}
h2 {
    font-size: 1.25em;
    line-height: 1.3;
    color: #0064aa;
    background: #f5f5f5;
    padding: 0.5rem 1rem;
}
h3 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}
h3 + ul {
    padding-bottom: 0.75rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #0064aa;
    text-decoration: underline dotted 1px #0064aa;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "•";
    float: left;
    margin: -1px 0 0 -1rem;
}
.logo, .box div {
    padding: 0.75rem 1rem;
}
.logo, .box, .slide {
    border-radius: 3px;
    margin-bottom: 0.75rem;
}
.logo, .box {
    border: 1px solid #dcdfe2cc;
    background: #fff;
}
@-webkit-keyframes slidy {
0% { left: 0%; }
16.6% { left: 0%; }
33.2% { left: -100%; }
49.8% { left: -100%; }
66.4% { left: -200%; }
83% { left: -200%; }
100% { left: -300%; }
}

@keyframes slidy {
0% { left: 0%; }
16.6% { left: 0%; }
33.2% { left: -100%; }
49.8% { left: -100%; }
66.4% { left: -200%; }
83% { left: -200%; }
100% { left: -300%; }
}
.slide { overflow: hidden; }
.slide figure img { width: 25%; float: left; }
.slide figure { 
  position: relative;
  width:400%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  -webkit-animation-name:slidy;
  -webkit-animation-duration: 15s;
  -webkit-animation-delay: 5s;
  -webkit-animation-iteration-count: infinite;
  animation: 15s slidy infinite; 
}
.iframe {   
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
a.apply {
    display: block;
    width: 50%;
    min-width: fit-content;
    padding: 0.75rem 2rem;
    background: #0064aa;
    color: #fff;
    text-decoration: none;
    margin: 1.5rem auto;
    text-align: center;
    border-radius: 3px;
}
@media only screen and (max-width: 833px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p, li {
        hyphens: auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    .logo {
        justify-content: center;
        display: flex;
    }
}