@charset "utf-8";
body {
	background-color: #fff!important;
	/* background: url('../img/bg.jpg') repeat top center fixed; */
	/*user-select: none;*/
}
img {
	/*user-select: none;
	pointer-events: none;*/
}

section.catch{
	padding-bottom: 20px;
}
section.point{
	padding: 10px 0;
	background-color: #9BB8FF;
}
section.about{
	padding: 10px 0;
}

.diamond {
	background-color: #EF4C27;
}
.diamond-text {
	color: #fff;
}

.scroll-down {
	text-align: center;
	transform: scale(2, 1);
}
.scroll-down .arrow {
  display: inline-block;
  font-size: 64px;
  color: #000;
  animation: bounce 1s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}