@charset "UTF-8";

@media screen and (max-width: 600px) {
#Scroll { display: none; }
@-webkit-keyframes sdb {
   0% { -webkit-transform: translate(0, 30px); opacity: 0; }
  55% { opacity: 1; display: block;}
  80% { -webkit-transform: translate(0, 0); opacity: 0; }
 100% { opacity: 0; display: none;}
}

@keyframes sdb {
   0% { transform: translate(0, 30px); opacity: 0; }
  55% { opacity: 1; display: block;}
  80% { transform: translate(0, 0); opacity: 0; }
 100% { opacity: 0; display: none;}
}
}

@media screen and (min-width: 601px) {
#Link-container {
	width: 96%;
	height: 360px;
	margin: 290px 0 0 0;
	position: absolute;
	left: 2%;
	top: 40px;
	}
#sticky-air{
	height: 80px;
	position: relative;
	top: 0px;
	}
#Scroll {
	width: 40vw/*170px*/;
	height: 140px/*150px*/;
	/*
	max-height: 160px;
	min-height: 140px;*/
	text-align: center;
	text-decoration: none;
	padding: 0;
	position: -webkit-sticky;
	position: sticky;
	bottom: 2vw;/*2%*/
	left: 30vw;
	z-index: 2;
	display: inline-block;
	color: rgba(100,180,0,0.7);
	/*
	background: blue;*/
	}
#Scroll::after{
	content: "下にScroll";
	font-size: 25px;
	font-weight: bold;
	}
#Scroll span {
	position: absolute;
	top: 40px;
	bottom: 0px;
	left: 50%;
	width: 43px;
	height: 85px;
	margin-left: -20px;
	border: 5px solid rgba(100,180,0,0.7);
	border-radius: 50px;
	box-sizing: border-box;
	}
#Scroll span::before {
	position: absolute;
	top: 10px;
	left: 50%;
	content: '';
	width: 12px;
	height: 12px;
	margin-left: -6px;
	background-color: rgba(100,180,0,0.7);
	border-radius: 100%;
	-webkit-animation: sdb 2.5s infinite;
	animation: sdb 2.5s infinite;
	box-sizing: border-box;
	}

}

@-webkit-keyframes sdb {
   0% { -webkit-transform: translate(0, 0); opacity: 0; }
  55% { opacity: 1; display: block;}
  80% { -webkit-transform: translate(0, 30px); opacity: 0; }
 100% { opacity: 0; display: none;}
}

@keyframes sdb {
   0% { transform: translate(0, 0); opacity: 0; }
  55% { opacity: 1; display: block;}
  80% { transform: translate(0, 30px); opacity: 0; }
 100% { opacity: 0; display: none;}
}

