@charset "utf-8";

/*事業内容ページ ここから*/
.business{
	width: 100%;
	height: auto;
	background-color: #fafafa;
}
.business .baskervville{
	font-family: 'Baskervville', serif;
}

/*=== 見出し＋アンカーカード ===*/
.business_head{
	width: 100%;
	height: auto;
	padding: 71px 0 0;
	display: block;
}
.business_head_inner{
	width: 1280px;
	height: auto;
	margin: 0 auto;
	display: block;
	text-align: center;
}
.business_en{
	font-size: 17px;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #0e2155;
}
.business_ttl{
	margin-top: 25px;
	font-size: 32px;
	line-height: 41px;
	letter-spacing: 0.05em;
	color: #0f0f0f;
}
.business_lead{
	margin-top: 42px;
	font-size: 15px;
	line-height: 30px;
	letter-spacing: 0.05em;
	color: #0f0f0f;
}
.business_nav{
	width: 100%;
	height: auto;
	margin: 58px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.business_nav_item{
	width: 220px;
	height: auto;
	display: block;
}
.business_nav_item a{
	width: 100%;
	height: auto;
	display: block;
	color: #0f0f0f;
}
.business_nav_img{
	width: 220px;
	height: 200px;
	display: block;
	overflow: hidden;
}
.business_nav_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.business_nav_label{
	width: 100%;
	height: auto;
	margin: 15px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
}
.business_nav_txt{
	font-size: 16px;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #0f0f0f;
}
.business_nav_icon{
	width: 20px;
	height: 20px;
	display: block;
	position: relative;
	border-radius: 50%;
	background-color: #0e2155;
	flex-shrink: 0;
}
.business_nav_icon::before{
	content: '';
	width: 5px;
	height: 5px;
	border-bottom: 1.5px solid #ffffff;
	border-right: 1.5px solid #ffffff;
	display: block;
	position: absolute;
	top: 45%;
	left: 0;
	right: 0;
	margin: auto;
	transform: translateY(-50%) rotate(45deg);
}

/*=== 各製作セクション ===*/
.business_item{
	width: 100%;
	height: auto;
	display: block;
}
.business_head + .business_item{
	margin-top: 105px;
}
.business_item + .business_item{
	margin-top: 121px;
}
.business_item_inner{
	width: 1280px;
	height: auto;
	margin: 0 auto;
	display: block;
}
.business_item_ttl{
	width: 1280px;
	height: 80px;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #0e2155;
	font-size: 24px;
	line-height: 42px;
	letter-spacing: 0.05em;
	color: #ffffff;
}
.business_item_desc{
	margin-top: 27px;
	font-size: 15px;
	line-height: 28px;
	letter-spacing: 0.05em;
	color: #0f0f0f;
	text-align: center;
}
.business_item_imgs{
	width: 100%;
	height: auto;
	margin: 34px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.business_item_img{
	width: 610px;
	height: 400px;
	display: block;
	overflow: hidden;
}
.business_item_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/*=== 保有資格 ===*/
.business_qual{
	width: 100%;
	height: auto;
	margin: 100px 0 0;
	padding: 80px 0 80px;
	background-color: #f4f4f4;
	display: block;
}
.business_qual_inner{
	width: 1280px;
	height: auto;
	margin: 0 auto;
	display: block;
	text-align: center;
}
.business_qual_ttl{
	font-size: 28px;
	line-height: 42px;
	letter-spacing: 0.05em;
	color: #0f0f0f;
}
.business_qual_lead{
	margin-top: 30px;
	font-size: 15px;
	line-height: 30px;
	letter-spacing: 0.05em;
	color: #0f0f0f;
}
.business_qual_box{
	width: 1280px;
	height: auto;
	margin: 50px auto 0;
	padding: 40px 40px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	background-color: #ffffff;
}
.business_qual_list{
	width: 400px;
	height: auto;
	display: block;
	text-align: left;
}
.business_qual_list li{
	width: 100%;
	height: auto;
	font-size: 14px;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #0f0f0f;
	display: flex;
	align-items: flex-start;
}
.business_qual_list li::before{
	content: '・';
	display: inline;
}
.business_qual_list li + li{
	margin-top: 14px;
}
/*事業内容ページ ここまで*/


/* ============================================================
   SP（〜767px） 事業内容
   ============================================================ */
@media only screen and (max-width: 767px){
	/* 見出し */
	.business_head{ padding: 56px 0 0; }
	.business_head_inner{ width: 100%; padding: 0 27px; }
	.business_en{ font-size: 16px; letter-spacing: 0.1em; }
	.business_ttl{ margin-top: 18px; font-size: 25px; line-height: 1.4; }
	.business_lead{ margin-top: 20px; font-size: 15px; line-height: 28px; }

	/* アンカーカード（2列グリッド） */
	.business_nav{
		margin-top: 40px;
		flex-wrap: wrap;
		justify-content: space-between;
		row-gap: 26px;
	}
	.business_nav_item{ width: 150px; }
	.business_nav_img{ width: 150px; height: 136px; border-radius: 4px; }
	.business_nav_label{ justify-content: center; gap: 8px; margin-top: 10px; }
	.business_nav_txt{ font-size: 14px; line-height: 1.5; text-align: left; }

	/* 各製作セクション */
	.business_head + .business_item{ margin-top: 56px; }
	.business_item + .business_item{ margin-top: 54px; }
	.business_item_inner{ width: 100%; }
	.business_item_ttl{ width: auto; height: 66px; margin: 0 27px; font-size: 20px; line-height: 1.4; }
	.business_item_desc{
		margin: 22px 27px 0;
		font-size: 15px;
		line-height: 26px;
		text-align: left;
	}
	.business_item_imgs{
		flex-direction: column;
		align-items: stretch;
		margin-top: 20px;
		padding: 0 27px;
		gap: 20px;
	}
	.business_item_img{ width: 100%; height: auto; aspect-ratio: 320 / 210; }

	/* 保有資格 */
	.business_qual{ margin-top: 56px; padding: 50px 0 54px; }
	.business_qual_inner{ width: 100%; padding: 0 27px; }
	.business_qual_ttl{ font-size: 20px; line-height: 1.4; }
	.business_qual_lead{ margin-top: 20px; font-size: 15px; line-height: 26px; }
	.business_qual_box{
		width: 100%;
		margin-top: 30px;
		padding: 28px 24px;
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
	}
	.business_qual_list{ width: 100%; }
	.business_qual_list li{ line-height: 1.3; }
}
