@charset "utf-8";

/* ===================================================================
スマイリングハート
=================================================================== */

.sh-player {
  max-width: 480px;
  margin: 1.5rem 0;
  background: #fff;
  border: 1px solid #e5e2da;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  position: relative;
  overflow: hidden;
  font-family: "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  box-sizing: border-box;
}
.sh-player-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}
.sh-disc {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #2c2c2a;
  border: 1px solid #444;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.sh-disc.spinning {
  animation: sh-spin 5s linear infinite;
}
@keyframes sh-spin {
  to { transform: rotate(360deg); }
}
.sh-disc-groove {
  position: absolute;
  border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,0.1);
  pointer-events: none;
}
.sh-disc-groove-1 { width: 44px; height: 44px; }
.sh-disc-groove-2 { width: 36px; height: 36px; }
.sh-disc-groove-3 { width: 28px; height: 28px; }
.sh-disc-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FFF;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}
.sh-disc-inner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #f5f3ef;
  border: 1px solid #d3d1c7;
  position: relative;
  z-index: 1;
}
.sh-track-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0 0 2px;
}
.sh-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.sh-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5f3ef;
  border: 1px solid #d3d1c7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  flex-shrink: 0;
  padding: 0;
  outline: none;
}
.sh-play-btn:hover {
  background: #eae8e2;
}
.sh-play-btn:active {
  transform: scale(0.95);
}
.sh-play-btn svg {
  width: 20px;
  height: 20px;
  fill: #333;
}
.sh-progress-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.sh-progress-bar {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #eae8e2;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.sh-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  background: #384688;
  transition: width 0.1s linear;
}
.sh-time-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #aaa;
}

.sh-lyrics span {
  display: inline-block;
  min-width: 10em;
}