@charset "UTF-8";

body{
}

.wrap{
	position: relative;
}

.container{
	position: absolute;
	top:-10px;
	left:-10px;
	background-image: radial-gradient(farthest-side,#239ab7 1%,#82CEBC 78%,#c1c9f2 99%);
	/*background-color:black;*/
	width: 100vw;									/*#227db9-#82cf8f*/
	height: 100vh;
}
/*******************************************
.container:before, .container:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: black;
}
*********************************************/
canvas {
	z-index:1;
}
div{
    /*position: absolute;*/
	/*top:240px;*/
	/*left:530px;*/
}

.trasition {
    position: absolute;				/* 座標指定のため必須 */
    width: 100px;
    height: 100px;
    /*background-color: lightblue;*/
    border: 2px solid #333;
    text-align: center;
    line-height: 100px;
    cursor: pointer;
    transition: left 0.3s ease, top 0.3s ease;		/* 移動を滑らかに */
  }

.ripple {
    position: absolute;
	top: 200px;
    border-radius: 50%;
	border: 2px solid rgba(127, 0, 255, 0.7);
    transform: scale(0);
    animation: rippleAnim 1.5s ease-out forwards;
    pointer-events: none;
  }
  
  .ripple::before {
    content: "";
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: linear-gradient(45deg, #e8204e, #235bc8);
    z-index: -1;
  }
  
    @keyframes rippleAnim {
    to {
      transform: scale(8);
      opacity: 0;
    }
  }

@media screen and (max-width:768px){
	.wrap{
		width:100%;
	}
	.wrap > div.container > canvas{
		width:100vw;
	}
}

button{
	position:absolute;
	top:78vh;
	left:80vw;
	width:150px;
	height:43px;
	font-size:16px;
	color:#ffffff;
	border-radius:30px;
	border:1.5px solid #FE73C3;			/*#EC008C*/
	background-color:#45B1E8;			/*#47ABCC-#48D1CC*/
	z-index: 3;
}