@charset "UTF-8";
/* コンテンツ最大幅 */
/* color */
/* ============================================ */
/* font */
/* ============================================ */
/* vote-chara */
/* ============================================ */
main {
  padding: 50px 15px 20px;
  background: radial-gradient(circle at 70% 10%, #fff, #fff200, #ffea00);
  text-align: center;
}
main section {
  padding: 15px 15px 20px;
  border-radius: 16px;
  background: #fff;
}
main section .ttl-lv3 {
  margin-bottom: 15px;
}

.remarks {
  margin-top: 1rem;
  color: #c1272d;
  font-size: 1.4rem;
}

.note {
  margin-top: 1rem;
  font-size: 1.2rem;
}

#message {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  color: #c1272d;
}
#message a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  margin-top: 10px;
  padding-bottom: 3px;
  border-radius: 100px;
  background: #c1272d;
  color: #fff100;
  font-size: 2rem;
  font-weight: 700;
}

.votes {
  margin-top: 30px;
}
.votes > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  font-size: 1.8rem;
}
.votes > ul > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 25px) / 2);
  cursor: pointer;
}
.votes > ul > li span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 105px;
  height: 40px;
  margin-top: 5px;
  padding-bottom: 3px;
  border-radius: 20px;
  background: #c1272d;
  color: #fff100;
  font-size: 1.5rem;
}
.votes > ul > li.col-1 {
  width: 100%;
}
.votes > ul > li .adjust {
  max-width: 70%;
}
.votes > ul > li .set-img {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.votes > ul > li .set-img li {
  position: relative;
}
.votes > ul > li .set-img li:nth-child(2) {
  left: -1px;
}
.votes > ul > li .set-img li:nth-child(3) {
  left: -2px;
}
.votes > ul > li .set-name {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.votes > ul > li .set-name li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33.3333333333%;
}

/* modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
}
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.modal_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.modal_content {
  position: relative;
  width: 100%;
  max-width: 800px;
}
.modal_inner {
  background: #fff;
  border: 10px solid #fff100;
  border-radius: 20px;
  padding-bottom: 20px;
  overflow: hidden;
}
.modal_inner img {
  max-width: 70%;
}
.modal_inner dl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-inline: 20px;
}
.modal_inner dl dt {
  margin-bottom: 15px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
}
.modal_inner dl dd {
  font-size: 1.5rem;
  text-align: left;
}
.modal_inner dl div {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
}
.modal_inner dl div button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 40px;
  margin-top: 5px;
  padding-bottom: 3px;
  border-radius: 20px;
  background: #c1272d;
  color: #fff100;
}
.modal_inner dl div button:disabled {
  background: #999;
  color: #fff;
}
.modal .swiper-button-next, .modal .swiper-button-prev {
  width: 23px;
  height: 34px;
}
.modal .swiper-button-next:after, .modal .swiper-button-prev:after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/common/ico_ar.png) no-repeat center/cover;
}
.modal .swiper-button-next {
  right: 30px;
}
.modal .swiper-button-prev {
  left: 30px;
  transform: scaleX(-1);
}
.modal_close-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: 20;
  width: 45px;
  height: 45px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #c1272d;
  cursor: pointer;
}
.modal_close-btn::before, .modal_close-btn::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  width: 25px;
  height: 1px;
  background: #fff;
  transform-origin: center;
}
.modal_close-btn::before {
  transform: rotate(45deg);
}
.modal_close-btn::after {
  transform: rotate(-45deg);
}

/*# sourceMappingURL=vote-chara.css.map */
