/* -----------------------------------------------
= kv
----------------------------------------------- */
.kv {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	min-height: 400px;
	height: calc(100svh - 45px);
	margin-top: 45px;
	overflow: hidden;
	transition: opacity .8s;
}
.is-scrolled .kv {
	opacity: .1;
}
.kv .swiper {
	position: relative;
	overflow: hidden;
}
.kv .swiper::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}
.kv .swiper-wrapper {
	transition-timing-function: linear !important;
}
.kv .swiper-slide {
	width: 230px;
}
.kv .swiper-slide img {
	display: block;
	width: 100%;
	height: calc(90 / 667 * 100vh);
	object-fit: cover;
}
.kv .swiper.num01,
.kv .swiper.num04 {
	margin-bottom: 10px;
}
.kv .swiper.num03,
.kv .swiper.num06 {
	display: none;
}
.kv .slide-set {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
}
.kv .set {
	position: absolute;
	top: 50%;
	left: 0;
	z-index: 3;
	width: 100%;
	transform: translateY(-50%);
}
.kv .copy {
	position: relative;
	padding: 0 0 6px 20px;
}
.is-scrolled .kv .copy {
	opacity: 0;
}
.kv .copy span {
	display: block;
	margin-bottom: 4px;
	padding-right: 4px;
	overflow: hidden;
}
.kv .copy span img {
	display: inline-block;
	width: auto;
	height: clamp(32px,calc(32 / 375 * 100vw),40px);
	margin-right: -4px;
	filter: invert(12%) sepia(31%) saturate(1089%) hue-rotate(183deg) brightness(91%) contrast(91%);
}
.kv .copy span:first-child img:nth-child(1) {
	margin-right: -10px;
}
.kv .copy span:first-child img:nth-child(2) {
	margin-right: -8px;
}
.kv .copy span:first-child img:nth-child(4) {
	margin-right: -6px;
}
.kv .copy span:first-child img:nth-child(5) {
	margin-right: -6px;
}
.kv .copy span:first-child img:nth-child(6) {
	margin-right: 0;
}
.kv .copy span:first-child img:nth-child(9) {
	margin-right: -6px;
}
.kv .copy span:last-child img:nth-child(3) {
	margin-right: -8px;
}
.kv .copy span:last-child img:nth-child(4) {
	margin-right: -6px;
}
.kv .copy span:last-child img:nth-child(5) {
	margin-right: 2px;
}
.kv .copy span:last-child img:nth-child(6) {
	margin-right: -2px;
}
.kv .copy span:last-child img:nth-child(7) {
	margin-right: -2px;
}
.kv.js-inview .copy span img {
	opacity: 0;
	transform: translateY(100%);
	transform-origin: 50% 100%;
	transition-duration: .8s;
}
.kv.js-inview.is-show .copy span img {
	opacity: 1;
	transform: translateY(0);
}
.kv.js-inview .copy span img:nth-child(1) {
	transition-delay: 1.6s;
}
.kv.js-inview .copy span img:nth-child(2) {
	transition-delay: 1.7s;
}
.kv.js-inview .copy span img:nth-child(3) {
	transition-delay: 1.8s;
}
.kv.js-inview .copy span img:nth-child(4) {
	transition-delay: 1.9s;
}
.kv.js-inview .copy span img:nth-child(5) {
	transition-delay: 2s;
}
.kv.js-inview .copy span img:nth-child(6) {
	transition-delay: 2.1s;
}
.kv.js-inview .copy span img:nth-child(7) {
	transition-delay: 2.2s;
}
.kv.js-inview .copy span img:nth-child(8) {
	transition-delay: 2.3s;
}
.kv.js-inview .copy span img:nth-child(9) {
	transition-delay: 2.4s;
}
.kv.js-inview .copy span img:nth-child(10) {
	transition-delay: 2.5s;
}
.kv.js-inview .copy span img:nth-child(11) {
	transition-delay: 2.6s;
}
.kv.js-inview .copy span img:nth-child(12) {
	transition-delay: 2.7s;
}
.kv.js-inview .copy span img:nth-child(13) {
	transition-delay: 2.8s;
}
.kv.js-inview .name {
	opacity: 0;
	transition: .8s 2.9s;
}
.kv.js-inview.is-show .name {
	opacity: 1;
}
.is-scrolled .kv.js-inview.is-show .name {
	display: none;
}
.kv .name {
	padding-left: 20px;
	font-family: var(--fig);
	font-size: calc(1rem / 1.6);
	font-weight: 600;
	letter-spacing: .01em;
}
.kv.js-inview .scroll {
	opacity: 0;
	transition: .8s 3s;
}
.kv.js-inview.is-show .scroll {
	opacity: 1;
}
.kv .scroll {
	display: inline-block;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 20px 13px;
	background: #fff;
	font-family: var(--fig);
	font-size: calc(1.1rem / 1.6);
	font-weight: 600;
	writing-mode: sideways-lr;
}
.kv .scroll::before {
	content: "";
	position: absolute;
	top: -10px;
	right: 50%;
	width: 1px;
	height: 20px;
	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%;
	}
}
.kv.js-inview .line {
	opacity: 0;
	transition: .8s .8s;
}
.kv.js-inview.is-show .line {
	opacity: 1;
	animation: mask 1s ease-in-out .8s forwards;
}
.kv .line {
	position: absolute;
	width: 230px;
	height: 14px;
	z-index: 1;
}
@keyframes mask {
	0% {
		clip-path: inset(0 100% 0 0);
	}
	50% {
		clip-path: inset(0);
	}
	100% {
		clip-path: inset(0);
		opacity: 1;
	}
}
.kv .line.type01 {
	top: 0;
	left: -90px;
	background: var(--grad-blue);
}
.kv .line.type02 {
	top: calc(76 / 667 * 100vh);
	left: calc(50% - 115px);
	background: var(--grad-red);
}
.kv .line.type03 {
	top: calc(176 / 667 * 100vh);
	right: 0;
	background: var(--grad-blue);
}
.kv .line.type04 {
	left: -130px;
	bottom: calc(176 / 667 * 100vh);
	background: var(--grad-blue);
}
.kv .line.type05 {
	right: 0;
	bottom: calc(100 / 667 * 100vh);
	background: var(--grad-red);
}
.kv .line.type06 {
	left: -3.5px;
	bottom: 0;
	background: var(--grad-blue);
}
@media print, screen and (min-width: 768px) {/* PC */
.kv {
	min-height: 490px;
	height: calc(100vh - 110px);
	margin-top: 110px;
}
.kv .swiper-slide {
	width: 860px;
}
.kv .swiper-slide img {
	height: calc(280 / 920 * 100vh);
}
.kv .swiper.num01,
.kv .swiper.num02,
.kv .swiper.num04,
.kv .swiper.num05 {
	display: none;
}
.kv .swiper.num03,
.kv .swiper.num06 {
	display: block;
}
.kv .set {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	gap: 20px 30px;
	width: auto;
	padding-inline: 40px;
}
.kv .copy {
	padding: 0;
}
.kv .copy span img {
	height: clamp(60px, calc(80 / 1920 * 100vw), 80px);
}
.kv .name {
	padding: 0;
	font-size: calc(1.6rem / 1.6);
	letter-spacing: 0;
}
.kv .scroll {
	padding: 50px 28px;
	font-size: calc(1.4rem / 1.6);
}
.kv .scroll::before {
	top: -24px;
	height: 48px;
}
.kv .line {
	width: min(660px, calc(660 / 1920 * 100vw));
	height: min(40px, calc(40 / 1920 * 100vw));
}
.kv .line.type01 {
	top: 0;
	left: calc(372 / 1920 * 100vw);
	background: var(--grad-blue);
}
.kv .line.type02 {
	top: calc(242 / 920 * 100vh);
	left: calc(-163 / 1920 * 100vw);
	background: var(--grad-blue);
}
.kv .line.type03 {
	top: calc(320 / 920 * 100vh);
	left: calc(835 / 1920 * 100vw);
	right: auto;
	background: var(--grad-red);
}
.kv .line.type04 {
	left: auto;
	bottom: auto;
	top: calc(450 / 920 * 100vh);
	left: calc(1437 / 1920 * 100vw);
	right: auto;
	background: var(--grad-blue);
}
.kv .line.type05 {
	display: none;
	right: auto;
	bottom: calc(210 / 920 * 100vh);
	left: calc(565 / 1920 * 100vw);
	background: var(--grad-blue);
}
.kv .line.type06 {
	left: calc(-290 / 1920 * 100vw);
	bottom: calc(40 / 920 * 100vh);
	background: var(--grad-red);
}
.kv .line.type07 {
	bottom: 0;
	right: 0;
	background: var(--grad-red);
}
}/* @media */
@media print, screen and (max-width: 1440px) and (min-width: 768px) {
.kv {
	height: calc(100vh - 80px);
	margin-top: 80px;
}
}/* @media */
/* -----------------------------------------------
= message
----------------------------------------------- */
.message {
	margin-top: 100vh;
	padding: 50px 20px 30px;
}
.message p {
	font-size: calc(1.2rem / 1.6);
	font-weight: 700;
	line-height: 2;
	text-align: center;
}
.message p + p {
	margin-top: 2em;
}
@media print, screen and (min-width: 768px) {/* PC */
.message {
	padding: 70px 40px;
}
.message p {
	font-size: calc(2.4rem / 1.6);
	line-height: calc(38 / 18);
}
}/* @media */
@media print, screen and (max-width: 1440px) and (min-width: 768px) {
.message p {
	font-size: calc(1.8rem / 1.6);
}
}/* @media */
/* -----------------------------------------------
= slide-text
----------------------------------------------- */
.slide-text {
	position: relative;
	margin-bottom: 30px;
	font-family: var(--fig);
	font-size: 60px;
	white-space: nowrap;
	overflow: hidden;
}
.slide-text.type-white {
	color: #fff;
}
.slide-text.type-gray {
	color: #e2e2e7;
}
.slide-text.type-transparent {
	color: rgba(255,255,255,.2);
}
.slide-text span {
	display: inline-block;
	animation: marquee 50s linear infinite;
}
@keyframes marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
@media print, screen and (min-width: 768px) {/* PC */
.slide-text {
	margin-bottom: 90px;
	font-size: 120px;
}
}/* @media */
/* -----------------------------------------------
= section
----------------------------------------------- */
.section h2 {
	position: relative;
	margin-bottom: 35px;
	padding: 30px 0 0 35px;
	border-top: 1px solid rgba(29,40,64,.1);
}
.section h2::before,
.section h2::after {
	content: "";
	position: absolute;
	width: 12px;
	height: 6px;
}
.section h2::before {
	top: 40px;
	left: 8px;
	background: var(--grad-blue);
}
.section h2::after {
	top: 46px;
	left: 0;
	background: var(--grad-red);
}
.section h2 span {
	display: block;
	line-height: 1.3;
}
.section h2 span:first-child {
	font-family: var(--fig);
	font-size: calc(3.2rem / 1.6);
	font-weight: 600;
}
.section h2 span:last-child {
	font-size: calc(1.2rem / 1.6);
	font-weight: 500;
	letter-spacing: .05em;
}
.section .text {
	font-size: calc(1.2rem / 1.6);
	line-height: 2;
	letter-spacing: .05em;
}
@media print, screen and (min-width: 768px) {/* PC */
.section h2 {
	max-width: 1360px;
	margin: 0 auto 70px;
	padding: 70px 0 0 54px;
	box-sizing: border-box;
}
.section h2::before,
.section h2::after {
	width: 20px;
	height: 10px;
}
.section h2::before {
	top: 80px;
	left: 13px;
}
.section h2::after {
	top: 90px;
	left: 0;
}
.section h2 span:first-child {
	font-size: calc(5.4rem / 1.6);
}
.section h2 span:last-child {
	font-size: calc(1.6rem / 1.6);
	letter-spacing: .04em;
}
.section .text {
	font-size: calc(1.6rem / 1.6);
	letter-spacing: .04em;
}
.section .hdg-set {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px 0;
	max-width: 1360px;
	margin: 0 auto 70px;
	border-top: 1px solid rgba(29,40,64,.1);
}
.section .hdg-set h2 {
	margin: 0;
	border-top: none;
}
.section .hdg-set .text {
	padding-top: 70px;
}
}/* @media */
@media print, screen and (max-width: 1280px) and (min-width: 768px) {
.section h2 span:first-child {
	font-size: calc(4rem / 1.6);
}
}/* @media */
/* -----------------------------------------------
= intro
----------------------------------------------- */
.intro h2 {
	margin-inline: 20px;
}
.intro .set {
	padding: 50px 20px;
	color: #fff;
	background: url(/company/recruit/img/bg_intro_sp.jpg) no-repeat 50% / cover;
}
.intro .en {
	display: block;
	position: relative;
	margin-bottom: 15px;
	padding-left: 50px;
	font-family: var(--fig);
	font-size: calc(1.2rem / 1.6);
	font-weight: 600;
}
.intro .en::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 30px;
	height: 1px;
	background: rgba(255,255,255,.3);
}
.intro h3 {
	margin-bottom: 15px;
	font-size: calc(2.2rem / 1.6);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: -.04em;
}
.intro .text {
	margin-bottom: 20px;
}
.intro .btn {
	display: block;
	position: relative;
	padding: 12px;
	border: 1px solid rgba(255,255,255,.3);
	font-family: var(--fig);
	font-size: calc(1.3rem / 1.6);
	font-weight: 600;
	text-align: center;
}
.intro .btn::after {
	content: "";
	position: absolute;
	top: calc(50% - 5.5px);
	right: 15px;
	width: 16px;
	height: 11px;
	background: url(/company/recruit/assets/img/icon_link_arrow.svg) no-repeat 50% / cover;
	filter: var(--filter-white);
}
@media print, screen and (min-width: 768px) {/* PC */
.intro {
	position: relative;
	padding: 0 40px 57px;
}
.intro::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
	width: 100%;
	height: calc(100% - 240px);
	background: url(/company/recruit/img/bg_intro_pc.jpg) no-repeat 50% / cover;
}
.intro h2 {
	margin-inline: auto;
}
.intro .inner {
	position: relative;
	max-width: 1840px;
	margin-inline: auto;
}
.intro .set {
	max-width: 1360px;
	margin-inline: auto;
	padding: 95px 0 45px;
	background: transparent;
}
.intro .en {
	margin-bottom: 25px;
	padding-left: 43px;
	font-size: calc(1.4rem / 1.6);
}
.intro h3 {
	max-width: 580px;
	margin-bottom: 35px;
	font-size: calc(3.6rem / 1.6);
	letter-spacing: 0;
}
.intro .text {
	max-width: 554px;
	margin-bottom: 40px;
}
.intro .btn {
	max-width: 250px;
	padding: 20px 50px 20px 20px;
	font-size: calc(1.4rem / 1.6);
	text-align: left;
}
.intro .btn::after {
	top: calc(50% - 7px);
	right: 20px;
	width: 20px;
	height: 14px;
}
.intro picture {
	display: block;
	position: absolute;
	top: -154px;
	right: 0;
	width: min(900px, calc(900 / 1920 * 100vw));
}
}/* @media */
@media print, screen and (max-width: 1440px) and (min-width: 768px) {
.intro h3,
.intro .text {
	max-width: calc(554 / 1440 * 100vw);
}
}/* @media */
@media print, screen and (max-width: 1280px) and (min-width: 768px) {
.intro h3 {
	font-size: calc(3rem / 1.6);
}
.intro picture {
	top: 70px;
}
}/* @media */
@media print, screen and (max-width: 1023px) and (min-width: 768px) {
.intro {
	padding: 0;
}
.intro h2 {
	margin-inline: 40px;
}
.intro::before {
	display: none;
}
.intro .set {
	padding: 40px;
	background: url(/company/recruit/img/bg_intro_pc.jpg) no-repeat 50% / cover;
}
.intro h3,
.intro .text {
	max-width: none;
}
.intro picture {
	position: static;
	width: 100%;
}
}/* @media */
@media (hover:hover) {
.intro .btn {
	transition: border .3s;
}
.intro .btn:hover {
	border-color: #fff;
}
}/* @media */
/* -----------------------------------------------
= job
----------------------------------------------- */
.job {
	padding: 50px 20px;
	background: #fff;
}
.job .text {
	margin-bottom: 35px;
}
.job li + li {
	margin-top: 20px;
}
.job li:nth-child(1) a {
	height: calc(536 / 750 * 100vw);
	background-image: url(/company/recruit/img/img_job01.jpg);
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 100% auto;
}
.job a {
	display: block;
	position: relative;
	color: #fff;
}
.job a::before {
	content: "";
	position: absolute;
	right: 12px;
	bottom: 12px;
	z-index: 1;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255,255,255,.3);
}
.job a::after {
	content: "";
	position: absolute;
	right: 23px;
	bottom: 26px;
	width: 16px;
	height: 11px;
	background: url(/company/recruit/assets/img/icon_link_arrow.svg) no-repeat 50% / cover;
	filter: var(--filter-white);
}
.job li .copy {
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	padding-right: 80px;
	box-sizing: border-box;
	font-family: var(--fig);
	font-size: calc(1.6rem / 1.6);
	font-weight: 600;
	text-align: center;
	white-space: nowrap;
}
.job li .img_copy {
	position: absolute;
	top: calc(50% - 35px);
	left: calc(50% + 60px);
	z-index: 1;
	width: 77px;
	height: auto;
}
.job li .title {
	position: absolute;
	left: 10px;
	bottom: 10px;
	right: 65px;
	font-size: calc(1.7rem / 1.6);
	font-weight: 700;
}
.job li .category {
	position: absolute;
	top: 10px;
	left: 10px;
	font-family: var(--fig);
	font-size: calc(1rem / 1.6);
	font-weight: 600;
}
.job li .category::before {
	content: "・";
}
.job li:nth-child(n + 2) .title {
	font-size: calc(1.5rem / 1.6);
	line-height: calc(21 / 15);
}
.job .slide-text {
	margin: 40px -20px 0;
}
@media print, screen and (min-width: 768px) {/* PC */
.job {
	padding: 120px 40px 70px;
}
.job .text {
	margin-bottom: 0;
}
.job ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	max-width: 1840px;
	margin: 0 auto 70px;
}
.job li + li {
	margin-top: 0;
}
.job li:nth-child(1) {
	grid-row: span 2;
}
.job li:nth-child(1) a {
	height: min(720px, calc(714 / 1920 * 100vw));
	background-size: auto 100%;
}
.job a::before {
	right: clamp(calc(10 / 1920 * 100vw), calc(20 / 1920 * 100vw), 20px);
	bottom: clamp(calc(10 / 1920 * 100vw), calc(20 / 1920 * 100vw), 20px);
	width: clamp(calc(40 / 1920 * 100vw), calc(64 / 1920 * 100vw), 64px);
	height: clamp(calc(40 / 1920 * 100vw), calc(64 / 1920 * 100vw), 64px);
}
.job a::after {
	right: clamp(calc(20 / 1920 * 100vw), calc(42 / 1920 * 100vw), 42px);
	bottom: clamp(calc(22 / 1920 * 100vw), calc(45 / 1920 * 100vw), 45px);
	width: clamp(calc(10 / 1920 * 100vw), calc(20 / 1920 * 100vw), 20px);
	height: clamp(calc(7 / 1920 * 100vw), calc(14 / 1920 * 100vw), 14px);
}
.job li .copy {
	padding-right: 220px;
	padding-left: 20px;
	font-size: clamp(calc(20 / 1920 * 100vw), calc(3.5rem / 1.6), calc(35 / 1920 * 100vw));
}
.job li .copy::after {
	right: clamp(calc(100 / 1920 * 100vw), calc(150 / 1920 * 100vw), 150px);
	width: clamp(calc(100 / 1920 * 100vw), calc(178 / 1920 * 100vw), 178px);
	height: clamp(calc(60 / 1920 * 100vw), calc(88 / 1920 * 100vw), 88px);
}
.job li .img_copy {
	top: calc(50% - 90px);
	right: 43px;
	width: clamp(calc(120 / 1920 * 100vw), calc(220 / 1920 * 100vw), 220px);
}
.job li .title {
	left: 20px;
	bottom: 20px;
	right: 106px;
	font-size: min(calc(3rem / 1.6), calc(30 / 1920 * 100vw)) ;
}
.job li .category {
	top: 20px;
	left: 20px;
	font-size: calc(1.4rem / 1.6);
}
.job li:nth-child(n + 2) .title {
	font-size: min(calc(3rem / 1.6), calc(30 / 1920 * 100vw)) ;
}
.job .slide-text {
	margin: 40px -40px 0;
}
}/* @media */
@media print, screen and (max-width: 1023px) and (min-width: 768px) {
.job ul {
	display: block;
}
.job li + li {
	margin-top: 40px;
}
.job li:nth-child(1) a {
	background-size: 100% auto;
}
.job li .img_copy {
	top: calc(50% - 45px);
	right: auto;
	left: calc(50% + 30px);
}
}/* @media */
@media (hover:hover) {
.job a::before {
	transition: border .3s;
}
.job a:hover::before {
	border-color: #fff;
}
.job li:nth-child(1) a {
	transition: background-size .3s;
}
.job li:nth-child(1) a:hover {
	background-size: 110% auto;
}
.job a picture {
	display: block;
	overflow: hidden;
}
.job a img {
	transition: transform .3s;
}
.job a:hover img {
	transform: scale(1.1);
}
}/* @media */
@media print, screen and (min-width: 768px) and (hover:hover) {
.job li:nth-child(1) a:hover {
	background-size: auto 110%;
}
}/* @media */
@media print, screen and (max-width: 1023px) and (min-width: 768px) and (hover:hover) {
.job li:nth-child(1) a:hover {
	background-size: 110% auto;
}
}/* @media */
/* -----------------------------------------------
= people swiper
----------------------------------------------- */
.people {
	padding-block: 60px;
	color: #fff;
	background: url(/company/recruit/img/bg_people_sp.jpg) no-repeat 50% 0 / cover;
}
.people h2 {
	margin-inline: 20px;
	border-top-color: rgba(255,255,255,.3);
}
.people .text {
	margin: 0 20px 50px;
}
.people .swiper-slide .item::before,
.people .swiper-slide .item::after {
	content: "";
	position: absolute;
	z-index: 1;
	width: calc(80 / 375 * 100vw);
	height: calc(14 / 375 * 100vw);
	opacity: 0;
	transition: opacity .5s;
}
.people .swiper-slide-active .item::before,
.people .swiper-slide-active .item::after {
	opacity: 1;
	animation: mask 1s ease-in-out forwards;
}
.people .swiper-slide .item::before {
	top: calc(45 / 375 * 100vw);
	left: calc(-40 / 375 * 100vw);
	background: var(--grad-red);
	transition-delay: .4s;
	animation-delay: .4s;
}
.people .swiper-slide .item::after {
	top: calc(200 / 375 * 100vw);
	right: calc(-40 / 375 * 100vw);
	background: var(--grad-blue);
	transition-delay: .8s;
	animation-delay: .8s;
}
.people .item {
	position: relative;
}
.people .item a {
	display: block;
}
.people .item .img {
	position: relative;
	background: var(--black);
	overflow: hidden;
}
.people .item .img img {
	opacity: .4;
	filter: blur(6px);
	transition: transform .3s;
}
.people .swiper-slide-active .img img {
	opacity: 1;
	filter: blur(0);
}
.people .item .img .type {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	padding: 4px 8px;
	color: #fff;
	background: var(--black);
	font-size: calc(1.1rem / 1.6);
	font-weight: 700;
	opacity: 0;
}
.people .swiper-slide-active .img .type {
	opacity: 1;
}
.people .item .set {
	margin: 25px -55px 35px 0;
	opacity: 0;
	transition: opacity .5s;
}
.people .swiper-slide-active .set {
	opacity: 1;
}
.people .item .title {
	margin-bottom: 20px;
	font-size: calc(1.9rem / 1.6);
	font-weight: 700;
	line-height: calc(27 / 19);
	overflow: hidden;
}
.people .char {
	display: inline-block;
	opacity: 0;
	transform: translateY(1em);
}
.people .is-animate .char {
	animation: charIn 0.6s forwards cubic-bezier(.2,.8,.2,1);
	animation-delay: var(--char-delay);
}
@keyframes charIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.people .item .name {
	margin-bottom: 10px;
	font-family: var(--fig);
	font-size: calc(1.5rem / 1.6);
	font-weight: 600;
}
.people .item .division {
	font-size: calc(1rem / 1.6);
	line-height: 1.7;
}
.people .item .division span {
	display: block;
}
.people .swiper-button-prev {
	left: 20px;
}
.people .swiper-button-next {
	right: 20px;
}
.people .swiper-button-prev,
.people .swiper-button-next {
	top: calc(130 / 375 * 100vw);
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255,255,255,.3);
}
.people .swiper-button-prev::after,
.people .swiper-button-next::after {
	content: "";
	width: 16px;
	height: 11px;
	background: url(/company/recruit/assets/img/icon_link_arrow.svg) no-repeat 50% / cover;
	filter: var(--filter-white);
}
.people .swiper-button-prev::after {
	transform: scale(-1,1);
}
.people .swiper-pagination-wrapper {
	display: grid;
	place-content: center;
	position: absolute;
	bottom: 205px;
	left: 20px;
	width: 44px;
	height: 44px;
}
.people .swiper-pagination {
	display: grid;
	place-content: center;
	position: absolute;
	inset: 0;
}
.people .swiper-pagination-fraction {
	font-size: 0;
}
.people .swiper-pagination-current {
	font-family: var(--fig);
	font-size: calc(1.3rem / 1.6);
	font-weight: 600;
}
.people .circle-progress {
	position: absolute;
	top: 0;
	left: 0;
	width: 44px;
	height: 44px;
	transform: rotate(-90deg);
	overflow: visible;
}
.people circle {
	fill: none;
	stroke-width: 1;
}
.people circle.bg {
	stroke: rgba(255,255,255,.2);
}
.people circle.progress {
	stroke: #fff;
	stroke-dasharray: 125.66; /* 2πr = 2*3.14*20 = 125.66 */
	stroke-dashoffset: 125.66;
}
.people .btn-index {
	display: block;
	position: relative;
	margin: 0 20px 40px;
	padding: 12px;
	border: 1px solid rgba(255,255,255,.3);
	font-family: var(--fig);
	font-size: calc(1.3rem / 1.6);
	font-weight: 600;
	text-align: center;
}
.people .btn-index::after {
	content: "";
	position: absolute;
	top: calc(50% - 5.5px);
	right: 15px;
	width: 16px;
	height: 11px;
	background: url(/company/recruit/assets/img/icon_link_arrow.svg) no-repeat 50% / cover;
	filter: var(--filter-white);
}
.people .btn-index span::before {
	content: "";
	display: inline-block;
	width: 9px;
	height: 9px;
	margin-right: 9px;
	background: url(/company/recruit/img/icon_index.svg) no-repeat 50% / cover;
}
@media print, screen and (min-width: 768px) {/* TABLET narrow */
.people {
	position: relative;
	padding: 120px 0;
	background: transparent;
}
.people::before,
.people::after {
	content: "";
	position: absolute;
	left: 0;
	z-index: -1;
	width: 100%;
	background: url(/company/recruit/img/bg_people_pc.jpg) no-repeat 50% 0 / cover;
}
.people::before {
	top: 0;
	height: 840px;
}
.people::after {
	bottom: 0;
	height: calc(100% - 840px);
}
.people .hdg-set-wrap {
	padding: 0 40px;
}
.people .hdg-set {
	margin-bottom: 80px;
	border-top-color: rgba(255,255,255,.3);
}
.people h2 {
	margin-inline: 0;
}
.people .text {
	margin: 0;
}
.people .list {
	padding-inline: 20px;
}
.people .swiper {
	position: relative;
	max-width: 579px;
	margin-inline: auto;
	padding-left: 149px;
}
.people .swiper-wrapper {
	align-items: flex-end;
}
.people .swiper-slide {
	display: flex;
	align-items: end;
	position: relative;
	min-height: 570px;
}
.people .item {
	width: 100%;
}
.people .swiper-slide .item::before,
.people .swiper-slide .item::after {
	width: 220px;
	height: 20px;
}
.people .swiper-slide .item::before {
	top: 60px;
	left: -280px;
}
.people .swiper-slide .item::after {
	top: 340px;
	left: 80px;
	right: auto;
}
.people .item .img {
	float: right;
	margin-bottom: 40px;
}
.people .item .img img {
	opacity: 1;
	filter: blur(0);
}
.people .swiper-slide .item .img img {
	width: 173px;
	transition: width .5s, transform .3s;
}
.people .swiper-slide-active .item .img img {
	width: 342px;
}
.people .item .img .type {
	padding: 5px 18px;
	background: #545c7a;
	font-size: calc(1.4rem / 1.6);
	opacity: 1;
}
.people .item .set {
	clear: right;
	margin: 0;
}
.people .item .title {
	position: absolute;
	top: 60px;
	left: calc(100% + 20px);
	width: 350px;
	font-size: calc(2.6rem / 1.6);
	line-height: calc(58 / 42);
}
.people .item .title br.is-pc {
	display: none;
}
.people .swiper-slide-active .title {
	opacity: 1;
}
.people .item .name {
	position: relative;
	left: -149px;
	margin-block: 40px 20px;
	font-size: calc(3.6rem / 1.6);
}
.people .item .division {
	position: relative;
	left: -149px;
	margin-right: -100vw;
	font-size: calc(1.4rem / 1.6);
	line-height: 1.4;
}
.people .item .division span {
	display: block;
	margin-bottom: 10px;
}
.people .swiper-button-prev,
.people .swiper-button-next {
	top: auto;
	bottom: 10px;
	width: 64px;
	height: 64px;
}
.people .swiper-button-prev {
	left: auto;
	right: 76px;
}
.people .swiper-button-next {
	right: 0;
}
.people .swiper-pagination-wrapper {
	top: 8px;
	left: 360px;
	bottom: auto;
}
.people .btn-index {
	position: absolute;
	right: 152px;
	bottom: 10px;
	z-index: 1;
	width: 180px;
	margin: 0;
	padding: 24px 0 23px;
	font-size: calc(1.4rem / 1.6);
}
.people .btn-index::after {
	display: none;
}
.people .btn-index span::before {
	width: 10px;
	height: 10px;
	margin-right: 10px;
}
.people .slide-text {
	margin: 60px 0 80px;
}
}/* @media */
@media print, screen and (min-width: 1024px) {/* TABLET wide & PC narrow */
.people::before {
	height: 805px;
}
.people::after {
	height: calc(100% - 805px);
}
.people .hdg-set {
	margin-bottom: 100px;
}
.people .swiper {
	max-width: 840px;
	padding-left: 144px;
}
.people .swiper-wrapper {
	padding-top: 0;
}
.people .swiper-slide {
	min-height: 550px;
}
.people .swiper-slide .item .img img {
	width: 190px;
}
.people .swiper-slide-active .item .img img {
	width: 354px;
}
.people .item .title {
	top: 80px;
	width: 610px;
	font-size: calc(2.8rem / 1.6);
}
.people .item .title br.is-pc {
	display: block;
}
.people .item .name {
	left: -144px;
}
.people .item .division {
	left: -144px;
}
.people .item .division span {
	display: inline-block;
}
.people .item .division span + span {
	margin-left: 1em;
	padding-left: 1em;
	border-left: 1px solid rgba(255,255,255,.3);
}
.people .swiper-button-prev,
.people .swiper-button-next {
	top: 22px;
	bottom: auto;
}
.people .swiper-pagination-wrapper {
	left: 380px;
	width: 64px;
	height: 64px;
}
.people .swiper-pagination-current {
	font-size: calc(1.8rem / 1.6);
}
.people .circle-progress {
	width: 64px;
	height: 64px;
}
.people circle {
	stroke-width: 2;
}
.people circle.progress {
	stroke-dasharray: 188.4;
	stroke-dashoffset: 188.4;
}
.people .btn-index {
	right: 152px;
	bottom: auto;
	top: 0;
}
}/* @media */
@media print, screen and (min-width: 1360px) {/* PC wide */
.people::before {
	height: 945px;
}
.people::after {
	height: calc(100% - 945px);
}
.people .swiper {
	max-width: 1080px;
	padding-left: 200px;
}
.people .swiper-slide {
	min-height: 690px;
}
.people .swiper-slide .item::before {
	top: 86px;
	left: -300px;
}
.people .swiper-slide .item::after {
	top: 464px;
	left: 120px;
}
.people .swiper-slide .item .img img {
	width: 230px;
}
.people .swiper-slide-active .item .img img {
	width: 470px;
}
.people .item .title {
	top: 85px;
	left: calc(100% + 40px);
	width: 780px;
	font-size: calc(4.2rem / 1.6);
}
.people .item .name {
	left: -200px;
	margin-block: 40px 20px;
}
.people .item .division {
	left: -200px;
}
.people .swiper-pagination-wrapper {
	top: 10px;
	left: 510px;
}
}/* @media */
@media (hover:hover) {
.people .item a:hover .img img {
	transform: scale(1.1);
}
.people .swiper-button-prev,
.people .swiper-button-next {
	transition: border .3s;
}
.people .swiper-button-prev:hover,
.people .swiper-button-next:hover {
	border-color: #fff;
}
.people .btn-index {
	transition: border .3s;
}
.people .btn-index:hover {
	border-color: #fff;
}
}/* @media */
/* -----------------------------------------------
= people special
----------------------------------------------- */
.people .special {
	padding: 0 20px;
}
.people .special img {
	border: 10px solid #fff;
}
.people .special .set {
	padding: 40px 0;
	text-align: center;
}
.people .special .category {
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 18px;
}
.people .special .category::after {
	content: "";
	position: absolute;
	left: calc(50% - 40px);
	bottom: 0;
	width: 80px;
	height: 2.5px;
	background: url(/company/recruit/img/bg_people.png) no-repeat 50% / cover;
}
.people .special .category span:first-child {
	font-family: var(--fig);
	font-size: calc(1.4rem / 1.6);
	font-weight: 600;
}
.people .special .category span:last-child {
	margin-left: 1em;
	padding-left: 1em;
	border-left: 1px solid rgba(255,255,255,.3);
	font-family: var(--min);
	font-size: calc(1.2rem / 1.6);
}
.people .special .title {
	font-family: var(--min);
	font-size: calc(2.5rem / 1.6);
}
.people .btn {
	display: block;
	position: relative;
	margin-inline: 20px;
	padding: 12px;
	border: 1px solid rgba(255,255,255,.3);
	font-family: var(--fig);
	font-size: calc(1.3rem / 1.6);
	font-weight: 600;
	text-align: center;
}
.people .btn::after {
	content: "";
	position: absolute;
	top: calc(50% - 5.5px);
	right: 15px;
	width: 16px;
	height: 11px;
	background: url(/company/recruit/assets/img/icon_link_arrow.svg) no-repeat 50% / cover;
	filter: var(--filter-white);
}
@media print, screen and (min-width: 768px) {/* PC */
.people .special {
	max-width: 1360px;
	margin-inline: auto;
	padding: 0 40px;
}
.people .special img {
	border-width: 20px;
}
.people .special a {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 40px;
	position: relative;
}
.people .special a::before {
	content: "";
	position: absolute;
	right: 0;
	bottom: 20px;
	z-index: 1;
	width: 64px;
	height: 64px;
	border: 1px solid rgba(255,255,255,.3);
}
.people .special a::after {
	content: "";
	position: absolute;
	right: 23px;
	bottom: 45px;
	width: 20px;
	height: 14px;
	background: url(/company/recruit/assets/img/icon_link_arrow.svg) no-repeat 50% / cover;
	filter: var(--filter-white);
}
.people .special .set {
	padding-top: 70px;
	border-top: 1px solid rgba(255,255,255,.3);
	border-bottom: 1px solid rgba(255,255,255,.3);
}
.people .special .category {
	margin-bottom: 25px;
	padding-bottom: 30px;
}
.people .special .category::after {
	left: calc(50% - 60px);
	bottom: 0;
	width: 120px;
	height: 4px;
}
.people .special .category span:first-child {
	font-size: calc(2.4rem / 1.6);
}
.people .special .category span:last-child {
	font-size: calc(2rem / 1.6);
}
.people .special .title {
	font-size: calc(4.4rem / 1.6);
}
.people .btn {
	display: none;
}
}/* @media */
@media print, screen and (max-width: 1280px) and (min-width: 768px) {
.people .special .title {
	font-size: calc(3.4rem / 1.6);
}
}/* @media */
@media print, screen and (max-width: 1109px) and (min-width: 768px) {
.people .special a {
	display: block;
}
}/* @media */
@media (hover:hover) {
.people .special a::before {
	transition: border .3s;
}
.people .special a:hover::before {
	border-color: #fff;
}
}/* @media */
/* -----------------------------------------------
= environment
----------------------------------------------- */
.environment {
	padding: 60px 20px;
	background: #fff;
}
.environment .text {
	margin-bottom: 50px;
}
.environment li {
	border-top: 1px solid #e2e2e7;
}
.environment li:last-child {
	border-bottom: 1px solid #e2e2e7;
}
.environment li a {
	display: flex;
	align-items: center;
	position: relative;
	padding: 40px 50px 40px 0;
}
.environment li a::before {
	content: "";
	position: absolute;
	top: calc(50% - 19px);
	right: 12px;
	width: 38px;
	height: 38px;
	border: 1px solid #e2e2e7;
}
.environment li a::after {
	content: "";
	position: absolute;
	top: calc(50% - 5.5px);
	right: 23px;
	width: 16px;
	height: 11px;
	background: url(/company/recruit/assets/img/icon_link_arrow.svg) no-repeat 50% / cover;
	filter: var(--filter-black);
}
.environment li a img {
	width: 60px;
	margin-right: 20px;
}
.environment li a span:first-child {
	display: inline-block;
	position: relative;
	top: -5px;
	font-family: var(--fig);
	font-size: calc(1.2rem / 1.6);
	font-weight: 600;
	background: var(--grad-orix);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.environment li a span:last-child {
	display: block;
	font-size: calc(1.8rem / 1.6);
	font-weight: 700;
	letter-spacing: .04em;
}
@media print, screen and (min-width: 768px) {/* PC */
.environment {
	padding: 75px 40px 120px;
}
.environment ul {
	max-width: 1360px;
	margin-inline: auto;
}
.environment li a {
	position: relative;
	z-index: 1;
	padding: 50px 50px 50px 0;
}
.environment li a::before {
	top: calc(50% - 32px);
	right: 0;
	width: 64px;
	height: 64px;
}
.environment li a::after {
	top: calc(50% - 7px);
	right: 23px;
	width: 20px;
	height: 14px;
}
.environment li a span:first-child {
	top: 0;
	font-size: calc(1.4rem / 1.6);
}
.environment li a span:last-child {
	font-size: calc(2.4rem / 1.6);
}
}/* @media */
@media (hover:hover) {
.environment li a::before {
	transition: border .3s;
}
.environment li a:hover::before {
	border-color: var(--black);
}
}/* @media */





