
@keyframes up{
	0% {opacity: 0; transform: translate(0, 5vw) rotate(-30deg);}
	100% {opacity: 1; transform: translate(0, 0) rotate(-30deg);}
}
@keyframes up-2{
	0% {opacity: 0; transform: translate(0, 5vw) rotate(60deg);}
	100% {opacity: 1; transform: translate(0, 0) rotate(60deg);}
}

@media screen and (min-width: 600px) {
	#sitemap-main{
		height: 100vh;
		display: flex;
		align-items: center;
	}
	#sitemap-main-1{
		height: 100vh;
		display: flex;
		justify-content: center;
		align-items: center;
		position: sticky;
		top: 0;
		left: 0;
		margin: 5vw 5vw 0 10vw;
	}
	#sitemap-main-1 > h1{
		font-size: 20vh;
		line-height: 20vh;
		font-weight: normal;
		pointer-events: none;
		user-select: none;
		writing-mode: vertical-lr;
		transform: rotate(-30deg);
		text-shadow: 0 20vh 0 #f1f1f1,
					0 40vh 0 #f6f6f6,
					0 60vh 0 #fbfbfb,
					0 -20vh 0 #f1f1f1,
					0 -40vh 0 #f6f6f6,
					0 -60vh 0 #fbfbfb;
		animation: text-shadow 1s backwards;
	}
	#breadol{
	    display: flex;
	    align-content: center;
	    justify-content: flex-start;
	    list-style: none;
	    padding: 0;
	    margin: 0;
	    z-index: 1;
		transform: translate(0, 0) rotate(-30deg);
	    animation: up 1s backwards;
	    animation-delay: 0s;
	}
	#breadol > li{
	    font-size: 1.2vw;
	    color: #666;
	    line-height: 1vw;
	    display: flex;
	}
	#breadol > li > a{
	    color: #666;
	    margin-right: 2vw;
	    display: block;
	    position: relative;
	    font-weight: bold;
	}
	#breadol > li > a::after{
		content: "";
		display: block;
		width: .2vw;
		height: 1.2vw;
		background-color: #666;
		position: absolute;
		top: -.1vw;
		right: -1.1vw;		
	}
	#sitemap-list{
		display: flex;
		margin: 0 3.5vw;
	}
	.sitemap-list-1{
		font-size: 3.5vh;
		font-weight: bold;
		line-height: 3.5vh;
		margin: 0 1.5vw;
		writing-mode: vertical-lr;
		transform: translate(0, 0) rotate(-30deg);
	    animation: up 1s backwards;
	    animation-delay: .1s;
	}
	.sitemap-list-2{
		font-size: 2.5vh;
		font-weight: bold;
		color: #666;
		line-height: 2.5vh;
		margin: 0 1vw 0 0;
		writing-mode: vertical-lr;
		transform: translate(0, 0) rotate(-30deg);
	    animation: up 1s backwards;
	    animation-delay: .2s;
	}


}



@media screen and (max-width: 600px) {
	#sitemap-main{
		overflow: hidden;
	}
	#sitemap-main-1{
		width: 100vw;
		height: 80vw;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		margin: 15vw 0 0 0;
	}
	#sitemap-main-1 > h1{
		font-size: 25vw;
		line-height: 25vw;
		font-weight: normal;
		pointer-events: none;
		user-select: none;
		transform: rotate(-30deg);
		text-shadow: 0 20vw 0 #f1f1f1,
					0 40vw 0 #f6f6f6,
					0 60vw 0 #fbfbfb,
					0 -20vw 0 #f1f1f1,
					0 -40vw 0 #f6f6f6,
					0 -60vw 0 #fbfbfb;
		animation: text-shadow-3 1s backwards;
	}
	#breadol{
	    display: flex;
	    width: 60vw;
	    align-content: center;
	    justify-content: flex-start;
	    list-style: none;
	    padding: 0;
	    margin: 0;
	    z-index: 1;
		transform: translate(0, 0) rotate(60deg);
	    animation: up-2 1s backwards;
	    animation-delay: 0s;
	    position: absolute;
	    left: 40vw;
	    top: 100vw;
	}
	#breadol > li{
	    font-size: 3.6vw;
	    color: #666;
	    line-height: 3vw;
	    display: flex;
	}
	#breadol > li > a{
	    color: #666;
	    margin-right: 6vw;
	    display: block;
	    position: relative;
	    font-weight: bold;
	}
	#breadol > li > a::after{
		content: "";
		display: block;
		width: .6vw;
		height: 3.6vw;
		background-color: #666;
		position: absolute;
		top: -.3vw;
		right: -3.3vw;		
	}
	#sitemap-list{
		width: 90vw;
		display: flex;
		flex-direction: column;
		padding: 0 5vw 25vw 5vw;
	}
	.sitemap-list-1{
		font-size: 7vw;
		font-weight: bold;
		line-height: 7vw;
		margin: 3vw 0;
		transform: translate(0, 0) rotate(-30deg);
	    animation: up 1s backwards;
	    animation-delay: .1s;
	}
	.sitemap-list-2{
		font-size: 5vw;
		font-weight: bold;
		color: #666;
		line-height: 5vw;
		margin: 0 0 3vw 0;
		transform: translate(0, 0) rotate(-30deg);
	    animation: up 1s backwards;
	    animation-delay: .2s;
	}
}




