/* special section styles */

main {
  position: relative;
  padding: 150px 0 20px;
  background-image: url('/sumikkogurashi-movie/image/spe/spe_back_pattern.png');
  background-repeat: repeat-y;
  background-size: contain;
}

@supports (background-image: url('/sumikkogurashi-movie/image/spe/spe_back_pattern.webp')) {
  main {
    background-image: url('/sumikkogurashi-movie/image/spe/spe_back_pattern.webp');
  }
}
@media (max-width: 768px) {
  main {
    padding-top: 17%;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 15%;
  cursor: pointer;
  z-index: 2;
}

.scroll-to-top img {
  width: 100%;
  height: auto;
  display: block;
}


.special {
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 500;
  font-style: normal;

  position: relative;
  padding: 2% 0;
  background: #D0BDE5;
  border-radius: 32px;
  margin: 50px auto;
  width: 85%;
  overflow: hidden;
}

.special__container {
  position: relative;
  margin: 0 auto;
  padding: 20px 20px;
}

.special__frame-title {
  text-align: center;
  margin-bottom: 20px;
}
.special__frame-title img {
  width: 80%;
}
@media (max-width: 768px) {
  .special__frame-title img {
    width: 90%;
  }
}
.special__frame {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
  position: relative;
}
@media (max-width: 768px) {
  .special__frame {
    padding: 10px;
  }
}

.special__title {
  text-align: center;
  margin-bottom: 32px;
}

.special__title-img {
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .special__title-img {
    width: 80%;
  }
}

.special__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.special__item {
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
}

.special__item-text {
  flex: 1;
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .special__item-text {
    font-size: 3.5vw;
  }
}
.special__btn {
  text-align: left;
  margin: 32px auto 0;
  width: 85%;
}
@media (max-width: 768px) {
  .special__btn {
    text-align: center;
    width: 100%;
  }
}

.special__btn--img {
  display: inline-block;
  width: 33%;
  transition: transform 0.2s ease;
}
@media (max-width: 768px) {
  .special__btn--img {
    width: 60%;
  }
}
.special__btn--img:hover {
  transform: translateY(-2px);
}

.special__btn--img img {
  width: 100%;
  height: auto;
  display: block;
}

/* special__goto-top styles */
.special__goto-top {
  position: relative;
  margin: 30px auto;
  width: 30%;
  cursor: pointer;
}

.special__goto-top .button-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.special__goto-top:hover .button-hover {
  opacity: 1; /* see */
}

.special__goto-top:hover .button-default {
  opacity: 0;
}

/* special image style */
.special__item-text-img {
  margin: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .special__item-text-img {
    margin: 20px 0;
  }
}
.special__item-text-img img {
  width: 100%;
}
