@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
  --portas: #cf1225;
}

.header {
  top: 0;
  width: 100%;
  height: 80px;
  padding: 0 50px;
  background-color: #fff;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #b8b8b8;
}

h1.logo {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .header {
    padding: 0 20px;
    height: 60px;
    justify-content: center;
  }

  .header__logo {
    width: 120px;
  }
}

.header__logo img {
  max-width: 100%;
}

.footer {
  height: 150px;
  text-align: center;
  position: relative;
  border-top: 1px solid #b8b8b8;
  font-weight: 500;
}

.footer__inner {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 1.25rem 0;
}

.footer__inner>div {
  display: grid;
  place-items: center;
}

.footer__inner>div>img {
  margin: 50px auto 0;
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer ul li {
  margin: 0 1.25rem;
  display: inline-block;
}

footer ul li a {
  color: #292929;
  text-decoration: none;
  font-size: .875rem;
}

footer ul li a:hover {
  color: #cf1225;
  text-decoration: underline;
}

footer .copy {
  margin: 1.875rem auto;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 600px) {
  footer .copy {
    flex-direction: column;
  }
}

footer .copy a img {
  width: 180px;
  margin: 0 1.875rem 1.875rem;
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  line-height: 1;
  z-index: 9;
}

#page-top a {
  background: var(--yellow);
  border-radius: 100px;
  text-decoration: none;
  color: var(--yellow);
  width: 50px;
  height: 50px;
  text-align: center;
  display: block;
  opacity: 0.9;
  transition: all 0.3s ease;
  position: relative;
}

#page-top a:hover {
  text-decoration: none;
  opacity: 0.5;
}

#page-top a:before {
  position: absolute;
  top: 10px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 20px;
  height: 20px;
  border-top: 3px solid #2e3a46;
  border-right: 3px solid #2e3a46;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

b.price {
  font-size: 1.5rem;
  margin: 0 .2em;
}

b.setprice {
  display: inline-block;
  background: var(--portas);
  color: #fff;
  padding: 5px 15px 5px 15px;
  margin-right: 1rem;
  font-weight: 500;
  position: relative;
}

b.setprice:after {
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: var(--portas);
  display: inline-block;
  height: 30px;
  width: 20px;
  margin: 0;
  right: -10px;
  top: 50%;
  transform: translate(0, -50%);
  position: absolute;
}

.product-price-num {
  font-size: 2em !important;
  font-weight: 500 !important;
  color: var(--portas) !important;
  line-height: 1;
  vertical-align: text-bottom;
  white-space: nowrap;
}

.product-price-num small {
  font-size: 50% !important;
  font-weight: 600;
  margin: 0 .2em;
}

.notice {
	text-indent: -1em !important;
	padding-left: 1em !important;
    font-size: 14px;
}
