#intro{
	position: relative;
	overflow-x: hidden;
	padding-bottom: 5em;
}

#intro .bg{
	position: absolute;
	width:100vw;
	height: 100vh;
	left: 50%;
	transform: translateX(-50%);
	transform-origin: left center;
	background-image: url(/img/content/bg_intro.png);
	background-repeat: no-repeat;
	background-size: cover;
	animation: intro 3s ease forwards;
	z-index: -1;	
}
#intro .bg::before{
	content: "";
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 90%);
    width: 100%;
    height: 10em;
    position: absolute;
    bottom: -10px;
    z-index: 10;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: bottom center;
}
#intro .bg::after{
	content: "";
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 1) 80%);
	width:100%;
	height: 100%;
	position: absolute;	
	bottom: -50px;
	z-index: 10;
	background-size: 0 100%;
	background-repeat: no-repeat;
	background-position: bottom center;
    animation: gradient 1s ease forwards;
	animation-delay: 2s;	
}

@keyframes intro{
	0%{
		transform: scale(1) translateX(-50%);	
		top:0;	
	}
	50%{
		transform: scale(1.2) translateX(-50%);			
		top:0;
	}
	100%{
		transform: scale(1.2) translateX(-50%);	
		top:-15em;
	}
}
@keyframes gradient {
	0% {
		background-size: 100% 0;
	}	
	100% {
		background-size: 100vw 100vh;
	}
}

.intro-top {
	padding-top: 20vh;	
	animation: top 1s ease forwards;
	animation-delay: 3s;
	margin-top: 10%;
	opacity: 0;
}
.intro-top .logo{	
	display: block;
	margin: auto 0;
	text-align: center;
}

.intro-top h2{
	font-size: 3em;
	text-align: center;
	margin-top: 5rem;
	line-height: 1.2;
	font-weight: 400;
}

.intro-top .dday{
	font-size: 2.5em;
	text-align: center;
	margin-top: 1em;	
	font-weight: 300;
}

/*
.intro-top .dday .day{
	display: inline-block; 
	border: 1px solid #ddd;
	border-radius: .125em;
	width: 1.25em;
	font-weight: 900;
	margin: 0 .1em;
	color: #0022FF;
}
*/

.intro-top .dday .day {
    display: inline-block; 
    border: 1px solid #ddd;
    border-radius: .125em;
    width: 1.25em;
    height: 1.5em;
    line-height: 1.5em;
    font-weight: 900;
    margin: 0 .1em;
    color: #0022FF; 
    background: #fff;   
}

@keyframes top {
	0% {
		margin-top: 10%;
		opacity: 0;
	}	
	100% {
		margin-top: 0;
		opacity: 1;
	}
}
.intro-info{
	padding-top: 3em;
	animation: top 1s ease forwards;
	animation-delay: 4s;
	opacity: 0;
	margin-top: 10%;
}

.intro-info .krds-btn{
	border-radius:10em;
	padding: 0 5em;
	margin-bottom:3em;
}

.tit-wrap{
	display: flex;
	align-items: center;
	border-bottom: 1px solid #ddd;
	padding-bottom: 1em;
	margin-bottom: 1em;
}
.tit-wrap .krds-btn{
	display: flex;
	margin-left: auto;
}

.info-wrap {
	display: flex;
	flex-wrap: wrap;
}

.tit-wrap .sm{
	color: #555;
	margin-left: 1em;
	display: block;
}


.info-wrap dl{
	display: flex;
	flex-grow: 1;
	min-width: 50%;	
	padding-right: 1em;
	margin-bottom: 0.75em;
	font-size: 1.1em;
}

.info-wrap dl dt{
	font-weight: bold;
	flex-shrink: 0;
	width: 8em;
}
.info-wrap dl dd strong{
	color: #0022FF;
	font-size: 1.125em;
}

@media screen and (max-width:768px){
	.intro-top h2{
		font-size: 2.5em;
	}
	
	.intro-top .dday{
		font-size: 1.75em;
	}
	.tit-wrap{
		flex-wrap:wrap;
	}
	
	.info-wrap dl{
		font-size: 1em;
	}
}

@media screen and (max-width:425px){
	.intro-top h2{
		font-size: 2em;
	}
	
	.intro-top .dday{
		font-size: 1.5em;
	}
	
	#intro .bg{
		background-position: top center;
	}
	
}