<?xml version="1.0" encoding="utf-8" ?>
<feed version="0.3" xml:lang="ja" xmlns="http://purl.org/atom/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/"><title>DISCO ≧ CLUB MUSIC SPECIALTY STORE クラバーズ・レコード</title><link rel="alternate" type="text/html" href="https://clubberz-records.com/" /><modified>2026-03-14T22:49:45+09:00</modified><entry><title>MOBY - Go [The Original]</title><link rel="alternate" type="text/html" href="https://clubberz-records.com/?pid=190878717" /><id>https://clubberz-records.com/?pid=190878717</id><issued>2026-03-14T01:53:21+09:00</issued><modified>2026-03-13T16:53:21Z</modified><created>2026-03-13T16:53:21Z</created><summary>
	
	
		
		
		
			loading
			loading
			loading
			
				
				
				
					
					
				
				0:00
				
					
						
							
								
							
						
					
					
						
							
						
						
							
							
						
					
					...</summary><author><name>DISCO ≧ CLUB MUSIC SPECIALTY STORE クラバーズ・レコード</name></author><content mode="escaped" type="text/html" xml:lang="ja"><![CDATA[<div class="player">
	<span id="arm"></span>
	<ul>
		<li class="artwork">
		</li>
		<li class="info">
			<h4 id="artist">loading</h4>
			<h6 id="album">loading</h6>
			<h5 id="song">loading</h5>
			<div class="button-items">
				<audio id="music" preload="auto">
				</audio>
				<div id="slider">
					<div id="elapsed"></div>
					<div id="buffered"></div>
				</div>
				<div id="timer">0:00</div>
				<div class="controls">
					<span class="expend">
						<svg id="previous" class="step-backward" viewBox="0 0 25 25" xml:space="preserve">
							<g>
								<polygon points="4.9,4.3 9,4.3 9,11.6 21.4,4.3 21.4,20.7 9,13.4 9,20.7 4.9,20.7"/>
							</g>
						</svg>
					</span>
					<svg id="play" viewBox="0 0 25 25" xml:space="preserve">
						<defs>
							<rect x="-49.5" y="-132.9" width="446.4" height="366.4"/>
						</defs>
						<g>
							<circle fill="none" cx="12.5" cy="12.5" r="10.8"/>
							<path fill-rule="evenodd" clip-rule="evenodd" d="M8.7,6.9V18c0,0,0.2,1.4,1.8,0l8.1-4.8c0,0,1.2-1.1-1-2L9.8,6.5 C9.8,6.5,9.1,6,8.7,6.9z"/>
						</g>
					</svg>
					<svg id="pause" viewBox="0 0 25 25" xml:space="preserve">
						<g>
							<rect x="6" y="4.6" width="3.8" height="15.7"/>
							<rect x="14" y="4.6" width="3.9" height="15.7"/>
						</g>
					</svg>
					<span class="expend">
						<svg id="next" class="step-foreward" viewBox="0 0 25 25" xml:space="preserve">
							<g>
								<polygon points="20.7,4.3 16.6,4.3 16.6,11.6 4.3,4.3 4.3,20.7 16.7,13.4 16.6,20.7 20.7,20.7"/>
							</g>
						</svg>
					</span>
					<div class="slider">
						<div class="volume"></div>
						<input type="range" id="volume" min="0" max="1" step="0.01" value="1" />
					</div>
				</div>
			</div>
		</li>
	</ul>
</div>
<script type="text/javascript">
/* Music 
======================================*/
var playlist = [
	{
		"song"    : "Go",
		"album"   : "(Woodtick Mix)",
		"artist"  : "MOBY",
		"artwork" : "https://dl.dropboxusercontent.com/scl/fi/q8rwy5awsjvsvljf4dwdt/mp3-moby.png?rlkey=qtm1hinqnze5sefodi4b52kl4&st=pausyql4",
		"mp3"     : "https://dl.dropboxusercontent.com/scl/fi/1z80l2a55slfu50uiix93/moby-go-og.mp3?rlkey=35h6s9no7uctvdfquoemmumtj&st=cs5zzhi7"
	}
];

/* General Load / Variables
======================================*/
var rot = 0;
var duration;
var playPercent;
var rotate_timer;
var armrot = -45;
var bufferPercent;
var currentSong = 0;
var arm_rotate_timer;
var arm = document.getElementById("arm");
var next = document.getElementById("next");
var song = document.getElementById("song");
var timer = document.getElementById("timer");
var music = document.getElementById("music");
var album = document.getElementById("album");
var artist = document.getElementById("artist");
var volume = document.getElementById("volume");
var playButton = document.getElementById("play");
var timeline = document.getElementById("slider");
var playhead = document.getElementById("elapsed");
var previous = document.getElementById("previous");
var pauseButton = document.getElementById("pause");
var bufferhead = document.getElementById("buffered");
var artwork = document.getElementsByClassName("artwork")[0];
var timelineWidth = timeline.offsetWidth - playhead.offsetWidth;
var visablevolume = document.getElementsByClassName("volume")[0];

music.addEventListener("ended", _next, false);
music.addEventListener("timeupdate", timeUpdate, false);
music.addEventListener("progress", 	bufferUpdate, false);
load();

/* Functions
======================================*/
function load(){
	pauseButton.style.visibility = "hidden";
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	music.load();
}
function reset(){ 
	rotate_reset = setInterval(function(){ 
		Rotate();
		if(rot == 0){
			clearTimeout(rotate_reset);
		}
	}, 1);
	fireEvent(pauseButton, 'click');
	armrot = -45;
	playhead.style.width = "0px";
	bufferhead.style.width = "0px";
	timer.innerHTML = "0:00";
	music.innerHTML = "";
	currentSong = 0; // set to first song, to stay on last song: currentSong = playlist.length - 1;
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	music.load();
}
function formatSecondsAsTime(secs, format) {
  var hr  = Math.floor(secs / 3600);
  var min = Math.floor((secs - (hr * 3600))/60);
  var sec = Math.floor(secs - (hr * 3600) -  (min * 60));
  if (sec < 10){ 
    sec  = "0" + sec;
  }
  return min + ':' + sec;
}
function timeUpdate() {
	bufferUpdate();
	playPercent = timelineWidth * (music.currentTime / duration);
	playhead.style.width = playPercent + "px";
	timer.innerHTML = formatSecondsAsTime(music.currentTime.toString());
}
function bufferUpdate() {
	bufferPercent = timelineWidth * (music.buffered.end(0) / duration);
	bufferhead.style.width = bufferPercent + "px";
}
function Rotate(){
	if(rot == 361){
		artwork.style.transform = 'rotate(0deg)';
		rot = 0;
	} else {
		artwork.style.transform = 'rotate('+rot+'deg)';
		rot++;
	}
}
function RotateArm(){
	if(armrot > -12){
		arm.style.transform = 'rotate(-38deg)';
		armrot = -45;
	} else {
		arm.style.transform = 'rotate('+armrot+'deg)';
		armrot = armrot + (26 / duration);
	}
}
function fireEvent(el, etype){
	if (el.fireEvent) {
		el.fireEvent('on' + etype);
	} else {
		var evObj = document.createEvent('Events');
		evObj.initEvent(etype, true, false);
		el.dispatchEvent(evObj);
	}
}
function _next(){
	if(currentSong == playlist.length - 1){
		reset();
	} else {
		fireEvent(next, 'click');
	}
}
playButton.onclick = function() {
	music.play();
}
pauseButton.onclick = function() {
	music.pause();
}
music.addEventListener("play", function () {
	playButton.style.visibility = "hidden";
	pause.style.visibility = "visible";
	rotate_timer = setInterval(function(){ 
		if(!music.paused && !music.ended && 0 < music.currentTime){
			Rotate();
		}
	}, 10);	
	if(armrot != -45){
		arm.setAttribute("style", "transition: transform 800ms;");
		arm.style.transform = 'rotate('+armrot+'deg)';
	}
	arm_rotate_timer = setInterval(function(){ 
		if(!music.paused && !music.ended && 0 < music.currentTime){
			if(armrot == -45){
				arm.setAttribute("style", "transition: transform 800ms;");
				arm.style.transform = 'rotate(-38deg)';
				armrot = -38;
			}
			if(arm.style.transition != ""){
				setTimeout(function(){
					arm.style.transition = "";
				}, 1000);
			}
			RotateArm();
		}
	}, 1000);
}, false);
music.addEventListener("pause", function () {
	arm.setAttribute("style", "transition: transform 800ms;");
	arm.style.transform = 'rotate(-45deg)';
	playButton.style.visibility = "visible";
	pause.style.visibility = "hidden";
	clearTimeout(rotate_timer);
	clearTimeout(arm_rotate_timer);
}, false);
next.onclick = function(){
	arm.setAttribute("style", "transition: transform 800ms;");
	arm.style.transform = 'rotate(-45deg)';
	clearTimeout(rotate_timer);
	clearTimeout(arm_rotate_timer);
	playhead.style.width = "0px";
	bufferhead.style.width = "0px";
	timer.innerHTML = "0:00";
	music.innerHTML = "";
	arm.style.transform = 'rotate(-45deg)';
	armrot = -45;
	if((currentSong + 1) == playlist.length){
		currentSong = 0;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	} else {
		currentSong++;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	}
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "transform: rotate("+rot+"deg); background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.load();
	duration = music.duration;
	music.play();
}
previous.onclick = function(){
	arm.setAttribute("style", "transition: transform 800ms;");
	arm.style.transform = 'rotate(-45deg)';
	clearTimeout(rotate_timer);
	clearTimeout(arm_rotate_timer);
	playhead.style.width = "0px";
	bufferhead.style.width = "0px";
	timer.innerHTML = "0:00";
	music.innerHTML = "";
	arm.style.transform = 'rotate(-45deg)';
	armrot = -45;
	if((currentSong - 1) == -1){
		currentSong = playlist.length - 1;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	} else {
		currentSong--;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	}
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "transform: rotate("+rot+"deg); background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.load();
	duration = music.duration;
	music.play();
}
volume.oninput = function(){
	music.volume = volume.value;
	visablevolume.style.width = (80 - 11) * volume.value + "px";
}
music.addEventListener("canplay", function () {
	duration = music.duration;
}, false);
    </script>

<div class="credit_size pad_t_30">
<ul2>
    <li>商品はCDではなく、アナログ・レコードです。誤って購入した際の返品は致しかねますので、ご留意下さい。</li>
    <li>商品写真は実売品ですが、一部イメージ / 参考写真を含みます。</li>
    <li>試聴ファイルは一部ディスコ / クラブでの生ライヴ音源のため、実際の商品とは異なって聞こえる場合があります。あらかじめご了承ください。</li>
</ul2>
</div>]]></content></entry><entry><title>12&quot; Record Inner Sleeves (レコード内袋)</title><link rel="alternate" type="text/html" href="https://clubberz-records.com/?pid=190156225" /><id>https://clubberz-records.com/?pid=190156225</id><issued>2026-01-17T02:17:36+09:00</issued><modified>2026-01-23T13:03:45Z</modified><created>2026-01-16T17:17:36Z</created><summary>
商品詳細 (DETAILS):
サイズ (SIZE): 横307mm(Width) x 縦308mm(Length)厚み (THICKNESS): 0.025mm
数量 (QUANTITY): 100枚
&amp;#9654; 当店で利用している12&quot;レコード用のポリ内袋です。100枚セットでお届けします。厚み0.035mmの厚口もございますので別途お問い合わせ...</summary><author><name>DISCO ≧ CLUB MUSIC SPECIALTY STORE クラバーズ・レコード</name></author><content mode="escaped" type="text/html" xml:lang="ja"><![CDATA[<div class="line_space">
<p class="pad_b_10">商品詳細 (DETAILS):</p>
<p><span class="txt_fwb">サイズ (SIZE):</span> 横307mm(Width) x 縦308mm(Length)<br><span class="txt_fwb">厚み (THICKNESS):</span> 0.025mm<br>
<span class="txt_fwb">数量 (QUANTITY):</span> 100枚</p>
<p class="pad_v_10">&#9654; 当店で利用している12"レコード用のポリ内袋です。100枚セットでお届けします。厚み0.035mmの厚口もございますので別途お問い合わせ下さい。<br>
※ 受注から発送までに4〜5日程度のお時間が掛かります。</p></div>]]></content></entry><entry><title>12&quot; Record Outer Sleeves with Resealable Flap (レコード外袋)</title><link rel="alternate" type="text/html" href="https://clubberz-records.com/?pid=190156207" /><id>https://clubberz-records.com/?pid=190156207</id><issued>2026-01-17T01:36:45+09:00</issued><modified>2026-01-16T19:36:55Z</modified><created>2026-01-16T16:36:45Z</created><summary>
商品詳細 (DETAILS):
サイズ (SIZE): 横325mm(Width) x 縦310mm(Length) x 折り返し60mm(Flap)
厚み (THICKNESS): 40μ(ミクロン) (0.04mm)
数量 (QUANTITY): 100枚
&amp;#9654; テープ付きの12&quot;レコード用OPP外袋です。100枚セットでお届けします。テープは本体側にあり...</summary><author><name>DISCO ≧ CLUB MUSIC SPECIALTY STORE クラバーズ・レコード</name></author><content mode="escaped" type="text/html" xml:lang="ja"><![CDATA[<div class="line_space">
<p class="pad_b_10">商品詳細 (DETAILS):</p>
<p><span class="txt_fwb">サイズ (SIZE):</span> 横325mm(Width) x 縦310mm(Length) x 折り返し60mm(Flap)<br>
<span class="txt_fwb">厚み (THICKNESS):</span> 40μ(ミクロン) (0.04mm)<br>
<span class="txt_fwb">数量 (QUANTITY):</span> 100枚</p>
<p class="pad_v_10">&#9654; テープ付きの12"レコード用OPP外袋です。100枚セットでお届けします。テープは本体側にありますので、出し入れの際のジャケット貼り付き事故を防止します。<br>
※ 受注から発送までに4〜5日程度のお時間が掛かります。</p></div>]]></content></entry><entry><title>LOVERDE - Die Hard Lover </title><link rel="alternate" type="text/html" href="https://clubberz-records.com/?pid=189578194" /><id>https://clubberz-records.com/?pid=189578194</id><issued>2025-11-28T21:58:50+09:00</issued><modified>2025-12-09T18:00:13Z</modified><created>2025-11-28T12:58:50Z</created><summary>
Track Listing:
SIDE ONE:
Die Hard Lover (7:16)
Arrangements: Patrick Cowley &amp; Frank Loverde
Synthesizer: Patrick Cowley
SIDE TWO:
My World Is Empty Without You (7:00)
Arrangements: Horus Jack Toison &amp; Denver Smith
Custom Audio: Patrick Duran
Executive...</summary><author><name>DISCO ≧ CLUB MUSIC SPECIALTY STORE クラバーズ・レコード</name></author><content mode="escaped" type="text/html" xml:lang="ja"><![CDATA[<div class="line_space">
<p class="pad_b_10">Track Listing:</p>
<p>SIDE ONE:</p>
<p><span class="txt_fwb">Die Hard Lover</span> (7:16)</p>
<p class="credit_size mar_l_20">Arrangements: Patrick Cowley & Frank Loverde<br>
Synthesizer: Patrick Cowley</p>
<p>SIDE TWO:</p>
<p><span class="txt_fwb">My World Is Empty Without You</span> (7:00)</p>
<p class="credit_size mar_l_20">Arrangements: Horus Jack Toison & Denver Smith<br>
Custom Audio: Patrick Duran</p>
<p class="pad_t_10 credit_size mar_l_20">Executive Producer: Don Miley<br>
Mix Consultants: Craig Morey & Mike Lewis</p>
<p class="credit_size mar_l_20">LOVERDE is:<br>
Frank Loverde<br>
Linda Imperial<br>
Peggy Gibbons</p>
<p class="credit_size mar_l_20">management: Don Miley</p>
<p class="pad_v_10">&#9654; アメリカのディスコ・シーンにハイエナジー・ミュージックを広めたレコード・プロデューサー、パトリック・カウリーとともにサンフランシスコを拠点に活動したシンガー、フランク・ラヴァードが、ふたりの女性シンガーをフィーチュアして大成功を収めたセカンド・シングルにしてアメリカン・ハイエナジー・クラシック「ダイ・ハード・ラヴァー」。この曲のリリース後まもなくして亡くなったパトリック・カウリー、そして数年後に同じくエイズに散ったラヴァードにとってもこの曲のヒットは生涯最高級のイヴェントだったことでしょう... 合掌。尚、「シー・ハズ・ア・ウェイ」「テイク・ア・チャンス・オン・ミー」等、当時のディスコで好調なチャートアクションを記録したにも関わらず、ポップ・ミュージックとしてのポテンシャルを満たしていないことから日本国内のレコード会社に完全スルーされたボビー “O”関連楽曲と同様の扱いで、結局国内発売には至らず仕舞でした。</p></div>

<div class="position">
<script type="text/javascript">
         $(function(){
            $("#audio_player").jPlayer({
               ready: function(){
                  $(this).jPlayer("setMedia", {
                     mp3: "https://dl.dropboxusercontent.com/scl/fi/520yg11vvftcl64m7gidx/loverde-maha.mp3?rlkey=gsj02kvjspga17nmyjlv7vuej&st=x1d7uzgs",
                  }).jPlayer("stop");
               },
               preload: "auto",
               volume: 0.5,
               muted: false,
               backgroundColor: "#ff6699",
               errorAlerts:false,
               warningAlerts:false,
               ended: function (event) {
                  //$(this).jPlayer("play");
               },
               swfPath: "https://dl.dropboxusercontent.com/s/d1e24mbhxxjvrvu/jquery.jplayer.swf",
               solution: 'html, flash',
               supplied: "mp3, oga",
               wmode: "window"
            })
            .bind($.jPlayer.event.play, function() {
               $(this).jPlayer("pauseOthers");
            });
         });
      </script>
<div id="audio_player" class="jp-jplayer" />
<div id="jp_container_1" class="jp-audio">
   <div class="jp-type-single">
      <div class="jp-gui jp-interface">
         <ul class="jp-controls">
            <li><a href="#" class="jp-play" tabindex="1">play</a></li>
            <li><a href="#" class="jp-pause" tabindex="1">pause</a></li>
            <li><a href="#" class="jp-stop" tabindex="1">stop</a></li>
            <li><a href="#" class="jp-mute" tabindex="1" title="mute">mute</a></li>
            <li><a href="#" class="jp-unmute" tabindex="1" title="unmute">unmute</a></li>
            <li><a href="#" class="jp-volume-max" tabindex="1" title="max volume">max volume</a></li>
         </ul>
         <div class="jp-progress">
            <div class="jp-seek-bar">
               <div class="jp-play-bar" />
            </div>
         </div>
         <div class="jp-volume-bar">
            <div class="jp-volume-bar-value" />
         </div>
         <div class="jp-time-holder">
            <div class="jp-current-time" />
            <div class="jp-duration" />
            <ul class="jp-toggles">
               <li><a href="#" class="jp-repeat" tabindex="1" title="repeat">repeat</a></li>
               <li><a href="#" class="jp-repeat-off" tabindex="1" title="repeat off">repeat off</a></li>
            </ul>
         </div>
      </div>
      <div class="jp-title">
         <ul>
         <li>From a Real Live Show in 1986 at Azabu-Juban MAHARAJA</li>
         </ul>
      </div>
      <div class="jp-no-solution">
         <span>Update Required</span>
         To play the media you will need to either update your browser to a recent version or update your <a href="https://get.adobe.com/flashplayer/"target="_blank">Flash plugin</a>.
      </div>
   </div>
</div>
</div>

<div class="credit_size pad_t_30">
<ul2>
    <li>商品はCDではなく、アナログ・レコードです。誤って購入した際の返品は致しかねますので、ご留意下さい。</li>
    <li>商品写真は実売品ですが、一部イメージ / 参考写真を含みます。</li>
    <li>試聴ファイルは一部ディスコ / クラブでの生ライヴ音源のため、実際の商品とは異なって聞こえる場合があります。あらかじめご了承ください。</li>
</ul2>
</div>]]></content></entry><entry><title>ALPHAVILLE - Red Rose</title><link rel="alternate" type="text/html" href="https://clubberz-records.com/?pid=189200162" /><id>https://clubberz-records.com/?pid=189200162</id><issued>2025-11-02T05:17:01+09:00</issued><modified>2025-12-09T18:02:04Z</modified><created>2025-11-01T20:17:01Z</created><summary>
Track Listing:
SIDE A:
Red Rose (12&quot; Mix) (7:53)
Additional Production and Remix by Sergio Munzibai and John Morales for Another M &amp; M Production, Inc.
SIDE B:
1. Next Generation (Unavailable on LP) (3:58)
Produced by Alphaville
2. Red Rose (Dub Mix) ...</summary><author><name>DISCO ≧ CLUB MUSIC SPECIALTY STORE クラバーズ・レコード</name></author><content mode="escaped" type="text/html" xml:lang="ja"><![CDATA[<div class="line_space">
<p class="pad_b_10">Track Listing:</p>
<p>SIDE A:</p>
<p><span class="txt_fwb">Red Rose</span> (12" Mix) (7:53)</p>
<p class="credit_size mar_l_20">Additional Production and Remix by Sergio Munzibai and John Morales for Another M & M Production, Inc.</p>
<p>SIDE B:</p>
<p>1. <span class="txt_fwb">Next Generation</span> (Unavailable on LP) (3:58)</p>
<p class="credit_size mar_l_20">Produced by Alphaville</p>
<p>2. <span class="txt_fwb">Red Rose</span> (Dub Mix) (5:06)</p>
<p class="pad_v_10">&#9654; '82年の結成から40余年、現在も精力的な活動を続けるドイツのシンセ・ポップ・バンド、アルファヴィル。国内のディスコ・シーンでも大ヒットした「ダンス・ウィズ・ミー」を収録したセカンド・アルバム『アフタヌーンズ・イン・ユートピア』からの5枚目にして最後のシングル・カット(通算9枚目)となったのが本作「レッド・ローズ」。アメリカのホット・ダンス・チャートでも善戦した珠玉のシンセ・ポップは当時のDJに倣(なら)って大幅ピッチアップでプレイして下さい。</p></div>

<div class="player">
	<span id="arm"></span>
	<ul>
		<li class="artwork">
		</li>
		<li class="info">
			<h4 id="artist">loading</h4>
			<h6 id="album">loading</h6>
			<h5 id="song">loading</h5>
			<div class="button-items">
				<audio id="music" preload="auto">
				</audio>
				<div id="slider">
					<div id="elapsed"></div>
					<div id="buffered"></div>
				</div>
				<div id="timer">0:00</div>
				<div class="controls">
					<span class="expend">
						<svg id="previous" class="step-backward" viewBox="0 0 25 25" xml:space="preserve">
							<g>
								<polygon points="4.9,4.3 9,4.3 9,11.6 21.4,4.3 21.4,20.7 9,13.4 9,20.7 4.9,20.7"/>
							</g>
						</svg>
					</span>
					<svg id="play" viewBox="0 0 25 25" xml:space="preserve">
						<defs>
							<rect x="-49.5" y="-132.9" width="446.4" height="366.4"/>
						</defs>
						<g>
							<circle fill="none" cx="12.5" cy="12.5" r="10.8"/>
							<path fill-rule="evenodd" clip-rule="evenodd" d="M8.7,6.9V18c0,0,0.2,1.4,1.8,0l8.1-4.8c0,0,1.2-1.1-1-2L9.8,6.5 C9.8,6.5,9.1,6,8.7,6.9z"/>
						</g>
					</svg>
					<svg id="pause" viewBox="0 0 25 25" xml:space="preserve">
						<g>
							<rect x="6" y="4.6" width="3.8" height="15.7"/>
							<rect x="14" y="4.6" width="3.9" height="15.7"/>
						</g>
					</svg>
					<span class="expend">
						<svg id="next" class="step-foreward" viewBox="0 0 25 25" xml:space="preserve">
							<g>
								<polygon points="20.7,4.3 16.6,4.3 16.6,11.6 4.3,4.3 4.3,20.7 16.7,13.4 16.6,20.7 20.7,20.7"/>
							</g>
						</svg>
					</span>
					<div class="slider">
						<div class="volume"></div>
						<input type="range" id="volume" min="0" max="1" step="0.01" value="1" />
					</div>
				</div>
			</div>
		</li>
	</ul>
</div>
<script type="text/javascript">
/* Music 
======================================*/
var playlist = [
	{
		"song"    : "Red Rose",
		"album"   : "(12'' Mix)",
		"artist"  : "ALPHAVILLE",
		"artwork" : "https://dl.dropboxusercontent.com/scl/fi/1flbuvbm9pvyd2qr14tsw/mp3-alphaville.png?rlkey=v8215bnrenuihbfov0wsf4yop&st=1bjr81ai",
		"mp3"     : "https://dl.dropboxusercontent.com/scl/fi/fknn4p8mc8uffrv4zs5sx/alphaville-red_rose.mp3?rlkey=hzzmhzlwob6a7bte343xkrzyy&st=dcag8gij"
	}
];

/* General Load / Variables
======================================*/
var rot = 0;
var duration;
var playPercent;
var rotate_timer;
var armrot = -45;
var bufferPercent;
var currentSong = 0;
var arm_rotate_timer;
var arm = document.getElementById("arm");
var next = document.getElementById("next");
var song = document.getElementById("song");
var timer = document.getElementById("timer");
var music = document.getElementById("music");
var album = document.getElementById("album");
var artist = document.getElementById("artist");
var volume = document.getElementById("volume");
var playButton = document.getElementById("play");
var timeline = document.getElementById("slider");
var playhead = document.getElementById("elapsed");
var previous = document.getElementById("previous");
var pauseButton = document.getElementById("pause");
var bufferhead = document.getElementById("buffered");
var artwork = document.getElementsByClassName("artwork")[0];
var timelineWidth = timeline.offsetWidth - playhead.offsetWidth;
var visablevolume = document.getElementsByClassName("volume")[0];

music.addEventListener("ended", _next, false);
music.addEventListener("timeupdate", timeUpdate, false);
music.addEventListener("progress", 	bufferUpdate, false);
load();

/* Functions
======================================*/
function load(){
	pauseButton.style.visibility = "hidden";
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	music.load();
}
function reset(){ 
	rotate_reset = setInterval(function(){ 
		Rotate();
		if(rot == 0){
			clearTimeout(rotate_reset);
		}
	}, 1);
	fireEvent(pauseButton, 'click');
	armrot = -45;
	playhead.style.width = "0px";
	bufferhead.style.width = "0px";
	timer.innerHTML = "0:00";
	music.innerHTML = "";
	currentSong = 0; // set to first song, to stay on last song: currentSong = playlist.length - 1;
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	music.load();
}
function formatSecondsAsTime(secs, format) {
  var hr  = Math.floor(secs / 3600);
  var min = Math.floor((secs - (hr * 3600))/60);
  var sec = Math.floor(secs - (hr * 3600) -  (min * 60));
  if (sec < 10){ 
    sec  = "0" + sec;
  }
  return min + ':' + sec;
}
function timeUpdate() {
	bufferUpdate();
	playPercent = timelineWidth * (music.currentTime / duration);
	playhead.style.width = playPercent + "px";
	timer.innerHTML = formatSecondsAsTime(music.currentTime.toString());
}
function bufferUpdate() {
	bufferPercent = timelineWidth * (music.buffered.end(0) / duration);
	bufferhead.style.width = bufferPercent + "px";
}
function Rotate(){
	if(rot == 361){
		artwork.style.transform = 'rotate(0deg)';
		rot = 0;
	} else {
		artwork.style.transform = 'rotate('+rot+'deg)';
		rot++;
	}
}
function RotateArm(){
	if(armrot > -12){
		arm.style.transform = 'rotate(-38deg)';
		armrot = -45;
	} else {
		arm.style.transform = 'rotate('+armrot+'deg)';
		armrot = armrot + (26 / duration);
	}
}
function fireEvent(el, etype){
	if (el.fireEvent) {
		el.fireEvent('on' + etype);
	} else {
		var evObj = document.createEvent('Events');
		evObj.initEvent(etype, true, false);
		el.dispatchEvent(evObj);
	}
}
function _next(){
	if(currentSong == playlist.length - 1){
		reset();
	} else {
		fireEvent(next, 'click');
	}
}
playButton.onclick = function() {
	music.play();
}
pauseButton.onclick = function() {
	music.pause();
}
music.addEventListener("play", function () {
	playButton.style.visibility = "hidden";
	pause.style.visibility = "visible";
	rotate_timer = setInterval(function(){ 
		if(!music.paused && !music.ended && 0 < music.currentTime){
			Rotate();
		}
	}, 10);	
	if(armrot != -45){
		arm.setAttribute("style", "transition: transform 800ms;");
		arm.style.transform = 'rotate('+armrot+'deg)';
	}
	arm_rotate_timer = setInterval(function(){ 
		if(!music.paused && !music.ended && 0 < music.currentTime){
			if(armrot == -45){
				arm.setAttribute("style", "transition: transform 800ms;");
				arm.style.transform = 'rotate(-38deg)';
				armrot = -38;
			}
			if(arm.style.transition != ""){
				setTimeout(function(){
					arm.style.transition = "";
				}, 1000);
			}
			RotateArm();
		}
	}, 1000);
}, false);
music.addEventListener("pause", function () {
	arm.setAttribute("style", "transition: transform 800ms;");
	arm.style.transform = 'rotate(-45deg)';
	playButton.style.visibility = "visible";
	pause.style.visibility = "hidden";
	clearTimeout(rotate_timer);
	clearTimeout(arm_rotate_timer);
}, false);
next.onclick = function(){
	arm.setAttribute("style", "transition: transform 800ms;");
	arm.style.transform = 'rotate(-45deg)';
	clearTimeout(rotate_timer);
	clearTimeout(arm_rotate_timer);
	playhead.style.width = "0px";
	bufferhead.style.width = "0px";
	timer.innerHTML = "0:00";
	music.innerHTML = "";
	arm.style.transform = 'rotate(-45deg)';
	armrot = -45;
	if((currentSong + 1) == playlist.length){
		currentSong = 0;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	} else {
		currentSong++;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	}
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "transform: rotate("+rot+"deg); background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.load();
	duration = music.duration;
	music.play();
}
previous.onclick = function(){
	arm.setAttribute("style", "transition: transform 800ms;");
	arm.style.transform = 'rotate(-45deg)';
	clearTimeout(rotate_timer);
	clearTimeout(arm_rotate_timer);
	playhead.style.width = "0px";
	bufferhead.style.width = "0px";
	timer.innerHTML = "0:00";
	music.innerHTML = "";
	arm.style.transform = 'rotate(-45deg)';
	armrot = -45;
	if((currentSong - 1) == -1){
		currentSong = playlist.length - 1;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	} else {
		currentSong--;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	}
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "transform: rotate("+rot+"deg); background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.load();
	duration = music.duration;
	music.play();
}
volume.oninput = function(){
	music.volume = volume.value;
	visablevolume.style.width = (80 - 11) * volume.value + "px";
}
music.addEventListener("canplay", function () {
	duration = music.duration;
}, false);
    </script>

<div class="credit_size pad_t_30">
<ul2>
    <li>商品はCDではなく、アナログ・レコードです。誤って購入した際の返品は致しかねますので、ご留意下さい。</li>
    <li>商品写真は実売品ですが、一部イメージ / 参考写真を含みます。</li>
    <li>試聴ファイルは一部ディスコ / クラブでの生ライヴ音源のため、実際の商品とは異なって聞こえる場合があります。あらかじめご了承ください。</li>
</ul2>
</div>]]></content></entry><entry><title>VIRGIN - All Your Love  </title><link rel="alternate" type="text/html" href="https://clubberz-records.com/?pid=189200161" /><id>https://clubberz-records.com/?pid=189200161</id><issued>2025-11-02T05:14:28+09:00</issued><modified>2025-12-09T19:04:14Z</modified><created>2025-11-01T20:14:28Z</created><summary>
Track Listing:
SIDE A:
1. All Your Love (Extended Version) (6:10)
2. All Your Love (Acapella) (0:50)
SIDE B:
1. All Your Love (Radio Version) (3:20)
2. All Your Love (Instrumental) (2:40)
3. All Your Love (Last Track) (1:00)
&amp;#9654; イタロ・ディスコの...</summary><author><name>DISCO ≧ CLUB MUSIC SPECIALTY STORE クラバーズ・レコード</name></author><content mode="escaped" type="text/html" xml:lang="ja"><![CDATA[<div class="line_space">
<p class="pad_b_10">Track Listing:</p>
<p>SIDE A:</p>
<p>1. <span class="txt_fwb">All Your Love</span> (Extended Version) (6:10)<br>
2. <span class="txt_fwb">All Your Love</span> (Acapella) (0:50)</p>
<p>SIDE B:</p>
<p>1. <span class="txt_fwb">All Your Love</span> (Radio Version) (3:20)<br>
2. <span class="txt_fwb">All Your Love</span> (Instrumental) (2:40)<br>
3. <span class="txt_fwb">All Your Love</span> (Last Track) (1:00)</p>
<p class="pad_v_10">&#9654; イタロ・ディスコの女王、クララ・モレーロのヴォーカルで贈る哀愁ユーロビートのスマッシュ・ヒット。当時のマハラジャ系列ディスコでヘヴィー・オンエアに沸いた忘れじの一曲です。北海道は札幌マハラジャの営業使用盤でコレクションは無理ですが、DJプレイにご活用下さい。</p></div>

<div class="credit_size pad_v_10 bor_t_1 bor_b_1">
<ul2>
    <li>試聴ファイルはありません。試聴は「この商品について問い合わせる」より依頼下さい。</li>
    <li>商品はCDではなく、アナログ・レコードです。誤って購入した際の返品は致しかねますので、ご留意下さい。</li>
    <li>商品写真は実売品ですが、一部イメージ / 参考写真を含みます。</li>
</ul2>
</div>]]></content></entry><entry><title>DEREK SIMON - Mania  </title><link rel="alternate" type="text/html" href="https://clubberz-records.com/?pid=189200160" /><id>https://clubberz-records.com/?pid=189200160</id><issued>2025-11-02T05:13:25+09:00</issued><modified>2025-12-12T16:13:14Z</modified><created>2025-11-01T20:13:25Z</created><summary>
Track Listing:
SIDE A:
Mania (Extended Version) (5:50)
SIDE B:
1. Mania (Feel Version) (3:10)
2. Mania (Instrumental Version) (3:00)
Engineered by Dave Rosgers at Aleph Studio
&amp;#9654; 海外のイタロ・ディスコ好きから喝采を浴び、アナログ盤もマニア垂涎の...</summary><author><name>DISCO ≧ CLUB MUSIC SPECIALTY STORE クラバーズ・レコード</name></author><content mode="escaped" type="text/html" xml:lang="ja"><![CDATA[<div class="line_space">
<p class="pad_b_10">Track Listing:</p>
<p>SIDE A:</p>
<p><span class="txt_fwb">Mania</span> (Extended Version) (5:50)</p>
<p>SIDE B:</p>
<p>1. <span class="txt_fwb">Mania</span> (Feel Version) (3:10)<br>
2. <span class="txt_fwb">Mania</span> (Instrumental Version) (3:00)</p>
<p class="pad_t_10 credit_size mar_l_20">Engineered by Dave Rosgers at Aleph Studio</p>
<p class="pad_v_10">&#9654; 海外のイタロ・ディスコ好きから喝采を浴び、アナログ盤もマニア垂涎のレア・アイテムとして知られる一曲。ピクチャー・スリーヴでダンディに決めるデレク・サイモンのイメージ・モデルはイタロ・ディスコの作曲家でプロデュースもこなすGIORDANO FOGLIA。その中の人は制作からヴォーカルまでアレフのデイヴ・ロジャースが担当するディスコ・プロジェクトでした。本盤はその界隈で“COPY LP”なる隠語で流通する韓国産12"。怪しい出自の一枚ですが、意外にちゃんと音が出ます。</p></div>

<div class="credit_size pad_v_10 bor_t_1 bor_b_1">
<ul2>
    <li>試聴ファイルはありません。試聴は「この商品について問い合わせる」より依頼下さい。</li>
    <li>商品はCDではなく、アナログ・レコードです。誤って購入した際の返品は致しかねますので、ご留意下さい。</li>
    <li>商品写真は実売品ですが、一部イメージ / 参考写真を含みます。</li>
</ul2>
</div>]]></content></entry><entry><title>MICHAEL FORTUNATI - Danse Avec Moi (The PWL Remix) (c/w) Giochi Di Fortuna</title><link rel="alternate" type="text/html" href="https://clubberz-records.com/?pid=189200159" /><id>https://clubberz-records.com/?pid=189200159</id><issued>2025-11-02T05:11:48+09:00</issued><modified>2025-12-09T18:01:02Z</modified><created>2025-11-01T20:11:48Z</created><summary>
Track Listing:
SIDE A:
Danse Avec Moi (The PWL Remix)
Remixed by Phil Harding at PWL
SIDE B:
i. Danse Avec Moi (Radio Mix)
ii. Giochi Di Fortuna
&amp;#9654; フランスのユーロビート・シンガー、マイケル・フォーチュナティが前作同様に日本市場に向けてリリースし...</summary><author><name>DISCO ≧ CLUB MUSIC SPECIALTY STORE クラバーズ・レコード</name></author><content mode="escaped" type="text/html" xml:lang="ja"><![CDATA[<div class="line_space">
<p class="pad_b_10">Track Listing:</p>
<p>SIDE A:</p>
<p><span class="txt_fwb">Danse Avec Moi</span> (The PWL Remix)</p>
<p class="credit_size mar_l_20">Remixed by Phil Harding at PWL</p>
<p>SIDE B:</p>
<p>i. <span class="txt_fwb">Danse Avec Moi</span> (Radio Mix)<br>
ii. <span class="txt_fwb">Giochi Di Fortuna</span></p>
<p class="pad_v_10">&#9654; フランスのユーロビート・シンガー、マイケル・フォーチュナティが前作同様に日本市場に向けてリリースしたサード・アルバム『レット・ミー・ダウン 〜フォーチュナティズ 3rd.〜』初出の一曲で、これも国内オンリーの企画盤アルバム『ザ・ワールド・リミクスィーズ』用にPWLのフィル・ハーディングをリミックスに起用したキャッチーなダンス・チューン「ダンス・ウィズ・ミー」。12"シングルのカットはUKとマイケルの活動拠点、ベルギーのみに留まりました。結局は英語詞以外を拒絶し勝ちな国内営業DJに敬遠されてしまいましたが、フランス語ではなく英語で歌っていたら、「レット・ミー・ダウン」以来のヒットも望めたであろう残念なナンバーです。</p></div>

<div class="player">
	<span id="arm"></span>
	<ul>
		<li class="artwork">
		</li>
		<li class="info">
			<h4 id="artist">loading</h4>
			<h6 id="album">loading</h6>
			<h5 id="song">loading</h5>
			<div class="button-items">
				<audio id="music" preload="auto">
				</audio>
				<div id="slider">
					<div id="elapsed"></div>
					<div id="buffered"></div>
				</div>
				<div id="timer">0:00</div>
				<div class="controls">
					<span class="expend">
						<svg id="previous" class="step-backward" viewBox="0 0 25 25" xml:space="preserve">
							<g>
								<polygon points="4.9,4.3 9,4.3 9,11.6 21.4,4.3 21.4,20.7 9,13.4 9,20.7 4.9,20.7"/>
							</g>
						</svg>
					</span>
					<svg id="play" viewBox="0 0 25 25" xml:space="preserve">
						<defs>
							<rect x="-49.5" y="-132.9" width="446.4" height="366.4"/>
						</defs>
						<g>
							<circle fill="none" cx="12.5" cy="12.5" r="10.8"/>
							<path fill-rule="evenodd" clip-rule="evenodd" d="M8.7,6.9V18c0,0,0.2,1.4,1.8,0l8.1-4.8c0,0,1.2-1.1-1-2L9.8,6.5 C9.8,6.5,9.1,6,8.7,6.9z"/>
						</g>
					</svg>
					<svg id="pause" viewBox="0 0 25 25" xml:space="preserve">
						<g>
							<rect x="6" y="4.6" width="3.8" height="15.7"/>
							<rect x="14" y="4.6" width="3.9" height="15.7"/>
						</g>
					</svg>
					<span class="expend">
						<svg id="next" class="step-foreward" viewBox="0 0 25 25" xml:space="preserve">
							<g>
								<polygon points="20.7,4.3 16.6,4.3 16.6,11.6 4.3,4.3 4.3,20.7 16.7,13.4 16.6,20.7 20.7,20.7"/>
							</g>
						</svg>
					</span>
					<div class="slider">
						<div class="volume"></div>
						<input type="range" id="volume" min="0" max="1" step="0.01" value="1" />
					</div>
				</div>
			</div>
		</li>
	</ul>
</div>
<script type="text/javascript">
/* Music 
======================================*/
var playlist = [
	{
		"song"    : "Danse Avec Moi",
		"album"   : "(The PWL Remix)",
		"artist"  : "MICHAEL FORTUNATI",
		"artwork" : "https://dl.dropboxusercontent.com/scl/fi/ispedrpie55i1r3s36nvb/mp3-michael_f.png?rlkey=7sgnw7om2wdwcixmsn1niw1pp&st=ua4n283d",
		"mp3"     : "https://dl.dropboxusercontent.com/scl/fi/xkdkarkh0s71r9hrg6jbq/michael_fortunati-danse_avec_moi-pwl.mp3?rlkey=npocs2ltos6jpds3gcpcrhied&st=u1j3uij1"
	}
];

/* General Load / Variables
======================================*/
var rot = 0;
var duration;
var playPercent;
var rotate_timer;
var armrot = -45;
var bufferPercent;
var currentSong = 0;
var arm_rotate_timer;
var arm = document.getElementById("arm");
var next = document.getElementById("next");
var song = document.getElementById("song");
var timer = document.getElementById("timer");
var music = document.getElementById("music");
var album = document.getElementById("album");
var artist = document.getElementById("artist");
var volume = document.getElementById("volume");
var playButton = document.getElementById("play");
var timeline = document.getElementById("slider");
var playhead = document.getElementById("elapsed");
var previous = document.getElementById("previous");
var pauseButton = document.getElementById("pause");
var bufferhead = document.getElementById("buffered");
var artwork = document.getElementsByClassName("artwork")[0];
var timelineWidth = timeline.offsetWidth - playhead.offsetWidth;
var visablevolume = document.getElementsByClassName("volume")[0];

music.addEventListener("ended", _next, false);
music.addEventListener("timeupdate", timeUpdate, false);
music.addEventListener("progress", 	bufferUpdate, false);
load();

/* Functions
======================================*/
function load(){
	pauseButton.style.visibility = "hidden";
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	music.load();
}
function reset(){ 
	rotate_reset = setInterval(function(){ 
		Rotate();
		if(rot == 0){
			clearTimeout(rotate_reset);
		}
	}, 1);
	fireEvent(pauseButton, 'click');
	armrot = -45;
	playhead.style.width = "0px";
	bufferhead.style.width = "0px";
	timer.innerHTML = "0:00";
	music.innerHTML = "";
	currentSong = 0; // set to first song, to stay on last song: currentSong = playlist.length - 1;
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	music.load();
}
function formatSecondsAsTime(secs, format) {
  var hr  = Math.floor(secs / 3600);
  var min = Math.floor((secs - (hr * 3600))/60);
  var sec = Math.floor(secs - (hr * 3600) -  (min * 60));
  if (sec < 10){ 
    sec  = "0" + sec;
  }
  return min + ':' + sec;
}
function timeUpdate() {
	bufferUpdate();
	playPercent = timelineWidth * (music.currentTime / duration);
	playhead.style.width = playPercent + "px";
	timer.innerHTML = formatSecondsAsTime(music.currentTime.toString());
}
function bufferUpdate() {
	bufferPercent = timelineWidth * (music.buffered.end(0) / duration);
	bufferhead.style.width = bufferPercent + "px";
}
function Rotate(){
	if(rot == 361){
		artwork.style.transform = 'rotate(0deg)';
		rot = 0;
	} else {
		artwork.style.transform = 'rotate('+rot+'deg)';
		rot++;
	}
}
function RotateArm(){
	if(armrot > -12){
		arm.style.transform = 'rotate(-38deg)';
		armrot = -45;
	} else {
		arm.style.transform = 'rotate('+armrot+'deg)';
		armrot = armrot + (26 / duration);
	}
}
function fireEvent(el, etype){
	if (el.fireEvent) {
		el.fireEvent('on' + etype);
	} else {
		var evObj = document.createEvent('Events');
		evObj.initEvent(etype, true, false);
		el.dispatchEvent(evObj);
	}
}
function _next(){
	if(currentSong == playlist.length - 1){
		reset();
	} else {
		fireEvent(next, 'click');
	}
}
playButton.onclick = function() {
	music.play();
}
pauseButton.onclick = function() {
	music.pause();
}
music.addEventListener("play", function () {
	playButton.style.visibility = "hidden";
	pause.style.visibility = "visible";
	rotate_timer = setInterval(function(){ 
		if(!music.paused && !music.ended && 0 < music.currentTime){
			Rotate();
		}
	}, 10);	
	if(armrot != -45){
		arm.setAttribute("style", "transition: transform 800ms;");
		arm.style.transform = 'rotate('+armrot+'deg)';
	}
	arm_rotate_timer = setInterval(function(){ 
		if(!music.paused && !music.ended && 0 < music.currentTime){
			if(armrot == -45){
				arm.setAttribute("style", "transition: transform 800ms;");
				arm.style.transform = 'rotate(-38deg)';
				armrot = -38;
			}
			if(arm.style.transition != ""){
				setTimeout(function(){
					arm.style.transition = "";
				}, 1000);
			}
			RotateArm();
		}
	}, 1000);
}, false);
music.addEventListener("pause", function () {
	arm.setAttribute("style", "transition: transform 800ms;");
	arm.style.transform = 'rotate(-45deg)';
	playButton.style.visibility = "visible";
	pause.style.visibility = "hidden";
	clearTimeout(rotate_timer);
	clearTimeout(arm_rotate_timer);
}, false);
next.onclick = function(){
	arm.setAttribute("style", "transition: transform 800ms;");
	arm.style.transform = 'rotate(-45deg)';
	clearTimeout(rotate_timer);
	clearTimeout(arm_rotate_timer);
	playhead.style.width = "0px";
	bufferhead.style.width = "0px";
	timer.innerHTML = "0:00";
	music.innerHTML = "";
	arm.style.transform = 'rotate(-45deg)';
	armrot = -45;
	if((currentSong + 1) == playlist.length){
		currentSong = 0;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	} else {
		currentSong++;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	}
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "transform: rotate("+rot+"deg); background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.load();
	duration = music.duration;
	music.play();
}
previous.onclick = function(){
	arm.setAttribute("style", "transition: transform 800ms;");
	arm.style.transform = 'rotate(-45deg)';
	clearTimeout(rotate_timer);
	clearTimeout(arm_rotate_timer);
	playhead.style.width = "0px";
	bufferhead.style.width = "0px";
	timer.innerHTML = "0:00";
	music.innerHTML = "";
	arm.style.transform = 'rotate(-45deg)';
	armrot = -45;
	if((currentSong - 1) == -1){
		currentSong = playlist.length - 1;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	} else {
		currentSong--;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	}
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "transform: rotate("+rot+"deg); background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.load();
	duration = music.duration;
	music.play();
}
volume.oninput = function(){
	music.volume = volume.value;
	visablevolume.style.width = (80 - 11) * volume.value + "px";
}
music.addEventListener("canplay", function () {
	duration = music.duration;
}, false);
    </script>

<div class="credit_size pad_t_30">
<ul2>
    <li>商品はCDではなく、アナログ・レコードです。誤って購入した際の返品は致しかねますので、ご留意下さい。</li>
    <li>商品写真は実売品ですが、一部イメージ / 参考写真を含みます。</li>
    <li>試聴ファイルは一部ディスコ / クラブでの生ライヴ音源のため、実際の商品とは異なって聞こえる場合があります。あらかじめご了承ください。</li>
</ul2>
</div>]]></content></entry><entry><title>ALEPH - Big Brother (c/w) I&apos;m In Danger</title><link rel="alternate" type="text/html" href="https://clubberz-records.com/?pid=189200157" /><id>https://clubberz-records.com/?pid=189200157</id><issued>2025-11-02T05:08:43+09:00</issued><modified>2025-12-09T18:01:02Z</modified><created>2025-11-01T20:08:43Z</created><summary>
Track Listing:
SIDE A:
Big Brother (Extended Version) (6:35)
SIDE B:
I&apos;m In Danger (Extended Version) (5:46)
&amp;#9654; &apos;80年代のイタロディスコ・ミュージックに輝かしい功績を残した2人組、アレフの本国4th.シングルと5th.シングルを両面にカットした日本盤だけの...</summary><author><name>DISCO ≧ CLUB MUSIC SPECIALTY STORE クラバーズ・レコード</name></author><content mode="escaped" type="text/html" xml:lang="ja"><![CDATA[<div class="line_space">
<p class="pad_b_10">Track Listing:</p>
<p>SIDE A:</p>
<p><span class="txt_fwb">Big Brother</span> (Extended Version) (6:35)</p>
<p>SIDE B:</p>
<p><span class="txt_fwb">I'm In Danger</span> (Extended Version) (5:46)</p>
<p class="pad_v_10">&#9654; '80年代のイタロディスコ・ミュージックに輝かしい功績を残した2人組、アレフの本国4th.シングルと5th.シングルを両面にカットした日本盤だけのカップリング盤。「フライ・トゥ・ミー」「ファイアー・オン・ザ・ムーン」と記録的連続ヒットのあとにリリースされた「アイム・イン・デンジャー」は全く振るわず仕舞でしたが、続く「ビッグ・ブラザー」はそれらのサウンド・スタイルを踏襲したアグレッシヴ・サウンドでスマッシュ・ヒットに沸きました。</p></div>

<div class="position">
<script type="text/javascript">
         $(function(){
            $("#audio_player").jPlayer({
               ready: function(){
                  $(this).jPlayer("setMedia", {
                     mp3: "https://dl.dropboxusercontent.com/scl/fi/evqmvhljxevrjlq605c9f/aleph-bigbrother-maha.mp3?rlkey=awjgdp628dzt1zqa8k8cubkuy&st=7ndr2p03",
                  }).jPlayer("stop");
               },
               preload: "auto",
               volume: 0.5,
               muted: false,
               backgroundColor: "#ff6699",
               errorAlerts:false,
               warningAlerts:false,
               ended: function (event) {
                  //$(this).jPlayer("play");
               },
               swfPath: "https://dl.dropboxusercontent.com/s/d1e24mbhxxjvrvu/jquery.jplayer.swf",
               solution: 'html, flash',
               supplied: "mp3, oga",
               wmode: "window"
            })
            .bind($.jPlayer.event.play, function() {
               $(this).jPlayer("pauseOthers");
            });
         });
      </script>
<div id="audio_player" class="jp-jplayer" />
<div id="jp_container_1" class="jp-audio">
   <div class="jp-type-single">
      <div class="jp-gui jp-interface">
         <ul class="jp-controls">
            <li><a href="#" class="jp-play" tabindex="1">play</a></li>
            <li><a href="#" class="jp-pause" tabindex="1">pause</a></li>
            <li><a href="#" class="jp-stop" tabindex="1">stop</a></li>
            <li><a href="#" class="jp-mute" tabindex="1" title="mute">mute</a></li>
            <li><a href="#" class="jp-unmute" tabindex="1" title="unmute">unmute</a></li>
            <li><a href="#" class="jp-volume-max" tabindex="1" title="max volume">max volume</a></li>
         </ul>
         <div class="jp-progress">
            <div class="jp-seek-bar">
               <div class="jp-play-bar" />
            </div>
         </div>
         <div class="jp-volume-bar">
            <div class="jp-volume-bar-value" />
         </div>
         <div class="jp-time-holder">
            <div class="jp-current-time" />
            <div class="jp-duration" />
            <ul class="jp-toggles">
               <li><a href="#" class="jp-repeat" tabindex="1" title="repeat">repeat</a></li>
               <li><a href="#" class="jp-repeat-off" tabindex="1" title="repeat off">repeat off</a></li>
            </ul>
         </div>
      </div>
      <div class="jp-title">
         <ul>
         <li>From a Real Live Show in 1987 at Azabu-Juban MAHARAJA</li>
         </ul>
      </div>
      <div class="jp-no-solution">
         <span>Update Required</span>
         To play the media you will need to either update your browser to a recent version or update your <a href="https://get.adobe.com/flashplayer/"target="_blank">Flash plugin</a>.
      </div>
   </div>
</div>
</div>

<div class="credit_size pad_t_30">
<ul2>
    <li>商品はCDではなく、アナログ・レコードです。誤って購入した際の返品は致しかねますので、ご留意下さい。</li>
    <li>商品写真は実売品ですが、一部イメージ / 参考写真を含みます。</li>
    <li>試聴ファイルは一部ディスコ / クラブでの生ライヴ音源のため、実際の商品とは異なって聞こえる場合があります。あらかじめご了承ください。</li>
</ul2>
</div>]]></content></entry><entry><title>M.C. MIKER G - Show &apos;M The Bass  </title><link rel="alternate" type="text/html" href="https://clubberz-records.com/?pid=189116786" /><id>https://clubberz-records.com/?pid=189116786</id><issued>2025-10-27T05:09:09+09:00</issued><modified>2025-12-09T18:02:36Z</modified><created>2025-10-26T20:09:09Z</created><summary>
Track Listing:
LATO A:
Show &apos;M The Bass (6:43)
LATO B:
1. Show &apos;M The Bass (Single Version) (3:29)
2. Show &apos;M The Bass (Dub Version) (4:39)
3. Show &apos;M The Bass (Accappella Version) (1:20)
Mixed by Phil Wilde and Theo De Vitte
&amp;#9654; 名作「ホリデイ・...</summary><author><name>DISCO ≧ CLUB MUSIC SPECIALTY STORE クラバーズ・レコード</name></author><content mode="escaped" type="text/html" xml:lang="ja"><![CDATA[<div class="line_space">
<p class="pad_b_10">Track Listing:</p>
<p>LATO A:</p>
<p><span class="txt_fwb">Show 'M The Bass</span> (6:43)</p>
<p>LATO B:</p>
<p>1. <span class="txt_fwb">Show 'M The Bass</span> (Single Version) (3:29)<br>
2. <span class="txt_fwb">Show 'M The Bass</span> (Dub Version) (4:39)<br>
3. <span class="txt_fwb">Show 'M The Bass</span> (Accappella Version) (1:20)</p>
<p class="pad_t_10 credit_size mar_l_20">Mixed by Phil Wilde and Theo De Vitte</p>
<p class="pad_v_10">&#9654; 名作「ホリデイ・ラップ」でデビューしたオランダのラッパー、MCマイカーGの第4弾シングルは、イタロ/ユーロ・ハウス全盛期の一作で、ラップ系ブームにもあやかって特にマハラジャ系列ディスコで人気を博したミーハー受け抜群のヒップハウス・チューン。いつもの軽妙なラップに女性コーラスがポジティヴに絡み合いデュエットするダンス・オリエンテッドな一作です。</p></div>

<div class="position">
<script type="text/javascript">
         $(function(){
            $("#audio_player").jPlayer({
               ready: function(){
                  $(this).jPlayer("setMedia", {
                     mp3: "https://dl.dropboxusercontent.com/scl/fi/aggvr1jqfse7yhiszsgrj/mc_miker_g-maha.mp3?rlkey=dw1sk5sb5gc00hzyufip7f6pj&st=s8u9yfno",
                  }).jPlayer("stop");
               },
               preload: "auto",
               volume: 0.5,
               muted: false,
               backgroundColor: "#ff6699",
               errorAlerts:false,
               warningAlerts:false,
               ended: function (event) {
                  //$(this).jPlayer("play");
               },
               swfPath: "https://dl.dropboxusercontent.com/s/d1e24mbhxxjvrvu/jquery.jplayer.swf",
               solution: 'html, flash',
               supplied: "mp3, oga",
               wmode: "window"
            })
            .bind($.jPlayer.event.play, function() {
               $(this).jPlayer("pauseOthers");
            });
         });
      </script>
<div id="audio_player" class="jp-jplayer" />
<div id="jp_container_1" class="jp-audio">
   <div class="jp-type-single">
      <div class="jp-gui jp-interface">
         <ul class="jp-controls">
            <li><a href="#" class="jp-play" tabindex="1">play</a></li>
            <li><a href="#" class="jp-pause" tabindex="1">pause</a></li>
            <li><a href="#" class="jp-stop" tabindex="1">stop</a></li>
            <li><a href="#" class="jp-mute" tabindex="1" title="mute">mute</a></li>
            <li><a href="#" class="jp-unmute" tabindex="1" title="unmute">unmute</a></li>
            <li><a href="#" class="jp-volume-max" tabindex="1" title="max volume">max volume</a></li>
         </ul>
         <div class="jp-progress">
            <div class="jp-seek-bar">
               <div class="jp-play-bar" />
            </div>
         </div>
         <div class="jp-volume-bar">
            <div class="jp-volume-bar-value" />
         </div>
         <div class="jp-time-holder">
            <div class="jp-current-time" />
            <div class="jp-duration" />
            <ul class="jp-toggles">
               <li><a href="#" class="jp-repeat" tabindex="1" title="repeat">repeat</a></li>
               <li><a href="#" class="jp-repeat-off" tabindex="1" title="repeat off">repeat off</a></li>
            </ul>
         </div>
      </div>
      <div class="jp-title">
         <ul>
         <li>From a Real Live Show in 1991 at Azabu-Juban MAHARAJA</li>
         </ul>
      </div>
      <div class="jp-no-solution">
         <span>Update Required</span>
         To play the media you will need to either update your browser to a recent version or update your <a href="https://get.adobe.com/flashplayer/"target="_blank">Flash plugin</a>.
      </div>
   </div>
</div>
</div>

<div class="credit_size pad_t_30">
<ul2>
    <li>商品はCDではなく、アナログ・レコードです。誤って購入した際の返品は致しかねますので、ご留意下さい。</li>
    <li>商品写真は実売品ですが、一部イメージ / 参考写真を含みます。</li>
    <li>試聴ファイルは一部ディスコ / クラブでの生ライヴ音源のため、実際の商品とは異なって聞こえる場合があります。あらかじめご了承ください。</li>
</ul2>
</div>]]></content></entry><entry><title>TOPO &amp; ROBY - Set On Fire</title><link rel="alternate" type="text/html" href="https://clubberz-records.com/?pid=189116631" /><id>https://clubberz-records.com/?pid=189116631</id><issued>2025-10-27T00:18:33+09:00</issued><modified>2025-12-09T18:01:02Z</modified><created>2025-10-26T15:18:33Z</created><summary>
Track Listing:
SIDE A:
Set On Fire (Extended Version) (6:00)
SIDE B:
1. Set On Fire (Radio Version) (3:00)
2. Set On Fire (Instrumental) (3:40)
Original Licensed From Disco Magic-Italy
&amp;#9654; アメリカのアンドロボット社が主に教育市場に向けて設計したロ...</summary><author><name>DISCO ≧ CLUB MUSIC SPECIALTY STORE クラバーズ・レコード</name></author><content mode="escaped" type="text/html" xml:lang="ja"><![CDATA[<div class="line_space">
<p class="pad_b_10">Track Listing:</p>
<p>SIDE A:</p>
<p><span class="txt_fwb">Set On Fire</span> (Extended Version) (6:00)</p>
<p>SIDE B:</p>
<p>1. <span class="txt_fwb">Set On Fire</span> (Radio Version) (3:00)<br>
2. <span class="txt_fwb">Set On Fire</span> (Instrumental) (3:40)</p>
<p class="pad_t_10 credit_size mar_l_20">Original Licensed From Disco Magic-Italy</p>
<p class="pad_v_10">&#9654; アメリカのアンドロボット社が主に教育市場に向けて設計したロボット、トポと女性ヴォーカリスト、ロビーによる異色のイタロ・ディスコ・プロジェクトのアーティスト・ネームだけを引き継いだタイム・レコードが、クララ・モローニと並び、クィーン・オブ・イタロ・ディスコの名声を欲しいままにするユーロビート・シンガー、アントネラ・ペペをヴォーカルに迎えた傑作ユーロビート。哀愁に満ち溢れたエモいメロディは他の追随を許しません。国内アナログ・リリース最終年の1989年にリリースされたレアリティ溢れる日本盤12"。宣材写真を散りばめたこの盤だけのジャケット・デザインもあって、世界中のイタロ・ディスコ・コレクターから羨望の眼差しを集めるコレクターズ・アイテムでもあります。当時、国内ディスコでは全く当たりませんでしたが、日本人以上に“哀愁”のメロディ・ラインを好む国民性が特異な隣国コリアでは大人気。晩年、K-POPグループがこの曲のサビを取り入れた半パクリ・ソングも生まれています。</p></div>

<div class="player">
	<span id="arm"></span>
	<ul>
		<li class="artwork">
		</li>
		<li class="info">
			<h4 id="artist">loading</h4>
			<h6 id="album">loading</h6>
			<h5 id="song">loading</h5>
			<div class="button-items">
				<audio id="music" preload="auto">
				</audio>
				<div id="slider">
					<div id="elapsed"></div>
					<div id="buffered"></div>
				</div>
				<div id="timer">0:00</div>
				<div class="controls">
					<span class="expend">
						<svg id="previous" class="step-backward" viewBox="0 0 25 25" xml:space="preserve">
							<g>
								<polygon points="4.9,4.3 9,4.3 9,11.6 21.4,4.3 21.4,20.7 9,13.4 9,20.7 4.9,20.7"/>
							</g>
						</svg>
					</span>
					<svg id="play" viewBox="0 0 25 25" xml:space="preserve">
						<defs>
							<rect x="-49.5" y="-132.9" width="446.4" height="366.4"/>
						</defs>
						<g>
							<circle fill="none" cx="12.5" cy="12.5" r="10.8"/>
							<path fill-rule="evenodd" clip-rule="evenodd" d="M8.7,6.9V18c0,0,0.2,1.4,1.8,0l8.1-4.8c0,0,1.2-1.1-1-2L9.8,6.5 C9.8,6.5,9.1,6,8.7,6.9z"/>
						</g>
					</svg>
					<svg id="pause" viewBox="0 0 25 25" xml:space="preserve">
						<g>
							<rect x="6" y="4.6" width="3.8" height="15.7"/>
							<rect x="14" y="4.6" width="3.9" height="15.7"/>
						</g>
					</svg>
					<span class="expend">
						<svg id="next" class="step-foreward" viewBox="0 0 25 25" xml:space="preserve">
							<g>
								<polygon points="20.7,4.3 16.6,4.3 16.6,11.6 4.3,4.3 4.3,20.7 16.7,13.4 16.6,20.7 20.7,20.7"/>
							</g>
						</svg>
					</span>
					<div class="slider">
						<div class="volume"></div>
						<input type="range" id="volume" min="0" max="1" step="0.01" value="1" />
					</div>
				</div>
			</div>
		</li>
	</ul>
</div>
<script type="text/javascript">
/* Music 
======================================*/
var playlist = [
	{
		"song"    : "Set On Fire",
		"album"   : "",
		"artist"  : "TOPO & ROBY",
		"artwork" : "https://dl.dropboxusercontent.com/scl/fi/xd6bf9v05aaqr3zswjij9/mp3-topo_roby.png?rlkey=kxeq1iy59l93fm9bc0g6qd3mg&st=5evsnub9",
		"mp3"     : "https://dl.dropboxusercontent.com/scl/fi/sm9rer9rrahbn763dp4pq/topo_roby.mp3?rlkey=qpdtyixbm6riblvnls6xjc08r&st=rgfq9is2"
	}
];

/* General Load / Variables
======================================*/
var rot = 0;
var duration;
var playPercent;
var rotate_timer;
var armrot = -45;
var bufferPercent;
var currentSong = 0;
var arm_rotate_timer;
var arm = document.getElementById("arm");
var next = document.getElementById("next");
var song = document.getElementById("song");
var timer = document.getElementById("timer");
var music = document.getElementById("music");
var album = document.getElementById("album");
var artist = document.getElementById("artist");
var volume = document.getElementById("volume");
var playButton = document.getElementById("play");
var timeline = document.getElementById("slider");
var playhead = document.getElementById("elapsed");
var previous = document.getElementById("previous");
var pauseButton = document.getElementById("pause");
var bufferhead = document.getElementById("buffered");
var artwork = document.getElementsByClassName("artwork")[0];
var timelineWidth = timeline.offsetWidth - playhead.offsetWidth;
var visablevolume = document.getElementsByClassName("volume")[0];

music.addEventListener("ended", _next, false);
music.addEventListener("timeupdate", timeUpdate, false);
music.addEventListener("progress", 	bufferUpdate, false);
load();

/* Functions
======================================*/
function load(){
	pauseButton.style.visibility = "hidden";
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	music.load();
}
function reset(){ 
	rotate_reset = setInterval(function(){ 
		Rotate();
		if(rot == 0){
			clearTimeout(rotate_reset);
		}
	}, 1);
	fireEvent(pauseButton, 'click');
	armrot = -45;
	playhead.style.width = "0px";
	bufferhead.style.width = "0px";
	timer.innerHTML = "0:00";
	music.innerHTML = "";
	currentSong = 0; // set to first song, to stay on last song: currentSong = playlist.length - 1;
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	music.load();
}
function formatSecondsAsTime(secs, format) {
  var hr  = Math.floor(secs / 3600);
  var min = Math.floor((secs - (hr * 3600))/60);
  var sec = Math.floor(secs - (hr * 3600) -  (min * 60));
  if (sec < 10){ 
    sec  = "0" + sec;
  }
  return min + ':' + sec;
}
function timeUpdate() {
	bufferUpdate();
	playPercent = timelineWidth * (music.currentTime / duration);
	playhead.style.width = playPercent + "px";
	timer.innerHTML = formatSecondsAsTime(music.currentTime.toString());
}
function bufferUpdate() {
	bufferPercent = timelineWidth * (music.buffered.end(0) / duration);
	bufferhead.style.width = bufferPercent + "px";
}
function Rotate(){
	if(rot == 361){
		artwork.style.transform = 'rotate(0deg)';
		rot = 0;
	} else {
		artwork.style.transform = 'rotate('+rot+'deg)';
		rot++;
	}
}
function RotateArm(){
	if(armrot > -12){
		arm.style.transform = 'rotate(-38deg)';
		armrot = -45;
	} else {
		arm.style.transform = 'rotate('+armrot+'deg)';
		armrot = armrot + (26 / duration);
	}
}
function fireEvent(el, etype){
	if (el.fireEvent) {
		el.fireEvent('on' + etype);
	} else {
		var evObj = document.createEvent('Events');
		evObj.initEvent(etype, true, false);
		el.dispatchEvent(evObj);
	}
}
function _next(){
	if(currentSong == playlist.length - 1){
		reset();
	} else {
		fireEvent(next, 'click');
	}
}
playButton.onclick = function() {
	music.play();
}
pauseButton.onclick = function() {
	music.pause();
}
music.addEventListener("play", function () {
	playButton.style.visibility = "hidden";
	pause.style.visibility = "visible";
	rotate_timer = setInterval(function(){ 
		if(!music.paused && !music.ended && 0 < music.currentTime){
			Rotate();
		}
	}, 10);	
	if(armrot != -45){
		arm.setAttribute("style", "transition: transform 800ms;");
		arm.style.transform = 'rotate('+armrot+'deg)';
	}
	arm_rotate_timer = setInterval(function(){ 
		if(!music.paused && !music.ended && 0 < music.currentTime){
			if(armrot == -45){
				arm.setAttribute("style", "transition: transform 800ms;");
				arm.style.transform = 'rotate(-38deg)';
				armrot = -38;
			}
			if(arm.style.transition != ""){
				setTimeout(function(){
					arm.style.transition = "";
				}, 1000);
			}
			RotateArm();
		}
	}, 1000);
}, false);
music.addEventListener("pause", function () {
	arm.setAttribute("style", "transition: transform 800ms;");
	arm.style.transform = 'rotate(-45deg)';
	playButton.style.visibility = "visible";
	pause.style.visibility = "hidden";
	clearTimeout(rotate_timer);
	clearTimeout(arm_rotate_timer);
}, false);
next.onclick = function(){
	arm.setAttribute("style", "transition: transform 800ms;");
	arm.style.transform = 'rotate(-45deg)';
	clearTimeout(rotate_timer);
	clearTimeout(arm_rotate_timer);
	playhead.style.width = "0px";
	bufferhead.style.width = "0px";
	timer.innerHTML = "0:00";
	music.innerHTML = "";
	arm.style.transform = 'rotate(-45deg)';
	armrot = -45;
	if((currentSong + 1) == playlist.length){
		currentSong = 0;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	} else {
		currentSong++;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	}
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "transform: rotate("+rot+"deg); background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.load();
	duration = music.duration;
	music.play();
}
previous.onclick = function(){
	arm.setAttribute("style", "transition: transform 800ms;");
	arm.style.transform = 'rotate(-45deg)';
	clearTimeout(rotate_timer);
	clearTimeout(arm_rotate_timer);
	playhead.style.width = "0px";
	bufferhead.style.width = "0px";
	timer.innerHTML = "0:00";
	music.innerHTML = "";
	arm.style.transform = 'rotate(-45deg)';
	armrot = -45;
	if((currentSong - 1) == -1){
		currentSong = playlist.length - 1;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	} else {
		currentSong--;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	}
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "transform: rotate("+rot+"deg); background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.load();
	duration = music.duration;
	music.play();
}
volume.oninput = function(){
	music.volume = volume.value;
	visablevolume.style.width = (80 - 11) * volume.value + "px";
}
music.addEventListener("canplay", function () {
	duration = music.duration;
}, false);
    </script>

<div class="credit_size pad_t_30">
<ul2>
    <li>商品はCDではなく、アナログ・レコードです。誤って購入した際の返品は致しかねますので、ご留意下さい。</li>
    <li>商品写真は実売品ですが、一部イメージ / 参考写真を含みます。</li>
    <li>試聴ファイルは一部ディスコ / クラブでの生ライヴ音源のため、実際の商品とは異なって聞こえる場合があります。あらかじめご了承ください。</li>
</ul2>
</div>]]></content></entry><entry><title>DAYL - More, More, More</title><link rel="alternate" type="text/html" href="https://clubberz-records.com/?pid=189116626" /><id>https://clubberz-records.com/?pid=189116626</id><issued>2025-10-27T00:13:50+09:00</issued><modified>2025-12-09T18:01:01Z</modified><created>2025-10-26T15:13:50Z</created><summary>
Track Listing:
SIDE A:
More, More, More (6:10)
SIDE B:
One More Chance (5:05)
&amp;#9654; 自身もティナ・チャールズ「恋のファイアー」やホット・ブラッド「ソウル・ドラキュラ」といった第一次ディスコ・ブームを彩ったオールディーズ・ナンバーをイタロ・ディスコで...</summary><author><name>DISCO ≧ CLUB MUSIC SPECIALTY STORE クラバーズ・レコード</name></author><content mode="escaped" type="text/html" xml:lang="ja"><![CDATA[<div class="line_space">
<p class="pad_b_10">Track Listing:</p>
<p>SIDE A:</p>
<p><span class="txt_fwb">More, More, More</span> (6:10)</p>
<p>SIDE B:</p>
<p><span class="txt_fwb">One More Chance</span> (5:05)</p>
<p class="pad_v_10">&#9654; 自身もティナ・チャールズ「恋のファイアー」やホット・ブラッド「ソウル・ドラキュラ」といった第一次ディスコ・ブームを彩ったオールディーズ・ナンバーをイタロ・ディスコでカヴァーしたプロデューサー・デュオ、エヴァンス&フィシャーが、ニューヨークのディスコ・バンド、アンドレア・トゥルー・コネクションの名作をリスペクトをいっぱいに込めて焼き直した一作。歌うデェール(ダニエラ)はナイトクラブ『ATRIUM』のマネージャーも兼任していたイタリアはヴェローナ出身の令嬢シンガー。当時のイタロ・ディスコ界隈の隆盛が伺えるゴージャスな一作です。当時、キャニオン・レコードから国内発売も成されましたが、業界内での力関係もあり、残念ながら現場でのオンエアには至りませんでした･･･ ジャケット付きイタリー・オリジナル原盤でどうぞ！</p></div>

<div class="player">
	<span id="arm"></span>
	<ul>
		<li class="artwork">
		</li>
		<li class="info">
			<h4 id="artist">loading</h4>
			<h6 id="album">loading</h6>
			<h5 id="song">loading</h5>
			<div class="button-items">
				<audio id="music" preload="auto">
				</audio>
				<div id="slider">
					<div id="elapsed"></div>
					<div id="buffered"></div>
				</div>
				<div id="timer">0:00</div>
				<div class="controls">
					<span class="expend">
						<svg id="previous" class="step-backward" viewBox="0 0 25 25" xml:space="preserve">
							<g>
								<polygon points="4.9,4.3 9,4.3 9,11.6 21.4,4.3 21.4,20.7 9,13.4 9,20.7 4.9,20.7"/>
							</g>
						</svg>
					</span>
					<svg id="play" viewBox="0 0 25 25" xml:space="preserve">
						<defs>
							<rect x="-49.5" y="-132.9" width="446.4" height="366.4"/>
						</defs>
						<g>
							<circle fill="none" cx="12.5" cy="12.5" r="10.8"/>
							<path fill-rule="evenodd" clip-rule="evenodd" d="M8.7,6.9V18c0,0,0.2,1.4,1.8,0l8.1-4.8c0,0,1.2-1.1-1-2L9.8,6.5 C9.8,6.5,9.1,6,8.7,6.9z"/>
						</g>
					</svg>
					<svg id="pause" viewBox="0 0 25 25" xml:space="preserve">
						<g>
							<rect x="6" y="4.6" width="3.8" height="15.7"/>
							<rect x="14" y="4.6" width="3.9" height="15.7"/>
						</g>
					</svg>
					<span class="expend">
						<svg id="next" class="step-foreward" viewBox="0 0 25 25" xml:space="preserve">
							<g>
								<polygon points="20.7,4.3 16.6,4.3 16.6,11.6 4.3,4.3 4.3,20.7 16.7,13.4 16.6,20.7 20.7,20.7"/>
							</g>
						</svg>
					</span>
					<div class="slider">
						<div class="volume"></div>
						<input type="range" id="volume" min="0" max="1" step="0.01" value="1" />
					</div>
				</div>
			</div>
		</li>
	</ul>
</div>
<script type="text/javascript">
/* Music 
======================================*/
var playlist = [
	{
		"song"    : "More, More, More",
		"album"   : "",
		"artist"  : "DAYL",
		"artwork" : "https://dl.dropboxusercontent.com/scl/fi/5g7eyvejpld4kwrm7vuv7/mp3-dayl.png?rlkey=k72nrpuho957lh8zjqg60ckdi&st=7lz007kv",
		"mp3"     : "https://dl.dropboxusercontent.com/scl/fi/ftprx81vnp5he1utxyho5/dayl.mp3?rlkey=d97rh2fyp1t8htiuz1f8zzakc&st=593m6ynz"
	}
];

/* General Load / Variables
======================================*/
var rot = 0;
var duration;
var playPercent;
var rotate_timer;
var armrot = -45;
var bufferPercent;
var currentSong = 0;
var arm_rotate_timer;
var arm = document.getElementById("arm");
var next = document.getElementById("next");
var song = document.getElementById("song");
var timer = document.getElementById("timer");
var music = document.getElementById("music");
var album = document.getElementById("album");
var artist = document.getElementById("artist");
var volume = document.getElementById("volume");
var playButton = document.getElementById("play");
var timeline = document.getElementById("slider");
var playhead = document.getElementById("elapsed");
var previous = document.getElementById("previous");
var pauseButton = document.getElementById("pause");
var bufferhead = document.getElementById("buffered");
var artwork = document.getElementsByClassName("artwork")[0];
var timelineWidth = timeline.offsetWidth - playhead.offsetWidth;
var visablevolume = document.getElementsByClassName("volume")[0];

music.addEventListener("ended", _next, false);
music.addEventListener("timeupdate", timeUpdate, false);
music.addEventListener("progress", 	bufferUpdate, false);
load();

/* Functions
======================================*/
function load(){
	pauseButton.style.visibility = "hidden";
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	music.load();
}
function reset(){ 
	rotate_reset = setInterval(function(){ 
		Rotate();
		if(rot == 0){
			clearTimeout(rotate_reset);
		}
	}, 1);
	fireEvent(pauseButton, 'click');
	armrot = -45;
	playhead.style.width = "0px";
	bufferhead.style.width = "0px";
	timer.innerHTML = "0:00";
	music.innerHTML = "";
	currentSong = 0; // set to first song, to stay on last song: currentSong = playlist.length - 1;
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	music.load();
}
function formatSecondsAsTime(secs, format) {
  var hr  = Math.floor(secs / 3600);
  var min = Math.floor((secs - (hr * 3600))/60);
  var sec = Math.floor(secs - (hr * 3600) -  (min * 60));
  if (sec < 10){ 
    sec  = "0" + sec;
  }
  return min + ':' + sec;
}
function timeUpdate() {
	bufferUpdate();
	playPercent = timelineWidth * (music.currentTime / duration);
	playhead.style.width = playPercent + "px";
	timer.innerHTML = formatSecondsAsTime(music.currentTime.toString());
}
function bufferUpdate() {
	bufferPercent = timelineWidth * (music.buffered.end(0) / duration);
	bufferhead.style.width = bufferPercent + "px";
}
function Rotate(){
	if(rot == 361){
		artwork.style.transform = 'rotate(0deg)';
		rot = 0;
	} else {
		artwork.style.transform = 'rotate('+rot+'deg)';
		rot++;
	}
}
function RotateArm(){
	if(armrot > -12){
		arm.style.transform = 'rotate(-38deg)';
		armrot = -45;
	} else {
		arm.style.transform = 'rotate('+armrot+'deg)';
		armrot = armrot + (26 / duration);
	}
}
function fireEvent(el, etype){
	if (el.fireEvent) {
		el.fireEvent('on' + etype);
	} else {
		var evObj = document.createEvent('Events');
		evObj.initEvent(etype, true, false);
		el.dispatchEvent(evObj);
	}
}
function _next(){
	if(currentSong == playlist.length - 1){
		reset();
	} else {
		fireEvent(next, 'click');
	}
}
playButton.onclick = function() {
	music.play();
}
pauseButton.onclick = function() {
	music.pause();
}
music.addEventListener("play", function () {
	playButton.style.visibility = "hidden";
	pause.style.visibility = "visible";
	rotate_timer = setInterval(function(){ 
		if(!music.paused && !music.ended && 0 < music.currentTime){
			Rotate();
		}
	}, 10);	
	if(armrot != -45){
		arm.setAttribute("style", "transition: transform 800ms;");
		arm.style.transform = 'rotate('+armrot+'deg)';
	}
	arm_rotate_timer = setInterval(function(){ 
		if(!music.paused && !music.ended && 0 < music.currentTime){
			if(armrot == -45){
				arm.setAttribute("style", "transition: transform 800ms;");
				arm.style.transform = 'rotate(-38deg)';
				armrot = -38;
			}
			if(arm.style.transition != ""){
				setTimeout(function(){
					arm.style.transition = "";
				}, 1000);
			}
			RotateArm();
		}
	}, 1000);
}, false);
music.addEventListener("pause", function () {
	arm.setAttribute("style", "transition: transform 800ms;");
	arm.style.transform = 'rotate(-45deg)';
	playButton.style.visibility = "visible";
	pause.style.visibility = "hidden";
	clearTimeout(rotate_timer);
	clearTimeout(arm_rotate_timer);
}, false);
next.onclick = function(){
	arm.setAttribute("style", "transition: transform 800ms;");
	arm.style.transform = 'rotate(-45deg)';
	clearTimeout(rotate_timer);
	clearTimeout(arm_rotate_timer);
	playhead.style.width = "0px";
	bufferhead.style.width = "0px";
	timer.innerHTML = "0:00";
	music.innerHTML = "";
	arm.style.transform = 'rotate(-45deg)';
	armrot = -45;
	if((currentSong + 1) == playlist.length){
		currentSong = 0;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	} else {
		currentSong++;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	}
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "transform: rotate("+rot+"deg); background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.load();
	duration = music.duration;
	music.play();
}
previous.onclick = function(){
	arm.setAttribute("style", "transition: transform 800ms;");
	arm.style.transform = 'rotate(-45deg)';
	clearTimeout(rotate_timer);
	clearTimeout(arm_rotate_timer);
	playhead.style.width = "0px";
	bufferhead.style.width = "0px";
	timer.innerHTML = "0:00";
	music.innerHTML = "";
	arm.style.transform = 'rotate(-45deg)';
	armrot = -45;
	if((currentSong - 1) == -1){
		currentSong = playlist.length - 1;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	} else {
		currentSong--;
		music.innerHTML = '<source src="'+playlist[currentSong]['mp3']+'" type="audio/mp3">';
	}
	song.innerHTML = playlist[currentSong]['song'];
	song.title = playlist[currentSong]['song'];
	album.innerHTML = playlist[currentSong]['album'];
	album.title = playlist[currentSong]['album'];
	artist.innerHTML = playlist[currentSong]['artist'];
	artist.title = playlist[currentSong]['artist'];
	artwork.setAttribute("style", "transform: rotate("+rot+"deg); background:url(https://img15.shop-pro.jp/PA01083/866/etc/vinyl-image.png), url('"+playlist[currentSong]['artwork']+"') center no-repeat;");
	music.load();
	duration = music.duration;
	music.play();
}
volume.oninput = function(){
	music.volume = volume.value;
	visablevolume.style.width = (80 - 11) * volume.value + "px";
}
music.addEventListener("canplay", function () {
	duration = music.duration;
}, false);
    </script>

<div class="credit_size pad_t_30">
<ul2>
    <li>商品はCDではなく、アナログ・レコードです。誤って購入した際の返品は致しかねますので、ご留意下さい。</li>
    <li>商品写真は実売品ですが、一部イメージ / 参考写真を含みます。</li>
    <li>試聴ファイルは一部ディスコ / クラブでの生ライヴ音源のため、実際の商品とは異なって聞こえる場合があります。あらかじめご了承ください。</li>
</ul2>
</div>]]></content></entry><entry><title>TINA GABRIEL - If You Say You Love Me</title><link rel="alternate" type="text/html" href="https://clubberz-records.com/?pid=189084735" /><id>https://clubberz-records.com/?pid=189084735</id><issued>2025-10-24T00:28:50+09:00</issued><modified>2025-12-09T18:01:01Z</modified><created>2025-10-23T15:28:50Z</created><summary>
Track Listing:
SIDE A:
If You Say You Love Me (Extended Version) (7:10)
SIDE B:
If You Say You Love Me (Instrumental Version) (6:45)
Mixed by S. Cundari
Executive Producer: A. Zanni
&amp;#9654; イタリアのテレビ司会者や女優の顔も持つロンドン生まれのイタロ...</summary><author><name>DISCO ≧ CLUB MUSIC SPECIALTY STORE クラバーズ・レコード</name></author><content mode="escaped" type="text/html" xml:lang="ja"><![CDATA[<div class="line_space">
<p class="pad_b_10">Track Listing:</p>
<p>SIDE A:</p>
<p><span class="txt_fwb">If You Say You Love Me</span> (Extended Version) (7:10)</p>
<p>SIDE B:</p>
<p><span class="txt_fwb">If You Say You Love Me</span> (Instrumental Version) (6:45)</p>
<p class="pad_t_10 credit_size mar_l_20">Mixed by S. Cundari<br>
Executive Producer: A. Zanni</p>
<p class="pad_v_10">&#9654; イタリアのテレビ司会者や女優の顔も持つロンドン生まれのイタロ・ディスコ・シンガー、ガブリエラ・ルンギが、G.J. ルンギ、ジェニファー・マンデーとしてリリースを重ねたあと、イタロ・ディスコの名門、メモリー・レコードからティナ・ガブリエル名義で放ったユーロビート・ミュージック。制作はマイナー中心ながら良質なイタロ・ディスコ作品を量産したジュリオ・フェラーリン。PWLのイミテーション・サウンドにちょっと頼りない音程のロリ系ヴォーカルを乗せた、もっと正確にはカイリー・ミノーグ「ラッキー・ラブ」のパクリ物です。当時、全国的にはほぼスカされたノンヒット・ソングですが、聖地・東京マハラジャで堂々のオンエア・チャートイン。マイナーの域は出ないものの、キング・レコードから国内発売もされたユーロビート絶頂期の忘れちゃいけない一作です。</p></div>

<div class="position">
<script type="text/javascript">
         $(function(){
            $("#audio_player").jPlayer({
               ready: function(){
                  $(this).jPlayer("setMedia", {
                     mp3: "https://dl.dropboxusercontent.com/s/v7ju30x6jvlriqj/tina_g.mp3",
                  }).jPlayer("stop");
               },
               preload: "auto",
               volume: 0.5,
               muted: false,
               backgroundColor: "#ff6699",
               errorAlerts:false,
               warningAlerts:false,
               ended: function (event) {
                  //$(this).jPlayer("play");
               },
               swfPath: "https://dl.dropboxusercontent.com/s/d1e24mbhxxjvrvu/jquery.jplayer.swf",
               solution: 'html, flash',
               supplied: "mp3, oga",
               wmode: "window"
            })
            .bind($.jPlayer.event.play, function() {
               $(this).jPlayer("pauseOthers");
            });
         });
      </script>
<div id="audio_player" class="jp-jplayer" />
<div id="jp_container_1" class="jp-audio">
   <div class="jp-type-single">
      <div class="jp-gui jp-interface">
         <ul class="jp-controls">
            <li><a href="#" class="jp-play" tabindex="1">play</a></li>
            <li><a href="#" class="jp-pause" tabindex="1">pause</a></li>
            <li><a href="#" class="jp-stop" tabindex="1">stop</a></li>
            <li><a href="#" class="jp-mute" tabindex="1" title="mute">mute</a></li>
            <li><a href="#" class="jp-unmute" tabindex="1" title="unmute">unmute</a></li>
            <li><a href="#" class="jp-volume-max" tabindex="1" title="max volume">max volume</a></li>
         </ul>
         <div class="jp-progress">
            <div class="jp-seek-bar">
               <div class="jp-play-bar" />
            </div>
         </div>
         <div class="jp-volume-bar">
            <div class="jp-volume-bar-value" />
         </div>
         <div class="jp-time-holder">
            <div class="jp-current-time" />
            <div class="jp-duration" />
            <ul class="jp-toggles">
               <li><a href="#" class="jp-repeat" tabindex="1" title="repeat">repeat</a></li>
               <li><a href="#" class="jp-repeat-off" tabindex="1" title="repeat off">repeat off</a></li>
            </ul>
         </div>
      </div>
      <div class="jp-title">
         <ul>
         <li>From a Real Live Show in 1988 at Azabu-Juban MAHARAJA</li>
         </ul>
      </div>
      <div class="jp-no-solution">
         <span>Update Required</span>
         To play the media you will need to either update your browser to a recent version or update your <a href="https://get.adobe.com/flashplayer/"target="_blank">Flash plugin</a>.
      </div>
   </div>
</div>
</div>

<div class="credit_size pad_t_30">
<ul2>
    <li>商品はCDではなく、アナログ・レコードです。誤って購入した際の返品は致しかねますので、ご留意下さい。</li>
    <li>商品写真は実売品ですが、一部イメージ / 参考写真を含みます。</li>
    <li>試聴ファイルは一部ディスコ / クラブでの生ライヴ音源のため、実際の商品とは異なって聞こえる場合があります。あらかじめご了承ください。</li>
</ul2>
</div>]]></content></entry><entry><title>ちあきなおみ - リサイタル </title><link rel="alternate" type="text/html" href="https://clubberz-records.com/?pid=189000291" /><id>https://clubberz-records.com/?pid=189000291</id><issued>2025-10-18T01:59:05+09:00</issued><modified>2025-11-29T12:23:48Z</modified><created>2025-10-17T16:59:05Z</created><summary>
Track Listing:
SIDE 1:
1. 私はこうして生きてきました
2. 雨に濡れた慕情
3. 私という女
4. 夜間飛行
5. 四つのお願い
6. イロケの歌
7. 帰らざる青春
SIDE 2:
1. 新宿情話
2. 人生の並木路
3. 命かれても
4. 別れたあとで
5. うちへ帰るのがこわい
6....</summary><author><name>DISCO ≧ CLUB MUSIC SPECIALTY STORE クラバーズ・レコード</name></author><content mode="escaped" type="text/html" xml:lang="ja"><![CDATA[<div class="line_space">
<p class="pad_b_10">Track Listing:</p>
<p>SIDE 1:</p>
<p>1. <span class="txt_fwb">私はこうして生きてきました</span><br>
2. <span class="txt_fwb">雨に濡れた慕情</span><br>
3. <span class="txt_fwb">私という女</span><br>
4. <span class="txt_fwb">夜間飛行</span><br>
5. <span class="txt_fwb">四つのお願い</span><br>
6. <span class="txt_fwb">イロケの歌</span><br>
7. <span class="txt_fwb">帰らざる青春</span></p>
<p>SIDE 2:</p>
<p>1. <span class="txt_fwb">新宿情話</span><br>
2. <span class="txt_fwb">人生の並木路</span><br>
3. <span class="txt_fwb">命かれても</span><br>
4. <span class="txt_fwb">別れたあとで</span><br>
5. <span class="txt_fwb">うちへ帰るのがこわい</span><br>
6. <span class="txt_fwb">そっとおやすみ</span><br>
7. <span class="txt_fwb">愛のフィナーレ</span><br>
8. <span class="txt_fwb">ボン・ボヮヤージュ</span></p>
<p class="pad_t_10">SIDE 3:</p>
<p>1. <span class="txt_fwb">裏窓</span><br>
2. <span class="txt_fwb">かもめ</span><br>
3. <span class="txt_fwb">VA MON AMI VA</span><br>
4. <span class="txt_fwb">ねえあんた</span></p>
<p>SIDE 4:</p>
<p>1. <span class="txt_fwb">円舞曲(わるつ)</span><br>
2. <span class="txt_fwb">かなしみ模様</span><br>
3. <span class="txt_fwb">船頭小唄</span><br>
4. <span class="txt_fwb">劇場</span><br>
5. <span class="txt_fwb">バラード</span><br>
6. <span class="txt_fwb">喝采</span></p>
<p class="credit_size mar_l_20">
'74. 10. 22 中野サンプラザ・ホールにて実況録音</p>
<p class="credit_size pad_t_10 mar_l_20">
● 歌) ちあきなおみ<br>
● コーラス) ウィルビーズ<br>
● ナレーション) 奈良岡朋子 (第3面)<br>
● 伴奏) 高橋達也と東京ユニオン with ストリングス<br>
● 編曲) 宮川 泰</p>
<p class="txt_12 pad_t_10 mar_l_20">
リサイタル制作スタッフ<br>
● 構成) 松原史明<br>
<span class="mar_l_50">青山 浩</span><br>
● 演出) 青山 浩<br>
<span class="mar_l_50">名也なぎほ</span><br>
● 音楽・指揮) 宮川 泰<br>
● プロデューサー) 六車暢志</p>
<p class="pad_v_10">&#9654; '92年に芸能活動を休止して以来、孤高の歌姫として伝説化する歌手、ちあきなおみが、芸能生活15周年を記念して1974年10月22日と23日に東京・中野サンプラザで開催したライヴ公演の初日を実況目録音した2枚組アルバム。彼女のキャリアで唯一となったこのリサイタルで新曲として披露された「ねえあんた」「イロケの歌」、そして「私はこうして生きてきました」を収録。特に「ねえあんた」はその後もたびたびテレビ番組やコンサートで披露され、今や知る人ぞ知る彼女の代表作に昇華しました。そして最後はもちろん、「喝采」で感動のフィナーレへ！</p></div>

<div class="credit_size pad_v_10 bor_t_1 bor_b_1">
<ul2>
    <li>試聴ファイルはありません。試聴は「この商品について問い合わせる」より依頼下さい。</li>
    <li>商品はCDではなく、アナログ・レコードです。誤って購入した際の返品は致しかねますので、ご留意下さい。</li>
    <li>商品写真は実売品ですが、一部イメージ / 参考写真を含みます。</li>
</ul2>
</div>]]></content></entry><entry><title>PETE SHELLEY - Telephone Operator</title><link rel="alternate" type="text/html" href="https://clubberz-records.com/?pid=189000288" /><id>https://clubberz-records.com/?pid=189000288</id><issued>2025-10-18T01:55:19+09:00</issued><modified>2025-12-09T18:02:04Z</modified><created>2025-10-17T16:55:19Z</created><summary>
Track Listing:
SIDE ONE:
1. Telephone Operator (3:15)
2. Many A Time (Extended Dance Version) (6:42)
SIDE TWO:
Many A Telephone Operator (Scratchbanded) (12:42)
&amp;#9654; イギリスの初期パンクロック・バンド、バズコックスのフロントマンだったシンガー・ソン...</summary><author><name>DISCO ≧ CLUB MUSIC SPECIALTY STORE クラバーズ・レコード</name></author><content mode="escaped" type="text/html" xml:lang="ja"><![CDATA[<div class="line_space">
<p class="pad_b_10">Track Listing:</p>
<p>SIDE ONE:</p>
<p>1. <span class="txt_fwb">Telephone Operator</span> (3:15)<br>
2. <span class="txt_fwb">Many A Time</span> (Extended Dance Version) (6:42)</p>
<p>SIDE TWO:</p>
<p><span class="txt_fwb">Many A Telephone Operator</span> (Scratchbanded) (12:42)</p>
<p class="pad_v_10">&#9654; イギリスの初期パンクロック・バンド、バズコックスのフロントマンだったシンガー・ソングライターでギタリスト、ピート・シェリーが、ワーナー・ブラザーズの傘下、ジェネティック・レコードのオーナーで、ヒューマン・リーグやオルタード・イメージらのプロデューサーとしても功名を立てたマーティン・ラッシェントと共同で制作したセカンド・ソロ・アルバム『コンピューター・ワールド』からのファースト・シングル「愛しのオペレーター」。'70年代後半から爆発的に盛り上がったUKパンクロック界のベーシストとして精力的に活動したBARRY ADAMSONのベース・ギターが冒頭から激しくうねりを上げる、ダンス・オリエンテッドなオルタナティヴ・ロック・チューンです。本国は全英のシングル・チャートではさほど振るわず、全米ダンス・チャートでも22位止まりのマイナー・ヒットに終わりましたが、'80年代の半ば以降、ここ日本の、特に都心のディスコというローカル中のローカル・シーンだけで、永続的なカルト人気に沸いた伝説のディスコ・クラシック。全ては東京新宿のディスコティック、ツバキハウスで定期的に開催されていたクラブ・イヴェント “LONDON NITE”でのオンエアがきっかけでした。それを機に各地のディスコDJに認知され、特に'84年暮れにオープンして飛ぶ鳥を落とす勢いで社会的ブームにもなった六本木マハラジャ本店で、DJ長谷川氏が毎夜毎晩の“お約束”ラスト・ナンバーに使用したことから一気に拡散。しかしその人気に伴って肝心要の音盤市場に弊害が発生。そもそも国内リリースされたレコードがこのリヴァイヴァル・ヒットの数年前にポリスターが出したアルバムのみだったという物理的なメディア不足もあり、中古市場で輸入盤12"が高騰。外盤は12"シングルに限っても本国UKの他、オージー、イタリー、オランダ、北米2か国で発売。アルバムや7"シングルも潤沢に出回り、世界には溢れ返っているものの、ここ日本では輸入レコード店CISCOが独自に再発リリースを慣行する'90年の夏までバブルの好景気にも乗って一時(いっとき)、10〜15万円の値が付けられる高額盤の常連でした。そんな昭和の市場を賑わした神々しき一枚･･･ コレクター諸氏のライブラリーに収めるのはこのカナダ盤で決まりです！ オリジナルUK盤やUS盤と見比べて下さい、ピクチャー・スリーヴとお揃いに黒と黄のみを基調色にデザインされたこの盤独自のレーベルの恰好よさを。ターンテーブルの上で視覚的にアピールするセンター・レーベルだからこそこだわりたい、そんな至高の一枚を是非！</p></div>

<div class="position">
<script type="text/javascript">
         $(function(){
            $("#audio_player").jPlayer({
               ready: function(){
                  $(this).jPlayer("setMedia", {
                     mp3: "https://dl.dropboxusercontent.com/scl/fi/c8nfxqfd6p751w80qbiag/pete_shelley-maha.mp3?rlkey=kpf2t6dddv5ymlxym53ry1sru&st=z17ofb4i",
                  }).jPlayer("stop");
               },
               preload: "auto",
               volume: 0.5,
               muted: false,
               backgroundColor: "#ff6699",
               errorAlerts:false,
               warningAlerts:false,
               ended: function (event) {
                  //$(this).jPlayer("play");
               },
               swfPath: "https://dl.dropboxusercontent.com/s/d1e24mbhxxjvrvu/jquery.jplayer.swf",
               solution: 'html, flash',
               supplied: "mp3, oga",
               wmode: "window"
            })
            .bind($.jPlayer.event.play, function() {
               $(this).jPlayer("pauseOthers");
            });
         });
      </script>
<div id="audio_player" class="jp-jplayer" />
<div id="jp_container_1" class="jp-audio">
   <div class="jp-type-single">
      <div class="jp-gui jp-interface">
         <ul class="jp-controls">
            <li><a href="#" class="jp-play" tabindex="1">play</a></li>
            <li><a href="#" class="jp-pause" tabindex="1">pause</a></li>
            <li><a href="#" class="jp-stop" tabindex="1">stop</a></li>
            <li><a href="#" class="jp-mute" tabindex="1" title="mute">mute</a></li>
            <li><a href="#" class="jp-unmute" tabindex="1" title="unmute">unmute</a></li>
            <li><a href="#" class="jp-volume-max" tabindex="1" title="max volume">max volume</a></li>
         </ul>
         <div class="jp-progress">
            <div class="jp-seek-bar">
               <div class="jp-play-bar" />
            </div>
         </div>
         <div class="jp-volume-bar">
            <div class="jp-volume-bar-value" />
         </div>
         <div class="jp-time-holder">
            <div class="jp-current-time" />
            <div class="jp-duration" />
            <ul class="jp-toggles">
               <li><a href="#" class="jp-repeat" tabindex="1" title="repeat">repeat</a></li>
               <li><a href="#" class="jp-repeat-off" tabindex="1" title="repeat off">repeat off</a></li>
            </ul>
         </div>
      </div>
      <div class="jp-title">
         <ul>
         <li>From a Real Live Show in 1987 at Azabu-Juban MAHARAJA</li>
         </ul>
      </div>
      <div class="jp-no-solution">
         <span>Update Required</span>
         To play the media you will need to either update your browser to a recent version or update your <a href="https://get.adobe.com/flashplayer/"target="_blank">Flash plugin</a>.
      </div>
   </div>
</div>
</div>

<div class="credit_size pad_t_30">
<ul2>
    <li>商品はCDではなく、アナログ・レコードです。誤って購入した際の返品は致しかねますので、ご留意下さい。</li>
    <li>商品写真は実売品ですが、一部イメージ / 参考写真を含みます。</li>
    <li>試聴ファイルは一部ディスコ / クラブでの生ライヴ音源のため、実際の商品とは異なって聞こえる場合があります。あらかじめご了承ください。</li>
</ul2>
</div>]]></content></entry></feed>