.voting {
  position: relative;
  width: 100%;
  padding: 4rem 0;
}

.voting-inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.vote-box {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  z-index: 3;
}

.vote-item {
  position: relative;
  width: 23%;
  aspect-ratio: 1 / 1;
  margin: 0 2.6% 2rem 0;
  font-feature-settings: "palt";
}

.vote-item:last-child {
  margin: 0 0 1.4rem;
}

.explain {
  width: 100%;
  padding: 0 0 0 1em;
  font-family: "Anton", sans-serif;
  color: #fff;
  font-size: 24px;
  background-color: #000;
  background-image: url(../img/v-num-bg.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: top left -60px;
  letter-spacing: 0.05em;
}

.thumb {
  position: relative;
  aspect-ratio: 1 / 1;
  border: #000 solid 2px;
  background-color: #000;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.name {
  width: 100%;
  min-height: 4rem;
  margin: 0 0 0.5rem;
  padding: 0 0.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  background-image: url(../img/v-name-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 120% auto;
  background-color: #c20913;
  word-break: keep-all;
}

.name span {
  display: inline-block;
  color: #fff000;
  font-weight: 900;
  padding: 0 0.7em;
  letter-spacing: 0.05em;
}

.name span.break {
  display: block;
}

.name.t-s {
  font-size: 80%;
}

a.select-btn {
  width: 100%;
  margin: 0.5rem 0 0;
}

a.select-btn img {
  width: 100%;
  filter: drop-shadow(3px 3px 0 #fccf00);
  transition: all 0.2s;
}

.read {
  width: 100%;
  height: 2rem;
  margin: 0.5rem 0 0.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.read-bg {
  background-color: #c20913;
}

.read img {
  width: 76%;
}

.read-outer {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.read-btn {
  width: 48%;
}

@media screen and (min-width: 1px) and (max-width: 743px) {
  .voting {
    padding: 2rem 0;
  }

  .voting-inner {
    width: 100%;
    margin: 0 auto;
  }

  .vote-box {
    width: 96%;
    margin: 0 auto;
  }

  .vote-item {
    width: 32%;
    aspect-ratio: 1 / 1;
    margin: 0 2% 0.5rem 0;
  }

  .vote-item:nth-child(3n) {
    margin: 0 0 0.5rem 0;
  }

  .vote-item:last-child {
    margin: 0 0 0.5rem;
  }

  .explain {
    padding: 0 0 0 0.8em;
    font-size: 4.8vw;
    /* 18px -> 4.8vw */
    background-position: top left -50px;
  }

  .thumb {
    border: #000 solid 1px;
  }

  .name {
    min-height: 3.5rem !important;
    margin: 0 0 0.3rem;
    padding: 0 0.5em;
    color: #fff;
    font-size: 2.667vw;
    /* 10px -> 2.667vw */
    font-weight: 600;
    line-height: 1.4;
    word-break: normal;
  }

  .name.t-s {
    font-size: 2.133vw;
  }

  a.select-btn {
    margin: 0;
  }

  a.select-btn img {
    filter: drop-shadow(2px 2px 0 #fccf00);
  }

  .read {
    height: 1.2rem;
    margin: 0.3rem 0 0.2rem;
  }

  .read img {
    width: 94%;
  }

}

@media screen and (min-width: 744px) and (max-width: 1024px) {
  .voting {
    padding: 2rem 0;
  }

  .vote-item {
    margin: 0 2.6% 2rem 0;
  }

  .vote-item:nth-child(4n) {
    margin: 0 0 2rem 0;
  }

  .vote-item:last-child {
    margin: 0 0 2rem;
  }

  .explain {
    font-size: 2.604vw;
    /* 20px → 2.604vw */
    background-position: top left -45px;
  }

  .name {
    min-height: 4.5rem;
    font-size: 1.432vw;
    /* 11px → 1.432vw */
  }

  .name.t-s {
    font-size: 70%;
  }

  .read {
    height: 1.5rem;
    margin: 0.5rem 0 0.3rem;
  }

  .read img {
    width: 86%;
  }
}

@media screen and (min-width: 1025px) {
  .voting-inner {
    max-width: 1100px;
  }

  .vote-item:nth-child(4n) {
    margin: 0 0 1.4rem 0;
  }

  a.select-btn img:hover {
    transform: translate(3px, 3px);
    filter: drop-shadow(3px 3px 0 transparent);
  }
}