@charset "utf-8";

/* page02 */
#container .page section.n01 {
	margin-top: 100px;
	margin-bottom: 100px;
}
#container .page section.n01 .grid {
	display: grid;
	grid-template-columns: 500px 1fr;
}
#container .page section.n01 .grid .full {
	font-size: 50px;
	font-weight: bold;
}
#container .page section.n01 .wrap .year {
	font-size: 26px;
	font-weight: bold;
	margin-top: 130px;
}
#container .page section.n01 .wrap ul li .month {
	position: absolute;
	top: 0;
	left: 0;
	width:100px;
	height: auto;
	display: block;
}
#container .page section.n01 .wrap .year:first-child {
	margin-top: 0;
}
#container .page section.n01 .wrap ul {
	margin-top: 30px;
}
#container .page section.n01 .wrap ul li {
	position: relative;
	margin-bottom: 30px;
}
#container .page section.n01 .wrap ul li:last-child {
	margin-bottom: 0;
}
#container .page section.n01 .wrap ul li span {
	font-size: 26px;
}
#container .page section.n01 .wrap ul li .text {
	display: block;
	padding-left: 100px;
}

/* 반응형 */
@media screen and (max-width: 1000px) {
	#container .page section.n01 {
		margin-top: 80px;
	}
	#container .page section.n01 .grid {
		grid-template-columns: 1fr;
		row-gap: 50px;
	}
	#container .page section.n01 .grid .full {
		font-size: 40px;
		text-align: center;
	}
	#container .page section.n01 .wrap ul li span {
		font-size: 18px;
	}
	#container .page section.n01 .wrap ul li .month {
		position: relative;
		margin-bottom: 5px;
	}
	#container .page section.n01 .wrap ul li .text {
		position: relative;
		padding-left: 20px;
	}
	#container .page section.n01 .wrap ul li .text::before {
		content: '';
		position: absolute;
		top: 0;
		left: 6px;
		width: 3px;
		height: 100%;
		background-color: #ddd;
	}
	#container .page section.n01 .wrap .year {
		margin-top: 60px;
	}
}
