.share-wrapper {
  position: relative;
  width: 100%;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  left: 0;
  min-height: calc(100vh - 80px);
  padding-top: 80px;
}

.share-container {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.4);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 500px;
  width: 90%;
  margin: 20px;
  backdrop-filter: blur(10px);
  pointer-events: auto
}

.share-content h1 {
  color: #333;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.description {
  color: #666;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.social-share {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn-facebook, .btn-line {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-weight: 500;
}

.btn-facebook {
  background-color: #1877F2;
  color: white;
}

.btn-line {
  background-color: #00B900;
  color: white;
}

.btn-facebook:hover, .btn-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-back {
  background-color: #FFA07A;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 1.5rem;
}

.btn-back:hover {
  background-color: #FF8C61;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.website-link {
  color: #666;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

.official-link {
  color: #4A90E2;
  text-decoration: none;
  font-weight: 500;
}

.official-link:hover {
  text-decoration: underline;
}

.shareCloud-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
  overflow: visible;
}

.shareCloud {
  position: absolute;
  opacity: 0.8;
  height: auto;
}

.shareCloud img {
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
}

.shareCloud01 { top: 0%; right: 0%; max-width: 40%; }
.shareCloud02 { top: 35%; right: 30%; max-width: 40%; }
.shareCloud03 { top: 55%; right: 23%; max-width: 40%; }
.shareCloud04 { top: 25%; right: 30%; max-width: 40%; }
.shareCloud05 { top: 45%; right: 44%; max-width: 40%; }
.shareCloud06 { top: 65%; right: 18%; max-width: 60%; }
 
@keyframes moveRight {
  0% { transform: translateX(-40vw); opacity: 0; }
  5% { opacity: 0.8; }
  95% { opacity: 0.8; }
  100% { transform: translateX(100%); opacity: 0; }
}

@keyframes moveLeft {
  0% { transform: translateX(100%); opacity: 0; }
  5% { opacity: 0.8; }
  95% { opacity: 0.8; }
  100% { transform: translateX(-40vw); opacity: 0; }
}

.shareCloud01 {
  animation: moveRight 25s linear infinite;
}

.shareCloud03 {
  animation: moveRight 19s linear infinite;
}

.shareCloud02 {
  animation: moveLeft 26s linear infinite;
}

.shareCloud05 {
  animation: moveLeft 22s linear infinite;
}

.shareCloud04 {
  animation: moveRight 17s linear infinite;
}

.shareCloud06 {
  animation: moveLeft 27s linear infinite;
}

@media (max-width: 768px) {
  .share-wrapper {
    min-height: calc(100vh - 60px);
    padding-top: 60px;
  }

  .share-container {
      padding: 2rem;
      margin: 15px;
  }

  .share-content h1 {
      font-size: 1.75rem;
  }

  .description {
      font-size: 1.1rem;
  }

  .social-share {
      flex-direction: column;
      gap: 0.8rem;
  }

  .btn-facebook, .btn-line {
      width: 100%;
      padding: 1rem;
  }

  .shareCloud-container {
      height: 100vh;
      min-height: 100vh;
  }

  .shareCloud img {
      max-width: 150px;
      height: auto;
  }
}

@media (max-width: 480px) {
  .btn-facebook, .btn-line, .btn-back {
      padding: 1rem;
      font-size: 1rem;
      min-height: 44px;
  }
}

@media (max-width: 500px) {
  .share-wrapper {
    width: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 0;
    display: block;
    min-height: calc(100vh - 60px);
    padding-top: 60px;
  }

  .share-container {
    width: 90%;
    margin: 2rem auto;
    padding: 1.5rem;
    position: relative;
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
  }

  .share-content h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .social-share {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .btn-facebook, .btn-line, .btn-back {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .website-link {
    font-size: 0.8rem;
    margin-top: 1rem;
  }

  .shareCloud-container {
    position: absolute;
    height: 100%;
    overflow: hidden;
  }

  .shareCloud img {
    max-width: 100px;
    height: auto;
  }
}

   @media (max-width: 500px) {
    .share-wrapper {
      min-height: 100vh;
      min-height: -webkit-fill-available;
      min-height: 100dvh;
      /* background: linear-gradient(180deg, #E0F6FF 0%, #87CEEB 100%); */
    }
   }