@charset "UTF-8";
/*
    Created on : 2026/06/07, 16:39:43
    Author     : n_maruyama
*/
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(90deg, #26014A 25%, #090030 75%);
  color: #fff;
  font-family: sans-serif;
}

h3 {
  font-size: 2.5em;
  text-shadow: 0 0 15px rgb(208, 184.9272727273, 231.0727272727);
  position: relative;
  margin-bottom: 60px;
}
h3::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 80px;
  height: 2px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  h3 {
    font-size: 2.2em;
  }
}
@media (max-width: 640px) {
  h3 {
    font-size: 1.8em;
  }
}

h4 {
  font-size: 2em;
  margin: 0.5em 0 1em 0;
}
@media (max-width: 767px) {
  h4 {
    font-size: 1.7em;
  }
}
@media (max-width: 640px) {
  h4 {
    font-size: 1.5em;
  }
}

h5 {
  font-size: 1.2em;
  margin: 0.5em;
}
@media (max-width: 767px) {
  h5 {
    font-size: 1.1em;
  }
}
@media (max-width: 640px) {
  h5 {
    font-size: 1em;
  }
}

label,
button {
  cursor: pointer;
}
label:hover,
button:hover {
  opacity: 0.8;
}
label:disabled,
button:disabled {
  cursor: default;
}
label:disabled:hover,
button:disabled:hover {
  opacity: 1;
}

img {
  max-width: 100%;
}

#main {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  #main {
    margin: 0;
  }
}

.btn-gradient {
  color: #fff;
  background-image: radial-gradient(circle, rgb(179, 137, 222), rgb(75, 75, 131) 60%);
}

.d-flex {
  display: flex;
}
.d-flex.justify-content-center {
  justify-content: center;
}
.d-flex.justify-content-evenly {
  justify-content: space-evenly;
}

.wrap {
  width: auto;
}

.container {
  box-sizing: border-box;
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 23px;
}

#progress .container {
  padding-inline: 0;
}

#progress .container p {
  width: fit-content;
  margin-inline: auto;
  line-height: 1.75;
}
@media (max-width: 767px) {
  #progress .container p {
    text-align: left;
  }
}

.section-pickup,
.section-entry {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("./img/bg_entry-min.png");
  background-size: cover;
}

.section-about {
  overflow: hidden;
  padding: 0 30px;
  background-image: url("./img/bg_about-min.png");
  background-size: cover;
  color: #fff;
}
.section-about .container {
  padding-inline: 0;
}
.section-about .text-center p {
  width: fit-content;
  margin-inline: auto;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .section-about .text-center p {
    text-align: left;
  }
}

.section-sns a {
  color: #fff;
  text-shadow: 0 0 15px rgb(208, 184.9272727273, 231.0727272727);
  text-decoration: none;
  padding-bottom: 0.2em;
  border-bottom: 2px #fff solid;
  font-size: 1.2em;
}
.section-sns img {
  margin-right: 0.5em;
}
@media (max-width: 640px) {
  .section-sns img {
    width: 30px;
    height: auto;
  }
}

.top-image {
  display: block;
  width: min(100%, 1320px);
  margin: 0 auto;
}

.photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.photo-grid .photo-item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
  width: calc(20% - 8px);
}
.photo-grid .photo-item img {
  width: 100%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  .photo-grid .photo-item {
    width: calc(25% - 7.5px);
  }
}
@media (max-width: 640px) {
  .photo-grid .photo-item {
    width: calc(33.3333333333% - 6.6666666667px);
  }
}
.photo-grid .photo-item .item-label {
  width: fit-content;
  min-width: 70px;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  padding: 3px 1.2em;
  font-size: 0.8em;
  box-sizing: border-box;
}
.photo-grid .photo-item .item-foot {
  width: 100%;
  height: max-content;
  background: #948bdb;
  background: rgba(148, 139, 219, 0.8);
  padding: 5px 0;
  font-size: 0.8em;
  text-align: center;
  color: #fff;
}
.photo-grid .photo-item .isvoted {
  width: fit-content;
  min-width: 70px;
  text-align: center;
  background: tomato;
  padding: 0.2em 0.5em;
  font-size: 0.8em;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

.section-progress {
  padding-bottom: 30px;
  padding-inline: 30px;
  background: linear-gradient(to right, #0A0030, #6C458D, #0A0030);
  object-fit: cover;
}

.flex-bottom {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 100px;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("./img/bg_modal-min.png");
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.modal-content {
  background: transparent;
  width: 100%;
  overflow-y: auto;
  max-height: 100%;
}
.modal-content.vote .container {
  position: relative;
  margin-top: 30px;
  margin-bottom: 60px;
  padding: 0 30px;
}
.modal-content.vote .row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.modal-content.vote .row .col {
  flex: 1 0 0%;
}
@media (max-width: 767px) {
  .modal-content.vote .row {
    gap: 0;
    width: min(100%, 500px);
    margin-inline: auto;
  }
  .modal-content.vote .row .col {
    flex: 0 0 100%;
  }
}
.modal-content.vote h3 {
  width: calc(100% - 96px);
  margin-top: 0;
  margin-inline: auto;
  margin-bottom: 60px;
}
.modal-content.vote .btn-vote {
  font-size: 1.5em;
  width: 100%;
  border: none;
  color: #fff;
  padding: 0.4em;
}
.modal-content.vote .btn-audio {
  text-shadow: 0 0 15px #E7B7F3;
  box-shadow: 0 0 15px #E7B7F3;
  background-color: transparent;
  border: 4px solid #fff;
  font-size: 1em;
  color: #fff;
  padding: 0.1em 1em;
}
.modal-content.vote .btn-audio.active {
  background-color: #fff;
  color: #7A21C0;
}
.modal-content.vote .change-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  width: min(100%, 450px);
  margin: 1em 1em 1em auto;
}
@media (max-width: 767px) {
  .modal-content.vote .change-box {
    width: auto;
    margin: 1em;
  }
}
.modal-content.vote .change-box .btn-tab {
  text-shadow: 0 0 15px #E7B7F3;
  box-shadow: 0 0 15px #E7B7F3;
  background-color: transparent;
  border: 4px solid #fff;
  font-size: 1.5em;
  color: #fff;
  padding: 0.1em 1em;
  flex: 1;
}
.modal-content.vote .change-box .btn-tab.active {
  background-color: #fff;
  color: #7A21C0;
}
.modal-content.vote .shop-action {
  width: min(100%, 450px);
  margin: 0 16px 16px auto;
  text-align: center;
}
.modal-content.vote .shop-action a {
  display: block;
  font-size: 1.5em;
  padding: calc(0.1em + 4px) 1em;
  text-decoration: none;
}
@media (max-width: 767px) {
  .modal-content.vote .shop-action {
    width: auto;
    margin: 0 16px 16px;
  }
}
.modal-content .entry-box {
  background-color: #fff;
  border: 4px solid #7A21C0;
  box-shadow: 0 0 15px #E7B7F3;
  max-width: 800px;
  margin: 0 auto;
  padding: 15px;
  color: #7A21C0;
}
.modal-content .entry-box strong {
  font-size: 1.2em;
  color: tomato;
}
.modal-content .entry-box h4.entry-box-title {
  margin-top: 0;
  text-align: center;
}
.modal-content .entry-box h5.picked-title {
  margin: 0 0 8px;
  padding: 6px 8px;
  text-align: center;
  background: #7A21C0;
  color: #fff;
  font-size: 0.95em;
  letter-spacing: 0.02em;
}
@media (max-width: 640px) {
  .modal-content .entry-box h5.picked-title {
    font-size: 0.9em;
  }
}
.modal-content .entry-box .picked-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: start;
}
@media (max-width: 640px) {
  .modal-content .entry-box .picked-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.modal-content .entry-box .picked-grid > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.modal-content .entry-box .form-check {
  position: relative;
  margin: 0;
}
.modal-content .entry-box .form-check input[type=checkbox] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  margin: 0;
}
.modal-content .entry-box .form-check label {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 8px 12px 8px 42px;
  position: relative;
  border: 2px solid #d9bdee;
  background: #faf5ff;
  color: #7A21C0;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}
.modal-content .entry-box .form-check label::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  box-sizing: border-box;
  border: 2px solid #c89be0;
  border-radius: 6px;
  background: #fff;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}
.modal-content .entry-box .form-check label::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 50%;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: translateY(-65%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.modal-content .entry-box .form-check input:checked + label {
  border-color: #7A21C0;
  background: #7A21C0;
  color: #fff;
  box-shadow: 0 3px 10px rgba(122, 33, 192, 0.35);
}
.modal-content .entry-box .form-check input:checked + label::before {
  background: #7A21C0;
  border-color: #fff;
}
.modal-content .entry-box .form-check input:checked + label::after {
  opacity: 1;
}
.modal-content .entry-box .form-check input:focus-visible + label {
  outline: 3px solid #E7B7F3;
  outline-offset: 2px;
}
.modal-content .entry-box .form-check input:disabled + label {
  opacity: 0.4;
  cursor: not-allowed;
}
@media (hover: hover) {
  .modal-content .entry-box .form-check input:not(:disabled) + label:hover {
    border-color: #7A21C0;
  }
}
.modal-content .entry-box textarea {
  border: 2px solid #7A21C0;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto 30px;
  display: block;
  font-size: 16px;
  padding: 8px;
}
.modal-content .entry-box textarea:focus {
  outline: none;
  border-style: solid;
  border-image-slice: 1;
  animation: rotateGradient 3s linear infinite;
}
.modal-content .entry-box .btn-shop {
  font-size: 1.5em;
  padding: 0.2em 1em;
  text-decoration: none;
  margin-bottom: 2em;
}
.modal-content .btn-close {
  cursor: pointer;
}
.modal-content .btn-close:has(img) {
  position: absolute;
  top: 0;
  right: 18px;
  display: inline-block;
  width: 24px;
  height: 24px;
  padding: 12px;
}
.modal-content {
  /*    button{
          background-color: transparent;
          padding: 0;
          border: none;
          cursor: pointer;
      }*/
}
.modal-content .image-frame {
  position: relative;
  display: block;
  width: min(100%, 450px);
  margin: 0 0 0 auto;
  border-width: 5px;
  border-style: solid;
  animation: rotateGradient 3s linear infinite;
  border-image-slice: 1;
}
.modal-content .image-frame audio,
.modal-content .image-frame video,
.modal-content .image-frame img {
  display: block;
  /* 画像下の余分なスペースを削除 */
  width: 100%;
  /* 必要に応じて調整 */
  height: 100%;
  object-fit: contain;
}
.modal-content .image-frame {
  /*        &::after {
              content: "";
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              z-index: 1;
          }*/
}
@media (max-width: 767px) {
  .modal-content .image-frame {
    width: auto;
  }
}
@keyframes rotateGradient {
  0%, 100% {
    border-image-source: linear-gradient(0deg, #06F6FE, #3599DF, #06F6FE, #698DF6, #B23BF9, #3599DF, #F03BFC);
  }
  33% {
    border-image-source: linear-gradient(120deg, #06F6FE, #3599DF, #06F6FE, #698DF6, #B23BF9, #3599DF, #F03BFC);
  }
  66% {
    border-image-source: linear-gradient(240deg, #06F6FE, #3599DF, #06F6FE, #698DF6, #B23BF9, #3599DF, #F03BFC);
  }
}
/* swiperを囲むコンテナの設定 */
.swiper-outer {
  border: #E9B757 10px solid;
  background: linear-gradient(45deg, #b39855 0%, #fff9e6 50%, #b39855 100%);
  outline: #FAE1AC 4px solid;
  outline-offset: 4px;
}

.swiper {
  max-width: 1320px;
}
.swiper .swiper-slide {
  overflow: hidden;
  display: flex;
  /* Flexboxを使用 */
  justify-content: flex-end;
  /* 横方向の中央揃え */
  align-items: center;
  /* 縦方向の中央揃え */
  flex-direction: column;
  height: auto;
}
.swiper .swiper-slide img {
  object-fit: contain;
  object-position: center;
  /* 中央に配置 */
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  /* 幅は自動調整 */
}
.swiper .swiper-slide .swiper-slide-foot {
  width: 100%;
  background: #948bdb;
  background: rgba(148, 139, 219, 0.8);
  padding: 5px 0;
  font-size: 0.8em;
  text-align: center;
  color: #fff;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: #FAE1AC;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 12px;
}

.spinner-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
.spinner-box .three-quarter-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid #7A21C0;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin 0.5s linear 0s infinite;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb50 {
  margin-bottom: 50px;
}/*# sourceMappingURL=style.css.map */