/*---------- アンカーリンク ----------*/
.link-list {
	width: 100%;
	margin: 0 auto 80px;
	align-items: flex-start;
	justify-content: space-between;
}
.link-list li {
	width: calc((100% - 40px) / 2);
}
.link-list li a {
	width: 100%;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--color-light-gray);
	border-radius: 15px;
	position: relative;
}
.link-list li a::before {
	content: '';
	width: 50px;
	height: 50px;
	background: var(--color-primary);
	border-radius: 15px 0 15px 0;
	position: absolute;
	bottom: 0;
	right: 0;
}
.link-list li a::after {
	content: '';
	width: 50px;
	height: 50px;
	background: url('../../img/common/icon_arrow_right_w.svg') center center no-repeat;
	background-size: 20px;
	position: absolute;
	bottom: 0;
	right: 0;
}
.link-img-wrap {
	width: 184px;
	border-radius: 13px 0 0 13px;
	overflow: hidden;
}
.link-txt-wrap {
	width: calc(100% - 214px);
}
.link-ttl-en {
	margin-bottom: 5px;
	color: var(--color-primary);
	font-size: 1.8rem;
}
.link-ttl {
	font-size: 2.5rem;
	letter-spacing: 0.05em;
}
.link-txt {
	margin-top: 10px;
	font-size: 1.4rem;
	line-height: 1.7;
}
@media (max-width: 1024px) {
	.link-img-wrap {
		width: 17.969vw;
	}
	.link-txt-wrap {
		width: calc(100% - 20.898vw);
	}
}

@media (max-width: 768px) {
	.link-list {
		width: 100%;
		margin: 0 auto 10vw;
		align-items: flex-start;
		justify-content: space-between;
	}
	.link-list li {
		width: 100%;
		margin: 0 auto;
	}
	.link-list li + li {
		margin-top: 6vw;
	}
	.link-list li:last-child {
		margin: 6vw auto 0;
	}
	.link-list li a {
		width: 100%;
		padding: 2vw;
		display: flex;
		align-items: stretch;
		justify-content: space-between;
		border-radius: 3vw;
		position: relative;
	}
	.link-list li a::before {
		content: '';
		width: 10vw;
		height: 10vw;
		border-radius: 3vw 0 3vw 0;
		position: absolute;
		bottom: 0;
		right: 0;
	}
	.link-list li a::after {
		content: '';
		width: 10vw;
		height: 10vw;
		background: url('../../img/common/icon_arrow_right_w.svg') center center no-repeat;
		background-size: 4vw;
	}
	.link-img-wrap {
		width: 28vw;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 2.2vw 0 0 2.2vw;
		overflow: hidden;
		background: var(--color-light-gray);
	}
	.link-txt-wrap {
		width: calc(100% - 32vw);
		margin: auto 0 auto auto;
	}
	.link-ttl-en {
		font-size: var(--fs-sp-13);
	}
	.link-ttl {
		font-size: var(--fs-sp-16);
	}
	.link-txt {
		font-size: var(--fs-sp-12);
	}
}

/*---------- 職種紹介 ----------*/
.career-track-con {
	background: var(--color-light-green);
	border-radius: 80px;
	padding: 60px 50px;
}
.career-track-con + .career-track-con {
	margin-top: 60px;
}
.career-track-flex {
	display: flex;
	align-items: center;
	gap: 60px;
	margin-bottom: 30px;
}
.career-track-body {
	flex: 1;
	min-width: 0;
}
.career-track-con .bar-ttl {
	font-size: 3.8rem;
	color: var(--color-black);
	padding-left: 20px;
	margin-bottom: 40px;
}
.career-track-image {
	border-radius: 15px;
	overflow: hidden;
	flex: 0 0 505px;
	max-width: 100%;
}
.career-path {
	background: #fff;
	border-radius: 15px;
	padding: 50px 10%;
}

/*---------- 業務紹介 ----------*/
#work {
	margin-top: 100px;
}
.work-con + .work-con {
	margin-top: 80px;
}
.work-about + .work-about {
	margin-top: 50px;
}
.work-con .bar-ttl {
	margin-bottom: 10px;
}
.field-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
.field-item {
	flex: 0 0 calc((100% - 30px * 2) / 3);
}
.field-image {
	position: relative;
	margin-bottom: 10px;
}
.field-image picture {
	display: block;
	border-radius: 15px;
	overflow: hidden;
}
.field-ttl {
	position: absolute;
	left: -0.1px;
	bottom: -0.1px;
	font-size: 2.2rem;
	font-weight: 700;
	background: #fff;
	border-radius: 0 15px 0 0;
}
.field-ttl span {
	display: block;
	position: relative;
	padding: 10px 20px;
}
.field-ttl span::before {
	content: '';
	position: absolute;
	top: -15px;
	left: 0;
	background: url(../../img/common/bg_shape.svg) no-repeat;
	background-size: 100%;
	transform: rotate(90deg);
	width: 15px;
	height: 15px;
}
.field-ttl span::after {
	content: '';
	position: absolute;
	bottom: 0;
	right: -15px;
	background: url(../../img/common/bg_shape.svg) no-repeat;
	background-size: 100%;
	transform: rotate(90deg);
	width: 15px;
	height: 15px;
}

@media (max-width: 1024px) {
	.career-track-image {
		flex: 0 0 355px;
	}
	.career-track-flex {
		gap: 5vw;
	}
	.field-list {
		gap: 2vw;
	}
	.field-ttl {
		font-size: 2.1vw;
	}
	.field-ttl span {
		padding: 0.977vw 1.953vw;
	}
}

@media (max-width: 768px) {
	/*---------- 職種紹介 ----------*/
	.career-track-con {
		border-radius: 8vw;
		padding: 7vw 5vw;
	}
	.career-track-con + .career-track-con {
		margin-top: 7vw;
	}
	.career-track-flex {
		flex-wrap: wrap;
		gap: 5vw;
		margin-bottom: 5vw;
	}
	.career-track-con .bar-ttl {
		font-size: var(--fs-sp-22);
		padding-left: 3vw;
		margin-bottom: 5vw;
	}
	.career-track-image {
		border-radius: 3vw;
		flex: 0 0 100%;
	}
	.career-track-con .btn-green {
		margin: 0 auto 0 0;
	}
	.career-track-con .btn-green::after {
		content: '';
		width: 1.867vw;
		height: 3.733vw;
		background: url(../../img/common/icon_arrow_w.svg) center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1.867vw);
		right: 5.867vw;
		transform: rotate(90deg);
		transition: transform 0.3s ease;
	}
	.career-track-con .btn-green.is-open::after {
		transform: rotate(270deg);
	}
	.career-path {
		border-radius: 3vw;
		padding: 5vw 10%;
		margin-top: 5vw;
	}

	/*---------- 業務紹介 ----------*/
	#work {
		margin-top: 10vw;
	}
	.work-con + .work-con {
		margin-top: 10vw;
	}
	.work-about + .work-about {
		margin-top: 7vw;
	}
	.work-con .bar-ttl {
		margin-bottom: 3vw;
	}
	.field-list {
		gap: 7vw;
	}
	.field-item {
		flex: 0 0 100%;
	}
	.field-image {
		border-radius: 3vw;
		margin-bottom: 3vw;
	}
	.field-image picture {
		border-radius: 3vw;
	}
	.field-ttl {
		background: transparent;
		position: absolute;
		left: 0;
		bottom: 0;
		font-size: var(--fs-sp-18);
		border-radius: 0 3vw 0 0;
	}
	.field-ttl span {
		padding: 2vw 3vw 1vw;
	}
	.field-ttl span::before {
		content: none;
	}
	.field-ttl span::after {
		content: none;
	}
}
