.wrap {
	display: flex;
	gap: 14.5rem;
	flex-direction: row;
	align-items: flex-start;
}

.wrap_left {
	display: flex;
	gap: 2rem;
	flex-direction: column;
}
.wrap_right {
	flex:none;
	position: relative;
	width: 30%;
	display: inline-flex;
}
.wrap_right::before {
	background-color: #f6f6f6;
	border-radius: 4rem;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	top: 4rem;
	right: 4rem;
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
}
.greetings_dl dt{
	font-size: 1.8rem;
	line-height: 1.6;
	word-break: keep-all;
	word-wrap: break-word;
	font-weight: 700 !important;
}
.greetings_dl dd{
	font-size: 1.8rem;
	line-height: 1.6;
	word-break: keep-all;
	word-wrap: break-word;
	font-weight: 400 !important;
}

/*-------------------------------------------------

Responsive

-------------------------------------------------*/
/* Media Query */

@media (max-width: 1024px){
	.wrap {
		flex-direction: column;
		gap:4rem;
	}
	.wrap_right {
		width: 100%;
		text-align: center;
		justify-content: space-evenly;
	}
	.wrap_right::before{
		display: none;
	}
}