.enum--steps-1 {
	>div {
		padding-inline: var(--pd);
		.cont {
			display: flex;
			justify-content: space-between;
			position: relative;
			column-gap: 1rem;
			.steps-line {
				width: calc(80% + 1rem);
				height: 1px;
				border-top: 2px dotted var(--main);
				position: absolute;
				left: 0;
				top: 1rem;
			}
			.steps-item {
				width: calc(100% / 5 - 1rem * 4 / 5);
				position: relative;
				.check {
					display: flex;
					width: 2rem;
					height: 2rem;
					background-color: var(--main);
					border-radius: 50%;
					margin-bottom: 2.34375vw;
					position: relative;
					transition: .3s;
					&:before {
						content: '';
						width: .55rem;
						height: 0.55rem;
						background-color: var(--bg);
						border-radius: 50%;
						position: absolute;
						left: 50%;
						top: 50%;
						transform: translate(-50%,-50%);						
					}
				}
				>p:nth-child(2) {
					font-weight: 600;
				}
				>p:nth-child(3) {
					font-size: .8rem;
				}
			}		
		}
	}
	@media (max-width: 767px) {
		>div {
			.cont {
				row-gap: 1rem;
				flex-direction: column;
				.steps-line {
					width: 1px;
					height: 100%;
					border-left: 2px dotted var(--brd);
					border-top: none;
					left: 1rem;
				}
				.steps-item {
					width: 100%;
					padding-left: 3rem;
					.check {
						position: absolute;
						left: 0;top: 0;

					}
					>.ttl {
						margin-top: .3rem;
					}
				}
			}
		}
	}
}
