@charset "utf-8";

/*
	「画像にすればいいじゃん！」というのは、ナンセンスだぞ。
*/

/* ============================================================
	基本
============================================================ */
body {
	margin: .5em !important;
	background: #f8f8e8;
	font-family: "メイリオ",Meiryo,verdana,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
}
@font-face {
	font-family: 'しねきゃぷしょん';
	src: local('しねきゃぷしょん'), url('cinecaption.ttf') format('truetype');
}

/*	アンカー
------------------------------------------------------------ */
a:link {
	color: #00c;
}
a:visited {
	color: #808;
}
a:hover,
a:active {
	-moz-border-radius: .2em;
	-webkit-border-radius: .2em;
	border-radius: .2em;
}
a:hover {
	background-color: #ffc;
	color: #c00;
}
a:active {
	background-color: #ff8;
	color: #800;
}

/*	見出し
------------------------------------------------------------ */
h1,
h2,
h3 {
	text-shadow: -1px -1px 1px #fff, 1px 1px 1px #ccb;
	font-family: "しねきゃぷしょん";
}
h1 {
	display: inline-block;
	position: relative;
	margin: 0;
	border: 1px solid #f8f8f8;
	padding: .2em;
	background: #fff;
	color: #c00;
	font-size: 130%;
}
h1::before,
h1::after {
	content: "";
	z-index: -1;
	position: absolute;
	bottom: 5px;
	width: 50%;
	height: 20%;
	-moz-box-shadow: 0 3px 7px rgba(0,0,0,.7);
	-webkit-box-shadow: 0 3px 7px rgba(0,0,0,.7);
	box-shadow: 0 3px 7px rgba(0,0,0,.7);
	background: rgba(0,0,0,.7);
}
h1::before {
	left: 6px;
	-moz-transform: rotate(-2deg);
	-webkit-transform: rotate(-2deg);
	-ms-transform: rotate(-2deg);
	-o-transform: rotate(-2deg);
	transform: rotate(-2deg);
}
h1::after {
	right: 6px;
	-moz-transform: rotate(2deg);
	-webkit-transform: rotate(2deg);
	-ms-transform: rotate(2deg);
	-o-transform: rotate(2deg);
	transform: rotate(2deg);
}
h2,
h3 {
	margin-bottom: .5em;
}
h2 {
	-moz-border-radius: .5em;
	border-radius: .5em;
	padding: .2em;
	-moz-box-shadow: inset 0 0 .2em rgba(127,127,127,.3),
		1px 1px 2px rgba(0,0,0,.3);
	-webkit-box-shadow: inset 0 0 .2em rgba(127,127,127,.3),
		1px 1px 2px rgba(0,0,0,.3);
	box-shadow: inset 0 0 .2em rgba(127,127,127,.3),
		1px 1px 2px rgba(0,0,0,.3);
	background: #fff;
	background-image: -moz-linear-gradient(top,
		#fcfcfc,
		#fff 45%,
		#f8f8f8 55%,
		#fff
		);
	background-image: -webkit-gradient(linear, left top, left bottom,
		from(#fcfcfc),
		color-stop(.45, #fff),
		color-stop(.55, #f8f8f8),
		to(#fff)
		);
	background-image: -o-linear-gradient(top,
		#fcfcfc,
		#fff 45%,
		#f8f8f8 55%,
		#fff
		);
	background-image: -ms-linear-gradient(top,
		#fcfcfc,
		#fff 45%,
		#f8f8f8 55%,
		#fff
		);
	background-image: linear-gradient(top,
		#fcfcfc,
		#fff 45%,
		#f8f8f8 55%,
		#fff
		);
	font-size: 120%;
}
h2::before {
	content: "♥";
	color: #c00;
	-webkit-text-stroke: 2px #ff0;
	text-shadow: 1px 1px 1px #ff0, -1px -1px 1px #ff0, 1px -1px 1px #ff0, -1px 1px 1px #ff0, 2px 2px 1px #ff0, -2px -2px 1px #ff0, 2px -2px 1px #ff0, -2px 2px 1px #ff0;
}
h3 {
	-moz-border-radius: .5em;
	border-radius: .5em;
	background-image: -moz-linear-gradient(left,
		rgba(255,255,255,1),
		rgba(255,255,255,.6) 10em,
		rgba(255,255,255,0)
		);
	background-image: -webkit-gradient(linear, left top, right top,
		from(rgba(255,255,255,1)),
		color-stop(.3, rgba(255,255,255,.6)),
		to(rgba(255,255,255,0))
		);
	background-image: -o-linear-gradient(left,
		rgba(255,255,255,1),
		rgba(255,255,255,.6) 10em,
		rgba(255,255,255,0)
		);
	background-image: -ms-linear-gradient(left,
		rgba(255,255,255,1),
		rgba(255,255,255,.6) 10em,
		rgba(255,255,255,0)
		);
	background-image: linear-gradient(left,
		rgba(255,255,255,1),
		rgba(255,255,255,.6) 10em,
		rgba(255,255,255,0)
		);
	font-size: 110%;
}
h3::before {
	content: "♠";
	color: #080;
}

/*	その他
------------------------------------------------------------ */
ul {
	margin: 0;
	padding: 0;
}
h2 + p {
	margin-top: 0;
}
p,
dl,
li {
	margin-left: 2em;
	line-height: 1.5;
	letter-spacing: .1em;
}
abbr{
	font-weight: bold;
}
abbr {
	border-bottom: 1px dotted #000;
	font-family: 'Old Standard TT', arial, serif;
	cursor: help;
}
em {
	-moz-border-radius: .2em;
	border-radius: .2em;
	background: #ffc;
	font-style: normal;
}


/*	いろいろ
------------------------------------------------------------ */
.section {
	margin: 3em 0;
}
.section:last-of-type {
	margin-bottom: 1em;
}
.section .section {
	margin: 2em 0 0 2em;
}

/*	カウンタ */
#counter li {
	list-style: none outside;
	margin-right: 3em;
	text-align: right;
}
#shinobi {
	margin: 10px 20px;
	text-align: right;
}
#shinobi img {
	border: 0 none;
}
#shinobi li {
	display: inline;
	padding: 0 .3em;
}
#shinobi td {
	padding: 0;
}
#NINCtGraphSection {
	background-color: #000;
}
#NINCtGraphSection table {
	margin: 0;
	border-collapse: collapse;
	border: solid 2px #ffab00;
}
#NINCtGraphSection td {
	border: none;
	border-bottom: solid 1px #ffd900;
	padding: 0;
	background: #000 !important;
	color: #fff570 !important;
	text-align: center;
	font-size: 10px !important;
	font-family: "MS UI Gothic",sans-serif !important;
}


/* ============================================================
(●(ｪ)●)	パンダくん
============================================================ */

/*	全体
------------------------------------------------------------ */
#panda {
	position: relative;
	margin: 10px;
	background: #5a5;
	-webkit-box-reflect: below 0
		-webkit-gradient(linear, left top, left bottom,
			from(rgba(0,0,0,0)),
			color-stop(.95, rgba(0,0,0,0)),
			to(rgba(0,0,0,.5))
		);
	background-image: -moz-linear-gradient(left top,
		rgba(160,160,160,.1) 0,
		rgba(127,127,127,0) 10px,
		rgba(127,127,127,.1) 10px,
		rgba(127,127,127,.15) 20px
	);
	-moz-background-size: 20px 20px;
	background-image: -webkit-gradient(linear, left top, right bottom,
		color-stop(0, rgba(160,160,160,0)),
		color-stop(.5, rgba(127,127,127,0)),
		color-stop(.5, rgba(127,127,127,.1)),
		color-stop(1, rgba(127,127,127,.15))
	);
	-webkit-background-size: 20px 20px;
	background-image: -o-linear-gradient(left top,
		rgba(160,160,160,.1) 0,
		rgba(127,127,127,0) 10px,
		rgba(127,127,127,.1) 10px,
		rgba(127,127,127,.15) 20px
	);
	background-image: -ms-linear-gradient(left top,
		rgba(160,160,160,.1) 0,
		rgba(127,127,127,0) 10px,
		rgba(127,127,127,.1) 10px,
		rgba(127,127,127,.15) 20px
	);
	background-image: linear-gradient(left top,
		rgba(160,160,160,.1) 0,
		rgba(127,127,127,0) 10px,
		rgba(127,127,127,.1) 10px,
		rgba(127,127,127,.15) 20px
	);
	background-size: 20px 20px;
}

/*	頭部
------------------------------------------------------------ */
#atama {
	z-index: 2;
	position: relative;
	margin: 0 auto;
	width: 300px;
	height: 230px;
	-webkit-animation-name: zoooom;
	-webkit-animation-duration: 20s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: normal;
	-webkit-animation-play-state: running;
	-webkit-animation-delay: 2s;
	-webkit-animation-timing-function: ease-in;
	-moz-animation-name: zoooom;
	-moz-animation-duration: 20s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-direction: normal;
	-moz-animation-play-state: running;
	-moz-animation-delay: 2s;
	-moz-animation-timing-function: ease-in;
}
@-webkit-keyframes zoooom {
	  0% {	-webkit-transform: scale(1, 1);	}
	 10% {	-webkit-transform: rotate(0deg);	}
	 11% {	-webkit-transform: rotate(2deg);	}
	 13% {	-webkit-transform: rotate(-2deg);	}
	 15% {	-webkit-transform: rotate(2deg);	}
	 17% {	-webkit-transform: rotate(-2deg);	}
	 18% {	-webkit-transform: rotate(0deg);	}
	 40% {	-webkit-transform: rotate(0deg);	}
	 41% {	-webkit-transform: rotate(-2deg);	}
	 43% {	-webkit-transform: rotate(2deg);	}
	 45% {	-webkit-transform: rotate(-2deg);	}
	 47% {	-webkit-transform: rotate(2deg);	}
	 48% {	-webkit-transform: rotate(0deg);	}
	 80% {	-webkit-transform: scale(1, 1);	}
	 81% {	-webkit-transform: scale(2, 2);	}
	 82% {	-webkit-transform: scale(1, 1);	}
	100% {	-webkit-transform: scale(1, 1);	}
}
@-moz-keyframes zoooom {
	  0% {	-moz-transform: scale(1, 1);	}
	 10% {	-moz-transform: rotate(0deg);	}
	 11% {	-moz-transform: rotate(2deg);	}
	 13% {	-moz-transform: rotate(-2deg);	}
	 15% {	-moz-transform: rotate(2deg);	}
	 17% {	-moz-transform: rotate(-2deg);	}
	 18% {	-moz-transform: rotate(0deg);	}
	 40% {	-moz-transform: rotate(0deg);	}
	 41% {	-moz-transform: rotate(-2deg);	}
	 43% {	-moz-transform: rotate(2deg);	}
	 45% {	-moz-transform: rotate(-2deg);	}
	 47% {	-moz-transform: rotate(2deg);	}
	 48% {	-moz-transform: rotate(0deg);	}
	 80% {	-moz-transform: scale(1, 1);	}
	 81% {	-moz-transform: scale(2, 2);	}
	 82% {	-moz-transform: scale(1, 1);	}
	100% {	-moz-transform: scale(1, 1);	}
}

/* 耳 */
#hidari-mimi,
#migi-mimi {
	position: absolute;
	top: 30px;
	margin: 0 auto;
	width: 60px;
	height: 60px;
	background: #000;
	background-image: -moz-radial-gradient(15px 5px, ellipse closest-corner,
		#666 0%,
		#000 100%
	);
	background-image: -ms-radial-gradient(15px 5px, ellipse closest-corner,
		#666 0%,
		#000 100%
	);
	background-image: radial-gradient(15px 5px, ellipse closest-corner,
		#666 0%,
		#000 100%
	);
}
#hidari-mimi {
	left: -20px;
	-moz-border-radius: 40px 20px 0 20px;
	-webkit-border-top-left-radius: 40px;
	-webkit-border-top-right-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	border-radius: 40px 20px 0 20px;
	background: -moz-radial-gradient(20px 5px, ellipse closest-corner,
		#666 0%,
		#000 100%
	);
	background: -webkit-gradient(radial,
		20% 20%, 0,
		20% 20%, 20,
		from(#555),
		color-stop(50%, #222),
		to(#000)
	);
	background: -ms-radial-gradient(20px 5px, ellipse closest-corner,
		#666 0%,
		#000 100%
	);
	background: radial-gradient(20px 5px, ellipse closest-corner,
		#666 0%,
		#000 100%
	);
}
#migi-mimi {
	right: -20px;
	-moz-border-radius: 20px 40px 20px 0;
	-webkit-border-top-left-radius: 20px;
	-webkit-border-top-right-radius: 40px;
	-webkit-border-bottom-right-radius: 20px;
	border-radius: 20px 40px 20px 0;
	background: -moz-radial-gradient(15px 5px, ellipse closest-corner,
		#666 0%,
		#000 100%
	);
	background: -webkit-gradient(radial,
		10% 10%, 0,
		20% 20%, 20,
		color-stop(10%, #555),
		color-stop(50%, #222),
		to(#000)
	);
	background: -ms-radial-gradient(15px 5px, ellipse closest-corner,
		#666 0%,
		#000 100%
	);
	background: radial-gradient(15px 5px, ellipse closest-corner,
		#666 0%,
		#000 100%
	);
}

/* 顔 */
#kao {
	position: relative;
	top: 50px;
	margin: 0 auto;
	-moz-border-radius: 100px 100px 120px 120px / 120px 120px 100px 100px;
	-webkit-border-top-left-radius: 100px 120px;
	-webkit-border-top-right-radius: 100px 120px;
	-webkit-border-bottom-right-radius: 120px 100px;
	-webkit-border-bottom-left-radius: 120px 100px;
	border-radius: 100px 100px 120px 120px / 120px 120px 100px 100px;
	width: 300px;
	height: 180px;
	background: #ddc;
	background-image: -moz-linear-gradient(255deg,
		#ffe 10%,
		#ddc 40%,
		#ccb 60%,
		#998 80%);
	background-image: -webkit-gradient(linear, left top, right bottom,
		color-stop(.1, #ffe),
		color-stop(.4, #ddc),
		color-stop(.6, #ccb),
		color-stop(.8, #998)
	);
	background-image: -o-linear-gradient(300deg,
		#ffe 10%,
		#ddc 40%,
		#ccb 60%,
		#998 80%);
	background-image: -ms-linear-gradient(300deg,
		#ffe 10%,
		#ddc 40%,
		#ccb 60%,
		#998 80%);
	background-image: linear-gradient(135deg,
		#ffe 10%,
		#ddc 40%,
		#ccb 60%,
		#998 80%);
	-moz-box-shadow: inset -2px -5px 10px rgba(127,127,127,.3),
		inset -12px -15px 20px rgba(127,127,127,.1),
		inset 2px 5px 10px rgba(255,255,238,.3),
		inset 12px 15px 20px rgba(255,255,238,.1);
	-webkit-box-shadow: inset -2px -5px 10px rgba(127,127,127,.5),
		inset -12px -15px 20px rgba(127,127,127,.3),
		inset 2px 5px 10px rgba(255,255,238,.5),
		inset 12px 15px 20px rgba(255,255,238,.3);
	box-shadow: inset -2px -5px 10px rgba(127,127,127,.5),
		inset -12px -15px 20px rgba(127,127,127,.3),
		inset 2px 5px 10px rgba(255,255,238,.5),
		inset 12px 15px 20px rgba(255,255,238,.3);
}

/* 目 */
#hidari-me-mawari,
#migi-me-mawari {
	position: absolute;
	top: 55px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	width: 60px;
	height: 70px;
	background: #000;
}

#hidari-me-mawari {
	left: 55px;
	-moz-transform: rotate(20deg) skew(-10deg);
	-webkit-transform: rotate(20deg) skew(-10deg);
	-ms-transform: rotate(20deg) skew(-10deg);
	-o-transform: rotate(20deg) skew(-10deg);
	transform: rotate(20deg) skew(-10deg);
}
#migi-me-mawari {
	right: 55px;
	-moz-transform: rotate(-20deg) skew(10deg);
	-webkit-transform: rotate(-20deg) skew(10deg);
	-ms-transform: rotate(-20deg) skew(10deg);
	-o-transform: rotate(-20deg) skew(10deg);
	transform: rotate(-20deg) skew(10deg);
}

#hidari-me,
#migi-me {
	z-index: 3;
	position: absolute;
	top: 15px;
	border: 2px solid #666;
	-moz-border-radius: 15px 0 15px 0;
	-webkit-border-top-left-radius: 15px;
	-webkit-border-bottom-right-radius: 15px;
	border-radius: 15px 0 15px 0;
	width: 18px;
	height: 18px;
	background: #333;
	-moz-box-shadow: inset -2px 2px 6px #000;
	box-shadow: inset -2px 2px 6px #000;
	-webkit-animation-name: blink;
	-webkit-animation-duration: 20s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: normal;
	-webkit-animation-play-state: running;
	-webkit-animation-delay: 2s;
	-webkit-animation-timing-function: ease-in;
	-moz-animation-name: blink;
	-moz-animation-duration: 20s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-direction: normal;
	-moz-animation-play-state: running;
	-moz-animation-delay: 2s;
	-moz-animation-timing-function: ease-in;
}
#hidari-me {
	left: 23px;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
@-webkit-keyframes blink {
	  0% {	-webkit-transform: rotate(45deg) scale(1, 1);	}
	  1% {	-webkit-transform: rotate(0deg) scale(1, .2);	}
	  2% {	-webkit-transform: rotate(45deg) scale(1, 1);	}
	 10% {	-webkit-transform: rotate(45deg) scale(1, 1);	}
	 11% {	-webkit-transform: rotate(0deg) scale(1, .2);	}
	 12% {	-webkit-transform: rotate(45deg) scale(1, 1);	}
	 30% {	-webkit-transform: rotate(45deg) scale(1, 1);	}
	 31% {	-webkit-transform: rotate(0deg) scale(1, .2);	}
	 32% {	-webkit-transform: rotate(45deg) scale(1, 1);	}
	 60% {	-webkit-transform: rotate(45deg) scale(1, 1);	}
	 61% {	-webkit-transform: rotate(0deg) scale(1, .2);	}
	 62% {	-webkit-transform: rotate(45deg) scale(1, 1);	}
	 70% {	-webkit-transform: rotate(45deg) scale(1, 1);	}
	 71% {	-webkit-transform: rotate(0deg) scale(1, .2);	}
	 72% {	-webkit-transform: rotate(45deg) scale(1, 1);	}
	100% {	-webkit-transform: rotate(45deg) scale(1, 1);	}
}
@-moz-keyframes blink {
	  0% {	-moz-transform: rotate(45deg) scale(1, 1);	}
	  1% {	-moz-transform: rotate(0deg) scale(1, .2);	}
	  2% {	-moz-transform: rotate(45deg) scale(1, 1);	}
	 10% {	-moz-transform: rotate(45deg) scale(1, 1);	}
	 11% {	-moz-transform: rotate(0deg) scale(1, .2);	}
	 12% {	-moz-transform: rotate(45deg) scale(1, 1);	}
	 30% {	-moz-transform: rotate(45deg) scale(1, 1);	}
	 31% {	-moz-transform: rotate(0deg) scale(1, .2);	}
	 32% {	-moz-transform: rotate(45deg) scale(1, 1);	}
	 60% {	-moz-transform: rotate(45deg) scale(1, 1);	}
	 61% {	-moz-transform: rotate(0deg) scale(1, .2);	}
	 62% {	-moz-transform: rotate(45deg) scale(1, 1);	}
	 70% {	-moz-transform: rotate(45deg) scale(1, 1);	}
	 71% {	-moz-transform: rotate(0deg) scale(1, .2);	}
	 72% {	-moz-transform: rotate(45deg) scale(1, 1);	}
	100% {	-moz-transform: rotate(45deg) scale(1, 1);	}
}
#migi-me {
	right: 23px;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

#hidari-me-dama,
#migi-me-dama {
	margin: 4px;
	border: 1px solid #444;
	-moz-border-radius: 100%;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	width: 3px;
	height: 3px;
	background: #ddd;
}


/* 鼻と口 */
#hana-to-kuchi {
	position: relative;
	top: 70px;
	left: 100px;
	-moz-border-radius: 80px 80px 60px 60px / 80px;
	-webkit-border-top-left-radius: 80px 80px;
	-webkit-border-top-right-radius: 80px 80px;
	-webkit-border-bottom-right-radius: 60px 80px;
	-webkit-border-bottom-left-radius: 60px 80px;
	border-radius: 80px 80px 60px 60px / 80px;
	width: 100px;
	height: 100px;
	background: #eed;
	background-image: -moz-linear-gradient(300deg,
		#fff 10%,
		#eed 20%,
		#eed 80%,
		#ccb 90%,
		#998
	);
	background-image: -webkit-gradient(linear, left top, right bottom,
		color-stop(10%, #fff),
		color-stop(20%, #eed),
		color-stop(80%, #eed),
		color-stop(90%, #ccb),
		color-stop(100%, #998)
	);
	background-image: -o-linear-gradient(300deg,
		#fff 10%,
		#eed 20%,
		#eed 80%,
		#ccb 90%,
		#998
	);
	background-image: -ms-linear-gradient(300deg,
		#fff 10%,
		#eed 20%,
		#eed 80%,
		#ccb 90%,
		#998
	);
	background-image: linear-gradient(300deg,
		#fff 10%,
		#eed 20%,
		#eed 80%,
		#ccb 90%,
		#998
	);
	-moz-box-shadow: inset -2px -5px 10px rgba(127,127,127,.3),
		2px 5px 10px rgba(127,127,127,.2);
	-webkit-box-shadow: 2px 5px 10px rgba(127,127,127,.3);
	box-shadow: inset -2px -5px 10px rgba(127,127,127,.3),
		2px 5px 10px rgba(127,127,127,.2);
}
#hana {
	position: relative;
	top: 40px;
	left: 30px;
	-moz-border-radius: 5px 5px 25px 25px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 25px;
	-webkit-border-bottom-left-radius: 25px;
	border-radius: 5px 5px 25px 25px;
	width: 40px;
	height: 15px;
	background: #222;
	background: -moz-radial-gradient(20px 5px, ellipse closest-side,
		#999 0%,
		#000 100%
	);
	background: -webkit-gradient(radial,
		20% 20%, 0,
		20% 20%, 20,
		from(#666),
		color-stop(10%, #666),
		color-stop(50%, #222),
		to(#222)
	);
	background: -ms-radial-gradient(20px 5px, ellipse closest-side,
		#999 0%,
		#000 100%
	);
	background: radial-gradient(20px 5px, ellipse closest-side,
		#999 0%,
		#000 100%
	);
}
#kuchi {
	position: relative;
	margin: 50px auto;
	border: 2px solid #000;
	-moz-border-radius: 0 0 20px 20px;
	-webkit-border-bottom-right-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	border-radius: 0 0 20px 20px;
	width: 50px;
	height: 20px;
	background: #d33;
	background-image: -moz-linear-gradient(top,
		#a22 60%,
		#d33);
	background-image: -webkit-gradient(linear, left top, left bottom,
		color-stop(.6, #a22),
		to(#d33)
	);
	background-image: -o-linear-gradient(top,
		#a22 60%,
		#d33);
	background-image: -ms-linear-gradient(top,
		#a22 60%,
		#d33);
	background-image: linear-gradient(top,
		#a22 60%,
		#d33);
}
#hidari-hana-shita,
#migi-hana-shita {
	position :absolute;
	top: -12px;
	-moz-border-radius: 0 0 25px 25px;
	-webkit-border-bottom-right-radius: 25px;
	-webkit-border-bottom-left-radius: 25px;
	border-radius: 0 0 25px 25px;
	width: 35px;
	height: 25px;
	background: #eed;
}
#hidari-hana-shita {
	left: -4px;
}
#migi-hana-shita {
	right: -4px;
}


/*	胴体
------------------------------------------------------------ */
#doutai {
	z-index: 1;
	position: relative;
	margin: 0 auto;
	margin-top: -30px;
	-moz-border-radius: 20px 20px 25px 25px;
	-webkit-border-top-left-radius: 20px;
	-webkit-border-top-right-radius: 20px;
	-webkit-border-bottom-right-radius: 25px;
	-webkit-border-bottom-left-radius: 25px;
	border-radius: 20px 20px 25px 25px;
	padding-top: 30px;
	width: 200px;
	height: 180px;
	background: #ddc;
	background-image: -moz-linear-gradient(300deg,
		#ddc 40%,
		#ccb 60%,
		#998 80%
	);
	background-image: -webkit-gradient(linear, left top, right bottom,
		color-stop(40%, #ddc),
		color-stop(60%, #ccb),
		color-stop(80%, #998)
	);
	background-image: -o-linear-gradient(300deg,
		#ddc 40%,
		#ccb 60%,
		#998 80%
	);
	background-image: -ms-linear-gradient(300deg,
		#ddc 40%,
		#ccb 60%,
		#998 80%
	);
	background-image: linear-gradient(135deg,
		#ddc 40%,
		#ccb 60%,
		#998 80%
	);
	-moz-box-shadow: inset -2px -5px 10px rgba(127,127,127,.3),
			inset -12px -15px 20px rgba(127,127,127,.1);
	-webkit-box-shadow: inset -2px -5px 10px rgba(0,0,0,.08);
	box-shadow: inset -2px -5px 10px rgba(127,127,127,.5),
		inset -12px -15px 20px rgba(127,127,127,.3);
}
#mune {
	height: 50px;
	background: #000;
}

/* 手 */
#hidari-te,
#migi-te {
	position: absolute;
	top: 22px;
	width: 50px;
	height: 150px;
	background: #000;
}
#hidari-te {
	left: -50px;
	-moz-border-radius: 50px 0 20px 20px;
	-webkit-border-top-left-radius: 50px;
	-webkit-border-bottom-right-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	-o-border-radius: 50px 0 20px 20px;
	border-radius: 50px 0 20px 20px;
	-moz-transform: rotate(25deg) skew(10deg);
	-webkit-transform: rotate(25deg) skew(10deg);
	-ms-transform: rotate(25deg) skew(10deg);
	-o-transform: rotate(25deg) skew(10deg);
	transform: rotate(25deg) skew(10deg);
	background: -moz-radial-gradient(10px 15px, circle closest-corner,
		#666 0%,
		#000 100%
	);
	background: -webkit-gradient(radial,
		10% 10%, 0,
		20% 20%, 20,
		from(#666),
		color-stop(10%, #666),
		color-stop(50%, #222),
		to(#000)
	);
	background: -ms-radial-gradient(10px 15px, circle closest-corner,
		#666 0%,
		#000 100%
	);
	background: radial-gradient(10px 15px, circle closest-corner,
		#666 0%,
		#000 100%
	);
}
#migi-te {
	right: -50px;
	-moz-border-radius: 0 50px 20px 20px;
	-webkit-border-top-right-radius: 50px;
	-webkit-border-bottom-right-radius: 20px;
	-webkit-border-bottom-left-radius: 20px;
	border-radius: 0 50px 20px 20px;
	-moz-transform: rotate(-25deg) skew(-10deg);
	-webkit-transform: rotate(-25deg) skew(-10deg);
	-ms-transform: rotate(-25deg) skew(-10deg);
	-o-transform: rotate(-25deg) skew(-10deg);
	transform: rotate(-25deg) skew(-10deg);
}

/* 足 */
#ashi {
	margin: -20px auto 0;
	width: 200px;
	height: 70px;
}
#hidari-ashi,
#migi-ashi {
	width: 50px;
	height: 70px;
	background: #000;
	-moz-border-radius: 0 0 15px 15px;
	-webkit-border-bottom-right-radius: 15px;
	-webkit-border-bottom-left-radius: 15px;
	border-radius: 0 0 15px 15px;
}
#hidari-ashi {
	float: left;
}
#migi-ashi {
	float: right;
}



/* ============================================================
	後ろ姿
============================================================ */

/* 以下は、#panda内をクリックした時の表示指定

/*	頭部
------------------------------------------------------------ */

/* 目 */
#panda:active #hidari-me-mawari,
#panda:active #migi-me-mawari {
	display :none;
}

/* 鼻と口 */
#panda:active #hana-to-kuchi {
	display :none;
}


/*	胴体
------------------------------------------------------------ */
#panda:active::before {
	content: "後ろ姿";
	display: block;
	position: absolute;
	top: .5em;
	left: .5em;
	-moz-border-radius: 1.5em 3em 3em 1.5em / 1.5em ;
	-webkit-border-top-left-radius: 1.5em;
	-webkit-border-top-right-radius: 3em 1.5em;
	-webkit-border-bottom-right-radius: 3em 1.5em;
	-webkit-border-bottom-left-radius: 1.5em;
	border-radius: 1.5em 3em 3em 1.5em / 1.5em;
	padding: .5em;
	background: rgba(255,255,224,.6);
	color: #400;
	font-size: 150%;
	-ms-writing-mode: tb-rl;
}

#panda:active #shippo {
	position: absolute;
	bottom: 5px;
	left: 75px;
	-moz-border-radius: 50px 20px 30px 20px;
	-webkit-border-top-left-radius: 50px;
	-webkit-border-top-right-radius: 20px;
	-webkit-border-bottom-right-radius: 30px;
	-webkit-border-bottom-left-radius: 20px;
	border-radius: 50px 20px 30px 20px;
	width: 50px;
	height: 50px;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	background: rgba(221,221,204,.3);
	background-image: -moz-linear-gradient(-45deg,
		rgba(221,221,204,0),
		rgba(221,221,204,.2) 30%,
		rgba(221,221,204,.4) 50%,
		rgba(221,221,204,.3) 80%
	);
	background-image: -webkit-gradient(linear, left top, left bottom,
		from(rgba(221,221,204,.0)),
		to(rgba(221,221,204,.4))
	);
	background-image: -o-linear-gradient(-45deg,
		rgba(221,221,204,0),
		rgba(221,221,204,.2) 30%,
		rgba(221,221,204,.4) 50%,
		rgba(221,221,204,.3) 80%
	);
	background-image: -ms-linear-gradient(-45deg,
		rgba(221,221,204,0),
		rgba(221,221,204,.2) 30%,
		rgba(221,221,204,.4) 50%,
		rgba(221,221,204,.3) 80%
	);
	background-image: linear-gradient(-45deg,
		rgba(221,221,204,0),
		rgba(221,221,204,.2) 30%,
		rgba(221,221,204,.4) 50%,
		rgba(221,221,204,.3) 80%
	);
	-moz-box-shadow: inset -10px -10px 15px rgba(128,128,128,.3),
		2px 2px 4px rgba(128,128,128,.3);
	-webkit-box-shadow: inset -10px -10px 15px rgba(128,128,128,.3),
		2px 2px 4px rgba(128,128,128,.3);
	box-shadow: inset -10px -10px 15px rgba(128,128,128,.3),
		2px 2px 4px rgba(128,128,128,.3);
}
#panda:active #shippo::after {
	content: attr(title);
	display :block;
	padding: .2em;
	width: 13em;
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	background: #d00;
	color: #fff;
	letter-spacing: .1em;
}

