@charset "utf-8";
/* CSS Document */
#body2 {
  font-family: '源ノ角ゴシック Code JP EL', '源ノ角ゴシック Code JP N';
  width: 950px;
  height: auto;
  margin: 0 auto;
  text-align: center;
}
#profile {
  height: 1000px;
  background: url("../img/kakeziku.jpg");
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 15px #313233;
}
h2.prf {
  font-weight: bold;
  font-size: 2em;
  margin: 0 auto;
  margin-top: 50px;
  color: #313233;
  text-align: center;
}
p.coment1 {
  font-weight: bold;
  font-size: 1.2em;
  margin: 20px 0;
  text-align: center;
  color: #313233;
}
h3.coment2 {
  text-align: left;
  font-weight: bold;
  font-size: 1.0em;
  font-display: block;
  font-style: normal;
  margin-top: 50px;
  margin-right: 100px;
  margin-left: 100px;
  color: #313233;
  line-height: 2.0em;
}
p.b {
  font-weight: normal;
  text-align: left;
  font-size: 1.0em;
  font-display: block;
  font-style: normal;
  margin: 10px 100px;
  color: #313233;
  line-height: 2.0em;
}
.rakugaki img {
  margin: 30px 0;
  text-align: center;
}
.smallbanner1 {
  text-align: center;
  line-height: 1.0em;
  margin: 60px 0;
}
.smallbanner1 a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}
.rakugaki {
  text-align: center;
  position: relative;
  width: 100%;
  height: 200px;
}
/*ボール*/
.ball {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100px;
  height: 100px;
  animation: bound-anim 1s infinite;
}
@keyframes bound-anim {
  0%, 100% {
    top: 0;
    transform: scale(1);
  }
  30% {
    top: -60%;
    transform: scale(0.96, 1.04);
  }
  60% {
    transform: scale(1);
  }
  90% {
    top: 0;
    transform: scale(1.15, 0.9);
  }
}
/*影*/
.shadow {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: -250px; /*対象のheightと微調節*/
  margin: auto;
  width: 60px;
  height: 10px;
  border-radius: 50%;
  background: #000;
  filter: blur(6px);
  opacity: 0.9;
  animation: shadow-anim 1s infinite;
}
@keyframes shadow-anim {
  0%, 100% {
    transform: scale(1);
    filter: blur(4px);
  }
  30% {
    transform: scale(1.6, 1);
    filter: blur(8px);
  }
}
@media screen and (max-width:480px) {
  /*画面幅が480pxまでの時*/
  body2 {
    width: 100%;
    text-align: center;
  }
}