#logo{
	position: absolute;
	top:3%;
	left:3%;
	width: 21%;
	-webkit-animation: fade-in 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

#catch{
	position: absolute;
	left:0;
	bottom:4%;
	width: 43%;
	-webkit-animation: fade-in-left 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000)  both;
	        animation: fade-in-left 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000)  both;
}

#point_cnt{
	width: 52%;
	display: flex;
	justify-content:space-between;
	position: absolute;
	right: 1.25%;
	bottom:13%;

}

.point{
	border: solid 1.5px #b9a47a;
	border-radius: 50%;
	background: rgba(255,255,255,0.5);
	width: 24%;
}

.point_height{
	position: relative;
	padding-top: 100%;
	height: 0;
}

.point_height p{
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	top: calc((100% - 1.25em)/2.25);
	font-size:1.3vw;
	color: #b9a47a;
	line-height: 1.25em;
}

#move_1st{
	-webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s both;
	        animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.5s both;
}

#move_2nd{
	-webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.7s both;
	        animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.7s both;
}

#move_3rd{
	-webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.9s both;
	        animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 0.9s both;
}

#move_4th{
	-webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1.1s both;
	        animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) 1.1s both;
}

@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}


@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 768px){
	#logo{
		position: absolute;
		top:3%;
		left:3%;
		width: 31.25%;
		-webkit-animation: fade-in 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
				animation: fade-in 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	}

	#catch{
		position: absolute;
		left:0;
		bottom:20%;
		width: 76.5%;
		-webkit-animation: fade-in-left 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000)  both;
				animation: fade-in-left 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000)  both;
	}
	
	#point_cnt{
		width: 95%;
		display: flex;
		justify-content:space-between;
		position: absolute;
		left:2.5%;
		right: 2.5%;
		bottom:20px;
	}
	
	.point{
		width: 23.5%;
	}

	.point_height p{
		top: calc((100% - 1.25em)/2.5);
		font-size:3vw;
	}
}

