/* sec Business */
.sec_business {
	padding-top: 100px;
	margin: 0 auto;
	width: 90%;

	.col {
		display: flex;
		justify-content: center;
		gap: 30px;
	}

	.business-wrap {
		box-shadow: 0 0 0 2px #007934;
		transform: skewX(-4deg);
		padding-bottom: 46px;
		position: relative;
		overflow: hidden;
		width: 100%;
		max-width: 620px;

		.business-inner {
			transform: skewX(5deg);
			position: relative;

			img {
				margin-left: -25px;
				margin-bottom: 27px;
				max-width: 105%;
			}
		}

		.business-inner-text {
			padding: 75px 45px 0;
		}
	}

	.business-solar {
		background: #F1F9F4;
	}

	.business-ai {
		background: #FFFAEF;
	}

	.new-business {
		background: #FFC533;
		border-radius: 50%;
		color: #007934;
		font-family: 'Josefin Sans';
		font-weight: bold;
		font-size: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 28px;
		right: 7px;
		margin: 0;
		width: 140px;
		height: 140px;

		span {
			line-height: 1;
			transform: translateY(5px);
		}

		&::before {
			content: "";
			border: 1px dashed #007934;
			border-radius: 50%;
			display: block;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -50%);
			width: 123px;
			height: 123px;
		}
	}

	h2 {
		color: #007934;
		font-size: 53px;
		font-weight: bold;
		line-height: 1;
		letter-spacing: .09em;
		margin: 0;

		span {
			display: block;
			font-family: 'Josefin Sans';
			font-size: 30px;
			line-height: 1;
			position: relative;
			width: 100%;
			max-width: max-content;
			margin-bottom: 15px;
			z-index: 2;

			&::before {
				content: "";
				position: absolute;
				left: -2px;
				bottom: 7px;
				background: #FFC533;
				width: 100%;
				height: 13px;
				z-index: -1;
			}
		}
	}

	b {
		color: #FFC533;
		display: block;
		font-family: 'Josefin Sans';
		font-size: 30px;
		line-height: 1;
		letter-spacing: .09em;
		margin: 22px 0;
	}

	strong {
		color: #505050;
		font-size: 25px;
		line-height: 1;
	}

	p {
		font-size: 18px;
		line-height: 1.55;
		margin: 22px 0;
	}

	.btn {
		margin: 0 auto;
	}
}

@media (max-width: 1180px) {
	.sec_business {
		.col {
			align-items: center;
			flex-flow: column;
		}

		.business-wrap {
			transform: none;

			.business-inner {
				transform: none;

				img {
					margin-left: -15px;
					margin-bottom: 40px;
				}
			}
		}
	}
}

/* sp size */
@media (max-width: 767px) {
	.sec_business {
		padding-top: 24px;
		width: calc(100% - 48px);

		.col-title {
			display: flex;
			justify-content: space-between;
		}

		.new-business {
			font-size: 24px;
			position: relative;
			top: auto;
			right: auto;
			width: 100px;
			height: 100px;
			margin-top: -12px;
			margin-right: -10px;

			&::before {
				width: 88px;
				height: 88px;
			}
		}

		p {
			margin: 20px 0 10px;
		}

		.business-wrap {
			padding-bottom: 35px;

			.business-inner-text {
				padding: 35px 22px 0;
			}
		}

		h2 {
			font-size: 36px;

			span {
				font-size: 23px;

				&::before {
					bottom: 3px;
				}
			}
		}

		b {
			font-size: 28px;
			margin: 20px auto;
		}

		strong {
			font-size: 23px;
			margin: 0 auto;
		}
	}
}