.service-card {
	height: 200px;
	margin-bottom: 20px;
	padding: 48px;
	display: flex;
	align-items: center;
	gap: 40px;
	flex: 1;
	position: relative;
	border: 1px solid #C7D9F2;
	border-radius: 40px;
	transition: .3s;
	overflow: hidden;
}

.service-list .service-card .service-card-bg {
	width: 100%;
	height: 100%;
	margin: 0;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	z-index: -1;
	object-fit: cover;
	opacity: 0;
	transition: 0.3s;
}

.service-list .service-card .service-card-logo {
	width: 300px;
}

.service-list .service-card:hover .service-card-bg {
	opacity: 1;
}

@media screen and (max-width: 767px) {
	.service-list .service-card {
		height: 120px;
		padding: 32px;
		gap: 10px;
	}
	
	.service-list .service-card .service-card-bg {
		object-position: right;
	}
	
	.service-list .service-card .service-card-logo {
		width: 160px;
	}
}

.service-card h3 {
	flex: 1;
	font-size: clamp(1.25rem, 1.1286rem + 0.5178vw, 1.75rem);
	font-weight: 700;
	color: #295daa;
	transition: 0.3s;
}

.service-card:hover h3 {
	color: #fff;
}

.service-column {
	padding: 120px 40px;
	border-radius: 80px 80px 0 0;
	background-color: #F4F8FD;
}

/* pcサイズの時に四つ目のカードを非表示にする */
@media screen and (min-width: 767px) {
	.service-column .normal-card:nth-child(4) {
		display: none;
	}
}



/* 実現性検証プログラム */

.service-header-flex {
	display: flex;
}

.service-header-flex-1 {
	width: 50%;
}

.service-header-flex-1-inner {
	max-width: 500px;
	margin-inline: auto 3vw;
}

.service-header-flex-1 p {
	margin-bottom: 60px;
}

.service-header-flex-1 .contact-btn {
	width: 100%;
    height: 100px;
    max-width: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #f5b638;
    border-radius: 54px;
    font-family: 'AvenirNext';
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    background-color: #f5b638;
    transition: .3s;
}

.service-header-flex-2 {
	width: 50%;
	border-radius: 40px;
	overflow: hidden;
}

.service-header-flex-2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 767px) {
	.service-header-flex {
		flex-direction: column-reverse;
		gap: 40px;
	}
	
	.service-header-flex-1,
	.service-header-flex-2 {
		width: 100%;
	}
	
	.service-header-flex-1-inner {
		max-width: none;
		margin: auto;
	}
	
	.service-header-flex-1 .contact-btn {
		height: 80px;
		margin-inline: auto;
		font-size: 1.25rem;
	}
}

.service-merit {
	padding: 120px 40px 60px 40px;
	border-radius: 80px 80px 0 0;
	background-color: #F4F8FD;
}

.service-merit-item {
	margin-bottom: 60px;
	padding-bottom: 60px;
    border-bottom: 1px solid #a4a4a4;
	display: flex;
	gap: 40px;
}

.service-merit-item-1 {
	flex: 1;
}

.service-merit-item-number {
	margin-bottom: 10px;
	display: block;
	font-family: 'AvenirNext';
	font-size: 1.875rem;
	font-weight: 700;
	color: #295DAA;
}

.service-merit-item-1 h2 {
	margin-bottom: 24px;
	font-size: 1.75rem;
	font-weight: 700;
	color: #295daa;
}

.service-merit-item-2 {
	height: 280px;
	flex: 1;
	border-radius: 40px;
	overflow: hidden;
}

.service-merit-item-2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (min-width: 1280px) {
	.service-merit .block-heading {
		position: absolute;
		left: calc(30% - 320px);
	}
	
	.service-merit-item {
		width: 70%;
		max-width: 920px;
		margin-inline: auto 0;
	}
}

@media screen and (max-width: 767px) {
	.service-merit {
		padding: 80px 30px; 
		border-radius: 60px 60px 0 0;
	}
	
	.service-merit-item {
		margin-bottom: 40px;
		padding-bottom: 40px;
		flex-direction: column;
		gap: 24px;
	}
	
	.service-merit-item-2 {
		flex: none;
		border-radius: 20px;
	}
}

.service-table {
	padding: 120px 40px 0 40px;
}

@media screen and (max-width: 767px) {
	.service-table {
		padding: 80px 30px 0 30px;
	}
}


.holding-block h3 {
	margin-bottom: 40px;
    padding-bottom: 10px;
    font-size: clamp(1.25rem, 1.1286rem + 0.5178vw, 1.75rem);
    font-weight: 700;
    border-bottom: 1px solid #295daa;
    color: #295daa;
}

.holding-body {
	margin-bottom: 80px;
}

.holding-block li,
.holding-block p {
	margin-bottom: 16px;
	font-weight: 700;
}

.holding-body .contact-btn {
	margin: 40px auto 0 auto;
}