@charset "UTF-8";
/* ---------------------------------------
  仕事紹介
-----------------------------------------*/
#sec_work_detail {
	padding: 10rem 0 0;
}
#sec_work_detail .wrap {
	padding: 0 3.3rem;
}
#sec_work_detail .work_page {
	max-width: 112rem;
	margin: 0 auto;
}

/* 共通：セクションブロック */
#sec_work_detail .work_block {
	margin-top: 10rem;
}
#sec_work_detail .work_block:first-of-type {
	margin-top: 0;
}
#sec_work_detail .work_block .topic {
	position: relative;
	font-weight: 500;
	font-size: max(2.2rem, 15px);
	line-height: 1.5454545455;
	letter-spacing: 0;
	padding-left: 1.14em;
	margin: 0;
}
#sec_work_detail .work_block .topic::before {
	content: "";
	width: 0.8em;
	height: 0.8em;
	background-color: #FF8128;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: calc(50% - 0.4em);
}
#sec_work_detail .txt {
	font-size: max(1.5rem, 14px);
	line-height: 1.8;
	letter-spacing: 0;
	margin: 0;
}

/* セクション1：イントロダクション */
#sec_work_detail .work_intro {
	margin-bottom: 10rem;
}
#sec_work_detail .work_intro_catch {
	margin: 0;
	font-weight: 800;
	font-size: 4rem;
	line-height: 1.18;
	letter-spacing: 0.02em;
	color: #262623;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
	#sec_work_detail .work_intro_catch {
		background: linear-gradient(105deg, #d4ef21 0%, #ffaa0d 52%, #ff8128 100%);
		-webkit-background-clip: text;
		background-clip: text;
		color: transparent;
		-webkit-text-fill-color: transparent;
	}
}
#sec_work_detail .work_intro_heading {
	margin: 2rem 0 0;
	font-weight: 700;
	font-size: clamp(2.8rem, 3.2vw, 3.6rem);
	line-height: 1.5;
	letter-spacing: 0.04em;
	color: #262623;
}
#sec_work_detail .work_intro_lead {
	margin-top: 2.4rem;
}

/* 5事業セクション内：グラフ画像 + 下向き矢印 */
#sec_work_detail .work_graph_insert {
	margin: 3rem 0 1.6rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.8rem;
}
#sec_work_detail .work_graph_insert__frame {
	width: 100%;
	max-width: 35rem;
	margin-inline: auto;
	border-radius: 1rem;
	overflow: hidden;
}
#sec_work_detail .work_graph_insert__frame img {
	width: 100%;
	height: auto;
	display: block;
	vertical-align: bottom;
}
#sec_work_detail .work_graph_insert__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: min(8rem, 22vw);
	height: min(8rem, 22vw);
	min-width: 6.4rem;
	min-height: 6.4rem;
	border-radius: 50%;
	background: linear-gradient(165deg, #fff8ed 0%, #ffe8cf 55%, #ffd9a8 100%);
	color: #ee7700;
	font-size: clamp(2.8rem, 5.5vw, 4.2rem);
	line-height: 1;
	box-shadow:
		0 0.2rem 0 rgba(255, 255, 255, 0.85) inset,
		0 0.35rem 1.2rem rgba(238, 119, 0, 0.28),
		0 0.15rem 0 rgba(180, 90, 0, 0.12);
	animation: work_graph_arrow_nudge 2.2s ease-in-out infinite;
}
@keyframes work_graph_arrow_nudge {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(0.45rem);
	}
}
@media (prefers-reduced-motion: reduce) {
	#sec_work_detail .work_graph_insert__arrow {
		animation: none;
	}
}
#sec_work_detail .work_graph_insert + .work_customer_strip {
	margin-top: 2rem;
}

/* お客様・業種バナー */
#sec_work_detail .work_customer_strip {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	margin: 4rem 0 6rem;
	border-radius: 1rem;
	overflow: hidden;
	border: 0.1rem solid rgba(38, 38, 35, 0.12);
	box-shadow: 0 0.4rem 1.6rem rgba(38, 38, 35, 0.06);
	max-width: 112rem;
}
#sec_work_detail .work_customer_strip__label {
	flex: 0 0 auto;
	min-width: 10.4rem;
	background: #ee7700;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: max(1.8rem, 15px);
	line-height: 1.4;
	letter-spacing: 0.02em;
	padding: 1.4rem 1.6rem;
}
#sec_work_detail .work_customer_strip__main {
	flex: 1 1 auto;
	min-width: 0;
	background: #f7f5f2;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.8rem 1.2rem;
	padding: 1.4rem 2rem 1.4rem 2.2rem;
}
#sec_work_detail .work_customer_strip__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-evenly;
	flex: 1 1 auto;
	gap: 1rem 1.6rem;
	min-width: 0;
}
/* 業種リスト（1行表示・コンパクト） */
#sec_work_detail .work_customer_strip__list--inline {
	flex-wrap: nowrap;
	justify-content: flex-start;
	gap: 0.4rem 1.6rem;
	flex: 0 1 auto;
}
#sec_work_detail .work_customer_strip__item {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.5rem 0.6rem;
	margin: 0;
}
#sec_work_detail .work_customer_strip__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	font-size: max(1.65rem, 15px);
	color: #ee7700;
}
#sec_work_detail .work_customer_strip__name {
	font-size: max(1.5rem, 14px);
	line-height: 1.5;
	letter-spacing: 0.02em;
	color: #262623;
	font-weight: 500;
}

/* セクション2：事業カード（topic とグリッドの間に他要素があるため隣接子セレクタは使わない） */
#sec_work_detail .work_block--business .work_business_grid {
	margin-top: 3rem;
}
#sec_work_detail .work_business_grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2.4rem;
	max-width: 72rem;
}
#sec_work_detail .work_business_card {
	padding: 0;
	display: flex;
	flex-direction: column;
}
#sec_work_detail .work_business_card__head {
	display: block;
}
#sec_work_detail .work_business_card__ttl {
	margin: 0;
	font-weight: 700;
	font-size: max(2.6rem, 18px);
	line-height: 1.45;
	letter-spacing: 0.02em;
	color: #262623;
}
/* サブタイトル：採用ページ .sub_ttl と同じサイトカラー・スケール */
#sec_work_detail .work_business_card__subttl {
	margin: 1rem 0 0;
	font-weight: 700;
	font-size: max(2.2rem, 16px);
	line-height: 1.5;
	letter-spacing: 0.02em;
	color: #EE7700;
}
#sec_work_detail .work_business_card__subttl + .work_business_card__body {
	margin-top: 2rem;
}
/* 本文・リスト：採用ページ .txt と同スケール（common の p/li より優先） */
#sec_work_detail .work_business_card__body {
	margin-top: 0;
	font-size: max(1.5rem, 14px);
	line-height: 1.8;
	letter-spacing: 0;
	color: #262623;
}
#sec_work_detail .work_business_card__body p {
	margin: 0 0 1em;
	font-size: max(1.5rem, 14px);
	line-height: 1.8;
	letter-spacing: 0;
}
#sec_work_detail .work_business_card__body p:last-child {
	margin-bottom: 0;
}
#sec_work_detail .work_business_card__list {
	margin: 1em 0 0;
	padding: 0;
	list-style: none;
}
#sec_work_detail .work_business_card__list li {
	position: relative;
	padding-left: 1.1em;
	margin-top: 0.6em;
	font-size: max(1.5rem, 14px);
	line-height: 1.8;
	letter-spacing: 0;
}
#sec_work_detail .work_business_card__list li:first-child {
	margin-top: 0;
}
#sec_work_detail .work_business_card__list li::before {
	content: "・";
	position: absolute;
	left: 0;
	color: #EE7700;
	font-weight: 700;
}
#sec_work_detail .work_business_card__list--boxed {
	background-color: #fff8ed;
	border-radius: 0.8rem;
	padding: 1.4rem 1.6rem 1.4rem 2.2rem;
	margin-top: 1em;
}
/* work_flow_step__txt と同スケール */
#sec_work_detail .work_business_card__list--boxed p,
#sec_work_detail .work_business_card__list--boxed li {
	font-size: max(1.3rem, 12px);
	line-height: 1.75;
	letter-spacing: 0;
}
#sec_work_detail .work_business_card__list--boxed li {
	margin-top: 0.6em;
}
#sec_work_detail .work_business_card__list--boxed li:first-child {
	margin-top: 0;
}

/* セクション3：フロー */
#sec_work_detail .topic + .work_flow_lead {
	margin-top: 2.4rem;
}
#sec_work_detail .work_flow_lead {
	margin-bottom: 3.2rem;
}
#sec_work_detail .work_flow_steps {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	max-width: 72rem;
}
#sec_work_detail .work_flow_step {
	background: #FFF8ED;
	border-radius: 1rem;
	padding: 2rem 1.4rem 2.2rem;
	border: 0.1rem solid rgba(238, 119, 0, 0.25);
	min-width: 0;
	box-sizing: border-box;
	width: 100%;
	display: flex;
	flex-direction: column;
}
#sec_work_detail .work_flow_step__badge {
	display: inline-flex;
	align-items: baseline;
	gap: 0.15em;
	font-family: "Roboto Mono", monospace;
	font-weight: 400;
	font-size: max(1.2rem, 11px);
	letter-spacing: 0.08em;
	color: #EE7700;
	text-transform: uppercase;
	margin-bottom: 1rem;
}
#sec_work_detail .work_flow_step__num {
	font-weight: 700;
	font-size: max(2rem, 16px);
}
#sec_work_detail .work_flow_step__ttl {
	margin: 0;
	font-weight: 700;
	font-size: max(1.5rem, 13px);
	line-height: 1.55;
	letter-spacing: 0.02em;
	color: #262623;
}
#sec_work_detail .work_flow_step__txt {
	margin: 0.9rem 0 0;
	font-size: max(1.3rem, 12px);
	line-height: 1.75;
	letter-spacing: 0;
	color: #262623;
}
#sec_work_detail .work_flow_arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: center;
	color: #EE7700;
	font-size: max(1.4rem, 12px);
	padding: 0.5rem 0;
	opacity: 0.9;
}
#sec_work_detail .work_flow_arrow i {
	transform: rotate(90deg);
}

/* セクション4：スケジュール */
#sec_work_detail .topic + .work_schedule_lead,
#sec_work_detail .work_flow_lead + .work_schedule_lead {
	margin-top: 2.4rem;
}
#sec_work_detail .work_schedule_lead {
	margin-bottom: 3.2rem;
}
#sec_work_detail .work_schedule_lead:empty {
	display: none;
}
#sec_work_detail .work_timeline {
	list-style: none;
	margin: 0;
	padding: 0 0 0 2.8rem;
	position: relative;
}
#sec_work_detail .work_timeline__item {
	position: relative;
	padding: 0 0 2.8rem 0;
	margin: 0;
}
#sec_work_detail .work_timeline__item:last-child {
	padding-bottom: 0;
}
#sec_work_detail .work_timeline__item::after {
	content: "";
	position: absolute;
	left: -2.15rem;
	top: calc(0.35em + 1rem);
	bottom: calc(-0.35em);
	width: 0.28rem;
	background: linear-gradient(180deg, #ff9a4d 0%, #FF8128 50%, #EE7700 100%);
	border-radius: 99rem;
	transform: translateX(-50%);
}
#sec_work_detail .work_timeline__item:last-child::after {
	display: none;
}
#sec_work_detail .work_timeline__item::before {
	content: "";
	position: absolute;
	left: -2.15rem;
	top: 0.35em;
	width: 1rem;
	height: 1rem;
	background: #fff;
	border: 0.28rem solid #EE7700;
	border-radius: 50%;
	box-sizing: border-box;
	transform: translateX(-50%);
}
#sec_work_detail .work_timeline__time {
	display: block;
	font-family: "Roboto Mono", monospace;
	font-weight: 500;
	font-size: max(1.6rem, 14px);
	letter-spacing: 0.06em;
	color: #EE7700;
	margin-bottom: 0.6rem;
}
#sec_work_detail .work_timeline__content {
	position: relative;
}
#sec_work_detail .work_timeline__txt {
	margin: 0;
	font-size: max(1.5rem, 14px);
	line-height: 1.8;
	letter-spacing: 0;
	color: #262623;
}
#sec_work_detail .work_timeline__heading {
	display: block;
	font-weight: 700;
	font-size: max(1.7rem, 15px);
	line-height: 1.5;
	letter-spacing: 0.02em;
	color: #262623;
}
#sec_work_detail .work_timeline__body {
	display: block;
	margin-top: 0.2rem;
	font-weight: 400;
	font-size: max(1.4rem, 13px);
	line-height: 1.7;
	letter-spacing: 0;
	color: #595955;
}

@media screen and (max-width: 767px) {
	#sec_work_detail {
		padding: 6rem 0 0rem;
	}
	#sec_work_detail .wrap {
		padding: 0 2rem;
	}
	/* 業種1行表示：改行を抑えるため文字を一段小さく */
	#sec_work_detail .work_customer_strip__list--inline {
		gap: 0.35rem 2.5rem;
	}
	#sec_work_detail .work_customer_strip__item {
		gap: 0.35rem 0.45rem;
	}
	#sec_work_detail .work_customer_strip__name {
		font-size: max(1.15rem, 10px);
	}
	#sec_work_detail .work_customer_strip__icon {
		width: 2rem;
		height: 2rem;
		font-size: max(1.35rem, 12px);
	}
}
