/**
* SCPDページ
*
*/
.scpd-page .description-area-y__wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-image: url(/us/.assets/youzai_back01.png);
  background-size: cover;
  padding-bottom: 70px;
}

.scpd-page .description-area-y__inner {
  max-width: 1000px;
  width: 80%;
  margin: 0 auto;
}

.scpd-page .image-area-y__sub-title {
  text-align: center;
  color: #d85587;
}

.scpd-page .usage-examples {
  margin-bottom: 3rem;
}

.scpd-page .main-image {
  position: relative;
  width: 1180px;
  max-width: 1000px;
  text-align: center;
  margin: 50px 0;
  font-size: 20px;
}

/* 画像上のリンク用 */
.scpd-page .square-link {
  position: absolute;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 12.5%;
  top: 67%;
  left: 35.5%;
  width: 170px;
  height: 125px;
}
.scpd-page .square-link:hover {
  background-color: rgba(255, 0, 0, 0.2);
}

.scpd-page .button-container .button {
  min-width: 300px;
  display: block;
  padding: 10px 0;
  border-radius: 50px;
  border-width: 0px;
  color: #00437c;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  z-index: 2;
  transition: 0.3s;
  font-size: 0.85rem;
  text-align: center;
}

.scpd-page .button-container .button::before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(148deg, #0082c7 5%, #00437c 65%);
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50px;
  opacity: 1;
  transition: 0.3s;
}
.scpd-page .button-container .button::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  background-color: #f7f7f7;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  display: block;
  border-radius: 50px;
  z-index: -1;
  transition: 0.3s;
}
.scpd-page .button-container .button:hover {
  border: none;
  color: #ffffff;
}
.scpd-page .button-container .button:hover::after {
  opacity: 0;
}

.scpd-page .button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 1.5rem 0 3rem;
}
.scpd-page .button-container.right {
  justify-content: right;
}

.scpd-page .image-area-y {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #fef8fb;
  padding-bottom: 30px;
}

.scpd-page .y-floor-map-area__container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-color: #fef8fb;
  background-blend-mode: lighten;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.scpd-page .y-floor-map-area__inner {
  width: 1180px;
  text-align: center;
  margin: 50px 0;
  font-size: 20px;
}

.scpd-page .image-area-k__title {
  margin-top: 3rem;
}

/* モーションボタンのラッパー */
.scpd-page .motion-btn-wrapper {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
}

/* 溶剤回収装置のモーションボタン */
.scpd-page .motion-btn-wrapper.main-image {
  top: 77.5%;
  left: 52%;
  transform: translate(-50%, -50%);
}
/* モーションボタン本体 */
.scpd-page .motion-btn {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* リップルエフェクト */
.scpd-page .ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: #e4007f;
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: ripple 1.5s cubic-bezier(0.3, 0, 0.1, 1) infinite;
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  30% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* スマートフォン対応 */
@media screen and (max-width: 768px) {
  .scpd-page .process-details {
    flex-direction: column;
  }

  .scpd-page .button-container {
    flex-direction: column;
  }
}
