@charset "utf-8";
/*-----------------------------------------------------
* Rockamenco Page CSS
	*Version: 0.93a
	*Created: 2008.02.04
	*Last Modified: 2009.08.20
-----------------------------------------------------*/
/*-----------------------------------------------------
* Version History
	*Version: 0.90: Created!;
	*Version: 0.91: Minor fix;
	*Version: 0.92: add Guest for live page;
	*Version: 0.93: fix Monthly Special;
	*Version: 0.93a: change Live page Height;

* Table of Content
	*00 Import CSS
	*01 Live Page
		*01-2 Live Content
		*01-3 Live Main
		*01-4 Live Sub (Where do you buy?)
	*02 Enquete Page
		*02-2 Enquete Notice
		*02-3 Enquete Main
	*03 Discography Page
		*03-2 Discography Body
		*03-3 Discography Body Main Discs
		*03-4 Discography Sub (where do you buy?)
	*04 Biography Page
		*04-2 Biography Local Navigation
		*04-3 Biography Local Navigation Title
		*04-4 Biography Body
	*05 Profile Page
		*05-2 Profile Page Local Navigation
		*05-3 Profile Page Local Navigation Title
		*05-4 Profile Main
		*05-5 Profile Body for Members
	*06 Photo Page
		*06-2 Photo Page Local Navigation
		*06-3 Photo Page Tab
		*06-4 Photo Page Thumbnail
		*06-5 Photo Page for jQuery Tab
	*07 Request Paage
		*07-2 Request Channel
	*08 Blog Page
		*08-2 Blog Container
		*08-3 Member Blog Image
	*09 Link Page
	*10 Monthliy Special
	*11 Sitemap
	*12 404 Not Found
		*12-2 404 Sitemap
-----------------------------------------------------*/

/*	=00 Import CSS
-----------------------------------------------------*/
@import url(reset.css);
@import url(base.css);
@import url(cmn.css);
@import url(clearfix.css);
@import url(fix.css); /* =memo for ie hack */

/*	=01 Live Page
-----------------------------------------------------*/
body.live div#wrapper div#content {
	overflow: hidden;
	width: 850px;
	/* height: 1438px; =memo changed 2009.08.20 */
	height: 2990px;
	padding: 0 5px 10px 0;
	/* background: transparent url(../img/live/sd_live-content.png) no-repeat; =memo changed 2009.08.20 */
	background: transparent url(../img/live/sd_live-content-long.png) no-repeat 100% 0;
	color: #FFFFFF;
}
body.live div#content div#main {/* 836-(160+60=220)=616px */
	overflow: hidden;
	width: 750px;
	/* height: 1208px; =memo changed 2009.08.20 */
	height: 2760px;
	padding: 0 50px 10px;
	/*background: #000000 url(../img/live/bg_live-content-btm.gif) no-repeat bottom left; =memo changed 2009.08.20 */
	background: #000000 url(../img/live/bg_live-content-btm-long.gif) no-repeat bottom left;
	text-align: left;
}
body.live div#content div#sub {/* 60px */
	overflow: hidden;
	height: 60px;
	background: #000000 url(../img/live/bg_live-content-top.gif) no-repeat;
	text-align: left;
}
body.live div#content a { color: #FFFFFF; text-decoration: underline; }
body.live div#content a:hover { color: #FFFFFF; text-decoration: none; }
body.live div#content a:active { color: #CCCCCC; text-decoration: none; }

/* =01-2 Live Content (60+100=160px) */
body.live div#content h2 {/* 60px */
	padding-bottom: 13px;
	background: #000000 url(../img/live/bg_live-content.gif) repeat-y;
}
body.live div#content h3 {/* 100px */
	background: #000000 url(../img/live/bg_live-content.gif) repeat-y;
}

/* =01-3 Live Main */
body.live div#main div.vevent {
	clear: both;
	margin: 2px 0 1.5em;
	padding: 2px 5px 3px;
}
body.live div#main div.vevent:hover,
body.live div#main div.vevent-hover {
	background-color: #222222;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
}/* =memo div.vevent-hover is based javascript */

body.live div#main div.vevent-hover { cursor: pointer; }
body.live div#main div.vevent h4 { color: #AA9C7F; }
body.live div#main div.vevent h4 span { margin-left: 10px; }
body.live div#main div.vevent-hover h4 { color: #BBAB90; text-decoration: underline; }

body.live div#main div.vevent h4 a { color: #AA9C7F; text-decoration: underline; }
body.live div#main div.vevent h4 a:hover { color: #BBAB90; text-decoration: none; }
body.live div#main div.vevent h4 a:active { color: #887A5D; text-decoration: none; }

body.live div#main div.vevent p {
	margin-bottom: 1.44em;
}
body.live div#main div.vevent p.last-child {
	margin-bottom: 0;
}

body.live div#main div.vevent p.guest {
	clear: both;
}

body.live div#main p.notice {
	margin-top: 3em;
	margin-bottom: 50px;
}

/* =01-5 Live Event (add 200805) */
body.live div#main div.live-event {
	clear: both;
}
body.live div#main div.live-event h2 {
	margin-left: -1em;
	background: none;
	color: #AA9C7F;
}

/* =01-4 Live Sub (Where do you buy?) */
body.live div#sub p {
	display: inline;
	float: left;
	margin: 20px 0 20px 65px;
	background: transparent;
	border-right: 1px solid #AA9C7F;
}

body.live div#sub ul {
	display: inline;
	float: right;
	margin: 20px 65px 20px 0 ;
	background: transparent;
	border-right: 1px solid #AA9C7F;
}
body.live div#sub ul li {
	float: left;
	padding: 0 1px;
}
body.live div#sub a {
	float: left;
	display: block;
	line-height: 1.0;
	padding: 3px 20px;
	border-left: 1px solid #AA9C7F;
	color: #AA9C7F;
	font-size: 107%;
	font-weight: bold;
	text-decoration: none;
}
body.live div#sub a:hover { color: #BBAB90; }
body.live div#sub a:active { color: #887A5D; }

/* **************************************************************-************************************************************** */

/*	=02 Enquete Page
-----------------------------------------------------*/
body.enquete {}
body.enquete div#content {
	width: 850px;
	height: 962px;
	padding: 0 5px 10px 0;
	background: transparent url(../img/enquete/sd_enquete-content.png) no-repeat;
}
body.enquete div#content div#main {
	overflow: hidden;
	width: 850px;
	height: 962px;
	background: #000000 url(../img/enquete/bg_enquete-main.gif) no-repeat bottom;
}

body.enquete div#main a { color: #FFFFFF; text-decoration: underline; }
body.enquete div#main a:hover { color: #FFFFFF; text-decoration: none; }
body.enquete div#main a:active { color: #CCCCCC; text-decoration: none; }

body.enquete div#main h2 {
	overflow: hidden;
	width: 850px;
	height: 90px;
	background: #000000 url(../img/enquete/bg_enquete-h2.gif) no-repeat top;
}

/* =02-2 Enquete Notice */
body.enquete div#main p {
	margin-bottom: 30px;
	color: #FFFFFF;
	font-size: 107%;
}

/* =02-3 Enquete Main */
body.enquete div#main div.section {}
body.enquete div#main div.section fieldset#wpcf7_1 {}
body.enquete fieldset#wpcf7_1 legend { display: none; }
body.enquete fieldset#wpcf7_1 dl.wpcf7 {
	width: 750px;
	margin: 1em auto;
}
body.enquete fieldset#wpcf7_1 dl.wpcf7 .n { display: none; }
body.enquete fieldset#wpcf7_1 dl.wpcf7 dt {
	clear: both;
	float: left;
	width: 370px;
	margin-bottom: 10px;
	color: #FFFFFF;
	text-align: right;
}
body.enquete fieldset#wpcf7_1 dl.wpcf7 dd {
	float: left;
	width: 370px;
	margin-bottom: 10px;
	padding-left: 10px;
	text-align: left;
	color: #FFFFFF;
}
body.enquete fieldset#wpcf7_1 dl.wpcf7 dd input,
body.enquete fieldset#wpcf7_1 dl.wpcf7 dd textarea {
	width: 350px;
	max-width: 360px;
	color: #3333333;
}
body.enquete fieldset#wpcf7_1 dl.wpcf7 dd textarea {
	line-height: 1.2;
	height: 4em;
	min-height: 1.2em;
	max-height: 8em;
}
body.enquete fieldset#wpcf7_1 dl.wpcf7 dd textarea#impressions {
	height: 8em;
	max-height: 16em;
}
body.enquete fieldset#wpcf7_1 dl.wpcf7 dd input#date,
body.enquete fieldset#wpcf7_1 dl.wpcf7 dd input#pcode {
	width: 8em;
}
body.enquete fieldset#wpcf7_1 dl.wpcf7 dd input[type="text"]:focus,
body.enquete fieldset#wpcf7_1 dl.wpcf7 dd textarea:focus {
	background: #FFFFD4;
	color: #000000;
}

body.enquete fieldset#wpcf7_1 dl.wpcf7 dd input#times {
	width: 4em;
	margin-right: 5px;
}
body.enquete fieldset#wpcf7_1 dl.wpcf7 dd input#cd {
	margin-top: 0.6em;
}
	
body.enquete fieldset#wpcf7_1 dl.wpcf7 dt.submit { display: none; }
body.enquete fieldset#wpcf7_1 dl.wpcf7 dd.submit {
	clear: both;
	float: none;
	width: 5em;
	margin: 10px auto;
	text-align: center;
}
body.enquete fieldset#wpcf7_1 dl.wpcf7 dd.submit input {
	width: 4em;
}

/* =02-4 Enquete Validation */
body.enquete fieldset#wpcf7_1 div.wpcf7 {
	margin: 10px 50px;
	padding: 1em;
}
body.enquete fieldset#wpcf7_1 div.wpcf7-mail-sent-ok {
	margin: 10px 50px;
	padding: 0.5em 1em;
	border: 1px solid #398F14;
	color: #6CC3F47;
	text-align: center;
}
body.enquete fieldset#wpcf7_1 div.wpcf7-mail-sent-ng {
	margin: 10px 50px;
	padding: 0.5em 1em;
	border: 1px solid #FF0000;
	color: #FFABAB;
	text-align: center;
}
body.enquete fieldset#wpcf7_1 div.wpcf7-validation-errors {
	margin: 10px 50px;
	padding: 0.5em 1em;
	border: 1px solid #F7E700;
	color: #F7E7AB;
	text-align: center;
}

/* **************************************************************-************************************************************** */

/*	=03 Discography Page
-----------------------------------------------------*/
body.discography div#wrapper div#content {/* 1354px */
	overflow: hidden;
	width: 850px;
	height: 1354px;
	padding: 0 5px 10px 0;
	background: transparent url(../img/discography/sd_disc-content.png) no-repeat;
	color: #FFFFFF;
}
	body.discography div#content h2 {/* 140px */
		height: 140px;
		background: #000000 url(../img/discography/bg_disc-hd.gif) no-repeat;
	}
	body.discography div#content div#main {/* 1124px */
		overflow: hidden;
		background: #000000 url(../img/discography/bg_disc-content.gif) no-repeat top left;
	}
	body.discography div#content div#sub {/* =memo 90px; see *03-4 */
		overflow: hidden;
		padding: 10px 0 55px;
		background: #000000 url(../img/discography/bg_disc-content.gif) no-repeat bottom left;
	}
	* html body.discography div#content div#sub { padding-top: 12px; }

/* =03-1 Discography Main --------------------------*/
		body.discography div#main div.disc-body {
			position: relative;
			width: 692px;
			margin: 0 78px 0 80px;
			padding-bottom: 31px;
			text-align: left;
		}
			body.discography div#main div.disc-body ul { display: none; }
			body.discography div#main div.disc-body img.photo {
				position: absolute;
				top: 17px;
				left: 0;
				width: 126px;
				height: 126px;
			}
			body.discography div#main div.disc-body table {
				position: absolute;
				top: 50px;
				left: 526px;
			}
			body.discography div#main div.disc-body table th { visibility: hidden; }
			body.discography div#main div.disc-body table tr.item th,
			body.discography div#main div.disc-body table td.fn { display: none; }
			body.discography div#main div.disc-body table td.sample { text-align: center; }
			body.discography div#main div.disc-body table td {
				width: 80px;
				height: 18px;
			}
				body.discography div#main div.disc-body table td a {
					overflow: hidden;
					display: block;
					width: 46px;
					height: 0px;
					margin: 0 auto;
					padding-top: 18px;
					background: url(../img/discography/btn_disc-wmp.gif) no-repeat 0 0;
				}
				body.discography div#main div.disc-body table td.real a { background: url(../img/discography/btn_disc-real.gif); }
					body.discography div#main div.disc-body table td a:active { background-position: 0 -18px; }


		body.discography div#main div#single3 {/* =memo 154px */
			height: 154px;
			background: url(../img/discography/bg_disc-single3.gif) no-repeat right top;
		}
			body.discography div#main div#single3 table { top: 18px !important; }
				body.discography div#main div#single3 table tr { height: 33px !important; }
				body.discography div#main div#single3 table td { padding: 9px 0 7px; }

		body.discography div#main div#album1 {/* =memo 327px */
			height: 327px;
			background: url(../img/discography/bg_disc-album1.gif) no-repeat right top;
		}
			body.discography div#main div#album1 table { top: 27px !important; }
				body.discography div#main div#album1 table tr { height: 23px !important; }
				body.discography div#main div#album1 table td { padding: 3px 0 2px; }

		body.discography div#main div#single2 {/* =memo 154px */
			height: 154px;
			background: url(../img/discography/bg_disc-single2.gif) no-repeat right top;
		}
			body.discography div#main div#single2 table { top: 18px !important; }
				body.discography div#main div#single2 table tr { height: 33px !important; }
				body.discography div#main div#single2 table td { padding: 9px 0 7px; }

		body.discography div#main div#single1 {/* =memo 158px */
			height: 158px;
			background: url(../img/discography/bg_disc-single1.gif) no-repeat right top;
		}
			body.discography div#main div#single1 table { top: 25px !important; }
				body.discography div#main div#single1 table tr { height: 26px !important; }
				body.discography div#main div#single1 table td { padding: 5px 0 4px; }

		body.discography div#main div#album0 {/* =memo 184px */
			height: 184px;
			background: url(../img/discography/bg_disc-album0.gif) no-repeat right top;
		}
			body.discography div#main div#album0 table { top: 25px !important; }
				body.discography div#main div#album0 table tr { height: 26px !important; }
				body.discography div#main div#album0 table td { padding: 5px 0 4px; }



/* =03-4 Discography Sub (where do you buy?) */
		body.discography div#sub ul {
			overflow: hidden;
			height: 17px;
		}
			body.discography div#sub ul li {
				line-height: 1.0;
				display: inline;
				padding: 0 1px;
			}
				body.discography div#sub ul li a {
					padding: 3px 12px 3px 10px;
					border-right: 1px solid #AA9C7F;
					color: #AA9C7F;
					font-size: 107%;
					font-weight: bold;
					text-decoration: none;
				}
				body.discography div#sub ul li#mumo a { border-right: none; }
					body.discography div#sub ul li a:hover { color: #BBAB90; }
					body.discography div#sub ul li a:active { color: #887A5D; }

/* **************************************************************-************************************************************** */

/*	=04 Biography Page
-----------------------------------------------------*/
body.biography {}
body.biography div#content {
	width: 850px;
	height: 1380px;
	padding: 0 5px 10px 0;
	background: transparent url(../img/biography/sd_bio-content.png) no-repeat;
}
body.biography div#content div#main {
	overflow: hidden;
	width: 850px;
	height: 1380px;
	background: #000000 url(../img/biography/bg_bio-main.gif) no-repeat;
}

body.biography div#main a { color: #FFFFFF; text-decoration: underline; }
body.biography div#main a:hover { color: #FFFFFF; text-decoration: none; }
body.biography div#main a:active { color: #CCCCCC; text-decoration: none; }

/* =04-2 Biography Local Navigation */
body.biography div#main div#local-nav {}
body.biography div#local-nav ul#profile {
	float: left;
	width: 420px;
	height: 27px;
	padding: 14px 0 14px 250px;
	background: transparent url(../img/biography/bg_bio-local-nav-profile.gif) no-repeat 0 0;
}
body.biography div#local-nav ul#photo {
	float: left;
	width: 64px;
	height: 27px;
	padding: 14px 45px 14px 71px;
	background: transparent url(../img/biography/bg_bio-local-nav-photo.gif) no-repeat 0 0;
}
body.biography div#local-nav ul#profile li {
	float: left;
}
body.biography div#local-nav ul#photo li {}
body.biography div#local-nav ul li a {
	display: block;
	overflow: hidden;
	height: 0;
	padding-top: 27px;
	background-color: transparent;
	background-repeat: no-repeat;
}
body.biography div#local-nav ul li a:active {
	opacity: 0.6;
	-moz-opacity: 0.6;
}

/* =04-3 Biography Local Navigation Title */
body.biography div#local-nav ul#profile li#prof-ksk a {
	width: 46px;
	background-image: url(../img/biography/ttl_bio-ksk.gif);
}
body.biography div#local-nav ul#profile li#prof-ichiro a {
	width: 61px;
	background-image: url(../img/biography/ttl_bio-ichiro.gif);
}
body.biography div#local-nav ul#profile li#prof-dan a {
	width: 43px;
	background-image: url(../img/biography/ttl_bio-dan.gif);
}
body.biography div#local-nav ul#profile li#prof-daisuke a {
	width: 72px;
	background-image: url(../img/biography/ttl_bio-daisuke.gif);
}
body.biography div#local-nav ul#profile li#prof-hokuto a {
	width: 66px;
	background-image: url(../img/biography/ttl_bio-hokuto.gif);
}
body.biography div#local-nav ul#profile li#prof-pony a {
	width: 86px;
	background-image: url(../img/biography/ttl_bio-pony.gif);
}
body.biography div#local-nav ul#profile li#prof-taro a {
	width: 46px;
	background-image: url(../img/biography/ttl_bio-taro.gif);
}

body.biography div#local-nav ul#photo li a {
	width: 64px;
	background-image: url(../img/biography/ttl_bio-photo.gif);
}

/* =04-4 Biography Body */
body.biography div#main h2 {
	width: 765px;
	height: 157px;
	margin: 3px auto 15px;
	background: #000000 url(../img/biography/bg_bio-hd.gif) no-repeat 0 0;
}
body.biography div#main dl#biography-body {
	width: 750px;
	margin: 0 auto;
	text-align: left;
}
body.biography dl#biography-body dt {/* font-size: 14px */
	padding: 7px 0 2px;
	color: #AA9C7F;
	font-size: 107%;
}
body.biography dl#biography-body dd {
	padding: 0 0.5em;
	line-height: 1.6;
	color: #FFFFFF;
}

/* **************************************************************-************************************************************** */

/*	=05 Profile Page
-----------------------------------------------------*/
body.profile {}
body.profile div#content {
	width: 850px;
	height: 788px;
	padding: 0 5px 10px 0;
	background: transparent url(../img/profile/sd_prof-content.png) no-repeat;
}
body.profile div#content div#main {
	overflow: hidden;
	width: 850px;
	height: 788px;
	background: #CDADA1 url(../img/profile/bg_prof-main.gif) no-repeat;
}

body.profile div#main a { color: #FFFFFF; text-decoration: underline; }
body.profile div#main a:hover { color: #FFFFFF; text-decoration: none; }
body.profile div#main a:active { color: #CCCCCC; text-decoration: none; }

/* =05-2 Profile Page Local Navigation */
body.profile div#main div#local-nav {}
body.profile div#local-nav ul#profile {/* width: 668px */
	float: left;
	width: 418px;
	height: 27px;
	padding: 15px 0 13px 250px;
	background: transparent url(../img/profile/bg_prof-local-nav-profile.gif) no-repeat 0 0;
}
body.profile div#local-nav ul#photo {/* width: 182px */
	float: left;
	width: 67px;
	height: 27px;
	padding: 15px 43px 13px 72px;
	background: transparent url(../img/profile/bg_prof-local-nav-photo.gif) no-repeat 0 0;
}
body.profile div#local-nav ul#profile li {
	float: left;
}
body.profile div#local-nav ul#photo li {}
body.profile div#local-nav ul li a {
	display: block;
	overflow: hidden;
	height: 0;
	padding-top: 27px;
	background-color: transparent;
	background-repeat: no-repeat;
}
body.profile div#local-nav ul li a:active {
	opacity: 0.6;
	-moz-opacity: 0.6;
}

/* =05-3 Profile Page Local Navigation Title */
body.profile div#local-nav ul#profile li#prof-ksk a {
	width: 45px;
	background-image: url(../img/profile/ttl_prof-ksk.gif);
}
body.profile div#local-nav ul#profile li#prof-ichiro a {
	width: 62px;
	background-image: url(../img/profile/ttl_prof-ichiro.gif);
}
body.profile div#local-nav ul#profile li#prof-dan a {
	width: 41px;
	background-image: url(../img/profile/ttl_prof-dan.gif);
}
body.profile div#local-nav ul#profile li#prof-daisuke a {
	width: 73px;
	background-image: url(../img/profile/ttl_prof-daisuke.gif);
}
body.profile div#local-nav ul#profile li#prof-hokuto a {
	width: 66px;
	background-image: url(../img/profile/ttl_prof-hokuto.gif);
}
body.profile div#local-nav ul#profile li#prof-pony a {
	width: 86px;
	background-image: url(../img/profile/ttl_prof-pony.gif);
}
body.profile div#local-nav ul#profile li#prof-taro a {
	width: 45px;
	background-image: url(../img/profile/ttl_prof-taro.gif);
}

body.profile div#local-nav ul#photo li a {
	width: 67px;
	background-image: url(../img/profile/ttl_prof-photo.gif);
}

/* =05-4 Profile Main */
body.profile div#main h2 {
	width: 765px;
	height: 157px;
	margin: 3px auto 11px;
	background: transparent url(../img/profile/bg_profile-hd.gif) no-repeat 0 0;
}
body.profile div#main h2 img {
	width: 765px;
	height: 98px;
	padding-bottom: 59px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: bottom;
}
body.profile div#main div.profile-body {
	width: 750px;
	margin: 0 auto;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: 2px 2px;
	text-align: left;
}
body.profile div#main div.profile-body div.section {
	float: right;
	width: 450px;
	line-height: 1.6;
}
body.profile div#main div.profile-body div.section p {
	margin-bottom: 1em;
	text-indent: 1em;
}
body.profile div#main div.profile-body dl#gear {
	float: left;
	width: 278px;
	height: 65px;
	margin-top: 420px;
	padding: 30px 0 25px;
	background: transparent url(../img/profile/bg_prof-gear.gif) no-repeat 0 0;
}
body.profile div#main div.profile-body dl#gear dt {
	overflow: hidden;
	height: 0px;
}
body.profile div#main div.profile-body dl#gear dd {
	display: inline;
	float: left;
	padding: 0 2px;
}
body.profile div#main div.profile-body dl#gear dd img {
	background: #000000 url(../img/common/overlay_spinner.gif) no-repeat center center;
}
body.profile div#main div.profile-body dl#gear dd a:hover img {
	-webkit-box-shadow: 0 0 8px #FFFFFF;
}

/* =05-5 Profile Body for Members */
/* ksk */
body.profile div#main h2.ksk img { background-image: url(../img/profile/hd_prof-ksk2.gif); }
body.profile div#main div#ksk { background-image: url(../img/profile/bg_prof-body-ksk.png); }
body.profile div#main div#ksk dl#gear dd {
	display: block;
	float: none;
	text-align: center;
}

/* ichiro */
body.profile div#main h2.ichiro img { background-image: url(../img/profile/hd_prof-ichiro2.gif); }
body.profile div#main div#ichiro { background-image: url(../img/profile/bg_prof-body-ichiro.png); }
body.profile div#main div#ichiro dl#gear dd { padding: 0 2px 0 4px; }

/* dan */
body.profile div#main h2.dan img { background-image: url(../img/profile/hd_prof-dan2.gif); }
body.profile div#main div#dan { background-image: url(../img/profile/bg_prof-body-dan.png); }
body.profile div#main div#dan dl#gear dd { padding: 0 2px; }

/* daisuke */
body.profile div#main h2.daisuke img { background-image: url(../img/profile/hd_prof-daisuke2.gif); }
body.profile div#main div#daisuke { background-image: url(../img/profile/bg_prof-body-daisuke.png); }
body.profile div#main div#daisuke dl#gear dd { padding: 0 2px; }

/* hokuto */
body.profile div#main h2.hokuto img { background-image: url(../img/profile/hd_prof-hokuto2.gif); }
body.profile div#main div#hokuto { background-image: url(../img/profile/bg_prof-body-hokuto.png); }
body.profile div#main div#hokuto dl#gear dd { padding: 0 2px 0 3px; }

/* pony */
body.profile div#main h2.pony img { background-image: url(../img/profile/hd_prof-pony2.gif); }
body.profile div#main div#pony { background-image: url(../img/profile/bg_prof-body-pony.png); }
body.profile div#main div#pony dl#gear dd { padding: 0 4px; }

/* taro */
body.profile div#main h2.taro img { background-image: url(../img/profile/hd_prof-taro2.gif); }
body.profile div#main div#taro { background-image: url(../img/profile/bg_prof-body-taro.png); }
body.profile div#main div#taro dl#gear dd { padding: 0 3px 0 4px; }

/* **************************************************************-************************************************************** */

/*	=06 Photo Page
-----------------------------------------------------*/
body.photo {}
body.photo div#content {
	width: 850px;
	height: 593px;
	padding: 0 5px 10px 0;
	background: transparent url(../img/photo/sd_photo-content.png) no-repeat;
}
body.photo div#content div#main {
	overflow: hidden;
	width: 850px;
	height: 593px;
	background: #000000 url(../img/photo/bg_photo-main.gif) no-repeat;
}

body.photo div#main a { color: #FFFFFF; text-decoration: underline; }
body.photo div#main a:hover { color: #FFFFFF; text-decoration: none; }
body.photo div#main a:active { color: #CCCCCC; text-decoration: none; }

/* =06-2 Photo Page Local Navigation */
body.photo div#main ul#local-nav {
	width: 850px;
	height: 55px;
	background: transparent url(../img/photo/bg_photo-local-nav.gif) no-repeat 0 0;
}
body.photo div#main ul#local-nav li {
	width: 129px;
	padding: 15px 46px 15px 675px;
}
body.photo div#main ul#local-nav li a {
	display: block;
	overflow: hidden;
	width: 129px;
	height: 0;
	padding-top: 25px;
	background: #000000 url(../img/photo/ttl_photo-profile.gif) no-repeat 0 0;
}
body.photo div#main ul#local-nav li a:active {
	opacity: 0.6;
	-moz-opacity: 0.6;
}

body.photo div#main h2 {
	width: 765px;
	height: 157px;
	margin: 3px auto 15px;
	background: #000000 url(../img/photo/bg_photo-hd.gif) no-repeat 0 0;
}

/* =06-3 Photo Page Tab */
/*
body.photo div#main ul#photo-tab {}
body.photo div#main ul#photo-tab li {
	display: inline;
	font-size: 125%;
}
body.photo div#main ul#photo-tab li+li {
	border-left: 1px solid #AA9C7F;
}
body.photo div#main ul#photo-tab li a {
	padding: 2px 10px 2px 15px;
	color: #AA9C7F;
	text-decoration: none;
	font-weight: bold;
}
body.photo div#main ul#photo-tab li a:hover { color: #BBAB90; text-decoration: none; }
body.photo div#main ul#photo-tab li a:active { color: #887A5D; text-decoration: none; }
*/

/* =06-4 Photo Page Thumbnail */
body.photo div#main ul.thumbnail {
	width: 651px;
	margin: 50px auto;
}
body.photo div#main ul.thumbnail li {
	float: left;
	width: 77px;
	height: 77px;
	margin: 1px 0;
	padding: 8px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
body.photo div#main ul.thumbnail li img {
	background: #000000 url(../img/common/overlay_spinner.gif) no-repeat center center;
	border: 1px solid #443619;
	-webkit-box-shadow: 0 0 8px #000000;
	filter: alpha(opacity=25);
	opacity: 0.3;
	-moz-opacity: 0.3;
}
body.photo div#main ul.thumbnail li a img {
	width: 75px;
	height: 75px;
	border: 1px solid #AA9C7F;
	-webkit-box-shadow: 0 0 8px #000000;
	filter: alpha(opacity=100);
	opacity: 1.0;
	-moz-opacity: 1.0;
}
body.photo div#main ul.thumbnail li a:hover img {
	border: 1px solid #CCBCA1;
	-webkit-box-shadow: 0 0 8px #CCBCA1;
}
body.photo div#main ul.thumbnail li a:active img {
	border: 1px solid #887A5D;
	-webkit-box-shadow: 0 0 8px #887A5D;
	filter: alpha(opacity=80);
	opacity: 0.8;
	-moz-opacity: 0.8;
}

/* =06-5 Photo Page for jQuery Tab */
body.photo div#main div.tabs-hide {
	display: none;
}

/* **************************************************************-************************************************************** */

/*	=07 Request Paage
-----------------------------------------------------*/
body.request {}
body.request div#content {
	width: 850px;
	height: 964px;
	padding: 0 5px 10px 0;
	background: transparent url(../img/request/sd_request-content.png) no-repeat;
}
body.request div#content h2 {
	padding-bottom: 20px;
	background: #000000 url(../img/request/bg_request-content-top.gif) no-repeat top left;
}
body.request div#content div#channel {
	height: 824px;
	margin-bottom: 10px;
	background: #000000 url(../img/request/bg_request-content-btm.gif) no-repeat bottom;
}
body.request div#content div.section {
	padding: 0 10px 5px;	
	text-align: left;
}
body.request div#content div.channel {
	padding: 0 70px 20px;
	background: #000000 url(../img/request/bg_request-content.gif) repeat-y;	
	text-align: left;
}

/* =07-2 Request Channel */
body.request div#content div.channel h3 {
	margin-bottom: 1em;
}
body.request div#content div.channel ul {
	padding-left: 1.1em;
	word-break: keep-all;
}
body.request div#content div.channel ul li {
	display: inline;
	padding-right: 0.4em;
	border-right: 1px solid #CCCCCC;
	color: #E8E8E8;
}
body.request div#content div.channel ul li.last-child {
	padding-right: 0;
	border-right: none;
}
body.request div#content div.channel h4 {
	color: #AA9C7F;
}
body.request div#content div.channel ul li a { color: #FFFFFF; text-decoration: none; }
body.request div#content div.channel ul li a:hover { color: #FFFFFF; text-decoration: underline; }
body.request div#content div.channel ul li a:active { color: #CCCCCC; text-decoration: underline; }

/* **************************************************************-************************************************************** */

/*	=08 Blog Page
-----------------------------------------------------*/
body.blog {}
body.blog div#content {
	width: 850px;
	height: 526px;
	padding: 0 5px 10px 0;
	background: transparent url(../img/blog/sd_blog-content.png) no-repeat;
}
body.blog div#content div#main {
	overflow: hidden;
	width: 790px;
	height: 462px;
	padding: 32px 28px 32px 32px;
	background: #000000 url(../img/blog/bg_blog-main.gif) no-repeat;
}
body.blog div#main h2 {
	float: left;
	width: 196px;
	height: 230px;
	padding: 115px 0;
	margin-bottom: 2px;
}

/* =08-2 Blog Container */
body.blog div#main div.blog-container {
	float: left;
	width: 196px;
	height: 230px;
	margin: 0 0 2px 2px;
	background-color: #000000;
	background-repeat: no-repeat;
}
body.blog div#main div.blog-container h3 {}
body.blog div#main div.blog-container h3 a {
	display: block;
	overflow: hidden;
	width: 196px;
	height: 0;
	padding-top: 163px;
}
body.blog div#main div.blog-container p {
	width: 180px;
	height: 60px;
	margin: 4px 0 3px;
	padding: 0 8px;
}

body.blog div#main div.blog-container p a {
	display: table-cell;
	vertical-align: middle;
	overflow: hidden;
	width: 180px;
	height: 55px;
	margin: 0;
	color: #FFFFFF;
	text-decoration: none;
}
body.blog div#main div.blog-container p a:hover { color: #FFFFFF; text-decoration: underline; }
body.blog div#main div.blog-container p a:active { color: #CCCCCC; text-decoration: underline; }

/* =08-3 Member Blog Image */
body.blog div#main div#blog-ksk { background-image: url(../img/blog/bg_blog-ksk.gif); }
body.blog div#main div#blog-ichiro { background-image: url(../img/blog/bg_blog-ichiro.gif); }
body.blog div#main div#blog-dan { background-image: url(../img/blog/bg_blog-dan.gif); }
body.blog div#main div#blog-daisuke { background-image: url(../img/blog/bg_blog-daisuke.gif); }
body.blog div#main div#blog-hokuto { background-image: url(../img/blog/bg_blog-hokuto.gif); }
body.blog div#main div#blog-pony { background-image: url(../img/blog/bg_blog-pony.gif); }
body.blog div#main div#blog-taro { background-image: url(../img/blog/bg_blog-taro.gif); }

/* **************************************************************-************************************************************** */

/*	=09 Link Page
-----------------------------------------------------*/
body.link {}
body.link div#content {
	width: 850px;
	height: 460px;
	padding: 0 5px 10px 0;
	background: transparent url(../img/link/sd_link-content.png) no-repeat;
}
body.link div#content h2 {
	height: 0;
	overflow: hidden;
}
body.link div#content div.section {/* font-size: 15px */
	overflow: hidden;
	width: 550px;
	height: 360px;
	padding: 50px 150px;
	background: transparent url(../img/link/bg_link-content.gif) no-repeat;
	font-size: 114%;
	text-align: left;
}
body.link div#content div.section ul.section {
	margin-bottom: 25px;
}
body.link div#content div.section ul.section li {
	margin: 1px 0;
	padding: 2px 0;
}
body.link div#content div.section ul.section li h3 {
	float: left;
	padding-right: 0.5em;
	color: #AA9C7F;
}
body.link div#content div.section ul.section li a { color: #FFFFFF; text-decoration: none; }
body.link div#content div.section ul.section li a:hover { color: #FFFFFF; text-decoration: underline; }
body.link div#content div.section ul.section li a:active { color: #CCCCCC; text-decoration: underline; }

/* **************************************************************-************************************************************** */

/*	=10 Monthliy Special
-----------------------------------------------------*/
body.special {}
body.special div#content {
	width: 850px;
	height: 637px;
	padding: 0 5px 10px 0;
	background: transparent url(../img/special/sd_special-content.png) no-repeat;
}
body.special div#content h2 {
	overflow: hidden;
	width: 850px;
	height: 150px;
/* 	width: 420px;
	height: 31px;
	padding: 86px 195px 33px 235px; */
	background: #000000 url(../img/special/bg_special-h2.gif) no-repeat;
}

body.special div#content div#main {
	overflow: hidden;
	width: 850px;
	height: 487px;
	background: #000000 url(../img/special/bg_special-main.gif) no-repeat bottom;
	color: #FFFFFF;
}
body.special div#main ol.hfeed {
	overflow: auto;
	width: 775px;
	height: 420px;
	padding: 10px 25px 7px;
	font-size: 150%;
}
body.special div#main ol.hfeed li { padding: 5px 0; }
body.special div#main a { display: block; padding: 5px 0; color: #FFFFFF; text-decoration: underline; _height: 1px; }
body.special div#main a:hover { color: #FFFFFF; text-decoration: none; }
body.special div#main a:active { color: #CCCCCC; text-decoration: none; }
body.special p.mac-notice {
	overflow: hidden;
	height: 30px;
	margin-top: -30px;
	color: #FFFFFF;
	font-family: "Lucida Grande", "Lucida Sans", "Hiragino Kaku Gothic Pro", "HiraKakuPro-W3", "ヒラギノ角ゴ Pro W4", MS PGothic, "MS Pゴシック", Osaka, Helvetica, Arial, sans-serif;
}
body.special p.mac-notice a { color: #FFFFFF; text-decoration: underline; }
body.special p.mac-notice a:hover { color: #FFFFFF; text-decoration: none; }
body.special p.mac-notice a:active { color: #CCCCCC; text-decoration: none; }
body.special p.mac-notice span { padding: 0 0.5em; font-size: 77%; }

/* **************************************************************-************************************************************** */

/*	=11 404 Not Found
-----------------------------------------------------*/
body.sitemap {}
body.sitemap div#content {
	width: 850px;
	height: 526px;
	padding: 0 5px 10px 0;
	background: transparent url(../img/sitemap/sd_sitemap-content.png) no-repeat;
}
body.sitemap div#content div#main {
	overflow: hidden;
	width: 750px;
	height: 500px;
	padding: 13px 50px;
	background: #000000;
	color: #FFFFFF;
	text-align: left;
}
body.sitemap div#main a { color: #FFFFFF; text-decoration: underline; }
body.sitemap div#main a:hover { color: #FFFFFF; text-decoration: underline; }
body.sitemap div#main a:active { color: #CCCCCC; text-decoration: underline; }

body.sitemap div#main h2 {/* font-size: 20px; */
	line-height: 50px;
	font-size: 152%;
	font-weight: bold;
}

/* =11-2 404 Sitemap */
body.sitemap div#main div#sitemap {
	padding: 10px 0;
}
body.sitemap div#sitemap dl {
	padding: 0 50px;
}
body.sitemap div#sitemap dl dt {
	padding: 7px 0 0;
	font-size: 112%;
}
body.sitemap div#sitemap dl dt a {
	font-weight: bold;
	padding-right: 20px;
	background: transparent url(../img/common/ic_external.gif) no-repeat right 3px;
	text-decoration: none;
}
body.sitemap div#sitemap dl dt a:hover { background-position: right -23px; text-decoration: underline; }
body.sitemap div#sitemap dl dt a:active { background-position: right  -49px; }

body.sitemap div#sitemap dl dd {
	display: inline;
	padding-left: 1em;
	text-decoration: underline;
}
body.sitemap div#sitemap dl dd.no-blog {
	color: #CCCCCC;
}

/* **************************************************************-************************************************************** */

/*	=12 404 Not Found
-----------------------------------------------------*/
body.notfound {}
body.notfound div#content {
	width: 850px;
	height: 526px;
	padding: 0 5px 10px 0;
	background: transparent url(../img/404/sd_notfound-content.png) no-repeat;
}
body.notfound div#content div#main {
	overflow: hidden;
	width: 750px;
	height: 500px;
	padding: 13px 50px;
	background: #000000;
	color: #FFFFFF;
	text-align: left;
}
body.notfound div#main a { color: #FFFFFF; text-decoration: underline; }
body.notfound div#main a:hover { color: #FFFFFF; text-decoration: underline; }
body.notfound div#main a:active { color: #CCCCCC; text-decoration: underline; }

body.notfound div#main h2 {/* font-size: 20px; */
	line-height: 50px;
	font-size: 152%;
	font-weight: bold;
}

/* =12-2 404 Sitemap */
body.notfound div#main div#sitemap {
	padding: 10px 0;
}
body.notfound div#sitemap dl {
	padding: 0 50px;
}
body.notfound div#sitemap dl dt {
	padding: 7px 0 0;
	font-size: 112%;
}
body.notfound div#sitemap dl dt a {
	font-weight: bold;
	padding-right: 20px;
	background: transparent url(../img/common/ic_external.gif) no-repeat right 3px;
	text-decoration: none;
}
body.notfound div#sitemap dl dt a:hover { background-position: right -23px; text-decoration: underline; }
body.notfound div#sitemap dl dt a:active { background-position: right  -49px; }

body.notfound div#sitemap dl dd {
	display: inline;
	padding-left: 1em;
	text-decoration: underline;
}
body.notfound div#sitemap dl dd.no-blog {
	color: #CCCCCC;
}