@charset "utf-8";
/* CSS Document */
footer{	padding: 0 0 90px;}
footer .footer_menu { padding: 10px 0; text-align: center; background: #fff;}
footer .footer_menu ul { font-size: 0;}
footer .footer_menu ul li { font-size: 12px; display: inline-block; padding-right: 1em; margin-right: 1em; border-right: solid 1px #131313;}
footer .footer_menu ul li:last-child { margin-right: 0; padding-right: 0; border: none;}
footer .footer_menu ul li a { color: #131313;}
footer .footer_menu ul li a:hover { text-decoration: underline;}
footer #copyright { background: #131313; text-align: center; padding: 10px 0;}
footer #copyright p { font-size: 10px; color: #fff;}
.btn_line {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 280px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    background: #01BC00;
    color: #fff;
    border-radius: 50px;
    box-shadow: 0px 3px 3px 1px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    text-decoration: none;
    transition: all .3s ease;
	z-index: 999;
}

.btn_line:hover {
    opacity: 0.7;
}

.btn_line::before {
    position: absolute;
    content: "＼1分でエントリー完了！／";
    font-size: 14px;
    width: 100%;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
}


/*アニメーション*/
.animation{
  animation: buruburu 1s linear infinite;
  scale: 1;
  width: 96%;
  margin: auto;
}

@keyframes buruburu{
 0%{transform:translateX(0)}
 7%{transform:translateX(-10px)}
 14%{transform:translateX(10px)}
 20%{transform:translateX(-10px)}
 32%{transform:translateX(10px)}
 40%{transform:translateX(0px)}
}

@media screen and (max-width:767px){
}
@media screen and (max-width:360px){
}