@charset "UTF-8";
/* 共通の設定・パーツ
* -------------------------------------------- */
body {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  background-color: #fff;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
a:hover {
  opacity: 0.7;
}

.container {
  max-width: 1140px;
  padding: 0 30px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media (max-width: 767px) {
  .container {
    padding: 0 26px;
  }
}

.inner {
  max-width: 828px;
  padding: 0 30px;
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
@media (max-width: 767px) {
  .inner {
    padding: 0 40px;
  }
}

li {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
}

.link-underline {
  color: #5cefff;
  text-decoration: underline;
}

/* ====================================
画面幅別 表示・非表示
======================================*/
.pc-only {
  display: block;
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}
@media (max-width: 480px) {
  .pc-only {
    display: none;
  }
}

.tab-sp-only {
  display: none;
}
@media (max-width: 767px) {
  .tab-sp-only {
    display: block;
  }
}
@media (max-width: 480px) {
  .tab-sp-only {
    display: block;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: none;
  }
}
@media (max-width: 480px) {
  .sp-only {
    display: block;
  }
}

/* ボタン
* -------------------------------------------- */
.nav__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  border-radius: 60px;
  border: 2px solid #FF58AE;
  background: rgba(255, 110, 198, 0.6);
  -webkit-box-shadow: 0px 0px 10px 0px #fff inset, 0px 0px 20px 0px #ffc4e4;
          box-shadow: 0px 0px 10px 0px #fff inset, 0px 0px 20px 0px #ffc4e4;
  text-shadow: 0.3px 0.3px 0px #fff;
  height: 48px;
  padding: 0px 24px;
}
.nav__button:hover {
  opacity: 0.7;
}

.nav__button-text {
  font-size: 20px;
  font-weight: normal;
}
.nav__button-text.large {
  font-size: 24px;
}
@media (max-width: 767px) {
  .nav__button-text.large {
    font-size: 20px;
  }
}
@media (max-width: 380px) {
  .nav__button-text.small {
    font-size: 18px;
    font-size: 4.615vw;
  }
}

.nav__button-icon {
  width: 24px;
}

.button__sns--wrap {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button__sns {
  color: #fff;
  text-align: center;
  font-size: 20px;
  text-shadow: 0.3px 0.3px 0px #fff;
  border-radius: 60px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.3);
  width: 100%;
  margin: 0 auto;
  margin-top: 16px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  z-index: 3;
}
@media (max-width: 767px) {
  .button__sns {
    height: 48px;
  }
}
.button__sns img {
  width: 32px;
  height: 32px;
  margin-right: 4px;
}
@media (max-width: 1024px) {
  .button__sns.font-s {
    font-size: 14px;
  }
  .button__sns.font-s img {
    width: 24px;
    height: 24px;
  }
}

/* コンテストとCheer Boxのボタン
* -------------------------------------------- */
.button__info {
  color: #fff;
  text-align: center;
  font-size: 20px;
  text-shadow: 0.3px 0.3px 0px #fff;
  border-radius: 60px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.3);
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  margin-top: 16px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  z-index: 3;
}
.button__info p {
  position: relative;
  width: 100%;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.button__info p::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/arrow_white.svg) no-repeat center center/contain;
  width: 14px;
  height: 14px;
}
@media (max-width: 767px) {
  .button__info {
    font-size: 16px;
    width: 82%;
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .collab .button__info {
    width: 100%;
  }
}

.prize__project-info .button__info,
.prize__runner-up .button__info {
  max-width: 100%;
  width: 100%;
  font-size: 18px;
}
@media (max-width: 1024px) {
  .prize__project-info .button__info,
  .prize__runner-up .button__info {
    font-size: 14px;
  }
}

/* 丸の中に数字があるリスト
* -------------------------------------------- */
.maru_list,
.maru_list2 {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
}

.maru_list li {
  position: relative;
  padding-left: 16px;
  margin-top: 16px;
}

.maru_list li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #5cefff;
  color: #1E214A;
  display: block;
  line-height: 1em;
  font-size: 24px;
  text-align: center;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  margin-left: -30px;
  position: absolute;
  top: 18px;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  .maru_list li::before {
    font-size: 16px;
    height: 18px;
    width: 18px;
    top: 13px;
    left: 22px;
  }
}

.maru_list2 li {
  position: relative;
  padding-left: 16px;
  margin-top: 16px;
}

.maru_list2 li::before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #5cefff;
  color: #1E214A;
  display: block;
  line-height: 1em;
  font-size: 20px;
  text-align: center;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  margin-left: -22px;
  position: absolute;
  top: 14px;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  .maru_list2 li::before {
    font-size: 14px;
    height: 16px;
    width: 16px;
    top: 11px;
    left: 18px;
  }
}

.mt24 {
  margin-top: 24px;
}

.border--yerrow {
  border-radius: 8px;
  border: 4px solid #fff194;
  background: rgba(193, 193, 193, 0.9);
  -webkit-box-shadow: 0px 0px 10px 0px rgb(255, 241, 148);
  box-shadow: 0px 0px 10px 0px rgb(255, 241, 148);
}
@media (max-width: 480px) {
  .border--yerrow {
    -webkit-box-shadow: 0px 0px 10px 0px rgb(255, 241, 148);
    box-shadow: 0px 0px 10px 0px rgb(255, 241, 148);
  }
}

/* --------------------------------------------
フェードインアニメーション
* -------------------------------------------- */
/*下からフェードインアニメーション*/
.fade-in-bottom {
  opacity: 0;
  -webkit-animation-name: fadein-bottom;
          animation-name: fadein-bottom;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadein-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadein-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fade-in-bottom2 {
  opacity: 0;
  -webkit-animation-name: fadein-bottom;
          animation-name: fadein-bottom;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@keyframes fadein-bottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.modal2__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin: 12px 24px 0;
  overflow-x: auto;
  overflow-y: hidden;
  min-height: 31px;
}
@media (max-width: 767px) {
  .modal2__header {
    min-height: 28px;
  }
}
.modal2__header {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.modal2__header::-webkit-scrollbar {
  height: 6px;
}
.modal2__header::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.modal2__header::-webkit-scrollbar-thumb {
  background: rgba(92, 239, 255, 0.6);
  border-radius: 3px;
}
.modal2__header::-webkit-scrollbar-thumb:hover {
  background: rgba(92, 239, 255, 0.8);
}
@media (max-width: 767px) {
  .modal2__header {
    margin: 0;
    margin-top: -12px;
    margin-bottom: 16px;
  }
}

.modal2__header-label {
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 2px 16px 4px 16px;
  border-radius: 34px;
  border: 2px solid #5cefff;
  color: #5CEFFF;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 20px #5cefff;
  gap: 10px;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
@media (max-width: 767px) {
  .modal2__header-label {
    font-size: 12px;
  }
}

/* タブボタン */
.tab-button.active {
  background-color: #5CEFFF;
  color: #222b59;
}

/* タブコンテンツ */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  overflow-y: auto;
  overflow-x: hidden;
  /* スクロールバーのスタイリング */
}
.tab-content.active::-webkit-scrollbar {
  width: 8px;
}
.tab-content.active::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.tab-content.active::-webkit-scrollbar-thumb {
  background: rgba(92, 239, 255, 0.6);
  border-radius: 4px;
}
.tab-content.active::-webkit-scrollbar-thumb:hover {
  background: rgba(92, 239, 255, 0.8);
}

.modal2__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
  gap: 40px;
  padding: 0px 24px 16px;
}
@media (max-width: 767px) {
  .modal2__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
    margin-top: 0;
    padding: 0px 0px 20px;
  }
}

.modal2__image {
  width: 44%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .modal2__image {
    width: 100%;
  }
}

.modal2__title {
  color: #fff194;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 767px) {
  .modal2__title {
    font-size: 16px;
  }
}

.modal2__title-name {
  font-size: 16px;
}
@media (max-width: 767px) {
  .modal2__title-name {
    font-size: 14px;
  }
}

.modal2__card {
  cursor: pointer;
}
.modal2__card img {
  border-radius: 4px;
}

.modal2__card-wrap {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .modal2__card-wrap {
    margin-top: 4px;
  }
}

@media (max-width: 767px) {
  .modal2__info {
    margin-top: -28px;
  }
}

.modal2__texts {
  color: #fff;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .modal2__texts {
    margin-top: 2em;
    padding: 0px 16px 0px 10px;
  }
}

.modal2__text-title {
  font-size: 16px;
  font-weight: 700;
  color: #5cefff;
}

.modal2__text {
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.7;
}
.modal2__text p + p {
  margin-top: 1em;
}

p + .modal2__text-title2 {
  margin-top: 16px;
  margin-top: 1.5em;
}

.modal2__text-title2 {
  color: #5cefff;
}

.slider-thumbnail .swiper-slide,
.slider-thumbnail2 .swiper-slide {
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.slider-thumbnail .swiper-slide.swiper-slide-thumb-active,
.slider-thumbnail2 .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}

.swiper.slider,
.swiper.slider2 {
  padding: 8px;
}
@media (max-width: 767px) {
  .swiper.slider,
  .swiper.slider2 {
    padding: 16px;
    padding: 4.267vw;
    padding: 16px 16px 16px 10px;
  }
}

.swiper.slider-thumbnail,
.swiper.slider-thumbnail2 {
  padding: 8px;
}
@media (max-width: 767px) {
  .swiper.slider-thumbnail,
  .swiper.slider-thumbnail2 {
    padding: 16px;
    padding: 4.267vw;
    padding-left: 10px;
  }
}
@media (max-width: 480px) {
  .swiper.slider-thumbnail,
  .swiper.slider-thumbnail2 {
    padding: 8px;
  }
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 3s ease-in-out;
  transition: opacity 3s ease-in-out;
}

.fadein-up {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 80px;
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 64px;
  }
}

body {
  background: #1e214a;
  color: #fff;
}

body.no-scroll,
html.no-scroll {
  overflow: hidden;
}

/* --------------------------------------------
ヘッダー
* -------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  z-index: 1000;
  height: 4.167vw;
  height: 80px;
}
@media (max-width: 767px) {
  .header {
    height: 19.2vw;
    height: 64px;
  }
}

.header__inner {
  /* max-width: 1340px; */
  margin: 0 auto;
  padding: 0 2.083vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
}
@media (max-width: 767px) {
  .header__inner {
    padding: 0 13px 0 6px;
  }
}

.header__logo {
  width: 261px;
}
@media (max-width: 767px) {
  .header__logo {
    width: 100px;
    width: 194px;
  }
}

.header__logo img {
  width: 100%;
  height: auto;
}

.header-nav .nav__button {
  padding: 0 3.5em;
}

@media (max-width: 767px) {
  .sp-header-nav__list {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sp-header-nav__item {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #FF58AE;
    background: rgba(255, 110, 198, 0.6);
    -webkit-box-shadow: 0px 0px 7px 0px #fff inset, 0px 0px 10px 0px #ffc4e4;
            box-shadow: 0px 0px 7px 0px #fff inset, 0px 0px 10px 0px #ffc4e4;
    text-shadow: 0.3px 0.3px 0px #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sp-header-nav__icon {
    width: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* ドロワーメニュー
* -------------------------------------------- */
/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: relative;
  z-index: 10;
  right: 0px;
  top: 0px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #FF58AE;
  background: rgba(255, 110, 198, 0.6);
  -webkit-box-shadow: 0px 0px 10px 0px #fff inset, 0px 0px 20px 0px #ffc4e4;
          box-shadow: 0px 0px 10px 0px #fff inset, 0px 0px 20px 0px #ffc4e4;
  text-shadow: 0.3px 0.3px 0px #fff;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 18px;
  height: 2px;
  left: 11px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 13px;
}

.hamburger span:nth-child(2) {
  top: 19px;
}

.hamburger span:nth-child(3) {
  top: 25px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 19px;
  left: 11px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 19px;
  left: 11px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 8;
  inset: 0;
  color: #fff;
  text-align: center;
  width: 100%;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(97deg, rgba(19, 22, 63, 0.8) -0.3%, rgba(27, 31, 71, 0.8) 49.85%, rgba(15, 23, 62, 0.8) 100%);
  backdrop-filter: blur(8px);
  display: none;
  z-index: 6;
}

.overlay.active {
  display: block;
}

.globalMenuSp__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

nav.globalMenuSp ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li a {
  color: #fff;
  text-decoration: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
}

/* --------------------------------------------
ファーストビュー
* -------------------------------------------- */
.first-view {
  background: url(../img/fv_bg.jpg) center center/cover;
  position: relative;
}
@media (max-width: 767px) {
  .first-view {
    padding-top: 64px;
    background: url(../img/fv-bg_sp.jpg) center center/cover;
  }
}

.first-view__blur {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 686px;
  height: 686px;
  width: 35.729vw;
  height: 35.729vw;
  background: rgba(255, 187, 232, 0.2);
  -webkit-filter: blur(100px);
          filter: blur(100px);
  opacity: 1;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .first-view__blur {
    width: 400px;
    height: 400px;
    width: 102.564vw;
    height: 102.564vw;
    -webkit-filter: blur(60px);
            filter: blur(60px);
  }
}

.first-view__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: last baseline;
      -ms-flex-align: last baseline;
          align-items: last baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.first-view__main-logo {
  width: 720px;
  width: 37.5vw;
  padding-right: 40px;
  padding-right: 2.083vw;
  position: relative;
}
@media (max-width: 767px) {
  .first-view__main-logo {
    width: 120%;
    padding-right: 0;
  }
}
.first-view__main-logo::before {
  content: "";
  width: 650px;
  height: 686px;
  width: 33.854vw;
  height: 35.729vw;
  background-image: url(../img/Hito1.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 32%;
  left: -54%;
  z-index: 10;
  opacity: 0;
  -webkit-animation-name: fadein-bottom;
          animation-name: fadein-bottom;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media (max-width: 767px) {
  .first-view__main-logo::before {
    display: none;
  }
}
.first-view__main-logo::after {
  content: "";
  width: 732px;
  height: 708px;
  width: 38.125vw;
  height: 36.875vw;
  background-image: url(../img/Hito2.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 27%;
  right: -64%;
  z-index: 10;
  opacity: 0;
  -webkit-animation-name: fadein-bottom;
          animation-name: fadein-bottom;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media (max-width: 767px) {
  .first-view__main-logo::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .first-view__person-sp {
    width: 100%;
    height: 354px;
    height: 90.769vw;
    margin-top: -80px;
    position: relative;
    z-index: 2;
  }
}

.first-view__background-left {
  position: absolute;
  top: 37px;
  left: -107px;
  top: 1.927vw;
  left: -5.573vw;
}
.first-view__background-left img {
  width: 600px;
  width: 31.25vw;
}
@media (max-width: 767px) {
  .first-view__background-left {
    display: none;
  }
}

.first-view__background-right {
  position: absolute;
  top: -41px;
  right: 13px;
  top: -2.135vw;
  right: 0.677vw;
}
.first-view__background-right img {
  width: 660px;
  width: 34.375vw;
}
@media (max-width: 767px) {
  .first-view__background-right {
    display: none;
  }
}

.fv_text img {
  display: inline-block;
  max-width: 388px;
  width: 100%;
  margin: auto;
  text-align: center;
}
@media (max-width: 767px) {
  .fv_text img {
    max-width: 90%;
    margin: 0 auto;
  }
}

/* スクロール誘導アニメーション
* -------------------------------------------- */
.scroll-wrap {
  position: relative;
  height: 127px;
  height: 6.615vw;
  margin-left: 66px;
  margin-left: 3.438vw;
}
@media (max-width: 767px) {
  .scroll-wrap {
    display: none;
  }
}

@media (max-width: 767px) {
  .scroll-container {
    display: none;
  }
}
.scroll-container {
  position: absolute;
  bottom: 1%;
  right: 50%;
  -webkit-animation: arrowmove 1s ease-in-out infinite;
          animation: arrowmove 1s ease-in-out infinite;
}
.scroll-container::before {
  content: "";
  position: absolute;
  bottom: 5px;
  right: -3px;
  width: 2px;
  height: 9px;
  bottom: 0.26vw;
  right: -0.156vw;
  width: 0.104vw;
  height: 0.469vw;
  background: #abffa7;
  -webkit-transform: skewX(-31deg);
          transform: skewX(-31deg);
}
.scroll-container::after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 2px;
  bottom: 0.26vw;
  right: 0;
  width: 0.104vw;
  height: 73px;
  height: 3.802vw;
  background: #abffa7;
}

.scroll {
  text-shadow: 0px 0px 20px #abffa7;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #abffa7;
  font-family: "Rounded Mplus 1c";
  font-size: 0.729vw;
  position: absolute;
  bottom: 82px;
  bottom: 4.271vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  cursor: pointer;
  z-index: 11;
}

@-webkit-keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 5%;
  }
  00% {
    bottom: 1%;
  }
}

@keyframes arrowmove {
  0% {
    bottom: 1%;
  }
  50% {
    bottom: 5%;
  }
  00% {
    bottom: 1%;
  }
}
/* --------------------------------------------
  aboutセクション
* -------------------------------------------- */
.about {
  position: relative;
  padding: 94px 0 120px;
  padding: 4.896vw 0 6.25vw;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffc7f8), to(#bf54b3));
  background: linear-gradient(180deg, #ffc7f8 0%, #bf54b3 100%);
  -webkit-filter: drop-shadow(0px -6px -20px #fffcc2);
          filter: drop-shadow(0px -6px -20px #fffcc2);
  height: 580px;
  height: 30.208vw;
}
@media (max-width: 767px) {
  .about {
    padding: 88px 0 62px;
    margin-top: -40px;
    height: auto;
  }
}

.about__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url(../img/about_road.png) top 170px left 0px/cover no-repeat;
}
@media (max-width: 1280px) {
  .about__background {
    background: url(../img/about_road.png) top 120px left 0px/cover no-repeat;
  }
}
@media (max-width: 767px) {
  .about__background {
    background: url(../img/about_road-sp.png) top 160px left 30%/cover no-repeat;
    height: 700px;
  }
}

.about_line {
  position: absolute;
  bottom: 117px;
  left: 0;
}
@media (max-width: 1280px) {
  .about_line {
    bottom: 50px;
  }
}
@media (max-width: 767px) {
  .about_line {
    bottom: 250px;
  }
}

.about__photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media (max-width: 767px) {
  .about__photos {
    display: none;
  }
}

.about__photo-wrap {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px 0 #fffddf;
          box-shadow: 0 0 20px 0 #fffddf;
  border: 4px solid #fff194;
  position: absolute;
}
@media (max-width: 767px) {
  .about__photo-wrap {
    display: none;
  }
}

.about__photo1 {
  top: 5.729vw;
  left: -20%;
  left: 8.333vw;
  width: 13.5vw;
}

.about__photo2 {
  top: 56%;
  top: 327px;
  top: 17.031vw;
  left: 11.458vw;
  width: 16.458vw;
}

.about__photo3 {
  top: 5.729vw;
  right: 6.25vw;
  width: 16.458vw;
}

.about__photo4 {
  top: 63%;
  top: 367px;
  top: 19.115vw;
  right: 240px;
  right: 12.5vw;
  width: 13.5vw;
}

.about__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.about__center {
  width: 768px;
  width: 40vw;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .about__center {
    width: 100%;
    gap: 24px;
  }
}

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

.about__title-en {
  font-family: "Playwrite US Trad", serif;
  font-size: 32px;
  font-size: 1.667vw;
  color: #fffcbf;
}
@media (max-width: 767px) {
  .about__title-en {
    font-size: 20px;
  }
}

.about__title-ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 40px;
  font-size: 2.083vw;
  font-weight: 700;
  color: #fff194;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  margin: 0;
}
@media (max-width: 767px) {
  .about__title-ja {
    font-size: 24px;
  }
}

.about__text-group {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 20px;
  font-size: 1.042vw;
}
@media (max-width: 767px) {
  .about__text-group {
    font-size: 16px;
    margin-top: 30px;
  }
}
.about__text-group img {
  width: 95%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .about__text-group img {
    width: 100%;
  }
}
.about__text-group p {
  margin-top: -18px;
  margin-top: -0.937vw;
}
@media (max-width: 767px) {
  .about__text-group p {
    margin-top: 18px;
  }
}

.swiper-slide.border img {
  border: 4px solid #FFF194;
  border-radius: 10px;
}

.about__swiper {
  margin: 37px 0 0;
}

.conditions {
  background: url(../img/conditions_bg.png) center center/cover;
  padding: 0px 0 192px 0;
  width: auto;
  border-top: 6px solid #FFF194;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .conditions {
    padding: 0px 0 306px 0;
    background: url(../img/conditions_bg.png) center left/cover;
  }
}

.conditions__title {
  max-width: 588px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
@media (max-width: 1200px) {
  .conditions__title {
    max-width: 488px;
  }
}
@media (max-width: 767px) {
  .conditions__title {
    width: 90%;
  }
}

.conditions__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}

.conditions__content {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 768px;
  width: 100%;
  margin: -100px auto 0;
  position: relative;
}
@media (max-width: 1200px) {
  .conditions__content {
    max-width: 600px;
  }
}
@media (max-width: 767px) {
  .conditions__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    margin: -36px auto 0;
  }
}

.conditions__pattern1 {
  width: 130px;
  height: auto;
  position: absolute;
  top: 82px;
  left: -80px;
  z-index: 2;
}

.conditions__pattern2 {
  width: 160px;
  height: auto;
  position: absolute;
  bottom: 510px;
  left: -100px;
  z-index: 2;
}

.conditions__pattern3 {
  width: 130px;
  height: auto;
  position: absolute;
  bottom: 378px;
  right: -80px;
  z-index: 2;
}

.conditions__pattern4 {
  width: 154px;
  height: auto;
  position: absolute;
  top: 141px;
  right: -100px;
  z-index: 2;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.conditions__pattern5 {
  width: 130px;
  height: auto;
  position: absolute;
  bottom: 82px;
  left: -80px;
  z-index: 2;
}

.conditions__items {
  background: rgba(21, 29, 81, 0.9);
  border-radius: 60px;
  -webkit-box-shadow: 0 0 20px 0 #5cefff, inset 0 0 90px 0 #fff;
          box-shadow: 0 0 20px 0 #5cefff, inset 0 0 90px 0 #fff;
  border: 4px solid #5cefff;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  padding: 114px 40px 80px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .conditions__items {
    padding: 26px 0px 37px;
    border-radius: 20px;
  }
}

.conditions__item-title--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.conditions__item-title--wrap img {
  max-width: 100%;
}

.conditions__item-title {
  font-size: 1.5rem;
  font-size: 32px;
  color: #5cefff;
  font-weight: bold;
  text-shadow: 0px 0px 20px #5cefff;
  letter-spacing: 0.05em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .conditions__item-title {
    font-size: 24px;
  }
}

.conditions__item-text {
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 1.7;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .conditions__item-text {
    font-size: 13px;
    margin-top: 12px;
  }
}
.conditions__item-text .underline {
  border-bottom: 4px solid #ff6ec6;
  -webkit-filter: drop-shadow(0px 0px 20px #ffc4e4);
          filter: drop-shadow(0px 0px 20px #ffc4e4);
}

.conditions__list-wrap {
  margin: 0 auto;
  width: 85%;
}
@media (max-width: 1200px) {
  .conditions__list-wrap {
    width: 100%;
  }
}

.conditions__list {
  font-size: 24px;
  margin-top: 18px;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .conditions__list {
    font-size: 16px;
    padding: 0 24px;
  }
}

.conditions__list2 {
  font-size: 20px;
}
@media (max-width: 767px) {
  .conditions__list2 {
    font-size: 14px;
  }
}

.conditions__bottom-text {
  text-align: center;
  font-size: 24px;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .conditions__bottom-text {
    font-size: 16px;
  }
}

.result {
  padding: 120px 0 300px;
  padding-bottom: 15.625vw;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#1e214a), to(#323770));
  background: linear-gradient(180deg, #1e214a 0%, #323770 100%);
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .result {
    padding: 80px 0;
    padding-bottom: 31.282vw;
  }
}

.result__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 800px;
  height: 41.667vw;
  background-image: url(../img/result/back.png);
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .result__background {
    height: 334px;
    height: 85.641vw;
    background-image: url(../img/result/back_sp.png);
  }
}

.result__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .result__container {
    padding: 0;
  }
}

.result__header {
  text-align: center;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .result__header {
    margin-bottom: 40px;
  }
}

.result__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #fff194;
  margin-bottom: 30px;
  text-shadow: 0 0 20px rgb(255, 253, 223);
}
@media (max-width: 767px) {
  .result__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.result__logo {
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .result__logo {
    max-width: 100%;
  }
}
.result__logo img {
  width: 100%;
  height: auto;
}

.result__content {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .result__content {
    margin-bottom: 60px;
  }
}

.result__grand-prize {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .result__grand-prize {
    margin-bottom: 60px;
  }
}

.result__prize-header {
  text-align: center;
  margin-bottom: 40px;
}

.result__winner-name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #5cefff;
  text-shadow: 0 0 20px rgb(92, 239, 255);
}

.result__project-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .result__project-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.result__project-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 300px;
  height: 200px;
  border-radius: 10px;
  border: 4px solid #fff194;
  overflow: hidden;
  -webkit-box-shadow: 0 0 20px rgb(255, 253, 223);
          box-shadow: 0 0 20px rgb(255, 253, 223);
}
@media (max-width: 767px) {
  .result__project-image {
    width: 100%;
    max-width: 300px;
    height: 150px;
  }
}
.result__project-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.result__project-details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.result__project-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 767px) {
  .result__project-title {
    font-size: 20px;
  }
}

.result__project-line {
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#5cefff), to(#ff58ae));
  background: linear-gradient(90deg, #5cefff 0%, #ff58ae 100%);
  margin-bottom: 16px;
}

.result__project-description {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .result__project-description {
    font-size: 14px;
  }
}

.result__runners-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 767px) {
  .result__runners-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.result__runner-up {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.result__runner-up-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .result__runner-up-header {
    gap: 16px;
    margin-bottom: 20px;
  }
}

.result__runner-up-rank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2px;
  width: 36px;
  height: 55px;
}
@media (max-width: 767px) {
  .result__runner-up-rank {
    width: 30px;
    height: 45px;
  }
}

.result__runner-up-number {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.1);
  border: 2px solid #f0f0f0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: inset 0 0 10px rgb(244, 244, 244);
          box-shadow: inset 0 0 10px rgb(244, 244, 244);
}
@media (max-width: 767px) {
  .result__runner-up-number {
    font-size: 32px;
  }
}
.result__runner-up:nth-child(2) .result__runner-up-number {
  color: rgba(241, 218, 170, 0.1);
  border-color: #ffd4b0;
  -webkit-box-shadow: inset 0 0 10px rgb(181, 166, 135);
          box-shadow: inset 0 0 10px rgb(181, 166, 135);
}

.result__runner-up-text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  padding-bottom: 8px;
}
@media (max-width: 767px) {
  .result__runner-up-text {
    font-size: 14px;
  }
}
.result__runner-up:nth-child(2) .result__runner-up-text {
  color: #ffd0ae;
}

.result__runner-up-name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #5cefff;
  text-shadow: 0 0 20px rgb(92, 239, 255);
}
@media (max-width: 767px) {
  .result__runner-up-name {
    font-size: 20px;
  }
}

.result__runner-up-image {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  border: 4px solid #fff194;
  overflow: hidden;
  margin-bottom: 24px;
  -webkit-box-shadow: 0 0 20px rgb(255, 253, 223);
          box-shadow: 0 0 20px rgb(255, 253, 223);
}
@media (max-width: 767px) {
  .result__runner-up-image {
    height: 150px;
    margin-bottom: 20px;
  }
}
.result__runner-up-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.result__runner-up-details {
  padding: 0 24px;
}
@media (max-width: 767px) {
  .result__runner-up-details {
    padding: 0 16px;
  }
}

.result__runner-up-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 767px) {
  .result__runner-up-title {
    font-size: 18px;
  }
}

.result__runner-up-line {
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#5cefff), to(#ff58ae));
  background: linear-gradient(90deg, #5cefff 0%, #ff58ae 100%);
  margin-bottom: 16px;
}

.result__runner-up-description {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .result__runner-up-description {
    font-size: 12px;
  }
}

.result__gallery {
  text-align: center;
  padding: 0 24px;
}

.result__gallery-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .result__gallery-header {
    gap: 12px;
    margin-top: 54px;
    margin-bottom: 16px;
  }
}

.result__gallery-pick {
  width: 40px;
}
.result__gallery-pick img {
  width: 100%;
  height: 100%;
}
.result__gallery-pick.reverse {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.result__gallery-title {
  font-weight: 700;
  font-size: 32px;
  color: #fff194;
}
@media (max-width: 767px) {
  .result__gallery-title {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .result__images-wrap {
    display: none;
  }
}

.result__gallery-images-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.result__gallery-swiper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.result__gallery-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 300px;
  border-radius: 10px;
  border: 4px solid #fff194;
  overflow: hidden;
  -webkit-box-shadow: 0 0 20px rgb(255, 253, 223);
          box-shadow: 0 0 20px rgb(255, 253, 223);
}
@media (max-width: 767px) {
  .result__gallery-image {
    max-width: none;
  }
}
.result__gallery-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .result__gallery-image img {
    height: auto;
  }
}

.result-swiper {
  width: 100%;
  height: 100%;
}
.result-swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.result-swiper .swiper-pagination {
  position: relative;
  margin-top: 20px;
}
.result-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 241, 148, 0.5);
  opacity: 1;
  margin: 0 6px;
}
.result-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #fff194;
}

.prize {
  padding: 100px 0 100px;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#dd7dd2), color-stop(10%, #dd7dd2), to(#a63eb2));
  background: linear-gradient(180deg, #dd7dd2 0%, #dd7dd2 10%, #a63eb2 100%);
  z-index: 1;
}
.prize::before {
  content: "";
  position: absolute;
  top: -238px;
  top: -12.396vw;
  left: 0;
  width: 100%;
  height: 310px;
  height: 16.146vw;
  background-image: url(../img/result/round.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (max-width: 767px) {
  .prize::before {
    height: 143px;
    height: 36.667vw;
    top: -110px;
    top: -28.205vw;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .prize {
    padding: 60px 0;
  }
  .prize::before {
    background-image: url(../img/result/round_sp.png);
  }
}

.prize__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.prize__stars {
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/result/starback.png);
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.prize__lights {
  position: absolute;
  top: -200px;
  top: -10.417vw;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 100%;
  height: 100%;
  width: 1280px;
  height: 694px;
  width: 66.667vw;
  height: 36.146vw;
  background-image: url(../img/result/light.png);
  background-size: cover;
  background-position: center;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
@media (max-width: 767px) {
  .prize__lights {
    top: -90px;
    top: -23.077vw;
    background-image: url(../img/result/light_sp.png);
    width: 320px;
    height: 300px;
    width: 82.051vw;
    height: 76.923vw;
  }
}

.prize__lights--bottom {
  position: absolute;
  left: 15%;
  bottom: 0;
  width: 900px;
  height: 500px;
  width: 46.875vw;
  height: 26.042vw;
  background-image: url(../img/result/light_bottom.png);
  background-size: cover;
  background-position: center;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
@media (max-width: 767px) {
  .prize__lights--bottom {
    background-image: url(../img/result/light-bottom_sp.png);
    width: 320px;
    height: 300px;
    width: 82.051vw;
    height: 76.923vw;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

.prize__lights--bottom2 {
  position: absolute;
  right: 15%;
  bottom: 0;
  width: 900px;
  height: 500px;
  width: 46.875vw;
  height: 26.042vw;
  background-image: url(../img/result/light_bottom.png);
  background-size: cover;
  background-position: center;
  -webkit-filter: blur(5px);
          filter: blur(5px);
}
@media (max-width: 767px) {
  .prize__lights--bottom2 {
    display: none;
  }
}

.prize__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .prize__container {
    padding: 0 24px;
  }
}

.prize__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  padding: 0 24px;
  margin-top: -200px;
  margin-top: -10.417vw;
}
@media (max-width: 767px) {
  .prize__content {
    gap: 40px;
    padding: 0;
    margin-top: -54px;
    margin-top: -13.846vw;
  }
}

.prize__sns {
  text-align: center;
  gap: 12px;
}
.prize__sns a {
  display: inline-block;
  width: 40px;
  height: 40px;
}
.prize__sns a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .prize__sns a {
    width: 32px;
    height: 32px;
  }
}

.prize__grand-prize {
  width: 100%;
}

.prize__prize-card {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 60px;
  padding: 60px 40px;
  border: 2px solid #fff194;
  -webkit-box-shadow: inset 0 0 10px rgb(253, 255, 140);
          box-shadow: inset 0 0 10px rgb(253, 255, 140);
}
@media (max-width: 767px) {
  .prize__prize-card {
    padding: 40px 20px;
    border-radius: 30px;
  }
}

.prize__prize-header {
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .prize__prize-header {
    max-width: 100%;
    margin-bottom: 0px;
  }
}
.prize__prize-header img {
  height: auto;
}

.prize__prize-rank {
  display: inline-block;
}
.prize__prize-rank-text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: rgba(255, 246, 184, 0.1);
}
@media (max-width: 767px) {
  .prize__prize-rank-text {
    font-size: 32px;
  }
}

.prize__winner-name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #5cefff;
  text-shadow: 0 0 20px rgb(92, 239, 255);
}

.prize__project-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .prize__project-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
}

.prize__project-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0.9;
      -ms-flex: 0.9;
          flex: 0.9;
  height: 225px;
  border-radius: 10px;
  border: 4px solid #fff194;
  overflow: hidden;
  -webkit-box-shadow: 0 0 20px rgb(255, 253, 223);
          box-shadow: 0 0 20px rgb(255, 253, 223);
  position: relative; /* 子要素の絶対配置を基準にする */
  width: 100%; /* 親要素の幅に合わせる */
  aspect-ratio: 16/9; /* 横：縦の比率を16:9に指定 */
  height: auto; /* 高さをアスペクト比に基づいて自動調整 */
}
.prize__project-image iframe {
  position: absolute; /*親要素の左上を基準にする */
  top: 0;
  left: 0;
  width: 100%; /* 親要素の幅いっぱいに表示 */
  height: 100%; /* 親要素の高さに合わせる */
}
@media (max-width: 767px) {
  .prize__project-image {
    width: 100%;
    max-width: 86%;
  }
}

.prize__project-details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.prize__project-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
  text-align: center;
}
@media (max-width: 767px) {
  .prize__project-title {
    font-size: 20px;
  }
}

.prize__project-line {
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#5cefff), to(#ff58ae));
  background: linear-gradient(90deg, #5cefff 0%, #ff58ae 100%);
  margin-bottom: 16px;
}

.prize__project-description {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .prize__project-description {
    font-size: 14px;
  }
}

@media (min-width: 1921px) {
  .prize__runners-up {
    gap: 88px;
  }
}
.prize__runners-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.583vw;
  max-width: 94%;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .prize__runners-up {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    max-width: 100%;
  }
}

.prize__runner-up {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.prize__runner-up-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .prize__runner-up-header {
    gap: 16px;
    margin-bottom: 20px;
  }
}

.prize__runner-up-rank img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2px;
  width: 106px;
  height: auto;
}
@media (max-width: 767px) {
  .prize__runner-up-rank img {
    width: 70px;
  }
}

.prize__runner-up-number {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.1);
  border: 2px solid #f0f0f0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: inset 0 0 10px rgb(244, 244, 244);
          box-shadow: inset 0 0 10px rgb(244, 244, 244);
}
@media (max-width: 767px) {
  .prize__runner-up-number {
    font-size: 32px;
  }
}
.prize__runner-up:nth-child(2) .prize__runner-up-number {
  color: rgba(241, 218, 170, 0.1);
  border-color: #ffd4b0;
  -webkit-box-shadow: inset 0 0 10px rgb(181, 166, 135);
          box-shadow: inset 0 0 10px rgb(181, 166, 135);
}

.prize__runner-up-text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  padding-bottom: 8px;
}
@media (max-width: 767px) {
  .prize__runner-up-text {
    font-size: 14px;
  }
}
.prize__runner-up:nth-child(2) .prize__runner-up-text {
  color: #ffd0ae;
}

.prize__runner-up-name {
  white-space: nowrap;
  font-weight: 700;
  font-size: 32px;
  color: #5cefff;
  text-shadow: 0 0 20px rgb(92, 239, 255);
}
@media only screen and (max-width: 1024px) {
  .prize__runner-up-name {
    font-size: 24px;
  }
}
.prize__runner-up-name span {
  font-size: 24px;
}
@media only screen and (max-width: 1024px) {
  .prize__runner-up-name span {
    font-size: 16px;
  }
}

.prize__runner-up-image {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  border: 4px solid #fff194;
  overflow: hidden;
  margin-bottom: 24px;
  -webkit-box-shadow: 0 0 20px rgb(255, 253, 223);
          box-shadow: 0 0 20px rgb(255, 253, 223);
  position: relative; /* 子要素の絶対配置を基準にする */
  width: 100%; /* 親要素の幅に合わせる */
  aspect-ratio: 16/9; /* 横：縦の比率を16:9に指定 */
  height: auto; /* 高さをアスペクト比に基づいて自動調整 */
}
.prize__runner-up-image iframe {
  position: absolute; /*親要素の左上を基準にする */
  top: 0;
  left: 0;
  width: 100%; /* 親要素の幅いっぱいに表示 */
  height: 100%; /* 親要素の高さに合わせる */
}
@media (max-width: 767px) {
  .prize__runner-up-image {
    margin-bottom: 20px;
    width: 90%;
    margin: 0 auto;
  }
}
.prize__runner-up-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.prize__runner-up-title {
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
  text-align: center;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .prize__runner-up-title {
    font-size: 20px;
    min-height: auto;
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .prize__runner-up-title.text-s {
    font-size: 16px;
  }
}

.prize__runner-up-line {
  width: 100%;
  height: 6px;
  background: transparent;
  border-top: 2px solid #5cefff;
  border-bottom: 2px solid #ff58ae;
  -webkit-box-shadow: 0 0 8px 0 #cff3f7;
          box-shadow: 0 0 8px 0 #cff3f7;
  margin-bottom: 16px;
}

.prize__runner-up-description {
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.6;
  text-align: left;
}

.prize__footer {
  padding: 56px 24px;
  max-width: 720px;
  width: 100%;
  height: 197px;
  margin: 0 auto;
  margin-top: -50px;
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .prize__footer {
    padding: 28px 0px;
    margin-top: 0px;
    height: auto;
    max-width: 420px;
  }
}
.prize__footer::before {
  content: "";
  width: 86px;
  height: 86px;
  background-image: url(../img/result/item1.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .prize__footer::before {
    width: 28px;
    height: 28px;
  }
}
.prize__footer::after {
  content: "";
  width: 86px;
  height: 86px;
  background-image: url(../img/result/item2.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .prize__footer::after {
    width: 28px;
    height: 28px;
  }
}

.prize__footer-text {
  color: #fff6b8;
  text-shadow: 0 0 20px #fff6b8;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.12px;
}
@media (max-width: 767px) {
  .prize__footer-text {
    font-size: 19px;
    letter-spacing: 0.8px;
  }
}

.contest {
  margin-top: -80px;
  padding: 156px 0 0px 0;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1599px) {
  .contest {
    margin-top: -110px;
  }
}
@media only screen and (max-width: 1199px) {
  .contest {
    margin-top: -60px;
  }
}
@media only screen and (max-width: 1099px) {
  .contest {
    margin-top: -80px;
  }
}
@media only screen and (max-width: 999px) {
  .contest {
    margin-top: -100px;
  }
}
@media only screen and (max-width: 899px) {
  .contest {
    margin-top: -130px;
  }
}
@media (max-width: 767px) {
  .contest {
    padding: 60px 0 40px 0;
    padding: 0;
    margin-top: -50px;
  }
}
@media only screen and (max-width: 699px) {
  .contest {
    margin-top: -30px;
  }
}
.contest::after {
  content: "";
  width: 100%;
  height: 686px;
  background-image: url(../img/contest-bg2.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -30%;
  left: 0;
  z-index: 1;
}
@media (max-width: 1550px) {
  .contest::after {
    bottom: -36%;
  }
}
@media (max-width: 1200px) {
  .contest::after {
    bottom: -36%;
  }
}
@media (max-width: 767px) {
  .contest::after {
    background-image: url(../img/contest-bg2_sp.png);
    bottom: -35%;
  }
}
@media (max-width: 670px) {
  .contest::after {
    bottom: -40%;
  }
}
@media (max-width: 550px) {
  .contest::after {
    bottom: -45%;
  }
}
@media (max-width: 460px) {
  .contest::after {
    bottom: -48%;
  }
}

.contest__container {
  padding-top: 160px;
  background: -webkit-gradient(linear, left top, left bottom, from(#bf54b3), to(#3d188a));
  background: linear-gradient(180deg, #bf54b3 0%, #3d188a 100%);
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.contest__container::before {
  content: "";
  width: 100%;
  height: 686px;
  background-image: url(../img/contest_road.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 1%;
  left: 0%;
  z-index: 1;
}
@media (max-width: 767px) {
  .contest__container::before {
    display: none;
  }
}
.contest__container::after {
  content: "";
  width: 100%;
  height: 686px;
  background-image: url(../img/contest_road.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 6%;
  right: 0%;
  z-index: 1;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media (max-width: 767px) {
  .contest__container::after {
    display: none;
  }
}

.contest__title-group {
  text-align: center;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .contest__title-group {
    margin-bottom: 20px;
  }
}

.contest__title-en {
  font-family: "Playwrite US Trad", serif;
  font-size: 24px;
  color: #fffcbf;
  text-shadow: 0 0 20px #fffddf;
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  .contest__title-en {
    font-size: 20px;
  }
}

.contest__title-ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff194;
  text-shadow: 0 0 20px #fffddf;
  margin: 0;
}
@media (max-width: 767px) {
  .contest__title-ja {
    font-size: 32px;
  }
}

/* インタビュー
* -------------------------------------------- */
.contest__voice-wrap {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 70px 20px 80px;
}
@media (max-width: 767px) {
  .contest__voice-wrap {
    max-width: 560px;
    padding: 74px 16px 40px;
  }
}

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

.contest__voice-title1 {
  font-size: 28px;
  color: #fff;
}
.contest__voice-title1 img {
  width: 50px;
}
@media (max-width: 767px) {
  .contest__voice-title1 img {
    width: 38px;
  }
}
@media (max-width: 767px) {
  .contest__voice-title1 {
    font-size: 20px;
  }
}

.contest__voice-title2 {
  color: #5cefff;
  text-shadow: 0px 0px 20px #5cefff;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1.44px;
}
@media (max-width: 767px) {
  .contest__voice-title2 {
    font-size: 24px;
  }
}

.contest__voice-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 60px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .contest__voice-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 22px;
    row-gap: 32px;
  }
}

.contest__voice-item {
  width: calc(50% - 20px);
  padding: 32px 40px 48px 40px;
  border-radius: 40px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 20px 0px #fffddf;
          box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 20px 0px #fffddf;
  backdrop-filter: blur(8px);
  position: relative;
}
.contest__voice-item:nth-child(3) {
  margin: 0 auto;
  width: 50%;
}
@media (max-width: 767px) {
  .contest__voice-item:nth-child(3) {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contest__voice-item {
    width: 100%;
    padding: 16px 16px 32px 16px;
    border-radius: 20px;
  }
}

.contest__voice-icon1 {
  position: absolute;
  left: 40px;
  bottom: -40px;
  width: 100px;
}
@media (max-width: 767px) {
  .contest__voice-icon1 {
    width: 58px;
    left: 10px;
    bottom: -19px;
  }
}

.contest__voice-icon2 {
  position: absolute;
  right: 40.5px;
  bottom: -40px;
  width: 100px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media (max-width: 767px) {
  .contest__voice-icon2 {
    width: 58px;
    right: 9px;
    bottom: -18px;
  }
}

.contest__voice-icon3 {
  position: absolute;
  left: 280px;
  bottom: -40px;
  width: 100px;
}
@media (min-width: 768px) {
  .contest__voice-icon3 {
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}
@media (max-width: 767px) {
  .contest__voice-icon3 {
    width: 58px;
    left: 10px;
    bottom: -19px;
  }
}

.contest__voice-item-text {
  font-size: 24px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .contest__voice-item-text {
    font-size: 14px;
  }
}
.contest__voice-item-text .blue {
  color: #5cefff;
  font-weight: 900;
  line-height: 180%;
}

.contact {
  position: relative;
  background: linear-gradient(97deg, #13163f -0.3%, #1b1f47 49.85%, #0f173e 100%);
  padding: 240px 0 140px 0;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 767px) {
  .contact {
    padding: 143px 0 90px 0;
  }
}
@media (max-width: 460px) {
  .contact {
    padding: 84px 0 90px 0;
  }
}

.contact__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(0deg, transparent 99px, #333 100px), linear-gradient(90deg, transparent 99px, #333 100px);
  background-image: linear-gradient(0deg, transparent 99px, rgba(171, 255, 167, 0.2) 100px), linear-gradient(90deg, transparent 99px, rgba(171, 255, 167, 0.2) 100px);
  background-size: 100px 100px;
}

.contact__blur {
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  max-width: 800px;
  max-height: 800px;
  width: 41.667vw;
  height: 41.667vw;
  background: #fff194;
  border-radius: 50%;
  opacity: 0.16;
  -webkit-filter: blur(100px);
          filter: blur(100px);
}
@media (max-width: 767px) {
  .contact__blur {
    max-width: 600px;
    max-height: 600px;
    width: 153.846vw;
    height: 153.846vw;
    top: -14%;
    -webkit-filter: blur(60px);
            filter: blur(60px);
  }
}

.contact__container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .contact__container {
    padding: 0 16px;
  }
}

.contact__title-wrap {
  text-align: center;
  max-width: 808px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .contact__title-wrap {
    max-width: 620px;
    margin-bottom: -20px;
  }
}

.contact__title-group {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .contact__title-group {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 60px;
  }
}

.contact__title-group img {
  width: 280px;
}
@media (max-width: 767px) {
  .contact__title-group img {
    width: 220px;
  }
}
@media (max-width: 767px) {
  .contact__title-group .left {
    text-align: left;
    margin-right: auto;
  }
}
.contact__title-group .right {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media (max-width: 767px) {
  .contact__title-group .right {
    margin-left: auto;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

@media (max-width: 767px) {
  .contact__title {
    padding-top: 10px;
    margin-bottom: 20px;
  }
}

.contact__title-en {
  font-family: "Playwrite US Trad", serif;
  font-size: 24px;
  color: #fffcbf;
  text-shadow: 0 0 20px #fffddf;
}
@media (max-width: 767px) {
  .contact__title-en {
    font-size: 20px;
  }
}

.contact__title-ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff194;
  text-shadow: 0 0 20px #fffddf;
  white-space: nowrap;
  margin: 0;
  margin-top: -10px;
}
@media (max-width: 767px) {
  .contact__title-ja {
    font-size: 34px;
  }
}

.contact__title-lead {
  font-size: 24px;
  margin-top: 14px;
}
@media (max-width: 767px) {
  .contact__title-lead {
    font-size: 14px;
    margin-top: -10px;
  }
}

.contact__list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 112px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (max-width: 767px) {
  .contact__list {
    gap: 70px;
  }
}

.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 40px 34px 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 40px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 20px 0px #fffddf;
          box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 20px 0px #fffddf;
  backdrop-filter: blur(8px);
  position: relative;
}
@media (max-width: 767px) {
  .contact__item {
    padding: 38px 22px 34px 22px;
    padding: 22px 20px 24px;
  }
}

.contact__item.step3 {
  width: 400px;
  margin-top: 22px;
  padding: 56px 16px 40px;
}
@media (max-width: 1024px) {
  .contact__item.step3 {
    width: 100%;
    padding: 32px 22px 24px;
    margin-top: 32px;
  }
}
.contact__item.step4 {
  width: 655px;
  padding: 56px 24px 40px 24px;
}
@media (max-width: 1024px) {
  .contact__item.step4 {
    width: 100%;
    padding: 32px 22px 24px;
    margin-top: 24px;
  }
}
.contact__item.step5 {
  padding: 24px 24px 40px 24px;
  padding: 24px;
}
@media (max-width: 1024px) {
  .contact__item.step5 {
    width: 100%;
    padding: 32px 22px 24px;
    margin-top: 24px;
  }
}
.contact__item.step6 {
  padding: 12px 24px;
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .contact__item.step6 {
    margin-top: 24px;
  }
}

.contact__number {
  color: #fff194;
  text-shadow: 0px 0px 20px #fffddf;
  font-family: "Playwrite US Trad";
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  position: absolute;
  left: 24px;
  top: -50px;
}
@media (max-width: 767px) {
  .contact__number {
    font-size: 36px;
    left: 18px;
    top: -31px;
  }
}
@media (max-width: 480px) {
  .contact__number {
    top: -32px;
  }
}

.contact__arrow {
  width: 80px;
  position: absolute;
  bottom: -90px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 767px) {
  .contact__arrow {
    width: 72px;
    bottom: -86px;
  }
}

.contact__arrow.responsive-arrow {
  display: none;
}
@media (max-width: 1024px) {
  .contact__arrow.responsive-arrow {
    display: block;
  }
}

.contact__item-title {
  color: #5cefff;
  text-align: center;
  text-shadow: 0px 0px 20px #5cefff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 8px;
  position: relative;
}
@media (max-width: 767px) {
  .contact__item-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.contact__item-title.font-s {
  font-size: 32px;
}
@media (max-width: 767px) {
  .contact__item-title.font-s {
    font-size: 24px;
  }
}
.contact__item-title.font-ss {
  font-size: 30px;
  letter-spacing: -0.04em;
}
@media (max-width: 767px) {
  .contact__item-title.font-ss {
    font-size: 24px;
  }
}

.step3 .contact__item-title,
.step4 .contact__item-title {
  color: #518ca6;
  text-shadow: 0px 0px 20px #518ca6;
}
.step3.step4,
.step4.step4 {
  font-size: 44px;
}

.event-end {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #5cefff;
  text-align: center;
  text-shadow: 0px 0px 20px #5cefff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  border: 2px solid #5cefff;
  background: rgba(76, 78, 110, 0.8);
  white-space: nowrap;
}

.end__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.end__bottom-wrap {
  margin-top: 8px;
}

.end__bottom-pick {
  width: 32px;
}
.end__bottom-pick.reverse {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.end__bottom-text {
  color: #fff194;
  text-align: center;
  text-shadow: 0px 0px 20px #fffddf;
  font-size: 14px;
  font-weight: 700;
  margin-left: 8px;
  margin-right: 8px;
  letter-spacing: 0.003em;
}
@media (max-width: 767px) {
  .end__bottom-text {
    font-size: 12px;
  }
}

.end__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.end__image img {
  border-radius: 10px;
  width: calc(50% - 8px);
  max-width: 150px;
  aspect-ratio: 4/3;
}

.contact__item-text {
  font-size: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .contact__item-text {
    font-size: 14px;
  }
}

.contact__item-content {
  font-size: 1.1rem;
  color: #1b1f47;
  text-align: center;
  word-break: break-all;
}

.contact__item-footer {
  border-radius: 20px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 24px;
  margin-top: 32px;
}
@media (max-width: 767px) {
  .contact__item-footer {
    margin-top: 22px;
    padding: 18px;
  }
}
.contact__item-footer p {
  font-size: 20px;
  line-height: 1.4s;
}
@media (max-width: 767px) {
  .contact__item-footer p {
    font-size: 14px;
  }
}
.contact__item-footer .contact-nav__button-wrap {
  margin-top: 16px;
}

.contact__item-footerButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  border-radius: 60px;
  border: 2px solid #FF58AE;
  background: rgba(255, 110, 198, 0.6);
  -webkit-box-shadow: 0px 0px 10px 0px #fff inset, 0px 0px 20px 0px #ffc4e4;
          box-shadow: 0px 0px 10px 0px #fff inset, 0px 0px 20px 0px #ffc4e4;
  text-shadow: 0.3px 0.3px 0px #fff;
  width: 216px;
  height: 56px;
  padding: 0px 28px 0 20px;
  font-size: 18px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 767px) {
  .contact__item-footerButton {
    margin-top: 16px;
    font-size: 15px;
    width: 184px;
    height: 48px;
  }
}
.contact__item-footerButton:hover {
  opacity: 0.7;
}
.contact__item-footerButton:after {
  content: "";
  position: absolute;
  top: 51%;
  right: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/arrow_white.svg) no-repeat center center/contain;
  width: 18px;
  height: 18px;
}
@media (max-width: 767px) {
  .contact__item-footerButton:after {
    width: 14px;
    height: 14px;
  }
}

.contact__buttons {
  width: 100%;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  .contact__buttons {
    margin-top: 18px;
  }
}

.contact__button-wrap {
  width: 100%;
}

.contact__button-wrap.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 32px;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  margin-top: 0;
  max-width: 82%;
}
@media (max-width: 1024px) {
  .contact__button-wrap.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin-top: 14px;
    max-width: 100%;
  }
}
.contact__button-wrap.flex .contact__item-button {
  margin-top: 22px;
}
@media (max-width: 1024px) {
  .contact__button-wrap.flex .contact__item-button {
    margin-top: 0;
  }
}

.contact__item-button {
  display: block;
  margin-top: 32px;
  height: 48px;
  width: 100%;
  padding: 0px 20px;
  text-align: center;
  border-radius: 60px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.3);
  font-size: 20px;
}
.contact__item-button a {
  color: #fff;
  text-shadow: 0.3px 0.3px 0px #fff;
  font-weight: 400;
}
.contact__item-button a img {
  width: 20px;
  margin-right: 8px;
}
@media (max-width: 767px) {
  .contact__item-button {
    height: 48px;
    font-size: 16px;
  }
}
@media (max-width: 370px) {
  .contact__item-button.small {
    font-size: 14px;
    font-size: 3.684vw;
  }
}

.contact__item-button.step3 {
  width: 134px;
  padding: 0px 24px;
  margin-top: 14px;
  font-size: 18px;
  border: 2px solid #FFF194;
  color: #FFF194;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .contact__item-button.step3 {
    max-width: 122px;
    font-size: 16px;
    height: 36px;
    padding: 0px 16px;
  }
}
@media (max-width: 375px) {
  .contact__item-button.step3 {
    font-size: 14px;
    padding: 0px 8px;
    min-width: 80px;
  }
}

.contact__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact__item-pinkText {
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 20px #ff68bb;
  text-shadow: 1.5px 1.5px 0px #ff68bb, -1.5px 1.5px 0px #ff68bb, 1.5px -1.5px 0px #ff68bb, -1.5px -1.5px 0px #ff68bb;
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .contact__item-pinkText {
    font-size: 20px;
  }
}

.contact__item-pinkText .fz24 {
  font-size: 24px;
}
@media (max-width: 767px) {
  .contact__item-pinkText .fz24 {
    font-size: 16px;
  }
}
.contact__item-pinkText .fz16 {
  font-size: 16px;
}
@media (max-width: 767px) {
  .contact__item-pinkText .fz16 {
    font-size: 14px;
  }
}

.contact__item-check {
  color: #fff;
  text-align: center;
  font-size: 20px;
  line-height: normal;
}
@media (max-width: 767px) {
  .contact__item-check {
    font-size: 14px;
  }
}
.contact__item-check img {
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  padding-bottom: 4px;
}
@media (max-width: 767px) {
  .contact__item-check img {
    width: 20px;
    height: 20px;
  }
}

.contact-nav__button-wrap {
  width: 100%;
  margin: 0 auto;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .contact-nav__button-wrap {
    margin-top: 16px;
  }
}
.contact-nav__button-wrap.wide {
  margin-top: 32px;
}
@media (max-width: 1024px) {
  .contact-nav__button-wrap.wide {
    margin-top: 12px;
  }
}
.contact-nav__button-wrap .nav__button {
  width: 320px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .contact-nav__button-wrap .nav__button {
    width: 100%;
  }
}
.contact-nav__button-wrap .nav__button.large {
  width: 400px;
  height: 72px;
}
@media (max-width: 1024px) {
  .contact-nav__button-wrap .nav__button.large {
    width: 100%;
    height: 48px;
  }
}

/* Step2
* -------------------------------------------- */
.contact-step2 {
  max-width: 100%;
  width: 100%;
  position: relative;
}

.contact-step2__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -52px;
}
@media (max-width: 767px) {
  .contact-step2__title {
    margin-top: 24px;
  }
}

.contact-step2__items {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .contact-step2__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.contact-step2__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 24px 16px 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 20px;
  border: 2px solid #5cefff;
  background: rgba(92, 239, 255, 0.2);
  -webkit-box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 10px 0px #5cefff;
          box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 10px 0px #5cefff;
  backdrop-filter: blur(8px);
  position: relative;
}
@media (max-width: 767px) {
  .contact-step2__item {
    padding: 0px 24px 16px 24px;
  }
}
.contact-step2__item.green {
  border: 2px solid #abffa7;
  background: rgba(171, 255, 167, 0.2);
  -webkit-box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 10px 0px #abffa7;
          box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 10px 0px #abffa7;
}
.contact-step2__item.yellow {
  border: 2px solid #fff194;
  background: rgba(255, 241, 148, 0.2);
  -webkit-box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 10px 0px #fff194;
          box-shadow: 0px 0px 32px 0px rgba(255, 255, 255, 0.4) inset, 0px 0px 10px 0px #fff194;
}
.contact-step2__item a {
  width: 100%;
}

.contact-step2__arrow {
  width: 92px;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .contact-step2__arrow {
    display: none;
  }
}

.contact-step2__number {
  color: #fff194;
  text-shadow: 0px 0px 20px #fffddf;
  font-family: "Playwrite US Trad";
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  margin-right: 70px;
  margin-left: 18px;
}
@media (max-width: 767px) {
  .contact-step2__number {
    font-size: 36px;
    margin-right: 10px;
    margin-left: 4px;
  }
}

.contact-step2__lead {
  color: #fff;
  text-align: left;
  text-shadow: 0px 0px 20px #5cefff;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .contact-step2__lead {
    font-size: 24px;
  }
}

.contact-step2__item-title {
  color: #5cefff;
  text-align: center;
  text-shadow: 0px 0px 20px #fffddf;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .contact-step2__item-title {
    font-size: 20px;
    text-align: left;
  }
}
.contact-step2__item-title.green {
  color: #abffa7;
}
.contact-step2__item-title.yellow {
  color: #fff194;
}

.contact-step2__item-text {
  color: #5cefff;
  text-align: center;
  text-shadow: 0px 0px 20px #5cefff;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.contact-step2__item-text.green {
  color: #abffa7;
  text-shadow: 0px 0px 20px #abffa7;
}
.contact-step2__item-text.yellow {
  color: #fff194;
  text-shadow: 0px 0px 20px #fffddf;
}

.contact-step2__bottom {
  display: none;
}
@media (max-width: 1024px) {
  .contact-step2__bottom {
    display: block;
    text-align: center;
    padding-bottom: 2px;
    color: #fff;
    text-shadow: 0.3px 0.3px 0px #fff;
    font-size: 20px;
    font-style: normal;
    margin-top: 8px;
  }
  .contact-step2__bottom p {
    border-bottom: 1px solid #fff;
    display: inline-block;
  }
}

/* --------------------------------------------
Footer
* -------------------------------------------- */
.footer {
  text-align: center;
  font-size: 20px;
  padding: 120px 0 200px;
  background: url(../img/footer_bg.png) center center/cover;
}
@media (max-width: 767px) {
  .footer {
    padding: 120px 0 108px;
    background: url(../img/footer-bg_sp.svg) center center/cover;
  }
}

.footer__logo {
  margin: 0 auto;
  max-width: 690px;
  width: 100%;
}

.footer__address {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .footer__address {
    font-size: 14px;
  }
}

.footer__nav {
  margin: 0 auto;
  margin-top: 50px;
}

.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#sp_banner {
  display: none;
}
@media (max-width: 767px) {
  #sp_banner {
    display: block;
    width: 100%;
    position: fixed;
    bottom: -150px;
    opacity: 1;
    z-index: 100;
  }
}

#sp_banner .cta-btn.btn_wrap {
  position: relative;
  margin: 0px auto 0;
  max-width: 100%;
  padding: 16px 24px;
  background: linear-gradient(97deg, rgba(19, 22, 63, 0.8) -0.3%, rgba(27, 31, 71, 0.8) 49.85%, rgba(15, 23, 62, 0.8) 100%);
  backdrop-filter: blur(8px);
}

#sp_banner .btn:active {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

/* --------------------------------------------
collabセクション
-------------------------------------------- */
.collab {
  border-top: 6px solid #FFF194;
  position: relative;
  padding: 77px 0 90px 0;
  background: linear-gradient(135deg, #b858ad 0%, #481e8e 100%);
  z-index: 1;
}
@media (max-width: 767px) {
  .collab {
    padding: 80px 0 100px;
  }
}

.collab__background {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: url(../img/collaboration/road.png) top 112px left 0px/contain no-repeat;
}
@media (max-width: 767px) {
  .collab__background {
    display: none;
  }
}

.collab__background2 {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-size: auto auto;
  background-image: repeating-linear-gradient(180deg, transparent, transparent 4px, rgba(255, 255, 255, 0.05) 4px, rgba(255, 255, 255, 0.05) 8px);
}

.collab .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}

.collab__title-group {
  text-align: center;
  margin-bottom: 58px;
}
@media (max-width: 767px) {
  .collab__title-group {
    margin-bottom: 36px;
  }
}

.collab__title-en {
  font-family: "Playwrite US Trad", serif;
  font-size: 24px;
  color: #fffcbf;
  text-shadow: 0 0 20px #fffddf;
  margin-bottom: 0.5em;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .collab__title-en {
    font-size: 20px;
  }
}

.collab__title-ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #fff194;
  text-shadow: 0 0 20px #fffddf;
  margin: 0;
}
@media (max-width: 767px) {
  .collab__title-ja {
    font-size: 24px;
  }
}

.collab__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}

.collab-box {
  background: rgba(21, 29, 81, 0.6);
  border-radius: 60px;
  border: 4px solid #fff194;
  -webkit-box-shadow: 0 0 20px 0 #fff194, inset 0 0 90px 0 #fff;
          box-shadow: 0 0 20px 0 #fff194, inset 0 0 90px 0 #fff;
  padding: 36px 20px 56px;
  max-width: 768px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 4;
}
@media (max-width: 767px) {
  .collab-box {
    padding: 36px 20px 34px;
    border-radius: 20px;
    -webkit-box-shadow: 0px 0px 50px 0px #fff inset, 0px 0px 20px 0px #fff299;
            box-shadow: 0px 0px 50px 0px #fff inset, 0px 0px 20px 0px #fff299;
  }
}

.collab-box__header {
  text-align: center;
  gap: 10px;
}

.collab__pattern1 {
  width: 130px;
  position: absolute;
  top: 82px;
  top: 324px;
  left: -80px;
  z-index: 2;
}

.collab__pattern2 {
  width: 160px;
  position: absolute;
  bottom: 170px;
  left: -100px;
  z-index: 2;
}

.collab__pattern3 {
  width: 130px;
  position: absolute;
  bottom: 434px;
  right: -80px;
  z-index: 2;
}

.collab__pattern4 {
  width: 154px;
  position: absolute;
  top: 24px;
  right: -100px;
  z-index: 2;
}

.collab-box__label {
  font-size: 32px;
  font-weight: 700;
  color: #5cefff;
  text-shadow: 0 0 20px #5cefff;
  text-align: center;
}
@media (max-width: 767px) {
  .collab-box__label {
    font-size: 24px;
  }
}

.collab-box__pick {
  font-size: 64px;
  font-weight: 900;
  color: #ff6ec6;
  text-shadow: 0 0 20px #ffc4e4;
  letter-spacing: 2.56px;
  line-height: 1;
}
@media (max-width: 767px) {
  .collab-box__pick {
    font-size: 46px;
  }
}

.collab-box__header-bottom {
  margin-top: -12px;
  max-width: 442px;
  margin: -12px auto 0;
}
@media (max-width: 767px) {
  .collab-box__header-bottom {
    margin: -10px auto 0;
  }
}

.collab-box__item {
  width: 54px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .collab-box__item {
    width: 36px;
  }
}
.collab-box__item.reverse {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.collab__item-title--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.collab__item-title--wrap img {
  max-width: 100%;
}
.collab__item-title--wrap img.reverse {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.collab__item-title {
  font-size: 32px;
  color: #abffa7;
  font-weight: bold;
  text-shadow: 0px 0px 20px #abffa7;
  letter-spacing: 0.05em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 8px;
}
@media (max-width: 767px) {
  .collab__item-title {
    font-size: 24px;
  }
}

.collab-box__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 22px 0 8px 0;
}
@media (max-width: 767px) {
  .collab-box__title {
    margin: 14px -14px 8px;
  }
}

.collab-box__title-main {
  font-size: 32px;
  color: #abffa7;
  font-weight: 700;
  text-shadow: 0 0 20px #abffa7;
}

.collab-box__text {
  font-size: 20px;
  color: #fff;
  margin: 8px 0;
  padding: 0 52px;
}
@media (max-width: 767px) {
  .collab-box__text {
    font-size: 14px;
    padding: 0;
  }
}

.collab-box__note {
  font-size: 16px;
  color: #fff;
  margin-right: auto;
  margin-top: 20px;
  padding: 0 52px;
}
@media (max-width: 767px) {
  .collab-box__note {
    font-size: 12px;
    padding: 0;
    margin-top: 6px;
  }
}

@media (max-width: 767px) {
  .collab-box__end {
    margin-left: -16px;
    margin-right: -16px;
  }
}

.collab-box__image {
  width: 100%;
  padding: 0 56px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .collab-box__image {
    padding: 0;
    margin-top: 28px;
  }
}
.collab-box__image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}
@media (max-width: 767px) {
  .collab-box__image img {
    border-radius: 4px;
  }
}

.collab-box__bottom {
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .collab-box__bottom {
    margin-top: 24px;
  }
}

.collab-box__bottom-label {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 767px) {
  .collab-box__bottom-label {
    font-size: 16px;
  }
}

.collab-box__bottom-item {
  width: 40px;
}
@media (max-width: 767px) {
  .collab-box__bottom-item {
    width: 34px;
  }
}
.collab-box__bottom-item.reverse {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.collab-box__bottom-text {
  font-size: 20px;
  color: #fff;
  display: block;
  margin-top: 18px;
  margin-right: auto;
  text-align: left;
  padding: 0 56px;
}
@media (max-width: 767px) {
  .collab-box__bottom-text {
    font-size: 14px;
    padding: 0;
  }
}

/* クリックでコピー
* -------------------------------------------- */
.collab-box__code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-radius: 10px;
  margin: 10px 56px 0;
}
@media (min-width: 768px) {
  .collab-box__code {
    height: 56px;
  }
}
@media (max-width: 767px) {
  .collab-box__code {
    margin: 16px 0px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 10px;
  }
}

.copy-link__title {
  background: #FFF194;
  width: 60%;
  padding: 5px 0 4px;
  border-radius: 10px 0 0 10px;
  border-top: 2px solid #FFF194;
  border-left: 2px solid #FFF194;
  border-bottom: 2px solid #FFF194;
  position: relative;
}
.copy-link__title::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -27px;
  border-style: solid;
  border-width: 28px 0 28px 28px;
  border-color: transparent transparent transparent #FFF194;
}
@media (max-width: 767px) {
  .copy-link__title::after {
    display: none;
  }
}
.copy-link__title p {
  color: #222b59;
  text-shadow: 0.3px 0.3px 0px #fff;
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .copy-link__title p {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .copy-link__title {
    width: 100%;
    padding: 2px;
    border-radius: 10px 10px 0 0;
    border-top: 2px solid #FFF194;
    border-left: 2px solid #FFF194;
    border-right: 2px solid #FFF194;
    border-bottom: 0;
  }
}

.copy-link {
  position: relative;
  background: #fff;
  border-top: 2px solid #FFF194;
  border-right: 2px solid #FFF194;
  border-bottom: 2px solid #FFF194;
  border-radius: 0 10px 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(255, 241, 148, 0.3);
}
@media (max-width: 767px) {
  .copy-link {
    width: 100%;
    border-top: 0;
    border-left: 2px solid #FFF194;
    border-right: 2px solid #FFF194;
    border-bottom: 2px solid #FFF194;
    border-radius: 0 0 10px 10px;
  }
}
.copy-link input {
  border: none;
  outline: none;
  width: 40%;
  color: #fff;
  text-shadow: 0.3px 0.3px 0px #fff;
  font-size: 32px;
}
@media (max-width: 767px) {
  .copy-link input {
    font-size: 24px;
    width: 120px;
  }
}
.copy-link .copy-link__button {
  padding: 10px;
  color: #555;
  outline: none;
  border: none;
  cursor: pointer;
}
.copy-link .copy-link__button img {
  width: 32px;
}
@media (max-width: 767px) {
  .copy-link .copy-link__button img {
    width: 20px;
  }
}
.copy-link .copy-link__button:active {
  background: #ddd;
}
.copy-link .copy-link__button::before {
  content: "コピーしました！";
  position: absolute;
  top: -48px;
  right: 0px;
  color: #fff;
  color: #1E214A;
  background: #5CEFFF;
  border-radius: 10px;
  padding: 9px 15px;
  font-size: 14px;
  display: none;
}
@media (max-width: 767px) {
  .copy-link .copy-link__button::before {
    right: 25%;
  }
}
.copy-link .copy-link__button::after {
  content: "";
  position: absolute;
  top: -16px;
  right: 25px;
  width: 10px;
  height: 10px;
  background: #5CEFFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  display: none;
}
@media (max-width: 767px) {
  .copy-link .copy-link__button::after {
    right: calc(25% + 25px);
  }
}
.copy-link.active button::after, .copy-link.active button::before {
  display: block;
}

/* --------------------------------------------
開催概要
* -------------------------------------------- */
.stage {
  padding: 75px 0 145px;
  background: -webkit-gradient(linear, left top, left bottom, from(#1e214a), to(#323770));
  background: linear-gradient(180deg, #1e214a 0%, #323770 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .stage {
    padding: 64px 0 84px;
  }
}

.stage__background {
  position: absolute;
  inset: 0;
}
@media (min-width: 768px) {
  .stage__background {
    background: url(../img/finalist/Back.png) top 0 left 0px/contain no-repeat;
  }
  .stage__background::before {
    content: "";
    width: 100%;
    height: 686px;
    background-image: url(../img/finalist/Light1.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .stage__background::after {
    content: "";
    width: 100%;
    height: 686px;
    background-image: url(../img/finalist/Light1.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0%;
    z-index: 1;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}
@media (max-width: 767px) {
  .stage__background {
    background: url(../img/finalist/back_sp.png) top 0 left 0px/contain no-repeat;
  }
  .stage__background::before {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../img/finalist/Light1_sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -30%;
    left: 0;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -30%);
            transform: translate(-50%, -30%);
    z-index: 1;
  }
}

.stage__container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .stage__container {
    padding: 0 16px;
  }
}

.stage-head {
  color: #fff194;
  text-align: center;
  text-shadow: 0 0 20px #fffddf;
}

.stage-head-label {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .stage-head-label {
    font-size: 16px;
  }
}

.stage-head-item {
  width: 40px;
}
@media (max-width: 767px) {
  .stage-head-item {
    width: 34px;
  }
}
.stage-head-item.reverse {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.stage-head-number {
  font-size: 40px;
  margin: 0 4px;
}
@media (max-width: 767px) {
  .stage-head-number {
    font-size: 32px;
  }
}

.stage-head2 {
  max-width: 670px;
  margin: 0 auto;
  color: #fff194;
  text-align: center;
  text-shadow: 0 0 20px #fffddf;
  font-size: 32px;
}
@media (max-width: 767px) {
  .stage-head2 {
    font-size: 16px;
    max-width: 440px;
  }
}

.stage-lead {
  color: #fff;
  text-align: center;
  text-shadow: 0 0 20px #fffddf;
  font-size: 20px;
  margin-top: 17px;
}
@media (max-width: 767px) {
  .stage-lead {
    font-size: 14px;
    margin-top: 47px;
  }
}

.stage__title img {
  height: auto;
}

.stage-movie {
  color: #fff194;
  text-align: center;
  text-shadow: 0 0 20px #fffddf;
  margin-top: 56px;
}

.stage-movie__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0.9;
      -ms-flex: 0.9;
          flex: 0.9;
  border-radius: 10px;
  border: 4px solid #fff194;
  -webkit-box-shadow: 0 0 20px rgb(255, 253, 223);
          box-shadow: 0 0 20px rgb(255, 253, 223);
  position: relative; /* 子要素の絶対配置を基準にする */
  margin: 0 auto;
  max-width: 600px;
  width: 100%; /* 親要素の幅に合わせる */
  aspect-ratio: 16/9; /* 横：縦の比率を16:9に指定 */
  height: auto; /* 高さをアスペクト比に基づいて自動調整 */
  z-index: 1;
}
.stage-movie__item iframe {
  position: absolute; /*親要素の左上を基準にする */
  top: 0;
  left: 0;
  width: 100%; /* 親要素の幅いっぱいに表示 */
  height: 100%; /* 親要素の高さに合わせる */
  border-radius: 10px;
}
@media (max-width: 767px) {
  .stage-movie__item {
    width: 100%;
    max-width: 94%;
  }
}

.stage-movie__text {
  margin-top: 16px;
}

.stage-movie__icon {
  position: absolute;
  top: -20px;
  left: -60px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
  width: 318px;
  height: auto;
  z-index: 2;
}
@media (max-width: 767px) {
  .stage-movie__icon {
    width: 234px;
    left: -40px;
  }
}
@media (max-width: 480px) {
  .stage-movie__icon {
    width: 174px;
  }
}

.stage-movie__text-date {
  font-size: 16px;
}
@media (max-width: 767px) {
  .stage-movie__text-date {
    font-size: 12px;
  }
}
.stage-movie__text-date .font-l {
  font-size: 24px;
}
@media (max-width: 767px) {
  .stage-movie__text-date .font-l {
    font-size: 16px;
  }
}

.stage-movie__text-title {
  font-size: 32px;
}
@media (max-width: 767px) {
  .stage-movie__text-title {
    font-size: 18px;
  }
}
.stage-movie__text-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2px;
}
.stage-movie__text-title img {
  width: 52px;
  height: auto;
}

.stage-items {
  background: rgba(21, 29, 81, 0.9);
  border-radius: 60px;
  -webkit-box-shadow: 0 0 20px 0 #5cefff, inset 0 0 90px 0 #fff;
          box-shadow: 0 0 20px 0 #5cefff, inset 0 0 90px 0 #fff;
  border: 4px solid #5cefff;
  text-align: center;
  min-width: 0;
  margin-top: 53px;
  padding: 52px 20px 60px;
  position: relative;
}
@media (max-width: 767px) {
  .stage-items {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    padding: 26px 16px 37px;
    border-radius: 20px;
    margin-top: 44px;
  }
}
@media (max-width: 480px) {
  .stage-items {
    padding: 26px 0px 37px;
  }
}

.stage-item {
  width: 100%;
}
@media (max-width: 767px) {
  .stage-item.mt {
    margin-top: 16px;
  }
}

.stage-itemTitle--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.stage-itemTitle--wrap img {
  min-width: 0;
}
.stage-itemTitle--wrap img.reverse {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.stage-item__title {
  font-size: 32px;
  color: #5cefff;
  font-weight: bold;
  text-shadow: 0px 0px 20px #5cefff;
  letter-spacing: 0.05em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .stage-item__title {
    font-size: 24px;
  }
}

.stage-item__text {
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 1.7;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .stage-item__text {
    font-size: 13px;
    margin-top: 12px;
  }
}

.stage-item__list-wrap {
  margin: 0 auto;
  width: 85%;
}
@media (max-width: 1200px) {
  .stage-item__list-wrap {
    width: 100%;
  }
}

.stage-item__list {
  font-size: 24px;
  margin: 0 auto;
  margin-top: 18px;
  padding: 0 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .stage-item__list {
    font-size: 16px;
    padding: 0 24px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .stage-item__list.maru_list {
    text-align: left;
  }
}
.stage-item__list.maru_list li {
  margin-top: 10px;
}

.stage-item__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 16px;
}
@media (min-width: 768px) {
  .stage-item__wrap {
    margin-bottom: 22px;
  }
}
@media (max-width: 767px) {
  .stage-item__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.stage-item__date {
  max-width: 320px;
  height: auto;
}

.stage-item__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.stage-item__left img {
  height: auto;
}

.stage-item__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  text-shadow: 0 0 20px #fffddf;
}

.stage-item__place {
  font-size: 36px;
}
@media (max-width: 767px) {
  .stage-item__place {
    font-size: 20px;
  }
}

.stage-item__address {
  font-size: 20px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .stage-item__address {
    font-size: 14px;
    margin-top: 14px;
  }
}

/* --------------------------------------------
ファイナリスト
* -------------------------------------------- */
.finalist__wrap {
  background: -webkit-gradient(linear, left top, left bottom, from(#bf54b3), to(#3d188a));
  background: linear-gradient(180deg, #bf54b3 0%, #3d188a 100%);
  padding: 78px 40px 120px;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .finalist__wrap {
    padding: 0;
  }
}

.finalist {
  margin-top: -37px;
  margin-top: 50px;
  position: relative;
  z-index: 5;
}
.finalist::before {
  content: "";
  width: 100%;
  height: 686px;
  background-image: url(../img/contest-bg1.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -13%;
  left: 0;
  z-index: 0;
}
@media (max-width: 1550px) {
  .finalist::before {
    top: -12%;
  }
}
@media (max-width: 1200px) {
  .finalist::before {
    top: -9%;
  }
}
@media (max-width: 920px) {
  .finalist::before {
    top: -8%;
  }
}
@media (max-width: 767px) {
  .finalist::before {
    background-image: url(../img/contest-bg1_sp.png);
    top: -5%;
  }
}
@media (max-width: 670px) {
  .finalist::before {
    top: -4%;
  }
}
@media (max-width: 460px) {
  .finalist::before {
    top: -3%;
  }
}
.finalist::after {
  content: "";
  width: 100%;
  height: 686px;
  background-image: url(../img/contest-bg2.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -21%;
  left: 0;
  z-index: 0;
}
@media (max-width: 1550px) {
  .finalist::after {
    bottom: -23%;
  }
}
@media (max-width: 1200px) {
  .finalist::after {
    bottom: -27%;
  }
}
@media (max-width: 767px) {
  .finalist::after {
    background-image: url(../img/contest-bg2_sp.png);
    bottom: -10%;
  }
}
@media (max-width: 670px) {
  .finalist::after {
    bottom: -12%;
  }
}
@media (max-width: 550px) {
  .finalist::after {
    bottom: -14%;
  }
}
@media (max-width: 460px) {
  .finalist::after {
    bottom: -18%;
  }
}
@media (max-width: 767px) {
  .finalist {
    margin-top: -44px;
    margin-top: -11.282vw;
    padding: 75px 0px 55px;
    padding-top: 75px;
  }
}

@media (min-width: 768px) {
  .finalist__background1::before {
    content: "";
    width: 100%;
    height: 686px;
    background-image: url(../img/finalist/Light2.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 114px;
    left: 0;
    z-index: 1;
  }
  .finalist__background1::after {
    content: "";
    width: 100%;
    height: 686px;
    background-image: url(../img/finalist/Light2.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 114px;
    left: 0%;
    z-index: 1;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}
@media (max-width: 767px) {
  .finalist__background1::before {
    content: "";
    width: 100%;
    height: 686px;
    background-image: url(../img/finalist/Light2_sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    left: -25%;
    z-index: 1;
    display: none;
  }
  .finalist__background1::after {
    display: none;
  }
}

@media (min-width: 768px) {
  .finalist__background2::before {
    content: "";
    width: 100%;
    height: 686px;
    background-image: url(../img/finalist/Light2.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 470px;
    left: 0;
    z-index: 1;
  }
  .finalist__background2::after {
    content: "";
    width: 100%;
    height: 686px;
    background-image: url(../img/finalist/Light2.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 470px;
    left: 0%;
    z-index: 1;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}
@media (max-width: 767px) {
  .finalist__background2::before {
    content: "";
    width: 100%;
    height: 686px;
    background-image: url(../img/finalist/Light2_sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    right: -25%;
    z-index: 1;
    display: none;
  }
  .finalist__background2::after {
    display: none;
  }
}

@media (min-width: 768px) {
  .finalist__blur {
    position: absolute;
    left: 50%;
    top: 12%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 900px;
    height: 900px;
    width: 46.875vw;
    height: 46.875vw;
    border-radius: 50%;
    opacity: 0.5;
    background: #fff;
    -webkit-filter: blur(100px);
            filter: blur(100px);
  }
}

.fainalist__container {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .fainalist__container {
    padding: 0 16px;
  }
}

.fainalist__title {
  max-width: 700px;
  margin: 0 auto;
}

.card__image {
  border-radius: 8px;
  border: 4px solid var(--Blue, #5cefff);
  background: rgba(193, 193, 193, 0.9);
  -webkit-box-shadow: 0 0 20px 0 #5cefff;
          box-shadow: 0 0 20px 0 #5cefff;
}
.card__image img {
  border-radius: 4px;
}

.cards {
  text-align: center;
  font-size: 20px;
  display: grid;
  gap: 40px;
  margin-top: 20px;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
    gap: 16px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 24px;
  }
}

/* コンテストルールセクション
* -------------------------------------------- */
.contest-rules {
  background: rgba(255, 241, 148, 0.3);
  border-radius: 60px;
  border: 4px solid #fff194;
  -webkit-box-shadow: 0px 0px 20px 0px rgb(255, 241, 148), inset 0px 0px 90px 0px rgb(255, 255, 255);
          box-shadow: 0px 0px 20px 0px rgb(255, 241, 148), inset 0px 0px 90px 0px rgb(255, 255, 255);
  backdrop-filter: blur(20px);
  padding: 40px 60px;
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .contest-rules {
    border-radius: 10px;
    max-width: 550px;
    margin: 40px auto 0;
    padding: 32px 24px;
    border-radius: 20px;
    gap: 40px;
  }
}

.contest-rules__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  width: 100%;
}
@media (max-width: 767px) {
  .contest-rules__header {
    gap: 12px;
  }
}

.contest-rules__title {
  font-weight: 700;
  font-size: 32px;
  color: #fff194;
  text-shadow: 0px 0px 20px rgb(255, 253, 223);
  text-align: center;
}
@media (max-width: 767px) {
  .contest-rules__title {
    font-size: 24px;
  }
}

.contest-rules__description {
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  text-align: center;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .contest-rules__description {
    font-size: 14px;
  }
}

.contest-rules__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .contest-rules__content {
    gap: 40px;
  }
}

.contest-rules__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  width: 100%;
}
@media (max-width: 767px) {
  .contest-rules__section {
    gap: 12px;
  }
}

.contest-rules__section-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff194;
  text-shadow: 0px 0px 20px rgb(255, 253, 223);
  text-align: center;
}
@media (max-width: 767px) {
  .contest-rules__section-title {
    font-size: 20px;
  }
}

.contest-rules__judges {
  display: grid;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 24px;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .contest-rules__judges {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}

.contest-rules__judge-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767px) {
  .contest-rules__judge-card {
    gap: 12px;
  }
}

.contest-rules__judge-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  width: 100%;
  text-align: center;
}

.contest-rules__judge-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  line-height: 1.45;
  min-height: 41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .contest-rules__judge-title {
    font-size: 12px;
    min-height: auto;
  }
}

.contest-rules__judge-name {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}
@media (max-width: 767px) {
  .contest-rules__judge-name {
    font-size: 16px;
  }
}

.contest-rules__hosts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  width: 100%;
}
@media (max-width: 767px) {
  .contest-rules__hosts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.contest-rules__host-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .contest-rules__host-main {
    gap: 12px;
  }
}

.contest-rules__host-image {
  width: 100%;
  border-radius: 8px;
  border: 4px solid #fff194;
  background: rgba(193, 193, 193, 0.9);
  -webkit-box-shadow: 0px 0px 20px 0px rgb(255, 241, 148);
          box-shadow: 0px 0px 20px 0px rgb(255, 241, 148);
  overflow: hidden;
  max-width: 248px;
}
@media (min-width: 768px) {
  .contest-rules__host-image.host-image2 {
    max-width: 160px;
  }
}
.contest-rules__host-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contest-rules__host-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  text-align: center;
}

.contest-rules__host-name {
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}
@media (max-width: 767px) {
  .contest-rules__host-name {
    font-size: 20px;
  }
}
.contest-rules__host-name.sub {
  font-size: 20px;
}
@media (max-width: 767px) {
  .contest-rules__host-name.sub {
    font-size: 20px;
  }
}

.contest-rules__host-title {
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .contest-rules__host-title {
    font-size: 12px;
  }
}

.contest-rules__host-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media (max-width: 767px) {
  .contest-rules__host-sub {
    gap: 40px;
  }
}

.contest-rules__host-sub-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media (max-width: 767px) {
  .contest-rules__host-sub-item {
    gap: 12px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

/* モーダル
* -------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  padding: 20px;
}

.modal__overlay {
  position: absolute;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
}

.modal__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100vh;
}

.modal__content {
  position: relative;
  background: rgba(34, 43, 89, 0.96);
  border: 4px solid #5cefff;
  border-radius: 40px;
  -webkit-box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.6), inset 0px 0px 80px 0px rgba(255, 255, 255, 0.4);
          box-shadow: 0px 0px 80px 0px rgba(0, 0, 0, 0.6), inset 0px 0px 80px 0px rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  padding: 24px;
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  .modal__content {
    padding: 16px 10px 24px 16px;
    border-radius: 20px;
    max-width: 95%;
    max-height: 85vh;
  }
}

.modal__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: sticky;
  top: 0;
  z-index: 10;
  margin-bottom: 16px;
}

.modal__close-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #ff58ae;
  background: rgba(255, 110, 198, 0.6);
  -webkit-box-shadow: 0px 0px 10px 0px rgb(255, 196, 228), inset 0px 0px 7px 0px rgb(255, 255, 255);
          box-shadow: 0px 0px 10px 0px rgb(255, 196, 228), inset 0px 0px 7px 0px rgb(255, 255, 255);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.modal__close-btn:hover {
  opacity: 0.8;
}

.modal__close-icon {
  width: 20px;
  height: 20px;
  position: relative;
}
.modal__close-icon::before, .modal__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #fff;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.modal__close-icon::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  padding: 20px 24px 40px;
  max-height: calc(90vh - 120px);
  overflow-y: auto;
  overflow-x: hidden;
  /* スクロールバーのスタイリング */
}
.modal__inner::-webkit-scrollbar {
  width: 8px;
}
.modal__inner::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.modal__inner::-webkit-scrollbar-thumb {
  background: rgba(92, 239, 255, 0.6);
  border-radius: 4px;
}
.modal__inner::-webkit-scrollbar-thumb:hover {
  background: rgba(92, 239, 255, 0.8);
}
@media (max-width: 767px) {
  .modal__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    padding: 20px 16px 20px;
    max-height: calc(85vh - 100px);
  }
}

.modal__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  width: 210px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767px) {
  .modal__card {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

.modal__image {
  position: relative;
  width: 100%;
  border-radius: 8px;
  border: 4px solid #5cefff;
  background: rgba(193, 193, 193, 0.9);
  -webkit-box-shadow: 0px 0px 20px 0px rgb(92, 239, 255);
          box-shadow: 0px 0px 20px 0px rgb(92, 239, 255);
  overflow: hidden;
}
@media (max-width: 767px) {
  .modal__image {
    width: 80%;
  }
}
.modal__image img {
  width: 100%;
  height: auto;
  display: block;
}

.modal__entry-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: -6px;
  height: 54px;
}

.modal__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.modal__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  width: 100%;
}
@media (max-width: 767px) {
  .modal__name {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.modal__name-text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  margin: 0;
}
@media (max-width: 767px) {
  .modal__name-text {
    font-size: 20px;
    text-align: center;
  }
}

.modal__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: 100%;
}

.modal__detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 100%;
}

.modal__detail-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 4px 8px;
  background: rgba(92, 239, 255, 0.1);
  border: 2px solid #5cefff;
  border-radius: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.modal__detail-label span {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #5cefff;
  text-shadow: 0px 0px 20px 0px rgb(92, 239, 255);
}
@media (max-width: 767px) {
  .modal__detail-label span {
    font-size: 12px;
  }
}

.modal__detail-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  margin: 0;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .modal__detail-title {
    font-size: 16px;
  }
}

.modal__detail-description,
.modal__detail-motivation {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: 0;
  line-height: 1.45;
}
@media (max-width: 767px) {
  .modal__detail-description,
  .modal__detail-motivation {
    font-size: 14px;
  }
}

.card {
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.card:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.card__name {
  font-size: 20px;
  margin-top: 16px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}
@media (max-width: 767px) {
  .card__name {
    font-size: 16px;
    margin-top: 8px;
  }
}

.finalist__btn-title {
  color: #fff;
  font-size: 24px;
}
@media (max-width: 767px) {
  .finalist__btn-title {
    font-size: 16px;
  }
}

.finalist__btn-header {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .finalist__btn-header {
    gap: 12px;
    margin-top: 54px;
    margin-bottom: 16px;
  }
}

.border {
  position: relative;
  z-index: 2;
}

.border.reverse {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  margin-top: -32px;
  margin-top: -2.969vw;
}
@media (max-width: 767px) {
  .border.reverse {
    margin-top: -44px;
    margin-top: -11.282vw;
  }
}

/* --------------------------------------------
コンテスト概要 / 応募方法
* -------------------------------------------- */
.detail {
  background: -webkit-gradient(linear, left top, right top, from(#363b81), to(#2e3162));
  background: linear-gradient(90deg, #363b81 0%, #2e3162 100%);
  position: relative;
  text-align: center;
  padding: 80px 0;
}
@media (max-width: 767px) {
  .detail {
    padding: 60px 0;
  }
}

.detail__container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .detail__container {
    padding: 0 16px;
  }
}

.detail__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(0deg, transparent 99px, #333 100px), linear-gradient(90deg, transparent 99px, #333 100px);
  background-image: linear-gradient(0deg, transparent 99px, rgba(171, 255, 167, 0.2) 100px), linear-gradient(90deg, transparent 99px, rgba(171, 255, 167, 0.2) 100px);
  background-size: 100px 100px;
}

.detail__text {
  display: inline-block;
  color: #5cefff;
  text-shadow: 0 0 20px #5cefff;
  font-size: 24px;
  padding: 8px 16px;
  border-radius: 4px;
  border: 2px solid #5cefff;
}
@media (max-width: 767px) {
  .detail__text {
    font-size: 20px;
  }
}

.detail__title {
  color: #fff194;
  text-shadow: 0 0 20px #fffddf;
  font-size: 40px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .detail__title {
    font-size: 24px;
    margin-top: 18px;
    margin-bottom: 36px;
  }
}

.detail__button-wrap {
  width: 100%;
  margin: 0 auto;
  margin-top: 24px;
  font-size: 24px;
}
@media (max-width: 767px) {
  .detail__button-wrap {
    margin-top: 16px;
    font-size: 20px;
  }
}
.detail__button-wrap .nav__button {
  width: 400px;
  height: 72px;
  margin: 0 auto;
}
.detail__button-wrap .nav__button:hover {
  opacity: 1;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .detail__button-wrap .nav__button {
    width: 80%;
    min-width: 310px;
    height: 48px;
  }
}

.test_item {
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
.test_item::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 30px;
  height: 7.692vw;
  background-image: url(../img/finalist/stage_line1.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .test_item::before {
    background-image: url(../img/finalist/stage_line1_sp.png);
  }
}
.test_item::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 30px;
  background-image: url(../img/finalist/stage_line1.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .test_item::after {
    background-image: url(../img/finalist/stage_line1_sp.png);
  }
}