*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.contents{
	margin: 0 auto;
	max-width: 800px;
	padding: 60px;
}
.contents h1{
	margin-bottom: 60px;
	text-align: center;
}
.box{
	border: 2px dashed #ccc;
	height: 1000px;
	padding: 20px;
}
.sticky_container{
	border: 2px dashed #7f31d6;
}
.sticky_item1{
	background: #74D7EE;
	height: 200px;
	padding: 20px;
	position: sticky;
	top: 0;
	width: 200px;
	z-index: 1;
}
.sticky_item2{
	background: #FEF968;
	height: 200px;
	margin-left: 100px;
	padding: 20px;
	position: sticky;
	top: 0;
	width: 200px;
}
.scroll_area{
	background: #ccc;
	margin-top: 60px;
	height: 1000px;
	padding: 40px;
}