@charset "utf-8";
:root {
  font-size: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  min-height: 100%;
}
body {
  color: #000;
  font: 400 1em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
  position: relative;
  max-width: 585px;
  margin: 1rem auto;
  border: solid 2px #000;
  background-color: #fff;
  overflow: hidden;
  padding: 1rem;
}
.nopb {
  padding-bottom: 0;
}
p {
  padding-bottom: 0.3rem;
}
h1, h2, .qr p, article p {
  text-align: center;
}
h1 {
  margin: 0.6rem 0 0;
  font-size: 1.2em;
  line-height: 1.2em;
}
h1 + p, footer p {
  font-size: 1.143em;
  line-height: 1.3;
}
h2 {
  font-size: 1.4287em;
  line-height: 1.3em;
  margin-bottom: 0.3rem;
}
h2, .color {
  color: #FCB814;
}
:is(a:link,a:hover,a:visited,a:active){
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
img {
  max-width: 100%;
  height: auto;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: -1.8rem;
}
.qr {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.qr p {
  font-size: 1.2em;
  margin-top: -0.3rem;
}
.txt {
  padding-left: 0.5rem;
}
.color {
  padding-bottom: 0.8rem;
}
@media only screen and (max-width:584px) {
  #wrapper {
    border: none;
    margin: 0 auto;
  }
  .hide_m {
    display: none;
  }
  footer {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    gap: 0.75rem;
  }
  footer p {
    text-align: center;
  }
}