@charset "UTF-8";

*{
  margin: 0;
  padding: 0;
}

html{
  height: 100%;
}

body{
  background-color: #fdd;
  width: 100%;
  height: 100%;
  position: relative;
}

#wrap{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 900px;
  height: 600px;
}

#canvas{
  background-color: #fdd;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}


#oppai_left{
  width: 400px;
  height: 430px;
  border-radius: 50% 40% 50% 50%;
  background: linear-gradient(-15deg,#fbb, #fee);
  position: absolute;
  top: 100px;
  left: 50px;
  z-index: 2;
}

#oppai_right{
  width: 400px;
  height: 430px;
  border-radius: 40% 50% 50% 50%;
  background: linear-gradient(-45deg,#fbb, #fee);
  position: absolute;
  top: 100px;
  left: 450px;
  z-index: 2;
}

#chikubi_left{
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(-45deg,#f98, #fcc);
  position: absolute;
  top: 360px;
  left: 140px;
  z-index: 3;
}

#chikubi_right{
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(-45deg,#f98, #fcc);
  position: absolute;
  top: 360px;
  left: 660px;
  z-index: 3;
}

