@charset "UTF-8";
/* CSS Document */
#contents{
	padding: 0px 8.16vw 0px;
}
.hist_cnt{
	position: relative;
}
.hist_cnt::before{
	content: "";
	width: 1px;
	height: calc(100% - 200px);
	background: #1E286E;
	position: absolute;
	top: 10px;
	left: 5px;
}
.histroy dl{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-bottom: 36px;
	gap: 20px;
}
.histroy dl:first-child{
	margin-top: 0px;
}
.histroy dl dt{
	font-size: 2.6rem;
	font-weight: 600;
	line-height: 1;
	color: #1E286E;
	padding-left: 28px;
	position: relative;
}
.histroy dl dt::before{
	content: "";
	width: 10px;
	height: 10px;
	background: #1E286E;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(0,-50%);
}
.histroy dl dt span{
	font-size: 1.4rem;
	margin-left: 5px;
}
.histroy dl dd{
	width: 80%;
}
.histroy dl dd .img{
	margin-top: 12px;
}
.histroy dl dd .img img{
	width: auto;
}

/*ipadair*/
@media only screen and (max-width: 820px) {
	.hist_cnt::before{
		height: calc(100% - 240px);
	}
	.histroy dl{
		display: block;
	}
	.histroy dl dt{
		margin-bottom: 10px;
	}
	.histroy dl dd{
		padding-left: 28px;
	}
}
@media only screen and (max-width: 767px) {
	#contents {
        padding: 52px 16px 0px;
    }
}