@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #005490;
  font: 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 720px;
  min-width: 250px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 0;
}
p {
  padding-bottom: 1rem;
}
h1, h3 {
  margin: 0 0 0.5rem;
  font-size: 1.692em;
  line-height: 1.3em;
  background: rgb(0 84 144 / 0.7);
  padding: 0.5rem 0.5rem 0.25rem 2rem;
  width: 315px;
  color: #fff;
}
h1 span {
  font-size: 0.65em;
  font-weight: normal;
}
h2 {
  font-size: 1.25em;
  line-height: 1.3em;
  font-weight: normal;
  margin-bottom: 1.5rem;
}
h4 {
  font-size: 1.3em;
  line-height: 1.3em;
  margin-bottom: 1rem;
  color: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
ul {
  padding: 0;
  list-style: none;
}
li {
  padding-left: 1.3rem;
}
ul li:before {
  content: "\2022";
  display: inline-block;
  font-size: 1.000em;
  position: relative;
  float: left;
  top: -1px;
  margin-left: -1.3rem;
}
header figure {
  display: flex;
  justify-content: flex-end;
  padding: 2rem 2rem 1rem;
}
header section {
  position: relative;
}
header section div {
  position: absolute;
  bottom: 2rem;
  left: 0;
}
article {
  padding: 1rem 2rem 0.5rem;
  position: relative;
}
article section {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  padding: 1rem 1rem 0;
  background: #80C1C3;
}
footer {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: #005490;
  color: #fff;
  flex-wrap: wrap;
  gap: 1rem;
}
footer figure {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}
footer p {
  padding: 0;
}
footer figure p {
  text-align: right;
}
@media only screen and (max-width:719px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  p {
    text-align: left;
  }
  header figure, article, footer {
    padding: 1rem;
  }
  header section div, article section {
    position: static;
  }
  article br {
    display: none;
  }
  .block_m {
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  body {
    font-size: 0.9375em;
    line-height: 1.3;
  }
}