@charset "utf-8";
/* ===================================================================
 Avepoint
=================================================================== */
.margin-top-none {
	margin-top: 0!important;
}
.max-w-md {
	max-width: 20rem;
}
@media screen and (min-width: 48em) {
	.max-w-md {
		max-width: inherit;
	}
}
.solution-arrow {
	position: relative;
	margin: 0 auto;
	max-width: 475px;
	width: 100%;
	padding: .6rem 1rem .9rem;
	background: #00689f;
	box-sizing: border-box;
	border-radius: 100px;
	text-align: center;
	color: #fff;
	font-weight: bold;
}
.solution-arrow::after {
	position: absolute;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 0.9rem solid transparent;
    border-left: 0.9rem solid transparent;
    border-top: 0.7rem solid #00689f;
    border-bottom: 0;
    bottom: -0.65rem;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (min-width: 48em) {
	.solution-arrow {
		padding: 1rem 3rem 1.2rem;
	}
	.solution-arrow::after {
		border-right: 1.1rem solid transparent;
		border-left: 1.1rem solid transparent;
		border-top: 0.9rem solid #00689f;
		bottom: -0.85rem;
	}
}

.contents__headerLv1--avepoint {
	background: none;
	border-bottom: none;
}

.offerList {
	background: #F0F5F7;
	border-radius: 1rem;
	padding: 1rem;
	box-sizing: border-box;
}

.offerList >*:first-child {
	margin-top: 0!important;
}

.offerList__container {
	display: block;
}

.offerList__img {
	margin: 1.2rem auto 0;
	min-width: 10rem;
	max-width: 15rem;
}

.offerList__img img {
	width: 100%;
}

.offerList__list {
	list-style: none;
	width: 100%;
}

.offerList__item {
	color: #00689F;
	background: #fff;
	padding: 1rem 1.2rem;
	border-radius: 0.5rem;
	font-weight: 500;
}

.offerList__item:not(:first-child) {
	margin-top: .6rem;
}

@media screen and (min-width: 48em) {
	.offerList__container {
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		gap: 1.5rem;
	}

	.offerList__img {
		width: 20%;
		flex-shrink: 0;
		max-width: auto;
		margin: 0;
	}

	.offerList__item:not(:first-child) {
		margin-top: 1rem;
	}

	.offerList {
		padding: 2.5rem;
	}
}