	ul.form {
	position: relative;
	width: 550px;
	margin: auto;
	padding: 0;
	list-style: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	background-color: #FFF;
	font-weight: extra bold;
	}
	.form li a {
	width: 100%;
	display: block;
	position: relative;
	text-decoration: none;
	font-size: 100%;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	color: #333;
	font-weight: bold;
	padding-top: 12px;
	text-transform: uppercase;
	}
	.form li a:hover {
		background:#efefef;
	}
	
	
	
	.form li a.first {
	border-left:10px solid #E7E7E7;
	border-bottom:1px solid rgba(0,153,255,.1);
	}

	.form li a.profile {
	border-left:10px solid #008747;
	border-bottom:1px solid rgba(0,153,255,.1);
	}
	.form li a.messages {
	border-left: 10px solid #fecf54;
	border-bottom:1px solid rgba(0,153,255,.1);
	}
	.form li a.settings {
	border-left:10px solid #cf2130;
	border-bottom:1px solid rgba(0,153,255,.1);
	}
	.form li a.sample {
	border-left: 10px solid #dde2d5;
	border-bottom:1px solid rgba(0,153,255,.1);
	color:green;
	font-size:80%;
	}	
	.form li a.logout {
	border-left: 10px solid #59FFFF;
	border-bottom:1px solid rgba(0,153,255,.1);
	color:blue;
	font-size:80%;
	}
	.form li a.popup {
	border-left: 10px solid #F0F;
	color:blue;
	font-size:80%;
	}	
	.form li:first-child a:hover, .form li:first-child a {
		-webkit-border-radius: 3px 3px 0 0;
		-moz-border-radius: 3px 3px 0 0;
		border-radius: 3px 3px 0 0;
	}
	.form li:last-child a:hover, .form li:last-child a {
		-webkit-border-radius: 0 0 3px 3px;
		-moz-border-radius: 0 0 3px 3px;
		border-radius: 0 0 3px 3px;
	}
	.form li a:hover i {
		color:#ea4f35;
	}

	.form i {
		margin-right:15px;
		
		-webkit-transition:all 0.2s linear;
		-moz-transition:all 0.2s linear;
		-o-transition:all 0.2s linear;
		transition:all 0.2s linear;	
	}

	.form em {
		font-size: 10px;
		background: #ea4f35;
		padding: 3px 5px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;		
		font-style: normal;
		color: #fff;
		margin-top: 17px;
		margin-right: 15px;
		line-height: 10px;
		height: 10px;		
		float:right;
	}

#top {
	background-color: rgba(0,255,204,.5);
	height: 5%;
	box-shadow: 0px 2px 3px rgba(51,51,51,.5);
}
#cm_area {
	width: 417px;
	heithg:250px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
	position:relative;
}
#cm_area:before {
	position:absolute;
	text-align:center;
	content:url(../img/amaryc.png);
	top:0px;
	left:0px;
	width:400px;
	height:250px;
	-webkit-transform-origin: 50% 50%;  
    
	animation: mymove 1s cubic-bezier(1, .22, 1, .92), mymoveR 2s 1s ease-in-out;
}

/*circle*/
.circlePositioner {
	width: 560px;
	background-size: contain;
	height: 328px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 100px;
	background-repeat: no-repeat;
	background-position: left center;
	text-align: right;
	background-color: #004FC4;
	padding: 10px;
	border-radius: 15px;
	box-shadow: inset 2px 2px 3px #036;
	transition: all .5s ease-in-out;
	}
.circlePositioner:hover {
	box-shadow: inset 0 0 0 rgba(255,255,255,0);
	background-color: #069;
}
.mainCircle {
	background-color: #999999;
	border-radius: 50%;
	display: inline-block;
	overflow: hidden;
	cursor: pointer;
	opacity: .99;
	transition: all 1s ease-in-out;
	height: 200px;
	width: 200px;
	float: right;
	margin-right: 35px;
}

.spinningContainer {
  background-color: #efefef;
  height: 50px;
  width: 100%;
  margin-top: 75px;
  position: relative;
  animation: mymoveR 1s ease-in-out;
  transform: scaleY(2);
  transition: all 2s cubic-bezier(.18, 1.51, .85, 1.4);
}

.mainCircle:hover .overlay {
  background-color: #7C9FAB;
  transition: all .3s ease-in-out;
}

.mainCircle:hover .overlay p {
	font-family:"ＭＳ ゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
	color: #6F0;
	transition: all .3s ease-in-out;
	font-weight: bold;
	text-shadow: 0px 0px 7px #FF0,0 0 2px rgba(255,255,0,1);
}

.mainCircle:hover .spinningContainer {
  -webkit-filter: blur(5px);
  animation: mymove 1s cubic-bezier(1, .22, 1, .92), myscale 2s 1s ease-in-out;
}


@keyframes mymove {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1080deg);
  }
}

@keyframes mymoveR {
  from {
    transform: rotate(1080deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes myscale {
  0% {
    transform: scaleY(2)  translateX(0);
  }
  25% {
    transform: scaleY(2.5);
  }
  50% {
    transform: scaleY(3);
  }
  75% {
    transform: scaleY(3.5);
  }
  100% {
    transform: scaleY(4)  translateX(100%);
  }
}


.leftContainer {
  background-color: rgba(255, 255, 255, 0.79);
  height: 50px;
  width: 50px;
  float: left;
}

.rightContainer {
  background-color: rgba(255, 255, 255, 0.79);
  height: 50px;
  width: 50px;
  float: right;
position:relative;
}

.overlay {
	background-color: #46626B;
	height: 190px;
	width: 190px;
	position: relative;
	border-radius: 50%;
	transition: all .3s ease-in-out;
	text-align: center;
	padding: 0px;
	margin-top: -120px;
	margin-right: auto;
	margin-left: auto;
	background-image: url(../img/amaryc.png);
	animation: mymove 55s cubic-bezier(1, .22, 1, .92) infinite, mymoveR 30s 1s ease-in-out infinite;

}
.overlay:active{
/*	background:green; */
	box-shadow:0 0 10px 2px rgba(255,255,255,.8);
}


.overlay p {
  text-align: center;
  display: inline-block;
  font-family: 'Sigmar One', cursive;
  font-size: 16pt;
  transition: all .3s ease-in-out;
  transition-delay: .8s;
  top:-20px;
  left:0;
  width:190px;
  height:110px;
  padding-top:80px;
  border-radius:50%;
}
.amazon {
	position: absolute;
	left: 60%;
	top: 60%;
	z-index: 100;
}
.red {
	color: #F00;
}
.movie {
	background-color: #0C9;
	text-align: center;
	height: 38px;
	width: 220px;
	border-radius: 3px;
	box-shadow: 1px 1px 3px #333;
	font-weight: bold;
	color: #FFF;
	padding-top: 7px;
	text-shadow: 0px 0px 2px #030;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
}
.movie a{
	display:block;
	width:220px;
	height:38px;
}
.movie2 {
	text-align: center;
	width: 220px;
	font-weight: bold;
	color: #FFF;
	font-size: 150%;
	background-color: #09F;
	box-shadow: 1px 1px 3px #333;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;

}
.movie:hover{
background:rgba(0,255,255,1);
}
/*test*/
.video-target {
    cursor: pointer;
}

.video-wrapper {
    display: none;
    position: fixed;
    min-width: 100%;
    min-height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    z-index: 21000;
}

.video-frame {
    position: absolute;
    top: 50%;
    left: 50%;
}

.video-close{
    float:right;
    margin-top:-30px;
    margin-right:-30px;
    cursor:pointer;
    color: #fff;
    border: 1px solid #AEAEAE;
    border-radius: 30px;
    background: #605F61;
    font-size: 31px;
    font-weight: bold;
    display: inline-block;
    line-height: 0px;
    padding: 11px 3px;
}

.video-close:before {
    content: "ﾃ�";
}
#dvdcase {
	width: 244px;
	background-image: url(../img/amary3.fw.png);
	background-repeat: no-repeat;
	height: 308px;
	float: left;
	transition: all .5s ease-in-out;
	transform-origin:left;
}
#dvdcase:hover {
	transform:rotateY(90deg);
}

.etc{
	display:block;
color:rgba(204,102,51,1)
text-shadow:1px 1px 3px rgba(0,0,0,1);
font-weight:bold;
margin-top:30px;
margin-left:10px;
}
/*tooltip*/
.tooltip {
  cursor: pointer;
}
.tooltip:before, .tooltip:after {
  cursor: default;
  display: block;
  position: absolute;
  left: -9999px;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  -webkit-transition: opacity 0.2s ease 0.2s;
  transition: opacity 0.2s ease 0.2s;
  pointer-events: none;
  opacity: 0;
}
.tooltip:hover:before, .tooltip:hover:after {
  opacity: 1;
  left: 50%;
}
.tooltip:before {
  top: 50px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid rgba(0, 0, 0, 0.8);
  content: "";
  z-index: 99;
  opacity: 0;
}
.tooltip:after {
  top: 27px;
  background: rgba(0, 0, 0, 0.8);
  padding: 5px 15px;
  border-radius: 2px;
  color: #fff;
  font-size: .85em;
  white-space: nowrap;
  box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.15);
  content: attr(data-tooltip);
  z-index: 98;
}
