.divided_section {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	display: flex;
	overflow: hidden;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	background-color: var(--cor13);
}

.divided_section_img {
	margin: 0;
	padding: 0;
	width: 50%;
	border: none;
	outline: none;
	overflow: hidden;
	min-height: 720px;
	position: relative;
	transition: all 0.2s ease;
}

.divided_section_img img {
	top: 50%;
	left: 50%;
	margin: 0;
	padding: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	transform: translate(-50%, -50%);
}

.divided_section_info {
	margin: 0;
	padding: 0;
	width: 50%;
	border: none;
	outline: none;
	display: flex;
	flex-wrap: nowrap;
	min-height: 720px;
	position: relative;
	align-items: center;
	transition: all 0.2s ease;
	justify-content: flex-start;
}

.divided_section_info img {
	right: 0;
	bottom: 0;
	z-index: 1;
	height: 260px;
	position: absolute;
	transition: all 0.2s ease;
}

.divided_section_info_inner {
	gap: 16px;
	margin: 0;
	z-index: 2;
	border: none;
	outline: none;
	display: flex;
	max-width: 550px;
	position: relative;
	flex-direction: column;
	align-items: flex-start;
	width: calc(100% - 68px);
	transition: all 0.2s ease;
	justify-content: flex-start;
	padding: 48px 20px 48px 48px;
}

.divided_section_info_1 {
	gap: 16px;
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
}

.divided_section_info_1 p {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor1);
	white-space: nowrap;
	text-align: -webkit-left;
	transition: all 0.2s ease;
	font: normal 20px/26px Figtree-SemiBold;
}

.divided_section_info_1 div {
	margin: 0;
	padding: 0;
	width: 100%;
	outline: none;
	height: 0!important;
	line-height: 0!important;
	border-bottom: 3px solid var(--cor1);
}

.divided_section_sp_p {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor1);
	word-break: break-word;
	text-align: -webkit-left;
	transition: all 0.2s ease;
	font: normal 60px/72px Calistoga-Regular;
}

.divided_section_sp_p span {
	color: var(--cor10)!important;
}

@media screen and (max-width: 1240px) {
	.divided_section_img {
		width: 40%;
	}
	.divided_section_info {
		width: 60%;
	}
	.divided_section_info_inner {
		max-width: unset;
	}
}

@media screen and (max-width: 960px) {
	.divided_section_info img {
		height: 200px;
	}
	.divided_section_img {
		width: 30%;
	}
	.divided_section_info {
		width: 70%;
	}
}

@media screen and (max-width: 700px) {
	.divided_section {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.divided_section_img {
		width: 100%;
		display: none;
	}
	.divided_section_info {
		width: 100%;
		min-height: unset;
	}
	.divided_section_info_inner {
		width: calc(100% - 40px);
		padding: 48px 20px 192px 20px;
	}
	.divided_section_info_1 p {
		font: normal 18px/22px Figtree-SemiBold;
	}
	.divided_section_sp_p {
		font: normal 50px/58px Calistoga-Regular;
	}
}

@media screen and (max-width: 200px) {
	.divided_section_info_1 p {
		white-space: pre-wrap;
		word-break: break-word;
	}
	.divided_section_info_1 div {
		display: none;
	}
}