#header-box {
  width: 100%;
  height: min(100vw, 100svh);
  position: relative;
  font-size: 1.25vmin;
}

#header-frame {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1em solid #ff4080;
  border-radius: 4em;
  width: 64em;
  height: 64em;
  overflow: hidden;
}

#header-bg {
  position: relative;
  background: url("./img/dollphone/bg-blue.svg");
  background-size: 2em;
  height: 100%;
}

.header-item {
  position: absolute;
  height: auto;
  display: block;
}

#header-text {
  position: absolute;
  font-size: min(2.5rem, 10vw);
  line-height: 1;
  text-align: right;
  bottom: 1rem;
  right: 1rem;
  font-weight: 800;
  font-stretch: 75%;
  color: white;
  text-shadow: 0px 0px 4px black;
}

#search-module {
  margin: 8px;
}

.horizontal {
  display: flex;
  flex-direction: row;
}

.horizontal input {
  flex: 1 1 auto;
}

#search-result-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
}

#search-result-list li {
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

#search-result-list li img {
  width: 100%;
  aspect-ratio: 1;
}