@charset "UTF-8";
/*-----------------------------------

	headline

-----------------------------------*/
#headline h1::after {
	content: "Service";
}

/* -------------------------------

    service_block

-----------------------------------*/
#service_block{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
.service_nav{
	margin-bottom: 60px;
}
.service_nav ul{
	max-width: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	row-gap: 13px;
	column-gap: 9px;
	font-size: 15px;
	letter-spacing: 0.05em;
}
.service_nav ul li{
	width: 290px;
	height: 64px;
	background-color: #40A8A5;
	border-radius: 6px 6px 6px 6px;	
	text-align: center;
}

.service_nav ul li a{
	width: 290px;
	height: 64px;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	position: relative;
	padding: 13.8px 10.5px;
}
.under_line{
	width: 270px;
	height: 1px;
	background-color: #76C8C6;
	position: absolute;
	bottom: 15.55px;
	left: 10px;
}
.service_nav ul li a img{
	width: 9px;
	height: 6px;
	position: absolute;
	bottom: 5.8px;
	left: 141.5px;
	z-index: 10;
}
.content_box{
	width: 100%;
	padding: 40px 50px;
	background-color: #ffffff;
	border-radius: 10px 10px 10px 10px;	
	margin-bottom: 60px;
}
.content_box:last-child{
	margin-bottom: 100px;
}
.contents_inner_02{
	width: 98%;
	max-width: 1100px;
	margin: 0 auto;
}

.quest_title{
	width: 100%;
	margin: 0 auto 30px auto;
	min-height: 290px;
	border-radius: 10px 10px 10px 10px;
	overflow: hidden;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	background-color: #F5F8F8;
}
.left{
	margin: 34px 0 49px 46px;
}
.left h2{
	
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
	gap: 29.2px;
	margin-bottom: 20.8px;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.05em;
	color: #273433;
}
.left h3{
	font-size: 24px;
	font-weight: 700;
	color: #273433;
	line-height: 1.75;
	letter-spacing: 0.05em;
	border-top: 1px solid #C8DBDB;
	padding-top: 39.5px;
	width: 504px;
}
span.green{
	color: #40A8A5;
}	

img.s_img{
	width: 76.79px;
	height: auto;
	display: inline-block;
}
img.sample_img{
	width: 420px;
	height: 100%;
	object-fit: cover;
}

.text{
	font-size: 16px;
	font-weight: 600;
	color: #273433;
	line-height: 2.18;
	letter-spacing: 0.05em;
}
.text p{
	margin-bottom: 35px;
}
.text p:last-child{
	margin-bottom: 41px;
}
.recommended{
	background-color: #F5F8F8;
	padding: 18px 15px 20px 15px;
	border-radius: 10px 10px 10px 10px;
}
.recommended h2{
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.05em;
	color: #273433;
	text-align: center;
	margin-bottom: 13px;
}
span.green_2{
	color: #40A8A5;
	font-size: 36px;
}
.recommended ul{
	list-style: none;
	margin: 0; padding: 0;
	display: flex; /* 横並びにする */ 
	flex-wrap: wrap; /* 折り返して2行に */ 
	gap: 10px;
}
.recommended ul li{
	width: calc(50% - 10px);
	padding: 16px 16px 16px 32px;
	background-color: #ffffff;
	border-radius: 5px 5px 5px 5px;
	font-size: 16px;
	font-weight: 600;
	color: #273433;
	line-height: 2.06;
	letter-spacing: 0.05em;
	position: relative;
}
.recommended ul li::before { 
	content: ""; 
	position: absolute; 
	left: 13px; 
	top: 32px; 
	transform: translateY(-50%); 
	width: 9px; 
	height: 9px; 
	background-color: #48CFB7;
	border: 3px solid #D0EBE6; /* 好きな色の線付き丸 */ 
	border-radius: 50%; /* 丸にする */ 
}
span.green_3{
	color: #40A8A5;
}
.break{
		display: none;
	}



@media screen and (max-width: 1200px) {
	.service_nav ul{
		max-width: 900px;
		margin: 0 auto;
	}
	img.sample_img{
		width: calc(100% / 3);
		height: 100%;
		object-fit: cover;
	}
}
@media screen and (max-width: 1046px){
	.content_box{
		width: 100%;
		padding: 40px 30px;
	}
	.break{
		display: inline;
	}
	.left h3{
		width: 390px;
	}
	.quest_title{
		height: auto;
	}
	
	img.sample_img{
		width: calc(100% / 3);
		height: 290px;
		margin-right: 20px;
		object-fit: cover;
	}
}
@media screen and (max-width: 869px) {
	.quest_title{
		width: 100%;
		display: -webkit-flex;
		display: flex;
		-webkit-flex-direction: column;
		flex-direction: column;
		-webkit-justify-content: flex-start;
		justify-content: flex-start;
		-webkit-align-items: center;
		align-items: center;
		background-color: #F5F8F8;
		padding-bottom: 50px;
	}
	.left{
		margin: 34px 0 30px 0;
	}
	.left h2{
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-items: center;
		align-items: center;
	}
	.left h3{
		width: 400px;
		text-align: center;
	}
	.recommended ul li{
		width: 100%;		
	}
	.content_box{
		width: 100%;	
		margin-bottom: 60px;
	}
	img.sample_img{
		width: 400px;
		height: auto;
		margin-right: 0;
	}
	.break{
		display: none;
	}
}
@media screen and (max-width: 640px) {
	.content_box{
		margin-bottom: 30px;
	}
	.service_nav{
		margin-bottom: 30px;
	}
	.service_nav ul li{
		width: 290px;
		height: 60px;
	}

	.service_nav ul li a{
		width: 290px;
		height: 60px;
	}
	.quest_title{
		padding: 0 20px 30px 20px;
	}
	.left h2 {
		font-size: 20px;
		margin-bottom: 20px;
		gap: 15px;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-align-items: center;
		align-items: center;
	}
	img.s_img{
		width: 40px;
		height: auto;
		display: inline-block;
	}
	.left h3{
		font-size: 18px;
		width: 100%;
	}
	.text{
		font-size: 14px;
	}
	.text p{
		margin-bottom: 20px;
	}
	.recommended h2{
		font-size: 18px;
	}
	span.green_2{
		color: #40A8A5;
		font-size: 22px;
	}
	.recommended ul li{
		font-size: 14px;
	}
	img.sample_img{
		width: 300px;
		height: auto;
	}
	.recommended ul li::before { 
		left: 13px; 
		top: 28px; 
	}
	
}
@media screen and (max-width: 420px){
	.content_box{
		width: 100%;
		padding: 20px 20px;
	}
}

