@charset "UTF-8";

.js_isPc .contents_wrap, .js_isPc .contents_wrap a {
  position: relative;
  cursor: none;
}

.js_isMobile .cursor, .js_isMobile .follower{
	display: none;
}

.js_isTablet .cursor, .js_isTablet .follower{
	display: none;
}

.iPad .cursor, .iPad .follower{
	display: none;
}

.cursor,
.follower {
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.cursor {
  width: 8px;
  height: 8px;
  background-color: #000;
  z-index: 9999;
}

.follower {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: rgba(253, 254, 0, 0.5);
  z-index: 9998;
  transition: transform ease 0.1s;
  text-align: center;
}
.follower span {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  transform: scale(0);
}
.follower.is-active {
  transform: scale(3);
}

.btn {
  display: inline-block;
  width: 160px;
  margin: 16px;
  text-align: center;
  font-size: 16px;
  line-height: 1;
}
.btn a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 16px;
  background-color: #000;
  cursor: none;
}

