/*----------------------
c-subpage-bg
----------------------*/
.c-subpage-bg {
  padding-top: 61px;
  padding-bottom: 120px;
}

.c-subpage-bg.c-subpage-bg--stage {
  /* background-color: #FFF7F7; */
}

.c-subpage-bg.c-subpage-bg--pickup {
  /* background-color: #F4FCFC; */
}

.c-subpage-bg.c-subpage-bg--exhibitor {
  /* background-color: #FBF4FC; */
  padding-top: 100px;
}

@media screen and (max-width: 767px) {
  .c-subpage-bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .c-subpage-bg.c-subpage-bg--exhibitor {
    padding-top: 60px;
  }
}

.c-subpage-fixed-bg {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.c-subpage-fixed-bg--exhibitor {
  background-color: #fbf4fc;
}
.c-subpage-fixed-bg--stage {
  background-color: #fff7f7;
}
.c-subpage-fixed-bg--pickup {
  background-color: #f4fcfc;
}

.c-subpage-fixed-bg--stage::before,
.c-subpage-fixed-bg--stage::after,
.c-subpage-fixed-bg--pickup::before,
.c-subpage-fixed-bg--pickup::after {
  mix-blend-mode: multiply;
  opacity: 0.6;
}

.c-subpage-fixed-bg::before,
.c-subpage-fixed-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  /* width: 1920px; */
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  animation: floatUpDown 4s ease-in-out infinite;
}
.c-subpage-fixed-bg:before {
  background-image: url(../../img/top/top-bg-anime-001.png);
  animation-delay: 0s; /* 基本の動き */
  /* height: 60%; */
}

.c-subpage-fixed-bg:after {
  background-image: url(../../img/top/top-bg-anime-002.png);
  animation-delay: 3s; /* 3秒遅れで開始してタイミングをずらす */
  /* height: 70%; */
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
  }
}

/* @media screen and (min-width: 1921px) {


    .c-subpage-fixed-bg:after {
        height: 60%;
    }
    .c-subpage-fixed-bg:before {
        height: 70%;
    }
} */
/*----------------------
c-subpage-heading
----------------------*/

.c-subpage-heading p {
  font-weight: 600;
  font-size: 18px;
  line-height: 2.6666;
  text-align: center;
  color: #434343;
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .c-subpage-heading p {
    font-size: 14px;
    line-height: 2;
  }
}

@media screen and (max-width: 550px) {
  .c-subpage-heading p {
    text-align: left;
  }
}

/*----------------------
c-subpage-wrap
----------------------*/

.c-subpage-wrap {
  background-color: #fff;
  border-radius: 40px;
  position: relative;
}

.c-subpage-wrap--flex {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.c-subpage-wrap--center {
  justify-content: center;
}

.c-subpage-wrap:after {
  content: '';
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 90px;
  height: 90px;
  left: 50%;
  transform: translateX(-50%);
  top: -44px;
}

.c-subpage-wrap-number--pink-01:after {
  background-image: url(../../img/subpage/pink-01.png);
}

.c-subpage-wrap-number--blue-02:after {
  background-image: url(../../img/subpage/blue-02.png);
}

.c-subpage-wrap-number--blue-03:after {
  background-image: url(../../img/subpage/blue-03.png);
}

.c-subpage-wrap--b-pink {
  border: 2px solid #f7d9d9;
}

.c-subpage-wrap--b-blue {
  border: 2px solid #e6f4f5;
}

.c-subpage-wrap-icon--top-right:before {
  content: "";
  position: absolute;
  background-image: url(../../img/subpage/icon-top-right.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 295px;
  height: 162px;
  right: -9px;
  top: -34px;
}

.c-subpage-wrap-icon--bottom-left:before {
  content: '';
  position: absolute;
  background-image: url(../../img/subpage/icon-bottom-left.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 150.44px;
  height: 91.67px;
  left: -19px;
  bottom: -25px;
}

.c-subpage-wrap-icon--bottom-right:before {
  content: '';
  position: absolute;
  background-image: url(../../img/subpage/icon-bottom-right.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 113px;
  height: 124px;
  right: 11px;
  bottom: -46px;
}

@media screen and (max-width: 1350px) {
  .c-subpage-wrap-icon--top-right:before {
    width: 150px;
    height: 80px;
    right: -9px;
    top: -10px;
  }

  .c-subpage-wrap-icon--bottom-left:before {
    width: 75px;
    height: 45px;
    left: -15px;
    bottom: -10px;
  }

  .c-subpage-wrap-icon--bottom-right:before {
    width: 90px;
    height: 60px;
    right: -15px;
    bottom: -10px;
  }
}

@media screen and (max-width: 767px) {
  .c-subpage-wrap:after {
    width: 60px;
    height: 60px;
    top: -30px;
  }
}

/*----------------------
c-subpage-btn-area
----------------------*/

.c-subpage-btn-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
}

.c-subpage-btn-area--stage {
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .c-subpage-btn-area {
    flex-direction: column;
    gap: 20px;
  }

  .c-subpage-btn-area--stage {
    margin-top: 40px;
  }
}

.archive-img {
  width: 33%;
  padding: 10px 7px;
}

@media screen and (max-width: 767px) {
  .archive-img {
    width: 50%;
    padding: 5px 5px;
  }
}
