body {
  counter-reset: number;
}
main {
  overflow: hidden;
}

/* --- sec1（mv） --- */
.secBeginning {
  margin-top: -50px;
  padding-bottom: 24px;
  padding-top: 60px;
}
.pc .secBeginning {
  margin-top: -200px;
  padding-top: 120px;
  padding-bottom: 50px;
}
.secBeginning::before {
  background: no-repeat center/contain url(../img/best-scene/sec1_title.webp);
  width: 346px;
  aspect-ratio: 693/121;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.pc .secBeginning::before {
  width: 400px;
}
.secBeginning__text {
  line-height: 1.5;
  margin-top: 20px;
}
.pc .secBeginning__text {
  font-size: 2.4rem;
  margin-top: 40px;
}


/* 投票 */
.scene-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 3% 80px;
}
.pc .scene-list {
  gap: 20px;
  padding: 0 30px 100px;
}
.scene-list__item {
  position: relative;
  width: calc((100% - 10px)/2);
}
.pc .scene-list__item {
  width: calc((100% - 20px)/2);
}
/* .scene-list__item:nth-child(even) {
  transform: translateY(40px);
}
.pc .scene-list__item:nth-child(even) {
  transform: translateY(80px);
} */
.scene {
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
  padding: 8% 3% 4%;
  aspect-ratio: 325/416;
  background:no-repeat center/contain url(../img/best-scene/scene_bg.webp);
  cursor: pointer;
}
.scene2 {
  background:no-repeat center/contain url(../img/best-scene/scene2_bg.webp);
}
.scene3 {
  background:no-repeat center/contain url(../img/best-scene/scene3_bg.webp);
}
.scene4 {
  background:no-repeat center/contain url(../img/best-scene/scene4_bg.webp);
}
.scene5 {
  background:no-repeat center/contain url(../img/best-scene/scene5_bg.webp);
}
.scene6 {
  background:no-repeat center/contain url(../img/best-scene/scene6_bg.webp);
}
.scene7 {
  background:no-repeat center/contain url(../img/best-scene/scene7_bg.webp);
}
.scene8 {
  background:no-repeat center/contain url(../img/best-scene/scene8_bg.webp);
}
.scene9 {
  background:no-repeat center/contain url(../img/best-scene/scene9_bg.webp);
}
.scene10 {
  background:no-repeat center/contain url(../img/best-scene/scene10_bg.webp);
}
.scene11 {
  background:no-repeat center/contain url(../img/best-scene/scene11_bg.webp);
}
.scene12 {
  background:no-repeat center/contain url(../img/best-scene/scene12_bg.webp);
}
.scene13 {
  background:no-repeat center/contain url(../img/best-scene/scene13_bg.webp);
}
.scene14 {
  background:no-repeat center/contain url(../img/best-scene/scene14_bg.webp);
}
.scene15 {
  background:no-repeat center/contain url(../img/best-scene/scene15_bg.webp);
}
.scene16 {
  background:no-repeat center/contain url(../img/best-scene/scene16_bg.webp);
}
.scene__number {
  background-color: #3e768e;
  width: 35%;
  height: 11%;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.scene__number.scene__number--top3 {
  background-color: #dcc36a;
}
.scene-number__letter {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}
.pc .scene-number__letter {
  font-size: 20px;
}
.scene__number--top3 .scene-number__letter {
  color: #5a5011;
}
.scene-number__letter::before {
  counter-increment: number;
  content: counter(number);
  font-size: 18px;
  padding-right: 2px;
}
.pc .scene-number__letter::before {
  font-size: 24px;
}
.scene__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 14%;
}
.scene__day {
  height: 100%;
}
.scene__day img {
  height: 100%;
}
.scene__opponent {
  font-weight: bold;
  font-size: 4vw;
}
.pc .scene__opponent {
  font-size: 2.4rem;
}
.scene__opponent::before {
  content: '';
  background: no-repeat center/contain url(../img/best-scene/vs.webp);
  display: inline-block;
  width: 16px;
  height: 12px;
}
.pc .scene__opponent::before {
  width: 28px;
  height: 21px;
}
.scene__title {
  line-height: 1.5;
  font-size: 4.3vw;
}
.pc .scene__title {
  font-size: 2.6rem;
}


/* --- modal --- */
body._open {
  overflow-y: hidden;
}
.modal {
  display: none;
  position: fixed;
  z-index: 11;
  left: 0;
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, .7);
}
.modal._show {
  display: block;
}
.modal-inner {
  height: 100%;
  display: grid;
  place-items: center;
}
.modal-content {
  position: relative;
  margin: 0 20px;
  max-width: 700px;
  min-width: 300px;
  aspect-ratio: auto;
}
.pc .modal-content {
  margin: 60px;
  width: 700px;
}
.modal-title {
  padding: 20px 40px 0;
  text-align: center;
  background-color: rgba(255, 255, 255, .85);
  border-radius: 16px 16px 0 0;
}
.modal-title h2 {
  line-height: 1.25;
  font-size: 2.8rem;
  color: #006298;
}
.pc .modal-title h2 {
  font-size: 5rem;
}
.modal-movie {
  aspect-ratio: 16/9;
  transform: translateY(20px);
}
.modal-result {
  padding: 30px 40px 20px;
  background-color: rgba(0, 59, 84, .85);
}
.pc .modal-result {
  padding: 50px 100px 30px;
}
.modal-text {
  padding: 20px 20px 50px;
  background-color: rgba(250, 250, 250, .85);
  border-radius: 0 0 16px 16px;
  line-height: 1.5;
  color: #006298;
}
.pc .modal-text {
  padding: 30px 40px 60px;
  font-size: 2.8rem;
}
.modal-btn {
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 229px;
  transform: translateX(calc(9px - 50%));
  cursor: pointer;
}
.pc .modal-btn {
  bottom: -60px;
  width: 420px;
  transform: translateX(calc(18px - 50%));
}
.modal-btn.voted {
  filter: brightness(.5);
  pointer-events: none;
}
.modal-closeBtn {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 45px;
  height: 45px;
  border-radius: 100px;
  background-color: rgba(0, 59, 84, .95);
  cursor: pointer;
}
.modal-closeBtn__mark {
  position: relative;
  width: 100%;
  height: 100%;
}
.modal-closeBtn__mark span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 20px;
  height: 3px;
  background-color: #fff;
}
.modal-closeBtn__mark span:first-child {
  transform: translate(-50%,-50%) rotate(45deg);
}
.modal-closeBtn__mark span:last-child {
  transform: translate(-50%,-50%) rotate(-45deg);
}

.secBeginning__text__strong {
  font-weight: bold;
}
.secBeginning__text__xshareBtn {
  display: flex;
  justify-content: center;
}
.xshareBtn {
  margin-top: 10px;
}
.pc .xshareBtn {
  margin-top: 20px;
}
.xshareBtn a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}
.xshareBtn a:hover {
  opacity: 0.8;
}
.xshareBtn__image {
  width: 30px;
}
.pc .xshareBtn__image {
  width: 40px;
}
.xshareBtn__image img {
  width: 100%;
}
.xshareBtn__text {
  text-decoration: underline;
}


/* goods */
.goods {
  display: block;
  padding: 0 3% 50px;
}
.pc .goods {
  padding: 0 30px 50px;
}
.goods:hover {
  filter: brightness(0.8);
  transition: transform 1500ms, opacity 1500ms, filter 0ms;
}