@charset "utf-8";

.stampHeader {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  margin-bottom: 10px;
  overflow: hidden;
}

.stampHeader__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 5px;
}

.stampHeader__heading {
  font-size: 5.0rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 0 2px rgb(0 0 0 / 0.4);
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  text-align: center;
  word-break: auto-phrase;
}

.stampHeader__description {
  font-size: 2.0rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 0 2px rgb(0 0 0 / 0.4);
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}

@media (max-width: 640px) {
  .stampHeader__heading {
    font-size: 4.0rem;
  }

  .stampHeader__description {
    font-size: 1.6rem;
  }
}

.stampHeader__background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
