@charset "UTF-8";

.yugo {
  text-align: center;
  font-size: 1.5rem;
  color: #808090;
}

.yugo p {
  padding: 0;
  margin: 0;
}

.yugo .img-logo {
  width: 100%;
  max-width: 768px;
  margin-bottom: -2rem;
}

.yugo iframe {
  width: 100%;
  max-width: 690px;
  height: 400px;
}

@media only screen and (max-width: 767px) { 
  .yugo iframe {
    height: 300px;
  }
}

.yugo .platform-small {
  font-size: 1.0rem;
  font-weight: 700;
  line-height: 1.0;
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 0.5rem;
  border-style: solid;
}

.yugo .os-small {
  font-size: 1.0rem;
  color: #1773ad;
}

.yugo .img-screenshot {
  width: 90%;
  max-width: 480px;
  margin-bottom: -2rem;
  border-radius: 10px;
}

.yugo .background {
  z-index: -4;
  width: 100%;
  height: 384px;
  position: fixed;
  background-size: auto 100%;
  margin: 0;
  padding: 0;
}

.yugo .background.layer0 {
  background: url(assets/yugo/bg52.png) repeat-x 0 0;
  animation: yugo-bg-slider 32s linear infinite;
  bottom: -10%;
}

.yugo .background.layer1 {
  background: url(assets/yugo/bg51.png) repeat-x 0 0;
  animation: yugo-bg-slider 16s linear infinite;
  bottom: -15%;
}

@keyframes yugo-bg-slider {
	from { background-position: 0 bottom; }
    to { background-position: -384px bottom; }
}

.yugo .box {
  margin: 2rem;
  width: 90%;
  max-width: 480px;
	padding: 4rem 10px 10px 10px;
	position: relative;
	z-index: 0;
  border: solid 8px #1a6994ff;
  border-radius: 10px;
  font-size: 1rem;
}

.yugo .box .box-title {
	background-color: #1a6994ff;
	border-radius: 0px 0px 0px 0px;
	color: #fff;
	height: 3rem;
	padding: 2px 10px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 2;
  font-size: 1.5rem;
}

.yugo .box p {
  padding: 0 0 1rem 0;
  margin: 0;
}

.yugo .jelly-root {
  position: relative;
}

.yugo .jelly-wrapper {
  margin: 0;
  padding: 0;
  position: absolute;
  width: 128px;
  height: 128px;
  animation: jelly-translate 3.3s ease-in-out infinite;
	z-index: -2;
}
@keyframes jelly-translate{
  0%{ transform:rotate(-10deg); }
  50%{ transform:rotate(10deg); }
  100%{ transform:rotate(-10deg); }
}

.yugo .jelly {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  animation: jelly-rotate 4s ease-in-out infinite;
}
@keyframes jelly-rotate {
  0%{ transform:translateY(-5px); }
  50%{ transform:translateY(5px); }
  100%{ transform:translateY(-5px); }
}
@media only screen and (max-width: 767px) { 
  .yugo .jelly-wrapper {
    width: 64px;
    height: 64px;
  }
}

.yugo .shadow {
  box-shadow: 0 0rem 5rem rgba(0,0,0,.3)!important;
}

.yugo .note {
  font-size: 0.6em;
}