/* ------------------
page-title
-------------------- */

.page-title h1 .en {
	margin-inline: -1em;
	letter-spacing: 0;
}

/* ------------------
hr
-------------------- */

.hr {
	padding: 50px 20px 0;
}

.side-nav-contents p {
	margin-bottom: 16px;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
}

.side-nav-contents li {
	margin-top: 10px;
	font-size: calc(1.6rem / 1.6);
	line-height: 1.4;
}

.side-nav-contents li.current {
	font-weight: 700;
}

.side-nav-contents li a {
	position: relative;
	display: inline-block;
	padding-left: 21px;
	color: #4c4c4c;
}

.side-nav-contents li.current a {
	color: #000;
}

.side-nav-contents li.current a::before {
	position: absolute;
	top: 6px;
	left: 0;
	width: 12px;
	height: 12px;
	content: "";
	background: var(--blue);
	border-radius: 50%;
}

@media (width <= 750px) {
	/* SP */

	.side-nav-btn {
		position: fixed;
		bottom: 150px;
		left: 0;
		z-index: 1;
		width: 98px;
		height: 42px;
		padding-left: 13px;
		font-size: calc(1.4rem / 1.6);
		color: #fff;
		background: var(--blue);
		border-radius: 8px 8px 0 0;
		transform: rotate(90deg);
		transform-origin: left bottom;
	}

	.side-nav-btn::after {
		position: absolute;
		top: 9px;
		right: 12px;
		width: 24px;
		height: 24px;
		content: "";
		background: url(/jp-ja/recruit/job/img/icon_index_arrow.svg) no-repeat 50% /
			cover;
		transform: rotate(-90deg);
	}

	.side-nav-contents {
		position: fixed;
		right: 20px;
		bottom: 60px;
		left: 20px;
		width: calc(100% - 84px);
		padding: 24px 22px;
		background: #ecf2ff;
		border: 1px solid var(--blue);
		border-radius: 10px;
	}

	.side-nav-btn[aria-expanded="false"] + .side-nav-contents {
		pointer-events: none;
		opacity: 0;
		transition: opacity 0.4s;
	}

	.side-nav-btn[aria-expanded="true"] + .side-nav-contents {
		z-index: 2;
		pointer-events: auto;
		opacity: 1;
	}

	.side-nav-contents .btn-close {
		position: absolute;
		top: 16px;
		right: 12px;
		width: auto;
	}
} /* @media */

@media (width >= 751px) {
	/* PC */

	.hr {
		position: relative;
		display: flex;
		align-items: flex-start;
		max-width: 1500px;
		padding: 120px 0 0;
		margin: 0 auto;
	}

	.side-nav {
		position: sticky;
		top: 150px;
		width: 190px;
		margin-right: 50px;
	}

	.side-nav-contents {
		padding: 24px 22px;
		background: #ecf2ff;
		border-radius: 12px;
	}

	.hr-contents {
		flex: 1;
		padding-top: 150px;
		padding-right: 50px;
		margin-top: -150px;
		overflow: hidden;
	}
} /* @media */

/* ------------------
section
-------------------- */

.section {
	scroll-margin-top: 90px;
}

.section + .section {
	margin-block: 70px 20px;
}

.section .title {
	padding-bottom: 5px;
	margin-bottom: 25px;
	font-size: calc(2.6rem / 1.6);
	line-height: 1.5;
	color: #1c326f;
	border-bottom: 1px dotted #1c326f;
}

.section .text {
	margin-bottom: 20px;
	font-size: calc(1.8rem / 1.6);
}

.section .img {
	margin-bottom: 20px;
	text-align: center;
}

.section .sub-title {
	position: relative;
	padding-top: 10px;
	margin-bottom: 20px;
	font-size: calc(2rem / 1.6);
	border-top: 1px solid #1c326f;
}

.section .sub-title::before {
	position: absolute;
	top: -1px;
	left: 0;
	width: 8em;
	height: 8px;
	content: "";
	background: #1c326f;
}

@media (width >= 751px) {
	/* PC */

	.section {
		scroll-margin-top: 150px;
	}

	.section + .section {
		margin-block: 140px 0;
	}

	.section .title {
		margin-bottom: 30px;
		font-size: calc(2.8rem / 1.6);
	}

	.section .text {
		margin-bottom: 40px;
	}

	.section .img {
		margin-bottom: 30px;
	}

	.section .sub-title {
		margin-bottom: 25px;
	}

	.section .sub-title::before {
		width: 15em;
	}
} /* @media */

/* ------------------
img-large
-------------------- */

.img-large {
	margin-right: -20px;
}

.img-large + .sub-title {
	margin-top: 50px;
}

.img-large img {
	width: 1000px;
	max-width: none;
}

@media (width >= 751px) {
	/* PC */

	.img-large {
		margin-right: 0;
	}

	.img-large + .sub-title {
		margin-top: 60px;
	}

	.img-large img {
		width: 100%;
		min-width: 1210px;
	}
} /* @media */

/* ------------------
detail
-------------------- */

.detail .item {
	scroll-margin-top: 90px;
}

.detail h3 {
	padding: 12px;
	margin-bottom: 10px;
	font-size: calc(1.8rem / 1.6);
	line-height: 1.4;
	color: #fff;
	text-align: center;
	background: linear-gradient(90deg, #2169be, #113d78);
	border-radius: 8px;
}

.detail p {
	margin-bottom: 30px;
	font-size: calc(1.6rem / 1.6);
}

@media (width >= 751px) {
	/* PC */

	.detail {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
		gap: 0 40px;
	}

	.detail .item {
		display: grid;
		grid-template-rows: subgrid;
		grid-row: span 2;
		scroll-margin-top: 150px;
	}

	.detail h3 {
		display: grid;
		place-content: center;
		min-height: 46px;
		padding: 6px;
		margin-bottom: 10px;
		line-height: 1.23;
	}

	.detail p {
		margin-bottom: 50px;
	}
} /* @media */

/* ------------------
feature
-------------------- */

.feature .item {
	padding: 20px 20px 0;
	background: #f5f5ee;
}

.feature .item + .item {
	margin-top: 20px;
}

.feature h4 {
	margin-bottom: 20px;
	font-size: calc(2rem / 1.6);
	line-height: 1.4;
	color: #1c326f;
}

.feature img {
	display: block;
	margin: 0 auto 24px;
}

.feature .text {
	margin-bottom: 20px;
	font-size: calc(1.6rem / 1.6);
}

.feature .text p + p {
	margin-top: 1em;
}

.feature button {
	display: block;
	max-width: 160px;
	margin-inline: auto;
	font-size: calc(1.8rem / 1.6);
	color: #fff;
	text-align: center;
	background: #34487e;
	border-radius: 10px 10px 0 0;
}

.feature button[aria-expanded="false"]::after {
	margin-left: 5px;
	content: "＋";
}

.feature button[aria-expanded="true"]::after {
	margin-left: 5px;
	content: "－";
}

@media (width >= 751px) {
	/* PC */

	.feature {
		display: flex;
		gap: 40px min(80px, calc(80 / 1210 * 100%));
		align-items: start;
	}

	.feature .item {
		box-sizing: border-box;
		width: 100%;
		max-width: 560px;
		padding: 30px min(50px, calc(50 / 1210 * 100%)) 0;
	}

	.feature .item + .item {
		margin-top: 0;
	}

	.feature h4 {
		margin-bottom: 40px;
	}

	.feature .text {
		margin-bottom: 50px;
	}

	.feature button {
		max-width: 110px;
		font-size: calc(1.6rem / 1.6);
	}
} /* @media */
