@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #0066B3;
  font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 574px;
  margin: 1rem auto;
  border: solid 1px #000;
  background-color: #fff;
  overflow: hidden;
}
p {
  padding-bottom: 0.4rem;
}
h1 {
  margin: 0;
  font-size: 2.378em;
  line-height: 1.1em;
}
h1 + p {
  font-size: 1.8em;
  line-height: 1.3;
  margin-top: -0.5rem;
  padding-bottom: 1rem;
}
h1 span {
  font-size: 0.83rem;
  font-weight: 400;
}
h2 {
  font-size: 1em;
  line-height: 1.3em;
  margin-bottom: 0.4rem;
  color: #F37021;
}
:is(a:link,a:hover,a:visited,a:active){
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
img {
  max-width: 100%;
  height: auto;
}
header {
  position: relative;
}
header p {
  position: absolute;
  top: 9%;
  right: 5%;
  color: #fff;
  font-size: 0.85em;
  line-height: 1.3;
}
article {
  padding: 2rem 2rem 2rem 9rem;
}
figure {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: -1.5rem 0 1rem 3.75rem;
}
figure a {
  position: relative;
  z-index: 2;
}
figure > img {
  margin-top: -1rem;
}
footer {
  padding: 0 2rem 2rem 12.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
@media only screen and (max-width:573px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  article {
    padding-left: 2rem;
  }
  span {
    display: inline-block;
  }
  .hide_m {
    display: none;
  }
  figure {
    margin: 1rem auto;
    width: fit-content;
  }
  footer {
    justify-content: center;
  }
}
@media only screen and (max-width:480px) {
  article {
    padding: 1rem;
  }
  footer {
    padding: 0 1rem 1rem;
    flex-direction: column;
    align-items: center;
  }
  h1 {
    font-size: 2em;
  }
  h1 + p {
    font-size: 1.5em;
  }
}