/* Wallpaper Page Styles */

.sns-area {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}

.sns-area li {
  padding-left: 10px;
  line-height: 0;
}

.copy-btn {
  text-align: center;
  display: inline-block;
  height: 20px;
  width: 40px;
  border-radius: 15px;
  background: #aaa;
  color: #fff;
  padding: 0 10px;
}

.js-copy:hover {
  cursor: pointer;
}

.cp-sec {
  margin-bottom: 60px;
}

.cp-ttl-h1 {
  margin-bottom: 60px;
}

.wallpaper-preview {
  margin-bottom: 10px;
}

.wallpaper-preview img {
  max-width: 800px;
  width: 100%;
  height: auto;
  border: 1px solid #ccc;
}

.download-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding-bottom: 32px;
}

.download-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.download-row .button {
  width: 296.55px;
  padding: 18.92px 0;
  background: #333333;
  color: white;
  border-radius: 3px;
  box-shadow: 0px 3px 0px 0px #000000;
  font-size: 16px;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border: none;
}

.download-row .button:hover {
  background: #555555;
  color: white;
  text-decoration: none;
  transform: translateY(1px);
  box-shadow: 0px 2px 0px 0px #000000;
}

@media (max-width: 1000px) {
  .download-section {
    flex-wrap: wrap;
    gap: 10px;
  }

  .download-row {
    flex-wrap: wrap;
    /* flex-direction: column; */
    gap: 10px;
  }

  .download-row .button {
    width: 280px;
  }
}