@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 572px;
  margin: 1rem auto;
  border: solid 2px #0072BC;
  background-color: #fff;
  overflow: hidden;
  padding: 0.5rem 1.5rem;
}
article p {
  padding-bottom: 0.5rem;
}
h1 {
  margin: 0;
  font-size: 1.33em;
  line-height: 1.2em;
}
h2 {
  font-size: 1.2em;
  line-height: 1.3;
}
h3 {
  background: #0072BC;
  margin: 0.5rem -1.5rem;
  padding: 0.25rem 1.5rem 0.5rem;
  color: #fff;
  font-size: 1.33em;
  line-height: 1.2;
}
h3 span {
  font-size: 0.8em;
  margin-top: 0.3rem;
  display: block;
}
h4 {
  color: #2E85C6;
  font-size: 1.2em;
  line-height: 1.3;
}
:is(a:link,a:hover,a:visited,a:active){
  color: inherit;
  text-decoration: none;
  display: inline-block;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.bg {
  margin: 0 -1.5rem 0.5rem;
  padding: 0.5rem 1.5rem;
  background: #EDF1FA;
  color: #5F656C;
  font-size: 1.093em;
  line-height: 1.3;
}
.bg img {
  padding-right: 0.3rem;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: -3.5rem;
}
.right {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
a.link {
  color: #2E85C6;
  font-size: 1.08em;
}
.left img {
  margin: 0 0.35rem 0.4rem;
}
@media only screen and (max-width:571px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  :is(h1, h2) br {
    display: none;
  }
  header {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-bottom: 0.5rem;
  }
  footer {
    margin-top: 0;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
@media only screen and (max-width:480px) {
  #wrapper {
    padding: 0.5rem 1rem;
  }
}