@charset "UTF-8";

*{
	margin:0;
	padding:0;
	}


html{
     scroll-behavior: smooth;
}

/*------------------------------
 pageTop
------------------------------*/
.pageTop__arrow {
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 50px;
  height: 50px;
  background-color: #202f55;
  border-radius: 50%;
  transition: 0.3s bottom 0s ease;
  opacity: 0.6;
  z-index: 50;
  cursor: pointer;
}

.pageTop:hover {
  opacity: 0.9;
}

.pageTop__icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.pageTop__icon::after,
.pageTop__icon::before {
  content: "";
  position: absolute;
  top: 24px;
  width: 12px;
  height: 3px;
  border-radius: 3px;
  background-color: #fff;
}

.pageTop__icon::before {
  left: 16px;
  transform: rotate(-45deg);
}

.pageTop__icon::after {
  right: 16px;
  transform: rotate(45deg);
}


