@charset "utf-8";
/* CSS Document */



/*---------------wrapper----------------*/
#intro {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	content: '';
    background-image: url(../img/task/backimg.png);
    background-repeat: no-repeat;
    background-position: center 270px;
}
#intro .next_btn {
	margin: 0;
}
#intro .logarea .nextarea .next_btn {
    background-image: url(../img/intro/next_btn.jpg);
}
#intro.next_off .logarea .nextarea .next_btn {
	background-image: url(../img/next_btn_gray.jpg);/*クリック後3秒間はクリック無効（背景グレーアウト）*/
}
/*#intro .read {
	text-align: center;
	position: relative;
}
#intro .read h1 {
	margin: 21px 0 0;
	z-index: 1;
	position: relative;
}
#intro .read figure {
	position: absolute;
	top: 0px;
	left: 50%;
	opacity: 0;
	transform: translateX(-50%);
	animation-name: readslide;
	animation-duration: 0.6s;
	animation-fill-mode:forwards;
	z-index: 0;
}*/
/*#intro .menuwrap {
	padding-bottom: 80px;
	box-sizing: border-box;
	position: relative;
}*/
#intro .menu {
	width: 915px;
	margin: 0 auto;
	position: relative;
	text-align: center;
}
#intro .menu figure {
	margin:0;
}
#intro .menu figure img {
	width: 100%;
}
#intro .menu .monitor {
	position: absolute;
	right: -63px;
	bottom: -100px;
	animation: poyon 1.1s linear 0.3s 1 forwards;
	animation-delay: 1s;
	opacity: 0;
}
/*#intro .menuwrap p.next_btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
	margin: 0;
}
#intro .menuwrap p.next_btn a {
	color: #ffffff;
	box-sizing: border-box;
	padding: 9px 60px 5px 30px;
	background-color: #B90000;
    border-radius: 5px;
	font-weight: bold;
	font-size: 24px;
	display: inline-block;
}
#intro .menuwrap p.next_btn a:after {
    content: '';
    background-image: url(../img/intro/next.png);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 27px;
    animation-name: arrowslide;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    background-repeat: no-repeat;
    background-position: 0% center;
}
#intro .menuwrap p.next_btn a:hover {
	animation-name: pop2;
	animation-duration: .3s;
	animation-timing-function: linear;
	animation-iteration-count: 1;
}*/
#intro .element2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: hsla(0,0%,100%,0.9);*/
    display: none;
	opacity: 0;

}
#intro .element2 {
	display: block;
	animation-name: fadein;
	animation-duration: .3s;
	animation-fill-mode:forwards;
	z-index: 1;
}
#intro .ebis {
	position: absolute;
	left: 180px;
	bottom: 194px;
	position: absolute;
    z-index: 1;
}
#intro .user {
	position: absolute;
	right: 150px;
	bottom: 200px;
}
#intro.active1 .user {
	opacity: 1;
	bottom: 60px;
	right: 370px;
	transition: 0.5s;

}
#intro.active2 .user {
	opacity: 1;
	bottom: 200px;
	right: 300px;
}
#intro .log1 {
	animation-name: log1;
	animation-duration: 1s;
	animation-delay: 1.3s;
	animation-timing-function: ease-out;
	animation-iteration-count: 1;
	animation-fill-mode:forwards;
}
#intro.active1 .log1 {
	animation-name: log2;
	animation-duration: 2s;
	animation-delay: 1.3s;
	animation-timing-function: ease-out;
	animation-iteration-count: 1;
	animation-fill-mode:forwards;
}
#intro.active1 .log2 {
	animation-name: log3;
	animation-duration: 1s;
	animation-delay: 1.3s;
	animation-timing-function: ease-out;
	animation-iteration-count: 1;
	animation-fill-mode:forwards;
}
#intro.active2 .log2 {
	animation-name: log4;
	animation-duration: 1s;
	animation-delay: 0.8s;
	animation-timing-function: ease-out;
	animation-iteration-count: 1;
	animation-fill-mode:forwards;
}
#intro.active2 .log3 {
	animation-name: log5;
	animation-duration: 1s;
	animation-delay: 0.8s;
	animation-timing-function: ease-out;
	animation-iteration-count: 1;
	animation-fill-mode:forwards;
}


@keyframes readslide {
	0% { 
		top: 0px;
		opacity: 0;
	}
	100% { 
		top: 110px;
		opacity: 1
	}
}


@keyframes arrowslide {
	0% { right: 22px; }
	50% { right: 8px; }
	100% { right: 22px; }
}


@keyframes poyon {
  0% {
	  transform: scale(0.8, 1.4) translate(0%, -100%);
	  opacity: 1;
	}
  10%  { transform: scale(0.8, 1.4) translate(0%, -15%); }
  20%  { transform: scale(1.4, 0.6) translate(0%, 30%); }
  30%  { transform: scale(0.9, 1.1) translate(0%, -10%); }
  40%  { transform: scale(0.95, 1.2) translate(0%, -30%); }
  50%  { transform: scale(0.95, 1.2) translate(0%, -10%); }
  60%  { transform: scale(1.1, 0.9) translate(0%, 5%); }
  70%  { transform: scale(1.0, 1.0) translate(0%, 0%); }
  100% {
	  transform: scale(1.0, 1.0) translate(0%, 0%);
	  opacity: 1
	}
}

@keyframes ebisu1 {
	0% { bottom: -360px; }
	100% { bottom: 46px; }
}

@keyframes ebisu2 {
	100% { opacity: 0; }
}

@keyframes ebisu3 {
	100% { opacity: 1; }
}

@keyframes ebisu4 {
	100% { opacity: 1; }
}

@keyframes ebisu5 {
	100% { opacity: 0; }
}

@keyframes user1 {
	100% { opacity: 1; }
}


@keyframes log1 {
	100% { top: 15px; }
}

@keyframes log2 {
	100%{ opacity: 0; }
}

@keyframes log3 {
	100%{ top: 15px; }
}

@keyframes log4 {
	100%{ opacity: 0; }
}

@keyframes log5 {
	100%{ top: 15px; }
}

