/* -----------------------------------------------
= main
----------------------------------------------- */
.main {
	background: #fff;
}
/* -----------------------------------------------
= kv
----------------------------------------------- */
.kv {
	position: relative;
	aspect-ratio: 1842 / 1080;
	overflow: hidden;
}
.kv .breadcrumbs {
	position: absolute;
	top: 0;
	left: 5px;
	z-index: 1;
	color: #fff;
}
.kv .breadcrumbs li + li::before {
	background: rgba(255,255,255,.6);
}
.kv h1 {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	width: 100%;
	color: #fff;
	text-align: center;
	line-height: 1;
}
.kv h1 .en {
	font-family: var(--fig);
	font-size: calc(1.2rem / 1.6);
}
.kv h1 .jp {
	margin-left: 1em;
	padding-left: 1em;
	border-left: 1px solid rgba(255,255,255,.3);
	font-family: var(--min);
	font-size: calc(1.1rem / 1.6);
}
.kv h1 .title {
	display: block;
	position: relative;
	margin-top: 10px;
	padding-top: 10px;
	font-family: var(--min);
	font-size: calc(2.4rem / 1.6);
}
.kv h1 .title::before {
	content: "";
	position: absolute;
	top: 0;
	left: calc(50% - 50px);
	width: 100px;
	height: 2.5px;
	background: url(/company/recruit/img/bg_people.png) no-repeat 50% / cover;
}
.kv .movie::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.3);
}
.kv .movie video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: calc(1080 / 1842 * 100vh);
	height: calc(1842 / 1080 * 100vw);
	min-height: 100%;
	min-width: 100%;
	border: none;
}
.kv .scroll {
	display: none;
}
@media print, screen and (min-width: 768px) {/* PC */
.kv {
	margin-left: 40px;
	aspect-ratio: 1920 / 844;
}
.kv .breadcrumbs {
	top: 0;
	left: 0;
}
.kv h1 .en {
	font-size: calc(3.4rem / 1.6);
}
.kv h1 .jp {
	font-size: calc(3rem / 1.6);
}
.kv h1 .title {
	margin-top: 40px;
	padding-top: 40px;
	font-size: calc(8.4rem / 1.6);
}
.kv h1 .title::before {
	left: calc(50% - 100px);
	width: 200px;
	height: 5px;
}
.kv .movie video {
	width: calc(844 / 1920 * 100vh);
	height: calc(1920 / 844 * 100vw);
}
.kv .scroll {
	display: inline-block;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 50px 28px;
	background: #fff;
	font-family: var(--fig);
	font-size: calc(1.4rem / 1.6);
	font-weight: 600;
	writing-mode: sideways-lr;
}
.kv .scroll::before {
	content: "";
	position: absolute;
	top: -24px;
	right: 50%;
	width: 1px;
	height: 48px;
	background: var(--black);
	animation: scroll-line 2s infinite;
}
@keyframes scroll-line {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	50% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	51% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	100% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
}
}/* @media */
@media print, screen and (max-width: 1440px) and (min-width: 768px) {
.kv h1 .en {
	font-size: calc(2.4rem / 1.6);
}
.kv h1 .jp {
	font-size: calc(2rem / 1.6);
}
.kv h1 .title {
	font-size: calc(5.4rem / 1.6);
}
}/* @media */
/* -----------------------------------------------
= lead
----------------------------------------------- */
.lead {
	padding: 40px 20px;
	font-size: calc(1.2rem / 1.6);
	font-weight: 500;
	line-height: 2;
	text-align: center;
}
@media print, screen and (min-width: 768px) {/* PC */
.lead {
	padding: 85px 40px;
	font-size: calc(1.8rem / 1.6);
	line-height: calc(38 / 18);
}
}/* @media */
/* -----------------------------------------------
= page-link
----------------------------------------------- */
.page-link {
	margin: 0 20px 45px;
	border-top: 1px solid #f1f1f4;
}
.page-link li {
	border-bottom: 1px solid #f1f1f4;
}
.page-link a {
	display: block;
	position: relative;
	padding: 20px 30px 20px 0;
}
.page-link a::before,
.page-link a::after {
	content: "";
	position: absolute;
	top: calc(50% - 11px);
	right: 0;
}
.page-link a::before {
	width: 22px;
	height: 22px;
	border-radius: 50%;
}
.page-link li:nth-child(1) a::before {
	background: #e6b61d;
}
.page-link li:nth-child(2) a::before {
	background: #86c057;
}
.page-link li:nth-child(3) a::before {
	background: #6e5eaa;
}
.page-link li:nth-child(4) a::before {
	background: #ec5569
}
.page-link a::after {
	width: 4px;
	height: 4px;
	margin: 8px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transform: rotate(45deg);
}
.page-link span {
	display: block;
}
.page-link span:first-child {
	margin-bottom: 5px;
	font-family: var(--fig);
	font-size: calc(1.2rem / 1.6);
	font-weight: 600;
	letter-spacing: .025em;
}
.page-link span:last-child {
	font-size: calc(1.5rem / 1.6);
	font-weight: 700;
	letter-spacing: 0;
}
.page-link li:nth-child(1) span:first-child {
	color: #e6b61d;
}
.page-link li:nth-child(2) span:first-child {
	color: #81b441;
}
.page-link li:nth-child(3) span:first-child {
	color: #6e5eaa;
}
.page-link li:nth-child(4) span:first-child {
	color: #ec5569;
}
@media print, screen and (min-width: 768px) {/* PC */
.page-link {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0 50px;
	max-width: 1340px;
	margin: 0 auto 120px;
	padding-inline: 40px;
	border-top: none;
	text-align: center;
}
.page-link li {
	border-top: 1px solid #f1f1f4;
}
.page-link a {
	padding: 35px 0 70px;
}
.page-link a::before,
.page-link a::after {
	top: auto;
	bottom: 30px;
	right: calc(50% - 10px);
}
.page-link a::before {
	width: 20px;
	height: 20px;
}
.page-link a::after {
	width: 5px;
	height: 5px;
	margin: 7px;
}
.page-link span:first-child {
	font-size: calc(1.4rem / 1.6);
}
.page-link span:last-child {
	font-size: calc(2rem / 1.6);
}
}/* @media */
/* -----------------------------------------------
= nav-sub
----------------------------------------------- */
.nav-sub .btn-sub {
	position: relative;
	width: 100%;
	padding: 20px 30px 20px 0;
	text-align: left;
}
.nav-sub .btn-sub::before,
.nav-sub .btn-sub::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 15px;
	height: 2px;
	background: #1e212b;
}
.nav-sub .btn-sub::after {
	transform: rotate(90deg);
}
.nav-sub .btn-sub.is-open::after {
	display: none;
}
.nav-sub .btn-sub span {
	display: block;
}
.nav-sub .btn-sub span:first-child {
	margin-bottom: 5px;
	font-family: var(--fig);
	font-size: calc(1.2rem / 1.6);
	font-weight: 600;
	letter-spacing: .025em;
}
.nav-sub .btn-sub span:last-child {
	font-size: calc(1.5rem / 1.6);
	font-weight: 700;
	letter-spacing: 0;
}
.nav-sub li:nth-child(1) .btn-sub span:first-child {
	color: #e6b61d;
}
.nav-sub li:nth-child(2) .btn-sub span:first-child {
	color: #81b441;
}
.nav-sub li:nth-child(3) .btn-sub span:first-child {
	color: #6e5eaa;
}
.nav-sub li:nth-child(4) .btn-sub span:first-child {
	color: #ec5569;
}
.nav-sub-fix .nav-sub ul.sub {
	padding: 0;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s ease;
}
.nav-sub .sub li:first-child {
	padding-top: 20px;
	border-top: 1px solid #f1f1f4;
}
.nav-sub .sub li:last-child {
	padding-bottom: 20px;
}
.nav-sub .sub li + li {
	margin-top: 5px;
	border-top: none;
}
.nav-sub .sub li a {
	display: inline-block;
	padding: 0;
	font-size: calc(1.3rem / 1.6);
	font-weight: 700;
}
.nav-sub .sub li a::after {
	display: none;
}
@media print, screen and (min-width: 768px) {/* PC */
.nav-sub .btn-sub {
	padding: 25px 30px 25px 0;
}
.nav-sub-fix .nav-sub ul {
	padding: 10px 50px;
}
.nav-sub-fix .nav-sub li + li {
	border-top: 1px solid #f1f1f4;
}
.nav-sub-fix .nav-sub .sub li + li {
	border-top: none;
}
.nav-sub .btn-sub span:last-child {
	font-size: calc(1.6rem / 1.6);
}
.nav-sub .sub li a {
	font-size: calc(1.4rem / 1.6);
}
}/* @media */
/* -----------------------------------------------
= young-employees variable
----------------------------------------------- */
.young-employees {
	--purple: #6e5fab;
	--yellow: #e6a500;
	--green: #82b441;
	--red: #eb5569;
}
/* -----------------------------------------------
= young-employees
----------------------------------------------- */
.young-employees {
	scroll-margin-top: 45px;
}
@media print, screen and (min-width: 768px) {/* PC */
.young-employees {
	scroll-margin-top: 80px;
}
}/* @media */
/* -----------------------------------------------
= young-employees btn
----------------------------------------------- */
.young-employees .btn {
	display: block;
}
.young-employees .btn .img {
	position: relative;
}
.young-employees .btn .img h2 {
	position: absolute;
	left: 20px;
	bottom: 18px;
	font-family: var(--min);
	font-size: calc(2.2rem / 1.6);
	letter-spacing: 0;
}
.young-employees .btn .img h2 > span {
	display: inline-block;
	margin-block: 2px;
	padding-left: 2px;
	background: #fff;
}
.young-employees.ti .btn .img h2 .em {
	color: var(--yellow);
}
.young-employees.wk .btn .img h2 .em {
	color: var(--green);
}
.young-employees.hm .btn .img h2 .em {
	color: var(--purple);
}
.young-employees.ko .btn .img h2 .em {
	color: var(--red);
}
.young-employees .btn .img img {
	height: 320px;
	object-fit: cover;
	object-position: 20% 50%;
}
.young-employees .btn .box {
	position: relative;
	padding: 30px 20px 20px;
	color: #fff;
}
.young-employees.ti .btn .box {
	background: url(/company/recruit/people/img/bg_young-employees_it_sp.jpg) no-repeat 50% / cover;
}
.young-employees.wk .btn .box {
	background: url(/company/recruit/people/img/bg_young-employees_kw_sp.jpg) no-repeat 50% / cover;
}
.young-employees.hm .btn .box {
	background: url(/company/recruit/people/img/bg_young-employees_mh_sp.jpg) no-repeat 50% / cover;
}
.young-employees.ko .btn .box {
	background: url(/company/recruit/people/img/bg_young-employees_ko_sp.jpg) no-repeat 50% / cover;
}
.young-employees .btn .box .division {
	display: inline-block;
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 4px 7px;
	background: #fff;
	font-size: calc(1rem / 1.6);
	font-weight: 700;
}
.young-employees.ti .btn .box .division {
	color: var(--yellow);
}
.young-employees.wk .btn .box .division {
	color: var(--green);
}
.young-employees.hm .btn .box .division {
	color: var(--purple);
}
.young-employees.ko .btn .box .division {
	color: var(--red);
}
.young-employees .btn .box .name {
	margin-bottom: 10px;
	font-family: var(--fig);
	font-size: calc(2.7rem / 1.6);
	font-weight: 500;
}
.young-employees .btn .box .year {
	margin-bottom: 30px;
	font-size: calc(1.2rem / 1.6);
	font-weight: 500;
}
.young-employees .btn .box .tag {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 10px;
	margin: 0 0 20px 6px;
}
.young-employees .btn .box .tag li {
	position: relative;
	padding: 5px 7px 5px 12px;
	background: rgba(255,255,255,.2);
	font-size: calc(1rem / 1.6);
	font-weight: 700;
	letter-spacing: 0;
}
.young-employees .btn .box .tag li::before,
.young-employees .btn .box .tag li::after {
	content: "";
	position: absolute;
}
.young-employees .btn .box .tag li::before {
	top: 0;
	left: -6px;
	width: 6px;
	height: 100%;
	background: rgba(255,255,255,.2);
	clip-path: polygon(100% 0,100% 100%,0 50%);
}
.young-employees .btn .box .tag li::after {
	top: calc(50% - 2.5px);
	left: 3px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
}
.young-employees.ti .btn .box .tag li::after {
	background: var(--yellow);
}
.young-employees.wk .btn .box .tag li::after {
	background: var(--green);
}
.young-employees.hm .btn .box .tag li::after {
	background: var(--purple);
}
.young-employees.ko .btn .box .tag li::after {
	background: var(--red);
}
.young-employees .btn .view-all {
	position: relative;
	padding-block: 18px;
	background: rgba(255,255,255,.2);
	font-family: var(--fig);
	font-size: calc(1.2rem / 1.6);
	font-weight: 600;
	text-align: center;
}
.young-employees .btn .view-all::before,
.young-employees .btn .view-all::after {
	content: "";
	position: absolute;
}
.young-employees .btn .view-all::before {
	top: 7px;
	right: 50px;
	width: 1px;
	height: calc(100% - 14px);
	background: rgba(255,255,255,.3);
}
.young-employees .btn .view-all::after {
	top: calc(50% - 5px);
	right: 17px;
	width: 15px;
	height: 10px;
	background: url(/company/recruit/assets/img/icon_link_arrow.svg) no-repeat 50% / cover;
	transform: rotate(90deg);
	filter: var(--filter-white);
}
.young-employees .btn.is-active .view-all {
	background: transparent;
	border: 1px solid rgba(255,255,255,.3);
	box-sizing: border-box;
}
.young-employees .btn.is-active .view-all::after {
	right: 20px;
	width: 10px;
	height: 10px;
	background: url(/company/recruit/assets/img/icon_close.svg) no-repeat 50% / cover;
	transform: rotate(0);
	filter: var(--filter-white);
}
@media print, screen and (min-width: 768px) {/* PC */
.young-employees {
	margin-inline: 40px;
}
.young-employees .btn {
	position: relative;
}
.young-employees .btn .img h2 {
	left: 40px;
	bottom: 36px;
	font-size: calc(4.8rem / 1.6);
}
.young-employees .btn .img h2 > span {
	margin-block: 4px;
}
.young-employees .btn .img img {
	height: 640px;
	object-position: 30% 50%;
}
.young-employees .btn .box {
	display: block;
	position: absolute;
	top: 40px;
	right: 40px;
	bottom: 40px;
	z-index: 1;
	width: 620px;
	padding: 100px 30px 30px;
	backdrop-filter: blur(10px);
}
.young-employees.ti .btn .box {
	background: rgba(230,165,0,.8);
}
.young-employees.wk .btn .box {
	background: rgba(130,180,65,.8);
}
.young-employees.hm .btn .box {
	background: rgba(110,95,170,.8);
}
.young-employees.ko .btn .box {
	background: rgba(235,85,105,.8);
}
.young-employees .btn .box .division {
	top: 30px;
	right: 30px;
	padding: 8px 10px;
	font-size: calc(1.4rem / 1.6);
}
.young-employees .btn .box .name {
	margin-bottom: 30px;
	margin-left: 50px;
	font-size: calc(4.2rem / 1.6);
}
.young-employees .btn .box .year {
	margin-bottom: 60px;
	margin-left: 50px;
	font-size: calc(1.4rem / 1.6);
}
.young-employees .btn .box .tag {
	gap: 10px 16px;
	margin: 0 50px 50px 57px;
}
.young-employees .btn .box .tag li {
	padding: 7px 15px 7px 17px;
	font-size: calc(1.4rem / 1.6);
}
.young-employees .btn .box .tag li::before {
	left: -7px;
	width: 7px;
}
.young-employees .btn .box .tag li::after {
	top: calc(50% - 3px);
	left: 3px;
	width: 6px;
	height: 6px;
}
.young-employees .btn .view-all {
	position: absolute;
	left: 40px;
	right: 40px;
	bottom: 40px;
	padding-block: 24px;
	font-size: calc(1.4rem / 1.6);
}
.young-employees .btn .view-all::before {
	top: 10px;
	right: 60px;
	height: calc(100% - 20px);
}
.young-employees .btn .view-all::after {
	top: calc(50% - 7px);
	right: 20px;
	width: 20px;
	height: 14px;
}
.young-employees .btn.is-active .view-all::after {
	right: 22px;
	width: 16px;
	height: 16px;
}
}/* @media */
@media print, screen and (max-width: 1620px) and (min-width: 768px) {
.young-employees .btn .img h2 {
	font-size: calc(48 / 1620 * 100vw);
}
.young-employees .btn .box {
	width: calc(620 / 1540 * 100%);
}
.young-employees .btn .box .name {
	margin-left: 0;
}
.young-employees .btn .box .year {
	margin-left: 0;
}
.young-employees .btn .box .tag {
	margin-left: 7px;
}
.young-employees .btn .view-all {
	left: 30px;
	right: 30px;
}
}/* @media */
@media print, screen and (max-width: 1340px) and (min-width: 768px) {
.young-employees .btn .box .name {
	margin-bottom: 20px;
}
.young-employees .btn .box .year {
	margin-bottom: 40px;
}
}/* @media */
@media print, screen and (max-width: 1440px) and (min-width: 768px) {
.young-employees .btn .img h2 {
	font-size: calc(3.4rem / 1.6);
}
.young-employees .btn .img img {
	min-height: 465px;
	max-height: calc(100vh - 80px);
}
}/* @media */
@media print, screen and (max-width: 1280px) and (min-width: 768px) {
.young-employees .btn .box {
	padding: 30px;
}
.young-employees .btn .box .name {
	margin-bottom: 10px;
	font-size: calc(3.2rem / 1.6);
}
.young-employees .btn .box .year {
	margin-bottom: 20px;
	font-size: calc(1.4rem / 1.6);
}
.young-employees .btn .box .tag {
	margin-bottom: 20px;
}
.young-employees .btn .box .tag li {
	font-size: calc(1.2rem / 1.6);
}
}/* @media */
@media print, screen and (max-width: 1120px) and (min-width: 768px) {
.young-employees .btn .img h2 {
	font-size: calc(3.8rem / 1.6);
}
.young-employees .btn .box {
	position: static;
	width: auto;
}
.young-employees .btn .view-all {
	position: relative;
	left: 0;
	right: 0;
	bottom: 0;
}
}/* @media */
@media (hover:hover) {
.young-employees .btn .view-all {
	transition: background .3s;
}
.young-employees .btn .view-all:hover {
	background: rgba(226,226,231,.6);
}
}/* @media */
/* -----------------------------------------------
= young-employees detail
----------------------------------------------- */
.young-employees .detail {
	margin-bottom: 20px;
	padding-inline: 20px;
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.4s ease;
}
.young-employees.ti .detail {
	background: #f4f1e9;
}
.young-employees.wk .detail {
	background: #f1f6eb;
}
.young-employees.hm .detail {
	background: #f3f3f7;
}
.young-employees.ko .detail {
	background: #f9f2f3;
}
@media print, screen and (min-width: 768px) {/* PC */
.young-employees .detail {
	margin-bottom: 30px;
	padding-inline: 40px;
}
}/* @media */
/* -----------------------------------------------
= young-employees profile
----------------------------------------------- */
.young-employees .profile {
	position: relative;
	z-index: 1;
	margin-block: 60px 10px;
	padding-bottom: 25px;
	background: #fff;
}
.young-employees .profile::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 120px;
}
.young-employees.ti .profile::before {
	background: #f1ead7;
}
.young-employees.wk .profile::before {
	background: #e8efe0;
}
.young-employees.hm .profile::before {
	background: #e8e8f0;
}
.young-employees.ko .profile::before {
	background: #f4e9ea;
}
.young-employees .profile::after {
	content: "";
	position: absolute;
	top: 0;
	left: calc(50% - 96px);
	width: 192px;
	height: 4px;
}
.young-employees.ti .profile::after {
	background: var(--yellow);
}
.young-employees.wk .profile::after {
	background: var(--green);
}
.young-employees.hm .profile::after {
	background: var(--purple);
}
.young-employees.ko .profile::after {
	background: var(--red);
}
.young-employees .profile h3 {
	position: relative;
	z-index: 1;
	padding: 28px 20px 20px;
	font-family: var(--fig);
	font-size: calc(1.8rem / 1.6);
	font-weight: 600;
	text-align: center;
}
.young-employees.ti .profile h3 {
	color: var(--yellow);
}
.young-employees.wk .profile h3 {
	color: var(--green);
}
.young-employees.hm .profile h3 {
	color: var(--purple);
}
.young-employees.ko .profile h3 {
	color: var(--red);
}
.young-employees .profile img {
	position: relative;
	z-index: 1;
	width: calc(100% - 80px);
	margin: 0 40px 25px;
}
.young-employees .profile p {
	margin-inline: 25px;
	font-size: calc(1.2rem / 1.6);
	line-height: 2;
}
@media print, screen and (min-width: 768px) {/* PC */
.young-employees .profile {
	display: flex;
	align-items: center;
	gap: 0 60px;
	max-width: 1360px;
	margin: 100px auto 20px;
	padding-block: 60px;
}
.young-employees .profile::before {
	width: 310px;
	height: 100%;
}
.young-employees .profile::after {
	top: 60px;
	left: 0;
	width: 6px;
	height: calc(100% - 120px);
}
.young-employees .profile h3 {
	padding: 0 0 0 80px;
	font-size: calc(2.8rem / 1.6);
}
.young-employees .profile img {
	display: block;
	width: 280px;
	margin: 0 auto;
}
.young-employees .profile p {
	margin-inline: 0 60px;
	font-size: calc(1.6rem / 1.6);
}
}/* @media */
@media print, screen and (max-width: 1100px) and (min-width: 768px) {
.young-employees .profile {
	display: block;
}
.young-employees .profile h3 {
	margin-bottom: 20px;
	padding: 0;
}
.young-employees .profile p {
	margin: 20px 40px 0;
}
}/* @media */
/* -----------------------------------------------
= young-employees note
----------------------------------------------- */
.young-employees .note {
	margin-bottom: 50px;
	font-size: calc(1rem / 1.6);
	text-align: right;
}
@media print, screen and (min-width: 768px) {/* PC */
.young-employees .note {
	margin-bottom: 80px;
	font-size: calc(1.4rem / 1.6);
}
}/* @media */
/* -----------------------------------------------
= young-employees title
----------------------------------------------- */
.young-employees .title {
	margin: 0 -10px 30px;
	text-align: center;
}
.young-employees .title span:first-child {
	display: block;
	margin-bottom: 5px;
	color: #fff;
	font-family: var(--fig);
	font-size: calc(4rem / 1.6);
	font-weight: 400;
	letter-spacing: 0;
}
.young-employees .title {
	display: block;
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
}
@media print, screen and (min-width: 768px) {/* PC */
.young-employees .title {
	margin: 0 0 70px;
}
.young-employees .title span:first-child {
	margin-bottom: 10px;
	font-size: calc(10rem / 1.6);
}
.young-employees .title {
	font-size: calc(3.6rem / 1.6);
}
}/* @media */
@media print, screen and (max-width: 1440px) and (min-width: 768px) {
.young-employees .title {
	margin: 0 0 40px;
}
.young-employees .title span:first-child {
	font-size: calc(5rem / 1.6);
}
.young-employees .title {
	font-size: calc(2rem / 1.6);
}
}/* @media */
/* -----------------------------------------------
= young-employees movie
----------------------------------------------- */
.young-employees .movie {
	margin-bottom: 60px;
}
.young-employees .movie button {
	position: relative;
}
.young-employees .movie button::before,
.young-employees .movie button::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
	width: 46px;
	height: 46px;
	border-radius: 50%;
}
.young-employees .movie button::before {
	padding: 2px;
	background: rgba(255,255,255,.2);
}
.young-employees.ti .movie button::after {
	background: var(--yellow);
}
.young-employees.wk .movie button::after {
	background: var(--green);
}
.young-employees.hm .movie button::after {
	background: var(--purple);
}
.young-employees.ko .movie button::after {
	background: var(--red);
}
.young-employees .movie button span {
	display: block;
	position: relative;
}
.young-employees .movie button span::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
	width: 8px;
	height: 11px;
	background: #fff;
	clip-path: polygon(0 0,100% 50%,0 100%);
}
@media print, screen and (min-width: 768px) {/* PC */
.young-employees .movie {
	max-width: 1360px;
	margin: 0 auto 100px;
}
.young-employees .movie button::before,
.young-employees .movie button::after {
	width: 126px;
	height: 126px;
}
.young-employees .movie button::before {
	padding: 6px;
}
.young-employees .movie button span::after {
	width: 28px;
	height: 30px;
}
}/* @media */
@media print, screen and (max-width: 1440px) and (min-width: 768px) {
.young-employees .movie {
	max-width: 600px;
	margin: 0 auto 50px;
}
.young-employees .movie button::before,
.young-employees .movie button::after {
	width: 60px;
	height: 60px;
}
.young-employees .movie button span::after {
	width: 14px;
	height: 15px;
}
}/* @media */
/* -----------------------------------------------
= young-employees journey
----------------------------------------------- */
.young-employees .journey {
	position: relative;
	z-index: 1;
	margin-bottom: 60px;
	padding-top: 40px;
}
.young-employees .journey::before {
	content: "";
	position: absolute;
	top: 0;
	left: -20px;
	right: -20px;
	z-index: -1;
	width: 100vw;
	height: 200px;
	background-repeat: no-repeat;
	background-position: 0 50%;
	background-size: cover;
}
.young-employees.ti .journey::before {
	background-image: url(/company/recruit/people/img/bg_young-employees_it_journey.jpg);
}
.young-employees.wk .journey::before {
	background-image: url(/company/recruit/people/img/bg_young-employees_kw_journey.jpg);
}
.young-employees.hm .journey::before {
	background-image: url(/company/recruit/people/img/bg_young-employees_mh_journey.jpg);
}
.young-employees.ko .journey::before {
	background-image: url(/company/recruit/people/img/bg_young-employees_ok_journey.jpg);
}
.young-employees .journey .title {
	margin-bottom: 20px;
}
.young-employees .journey .title span:first-child {
	color: rgba(255,255,255,.3);
}
.young-employees .journey .title span:last-child {
	color: #fff;
}
.young-employees .journey .swiper {
	margin: 0 -20px 50px;
}
.young-employees .journey .swiper-slide {
	height: auto;
}
.young-employees .journey .swiper-slide .item {
	display: flex;
	flex-direction: column;
	height: 100%;
	margin-inline: 20px;
}
.young-employees .journey .year {
	position: relative;
	margin-bottom: 20px;
	color: #fff;
	font-family: var(--fig);
	font-size: calc(2rem / 1.6);
	font-weight: 500;
	text-align: center;
	letter-spacing: 0;
}
.young-employees .journey .year::before,
.young-employees .journey .year::after {
	content: "";
	position: absolute;
	top: 50%;
	width: calc(50% - calc(2rem / 1.6));
	height: 1px;
	border-top: 1px dashed #fff;
}
.young-employees .journey .year::before {
	left: -20px;
}
.young-employees .journey .year::after {
	right: -20px;
}
.young-employees .journey .swiper-slide:first-child .year::before,
.young-employees .journey .swiper-slide:last-child .year::after {
	display: none;
}
.young-employees .journey .set {
	flex: 1;
	position: relative;
	padding: 30px 35px;
	background: #fff;
	text-align: center;
}
.young-employees .journey .set::before,
.young-employees .journey .set::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
}
.young-employees .journey .set::before {
	top: -10px;
	width: 20px;
	height: 20px;
	background: #fff;
}
.young-employees.ti .journey .set::before {
	background: #f1ead7;
}
.young-employees.wk .journey .set::before {
	background: #e8efe0;
}
.young-employees.hm .journey .set::before {
	background: #e7e7ef;
}
.young-employees.ko .journey .set::before {
	background: #f4e9ea;
}
.young-employees .journey .set::after {
	top: -5px;
	width: 10px;
	height: 10px;
}
.young-employees.ti .journey .set::after {
	background: var(--yellow);
}
.young-employees.wk .journey .set::after {
	background: var(--green);
}
.young-employees.hm .journey .set::after {
	background: var(--purple);
}
.young-employees.ko .journey .set::after {
	background: var(--red);
}
.young-employees .journey .set .category {
	display: inline-block;
	margin-bottom: 20px;
	padding: 5px 10px;
	color: #fff;
	font-size: calc(1rem / 1.6);
	font-weight: 700;
}
.young-employees.ti .journey .set .category {
	background: var(--yellow);
}
.young-employees.wk .journey .set .category {
	background: var(--green);
}
.young-employees.hm .journey .set .category {
	background: var(--purple);
}
.young-employees.ko .journey .set .category {
	background: var(--red);
}
.young-employees .journey .set h4 {
	margin-bottom: 20px;
	font-size: calc(1.3rem / 1.6);
	font-weight: 700;
	letter-spacing: 0;
}
.young-employees .journey .set .text {
	font-size: calc(1.2rem / 1.6);
	line-height: 2;
	text-align: left;
	letter-spacing: .02em;
}
.young-employees .journey .swiper-button-prev,
.young-employees .journey .swiper-button-next {
	top: calc(50% + 30px);
	width: 40px;
	height: 40px;
	background: var(--black);
}
.young-employees .journey .swiper-button-prev[aria-disabled="true"],
.young-employees .journey .swiper-button-next[aria-disabled="true"] {
	display: none;
}
.young-employees .journey .swiper-button-prev {
	left: 0;
}
.young-employees .journey .swiper-button-next {
	right: 0;
}
.young-employees .journey .swiper-button-prev::after,
.young-employees .journey .swiper-button-next::after {
	width: 16px;
	height: 10px;
	background: url(/company/recruit/assets/img/icon_link_arrow.svg) no-repeat 50% / cover;
	filter: var(--filter-white);
	font-size: 0;
}
.young-employees .journey .swiper-button-prev::after {
	transform: scale(-1,1);
}
@media print, screen and (min-width: 768px) {/* PC */
.young-employees .journey {
	margin-bottom: 60px;
	padding-top: 90px;
}
.young-employees .journey::before {
	left: -40px;
	right: -40px;
	width: calc(100% + 80px);
	height: 675px;
}
.young-employees .journey .title {
	margin-bottom: 40px;
}
.young-employees .journey .swiper {
	margin: 0 -40px 100px;
}
.young-employees .journey .swiper-slide {
	width: 660px;
}
.young-employees .journey .year {
	margin-bottom: 30px;
	font-size: calc(4rem / 1.6);
}
.young-employees .journey .year::before,
.young-employees .journey .year::after {
	width: calc(50% - calc(4rem / 1.6));
}
.young-employees .journey .set {
	padding: 60px 40px;
}
.young-employees .journey .set::before {
	top: -20px;
	width: 40px;
	height: 40px;
}
.young-employees .journey .set::after {
	top: -10px;
	width: 20px;
	height: 20px;
}
.young-employees .journey .set .category {
	margin-bottom: 20px;
	padding: 8px 14px;
	font-size: calc(1.4rem / 1.6);
}
.young-employees .journey .set h4 {
	margin-bottom: 20px;
	font-size: calc(2.4rem / 1.6);
}
.young-employees .journey .set .text {
	max-width: 400px;
	margin-inline: auto;
	font-size: calc(1.4rem / 1.6);
}
.young-employees .journey .swiper-button-prev,
.young-employees .journey .swiper-button-next {
	top: calc(50% + 30px);
	width: 66px;
	height: 66px;
}
.young-employees .journey .swiper-button-prev::after,
.young-employees .journey .swiper-button-next::after {
	width: 20px;
	height: 14px;
}
}/* @media */
@media print, screen and (max-width: 1440px) and (min-width: 768px) {
.young-employees .journey {
	padding-top: 30px;
}
.young-employees .journey::before {
	height: 400px;
}
.young-employees .journey .title {
	margin-bottom: 20px;
}
.young-employees .journey .year {
	font-size: calc(2rem / 1.6);
}
.young-employees .journey .year::before,
.young-employees .journey .year::after {
	width: calc(50% - calc(3rem / 1.6));
}
.young-employees .journey .set {
	padding: 30px;
}
.young-employees .journey .set h4 {
	font-size: calc(2rem / 1.6);
}
}/* @media */
@media (hover:hover) {
.young-employees .journey .swiper-button-prev,
.young-employees .journey .swiper-button-next {
	transition: opacity .3s;
}
.young-employees .journey .swiper-button-prev:hover,
.young-employees .journey .swiper-button-next:hover {
	opacity: .8;
}
}/* @media */
/* -----------------------------------------------
= young-employees theme
----------------------------------------------- */
.young-employees .theme {
	padding-bottom: 25px;
	border-bottom: 1px solid;
}
.young-employees .theme + .theme {
	margin-top: 60px;
}
.young-employees.ti .theme {
	border-bottom-color: #e9e3d3;
}
.young-employees.wk .theme {
	border-bottom-color: #d6dad0;
}
.young-employees.hm .theme {
	border-bottom-color: #d9d9e1;
}
.young-employees.ko .theme {
	border-bottom-color: #e6d9db;
}
.young-employees .theme .box {
	padding: 25px;
	color: #fff;
}
.young-employees.ti .theme .box {
	background: var(--yellow);
}
.young-employees.wk .theme .box {
	background: var(--green);
}
.young-employees.hm .theme .box {
	background: var(--purple);
}
.young-employees.ko .theme .box {
	background: var(--red);
}
.young-employees .theme .box .num {
	display: inline-block;
	margin-bottom: 12px;
	padding: 4px 10px;
	background: rgba(255,255,255,.1);
	font-family: var(--fig);
	font-size: calc(1rem / 1.6);
	font-weight: 600;
	letter-spacing: .01em;
}
.young-employees .theme .box h3 {
	font-size: calc(1.9rem / 1.6);
	font-weight: 700;
	letter-spacing: 0;
}
.young-employees .theme .faq {
	position: relative;
	margin-bottom: 35px;
	padding: 40px 30px 25px;
	background: #fff;
	text-align: center;
}
.young-employees .theme .faq::after {
	content: "";
	position: absolute;
	right: 30px;
	bottom: -23px;
	width: 24px;
	height: 24px;
	background: #fff;
	clip-path: polygon(0 0,100% 0,100% 100%);
}
.young-employees .theme .faq .num {
	display: inline-block;
	margin-bottom: 10px;
	padding-block: 5px;
	border-top: 1px solid;
	border-bottom: 1px solid;
	font-family: var(--fig);
	font-size: calc(1.1rem / 1.6);
	font-weight: 600;
	letter-spacing: .01em;
}
.young-employees.ti .theme .faq .num {
	color: var(--yellow);
	border-top-color: var(--yellow);
	border-bottom-color: var(--yellow);
}
.young-employees.wk .theme .faq .num {
	color: var(--green);
	border-top-color: var(--green);
	border-bottom-color: var(--green);
}
.young-employees.hm .theme .faq .num {
	color: var(--purple);
	border-top-color: var(--purple);
	border-bottom-color: var(--purple);
}
.young-employees.ko .theme .faq .num {
	color: var(--red);
	border-top-color: var(--red);
	border-bottom-color: var(--red);
}
.young-employees .theme .faq h4 {
	margin-bottom: 20px;
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
	line-height: calc(24 / 14);
	letter-spacing: 0;
}
.young-employees .theme .faq .text {
	font-size: calc(1.2rem / 1.6);
	line-height: calc(23 / 12);
	text-align: left;
	letter-spacing: .02em;
}
.young-employees .theme .faq .note {
	font-size: calc(1rem / 1.6);
	line-height: calc(23 / 12);
	text-align: left;
}
@media print, screen and (min-width: 768px) {/* PC */
.young-employees .theme {
	max-width: 1360px;
	margin-inline: auto;
	padding-bottom: 100px;
}
.young-employees .theme + .theme {
	margin-top: 100px;
}
.young-employees .theme .inner {
	display: flex;
}
.young-employees .theme .box {
	flex: 1;
	padding: calc(100 / 1500 * 100vw) 60px;
}
.young-employees .theme.type02 .box {
	order: 2;
	text-align: right;
}
.young-employees .theme .inner .img {
	width: 50%;
}
.young-employees .theme.type02 .inner .img {
	order: 1;
}
.young-employees .theme .box .num {
	margin-bottom: 25px;
	padding: 8px 14px;
	font-size: calc(1.8rem / 1.6);
}
.young-employees .theme .box h3 {
	font-size: calc(3.6rem / 1.6);
}
.young-employees .theme .faq-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0 40px;
	margin-top: calc(-100 / 1500 * 100vw);
}
.young-employees .theme .faq-list.js-inview .faq {
	opacity: 0;
	transition: opacity .8s;
}
.young-employees .theme .faq-list.js-inview.is-show .faq {
	opacity: 1;
}
.young-employees .theme .faq-list.js-inview .faq:nth-child(1) {
	transition-delay: .6s;
}
.young-employees .theme .faq-list.js-inview .faq:nth-child(2) {
	transition-delay: 1s;
}
.young-employees .theme .faq-list.js-inview .faq:nth-child(3) {
	transition-delay: 1.4s;
}
.young-employees .theme .faq {
	margin-bottom: 0;
	padding: 50px 40px 40px;
}
.young-employees .theme .faq::after {
	right: 40px;
	bottom: -29px;
	width: 30px;
	height: 30px;
}
.young-employees .theme .faq .num {
	margin-bottom: 20px;
	padding-block: 8px;
	font-size: calc(1.4rem / 1.6);
}
.young-employees .theme .faq h4 {
	margin-bottom: 30px;
	font-size: calc(1.8rem / 1.6);
	line-height: calc(30 / 18);
}
.young-employees .theme .faq .text {
	font-size: calc(1.4rem / 1.6);
	line-height: calc(26 / 14);
}
.young-employees .theme .faq .note {
	font-size: calc(1.2rem / 1.6);
}
}/* @media */
@media print, screen and (max-width: 1440px) and (min-width: 768px) {
.young-employees .theme .box .num {
	font-size: calc(1.4rem / 1.6);
}
.young-employees .theme .box h3 {
	font-size: calc(3rem / 1.6);
}
.young-employees .theme .faq {
	padding: 30px;
}
.young-employees .theme .faq .num {
	margin-bottom: 10px;
	padding-block: 6px;
	font-size: calc(1.2rem / 1.6);
}
.young-employees .theme .faq h4 {
	margin-bottom: 20px;
	font-size: calc(1.6rem / 1.6);
}
}/* @media */
@media print, screen and (max-width: 1023px) and (min-width: 768px) {
.young-employees .theme .box {
	padding: 30px;
}
.young-employees .theme .box h3 {
	font-size: calc(2.2rem / 1.6);
}
.young-employees .theme .faq-list {
	display: block;
	margin-top: 0;
}
.young-employees .theme .faq {
	margin-bottom: 30px;
}
}/* @media */
@media print, screen and (min-width: 1500px) {
.young-employees .theme .box {
	padding: 100px 60px;
}
.young-employees .theme .faq-list {
	margin-top: -100px;
}
}/* @media */
/* -----------------------------------------------
= young-employees related
----------------------------------------------- */
.young-employees .related {
	padding-block: 50px 60px;
}
.young-employees .related .item {
	padding: 25px;
	background: #fff;
	border-top: 2px solid;
}
.young-employees.ti .related .item {
	border-top-color: var(--yellow);
}
.young-employees.wk .related .item {
	border-top-color: var(--green);
}
.young-employees.hm .related .item {
	border-top-color: var(--purple);
}
.young-employees.ko .related .item {
	border-top-color: var(--red);
}
.young-employees .related .item .set {
	display: flex;
	align-items: center;
	gap: 0 20px;
	margin-bottom: 20px;
}
.young-employees .related .item .set img {
	width: 135px;
}
.young-employees .related .item .set h4 {
	font-size: calc(1.3rem / 1.6);
	font-weight: 700;
	letter-spacing: 0;
}
.young-employees .related .item p {
	font-size: calc(1.2rem / 1.6);
	line-height: 2;
}
@media print, screen and (min-width: 768px) {/* PC */
.young-employees .related {
	padding-block: 80px 100px;
}
.young-employees .related .item {
	max-width: 580px;
	margin-inline: auto;
	padding: 40px;
	border-top-width: 4px;
}
.young-employees .related .item .set {
	gap: 0 30px;
	margin-bottom: 30px;
}
.young-employees .related .item .set img {
	width: 120px;
}
.young-employees .related .item .set h4 {
	font-size: calc(1.8rem / 1.6);
}
.young-employees .related .item p {
	font-size: calc(1.4rem / 1.6);
}
}/* @media */
/* -----------------------------------------------
= young-employees detail-close
----------------------------------------------- */
.young-employees .detail-close {
	margin-inline: -20px;
	padding-block: 25px 45px;
	border-top: 1px solid;
	text-align: center;
}
.young-employees.ti .detail-close {
	border-top-color: #e9e3d3;
}
.young-employees.wk .detail-close {
	border-top-color: #d6dad0;
}
.young-employees.hm .detail-close {
	border-top-color: #d9d9e1;
}
.young-employees.ko .detail-close {
	border-top-color: #e6d9db;
}
.young-employees .detail-close button {
	position: relative;
	padding-top: 20px;
	font-family: var(--fig);
	font-size: calc(1.2rem / 1.6);
	font-weight: 600;
}
.young-employees .detail-close button::before,
.young-employees .detail-close button::after {
	content: "";
	position: absolute;
	top: 0;
	left: calc(50% - 9px);
	width: 18px;
	height: 2px;
}
.young-employees.ti .detail-close button::before,
.young-employees.ti .detail-close button::after {
	background: var(--yellow);
}
.young-employees.wk .detail-close button::before,
.young-employees.wk .detail-close button::after {
	background: var(--green);
}
.young-employees.hm .detail-close button::before,
.young-employees.hm .detail-close button::after {
	background: var(--purple);
}
.young-employees.ko .detail-close button::before,
.young-employees.ko .detail-close button::after {
	background: var(--red);
}
.young-employees .detail-close button::before {
	transform: rotate(-45deg);
}
.young-employees .detail-close button::after {
	transform: rotate(45deg);
}
@media print, screen and (min-width: 768px) {/* PC */
.young-employees .detail-close {
	margin-inline: -40px;
	padding-block: 30px;
}
.young-employees .detail-close button {
	padding-top: 20px;
	font-size: calc(1.4rem / 1.6);
}
.young-employees .detail-close button::before,
.young-employees .detail-close button::after {
	left: calc(50% - 10px);
	width: 20px;
}
}/* @media */




