.words-box {
	overflow: hidden;
	position: relative;
	margin-top: 40px;
	padding-bottom: 60px;
}
.words-box__items {
	margin-top: -50px;
}
.words-box__items:first-child {
	margin-bottom: 50px;
}
.words-box__item {
	width: 100%;
	padding-top: 50px;
}
.words-box__item-inner > *:first-child {
	margin-top: 0;
}
.words-box__title {
	text-align: left;
}
.words-box__text {
	margin-top: 15px;
}
.words-box__btn {
	margin-top: 15px;
}
@media (min-width: 744px) {
	.words-box {
		display: flex;
		justify-content: space-between;
		width: 100%;
		margin-top: 50px;
		padding-bottom: 100px;
	}
	.words-box::before {
		content: "";
		position: absolute;
		left: 50%;
		top: 0;
		width: 1px;
		height: calc(100% - 140px);
		background-color: var(--color-border);
	}
	.words-box__items {
		width: calc(50% - 15px);
		margin-top: -80px;
	}
	.words-box__items:first-child {
		margin-bottom: 0;
	}
	.words-box__item {
		padding-top: 80px;
		padding-left: 15px;
	}
	.words-box__text {
		margin-top: 20px;
	}
	.words-box__btn {
		margin: 20px 20px 0;
	}
	.words-box__btn + .words-box__btn {
		margin-top: 15px;
	}
}