.btn-piano-wine-wrap {
  text-align: center;
}

.btn-piano-wine {
    --btn-bg: #701E31;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 100%;
    padding: 17px 38px 17px 34px;
    background-color: var(--btn-bg);
    border: 1.5px solid #D8BA8C;
    border-radius: 10px;
    color: #D8BA8C;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(20, 5, 8, 0.28);
    transition: background-color 0.25s ease, transform 0.18s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-piano-wine:hover {
  --btn-bg: #5c1a2a;
  border-color: #e2c48c;
  color: #e2c48c;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(20, 5, 8, 0.34);
  opacity: 1!important;
}

.btn-piano-wine:active {
  transform: translateY(0);
}

.btn-piano-label {
  flex: 1 1 auto;
  min-width: 0;
  white-space: normal;
  text-align: center;
}

.icon-piano {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-image: url("../images/icon_piano.png");
  mask-image: url("../images/icon_piano.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

#next_list iframe {
	overflow: hidden;
}

@media (max-width: 640px) {
  .btn-piano-wine {
    gap: 10px;
    padding: 14px 22px 14px 20px;
    font-size: 17px;
    letter-spacing: 0.05em;
  }
  .icon-piano {
    width: 34px;
    height: 34px;
  }
}





