/* -----------------------------------------------
= main
----------------------------------------------- */
.main {
	background: #fff;
	overflow: clip;
}
/* -----------------------------------------------
= kv
----------------------------------------------- */
.kv {
	position: relative;
	min-height: 150px;
}
.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;
	left: 15px;
	bottom: 15px;
	z-index: 1;
	color: #fff;
}
.kv h1 .en {
	margin-bottom: 12px;
	display: block;
	position: relative;
	font-family: var(--fig);
	font-size: calc(1.2rem / 1.6);
	font-weight: 600;
	line-height: 1;
	overflow: hidden;
}
.kv h1 .jp {
	display: block;
	font-size: calc(2.4rem / 1.6);
	font-weight: 700;
	line-height: 1.2;
	overflow: hidden;
}
.kv .img {
	overflow: hidden;
}
.kv .img img {
	height: 150px;
	object-fit: cover;
	object-position: 58% 0;
}
.kv.js-inview .img img {
	transform: scale(1.2);
	transition: transform 2.4s;
}
.kv.js-inview.is-show .img img {
	transform: scale(1);
}
@media print, screen and (min-width: 768px) {/* PC */
.kv {
	min-height: 460px;
	padding-left: 40px;
}
.kv .breadcrumbs {
	top: 20px;
	left: 60px;
}
.kv h1 {
	left: 80px;
	right: 80px;
	bottom: 30px;
}
.kv h1 .en {
	margin-bottom: 12px;
	font-size: calc(1.8rem / 1.6);
}
.kv h1 .jp {
	font-size: calc(4.6rem / 1.6);
}
.kv .img img {
	height: 460px;
}
}/* @media */
@media print, screen and (max-width: 1440px) and (min-width: 768px) {
.kv h1 .jp {
	font-size: calc(4.2rem / 1.6);
}
}/* @media */
/* -----------------------------------------------
= container
----------------------------------------------- */
@media print, screen and (min-width: 768px) {/* PC */
.container {
	display: flex;
	gap: 0 calc(98 / 1360 * 100%);
	position: relative;
	max-width: 1360px;
	margin-inline: auto;
	padding: 120px 0 0;
}
.container::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	width: 100%;
	height: 1px;
	border-bottom: 1px solid #e2e2e7;
}
.container .side {
	max-width: calc(222 / 1360 * 100%);
	width: 222px;
	margin-bottom: 120px;
}
.container .contents {
	flex: 1;
	min-width: 1px;
}
}/* @media */
@media print, screen and (max-width: 1023px) and (min-width: 768px) {/* TABLET */
.container .side {
	display: none;
}
}/* @media */
/* -----------------------------------------------
= side
----------------------------------------------- */
.side {
	padding: 45px 20px;
}
.side h2 {
	padding-bottom: 30px;
	border-bottom: 1px solid #e2e2e7;
	font-family: var(--fig);
	font-size: calc(2.1rem / 1.6);
	font-weight: 600;
	letter-spacing: 0;
}
.side li a {
	display: block;
	position: relative;
	padding: 16px 30px 16px 0;
	border-bottom: 1px solid #e2e2e7;
	font-size: calc(1.2rem / 1.6);
	font-weight: 700;
	line-height: calc(19 / 12);
}
.side li a::before,
.side li a::after {
	content: "";
	position: absolute;
}
.side li a::before {
	top: calc(50% - 11px);
	right: 0;
	width: 22px;
	height: 22px;
	background: linear-gradient(120deg,var(--red),#7d1e69 65%,var(--blue));
	border-radius: 50%;
}
.side li a::after {
	top: calc(50% - 3px);
	right: 8px;
	width: 5px;
	height: 5px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(135deg);
}
.side li a span {
	display: inline-block;
	position: relative;
	color: transparent;
}
.side li a span::after {
	content: attr(data-text);
	position: absolute;
	inset: 0;
	background: var(--grad-orix);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.side li a span::before,
.side li a span::after {
	content: attr(data-text);
	position: absolute;
	inset: 0;
	transition: opacity 0.3s ease;
}
.side li a span::before {
	background: var(--black);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: 1;
}
.side li a span::after {
	background: var(--grad-orix);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: 0;
}
.side li a.is-active span::before {
	opacity: 0;
}
.side li a.is-active span::after {
	opacity: 1;
}
@media print, screen and (min-width: 768px) {/* PC */
.side {
	padding: 0 0 0 20px;
}
.side nav {
	position: sticky;
	top: 100px;
	z-index: 2;
}
.side h2 {
	font-size: calc(1.8rem / 1.6);
}
.side li a {
	padding: 22px 30px 22px 0;
	font-size: calc(1.4rem / 1.6);
	line-height: calc(22 / 14);
}
.side li a::before {
	top: calc(50% - 10px);
	width: 20px;
	height: 20px;
}
.side li a::after {
	transform: rotate(45deg);
}
}/* @media */
@media (hover:hover) {
.side li a:hover span::before {
	opacity: 0;
}
.side li a:hover span::after {
	opacity: 1;
}
}/* @media */
/* -----------------------------------------------
= nav-sub-fix
----------------------------------------------- */
.nav-sub-fix .nav-sub a span:first-child {
	color: var(--black);
	background: transparent;
	font-family: var(--gothic);
	font-size: calc(1.5rem / 1.6);
	font-weight: 700;
	letter-spacing: 0;
	-webkit-background-clip: border-box;
	-webkit-text-fill-color: currentcolor;
}
/* -----------------------------------------------
= section
----------------------------------------------- */
.section {
	scroll-margin-top: 45px;
	border-top: 1px solid #e2e2e7;
}
.section h2 {
	position: relative;
	margin: 20px 20px 30px;
	padding-left: 60px;
	font-size: calc(2.1rem / 1.6);
	font-weight: 700;
	line-height: calc(32 / 21);
}
.section h2::before,
.section h2::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 42px;
	height: 42px;
}
.section h2::before {
	content: "";
	background: linear-gradient(-45deg, var(--red), var(--blue));
	border-radius: 50%;
}
.section h2::after {
	content: "Q";
	color: #fff;
	font-family: var(--fig);
	font-size: calc(1.7rem / 1.6);
	font-weight: 600;
	line-height: 42px;
	text-align: center;
}
.section .summary {
	color: #fff;
	text-align: center;
}
.section .summary h3 {
	display: inline-block;
	position: relative;
	margin-bottom: 25px;
	padding-block: 2px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	font-family: var(--fig);
	font-size: calc(1.4rem / 1.6);
	font-weight: 600;
	letter-spacing: 0;
}
.section .summary p {
	margin-bottom: 6px;
	font-size: calc(1.8rem / 1.6);
	font-weight: 700;
	line-height: 2;
}
.section .next {
	position: relative;
	padding: 90px 20px;
	text-align: center;
}
.section .next::before {
	content: "";
	position: absolute;
	top: 0;
	left: calc(50% - 6px);
	width: 12px;
	height: 59px;
	background: url(/company/recruit/introduction/img/bg_about-us_line.jpg) no-repeat 50% 100% / 100% auto;
}
.section .next h3 {
	margin-bottom: 10px;
	color: #e6e9f0;
	font-family: var(--fig);
	font-size: calc(3.5rem / 1.6);
	font-weight: 600;
	line-height: calc(40 / 35);
	letter-spacing: -.03em;
}
.section .next p {
	font-size: calc(1.6rem / 1.6);
	line-height: calc(27 / 16);
	font-weight: 700;
}
@media print, screen and (min-width: 768px) {/* PC */
.section {
	scroll-margin-top: 79px;
}
.section h2 {
	margin: 60px 0;
	padding-left: 90px;
	font-size: min(calc(4rem / 1.6), calc(40 / 1440 * 100vw));
}
.section h2::before,
.section h2::after {
	width: 60px;
	height: 60px;
}
.section h2::after {
	font-size: calc(2.4rem / 1.6);
	line-height: 60px;
}
.section .summary h3 {
	margin-bottom: 30px;
	padding-block: 4px;
	font-size: calc(1.8rem / 1.6);
}
.section .summary p {
	margin-bottom: 10px;
	padding: 5px 10px;
	font-size: calc(2.8rem / 1.6);
}
.section .next {
	padding: 120px 20px;
}
.section .next::before {
	left: calc(50% - 7px);
	width: 14px;
	height: 64px;
}
.section .next h3 {
	margin-bottom: 20px;
	font-size: calc(6.6rem / 1.6);
}
.section .next p {
	font-size: calc(2.4rem / 1.6);
}
}/* @media */
@media print, screen and (max-width: 1440px) and (min-width: 768px) {
.section h2 {
	margin-inline: 20px;
	font-size: calc(3rem / 1.6);
}
}/* @media */
/* -----------------------------------------------
= intro
----------------------------------------------- */
.intro .set {
	padding: 45px 0 0;
	color: #fff;
	background:
	url(/company/recruit/introduction/img/bg_about-us_intro01_01_sp.jpg) no-repeat 50% 0 / min(500px, 100%) auto,
	url(/company/recruit/introduction/img/bg_about-us_role01_sp.jpg) repeat 50% 0 / 375px auto;
	text-align: center;
}
.intro .set h3 {
	display: inline-block;
	margin-bottom: 20px;
	padding-block: 2px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	font-family: var(--fig);
	font-size: calc(1.4rem / 1.6);
	font-weight: 600;
	letter-spacing: 0;
}
.intro .set .text {
	position: relative;
	padding-bottom: 80px;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
	line-height: calc(27 / 16);
}
.intro .set .text strong {
	color: #ffeab6;
}
.intro .set .text::after {
	content: "";
	position: absolute;
	left: calc(50% - 30px);
	bottom: 0;
	width: 60px;
	height: 35px;
	background: linear-gradient(transparent, #daeaf5);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	opacity: .5;
}
.intro .set .text02 {
	margin-bottom: 50px;
	padding-top: 50px;
	background: url(/company/recruit/introduction/img/bg_about-us_intro01_02_sp.jpg) no-repeat 50% 0 / min(500px, 100%) auto;
}
.intro .set .text02 .text {
	margin-block: auto;
	text-align: left;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
}
.intro .text-set {
	padding-bottom: 160px;
	background: url(/company/recruit/introduction/img/bg_about-us_intro01_03_sp.jpg) no-repeat 50% 100% / min(500px, 100%) auto;
}
.intro .set .year {
	display: inline-block;
	margin-bottom: 12px;
	border-bottom: 1px solid rgba(255,255,255,.2);
	font-family: var(--fig);
	font-size: calc(6rem / 1.6);
	font-weight: 600;
	letter-spacing: -.04em;
}
.intro .set .text03 {
	display: table;
	margin-inline: auto;
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
	line-height: calc(23 / 14);
	text-align: left;
}
.intro .new {
	padding: 66px 20px 40px;
	min-height: 167px;
	background: url(/company/recruit/introduction/img/bg_about-us_intro02_sp.jpg) no-repeat 50% 0 / cover;
	text-align: center;
}
.intro .new h3 span {
	display: inline-block;
	margin-bottom: 10px;
	padding: 4px 10px;
	color: #fff;
	background: var(--grad-orix);
	font-size: calc(2.1rem / 1.6);
	font-weight: 700;
}
.intro .new p {
	font-size: calc(1.4rem / 1.6);
	line-height: calc(25 / 14);
}
.intro .assignment {
	padding: 40px 20px;
	min-height: 227px;
	color: #fff;
	background: url(/company/recruit/introduction/img/bg_about-us_intro03_sp.jpg) no-repeat 50% 0 / cover;
	text-align: center;
}
.intro .assignment h3 {
	display: inline-block;
	margin-bottom: 25px;
	padding-bottom: 3px;
	border-bottom: 1px dashed #fff;
	font-size: calc(1.5rem / 1.6);
	font-weight: 700;
}
.intro .assignment ul {
	margin-bottom: 30px;
	padding: 20px 25px 20px 50px;
	background: rgba(255,255,255,.1);
	list-style-type: disc;
}
.intro .assignment li {
	font-size: calc(1.3rem / 1.6);
	line-height: calc(23 / 13);
	text-align: left;
}
.intro .assignment p {
	display: inline-block;
	padding: 3px 8px;
	color: #414756;
	background: #fff;
	font-size: calc(1.5rem / 1.6);
	font-weight: 700;
}
.intro .idea {
	padding: 40px 20px;
	min-height: 227px;
	color: #fff;
	background: url(/company/recruit/introduction/img/bg_about-us_intro04_sp.jpg) no-repeat 50% 0 / cover;
	text-align: center;
}
.intro .idea h3 {
	display: inline-block;
	margin-bottom: 25px;
	padding-bottom: 3px;
	border-bottom: 1px dashed #fff;
	font-size: calc(1.5rem / 1.6);
	font-weight: 700;
}
.intro .idea ul {
	margin-bottom: 30px;
	padding: 20px 25px 20px 50px;
	background: rgba(255,255,255,.1);
	list-style-type: disc;
}
.intro .idea li {
	font-size: calc(1.3rem / 1.6);
	line-height: calc(23 / 13);
	text-align: left;
}
.intro .idea p {
	display: inline-block;
	padding: 3px 8px;
	background: #fff;
}
.intro .idea p span {
	display: inline-block;
	background: var(--grad-orix);
	font-size: calc(1.5rem / 1.6);
	font-weight: 700;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.intro .change {
	padding: 70px 0 40px;
	min-height: 378px;
	background: url(/company/recruit/introduction/img/bg_about-us_intro05_sp.jpg) no-repeat 50% 0 / 375px auto #edf0f5;
	text-align: center;
}
.intro .change h3 {
	display: inline-block;
	margin-bottom: 10px;
	background: var(--grad-orix);
	font-size: calc(3.2rem / 1.6);
	font-weight: 700;
	line-height: calc(45 / 32);
	letter-spacing: .01em;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.intro .change p {
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
}
.intro .summary {
	padding: 80px 0 40px;
	min-height: 289px;
	background: url(/company/recruit/introduction/img/bg_about-us_intro06_sp.jpg) no-repeat 50% 100% / cover;
}
@media print, screen and (min-width: 768px) {/* PC */
.intro .set {
	padding: 100px 40px 320px;
	min-height: 1071px;
	background:
	url(/company/recruit/introduction/img/bg_about-us_intro01_01_pc.jpg) no-repeat 50% 0 / 100% auto,
	url(/company/recruit/introduction/img/bg_about-us_intro01_02_pc.jpg) no-repeat 50% 100% / 100% auto,
	url(/company/recruit/introduction/img/bg_about-us_role01_sp.jpg) repeat 50% 0 / 375px auto;
}
.intro .set h3 {
	margin-bottom: 20px;
	padding-block: 4px;
	font-size: calc(1.8rem / 1.6);
}
.intro .set .text {
	margin-bottom: 80px;
	padding-bottom: 140px;
	font-size: calc(2.8rem / 1.6);
	line-height: calc(46 / 28);
}
.intro .set .text::after {
	left: calc(50% - 60px);
	width: 120px;
	height: 70px;
}
.intro .set .text02 {
	margin-bottom: 0;
	padding-top: 0;
	background: transparent;
}
.intro .set .text-set {
	display: flex;
	align-items: center;
	padding-bottom: 0;
	background: transparent;
}
.intro .set .year {
	margin: 0 35px 0 0;
	padding-right: 35px;
	border-bottom: none;
	border-right: 1px solid rgba(255,255,255,.2);
	font-size: calc(10rem / 1.6);
	line-height: .9;
}
.intro .set .text03 {
	font-size: calc(2.8rem / 1.6);
	line-height: calc(46 / 28);
}
.intro .new {
	padding: 127px 20px 40px;
	min-height: 173px;
	background-image: url(/company/recruit/introduction/img/bg_about-us_intro02_pc.jpg);
}
.intro .new h3 {
	display: inline-block;
	margin-bottom: 20px;
	padding: 4px 10px;
	color: #fff;
	background: var(--grad-orix);
}
.intro .new h3 span {
	margin-bottom: 0;
	padding: 0;
	background: transparent;
	font-size: calc(2.8rem / 1.6);
}
.intro .new p {
	font-size: calc(2rem / 1.6);
	line-height: calc(32 / 20);
}
.intro .inner {
	display: flex;
}
.intro .assignment {
	width: 100%;
	padding: 60px 30px 40px;
	min-height: 326px;
	background-image: url(/company/recruit/introduction/img/bg_about-us_intro03_pc.jpg);
}
.intro .assignment h3 {
	margin-bottom: 40px;
	padding-bottom: 3px;
	font-size: calc(2rem / 1.6);
}
.intro .assignment ul {
	margin-bottom: 40px;
	padding: 28px 25px 28px 50px;
}
.intro .assignment li {
	font-size: calc(1.8rem / 1.6);
	line-height: calc(32 / 18);
}
.intro .assignment p {
	padding: 4px 10px;
	font-size: calc(2rem / 1.6);
}
.intro .idea {
	width: 100%;
	padding: 60px 30px 40px;
	min-height: 326px;
	background-image: url(/company/recruit/introduction/img/bg_about-us_intro04_pc.jpg);
}
.intro .idea h3 {
	margin-bottom: 40px;
	padding-bottom: 3px;
	font-size: calc(2rem / 1.6);
}
.intro .idea ul {
	margin-bottom: 40px;
	padding: 28px 25px 28px 50px;
}
.intro .idea li {
	font-size: calc(1.8rem / 1.6);
	line-height: calc(32 / 18);
}
.intro .idea p {
	padding: 4px 10px;
	font-size: calc(2rem / 1.6);
}
.intro .idea p span {
	font-size: calc(2rem / 1.6);
}
.intro .change {
	padding: 140px 30px 40px;
	min-height: 384px;
	background: url(/company/recruit/introduction/img/bg_about-us_intro05_pc.jpg) no-repeat 50% 0 / 100% auto #edf0f5;
}
.intro .change h3 {
	font-size: calc(4.5rem / 1.6);
}
.intro .change p {
	font-size: calc(2.1rem / 1.6);
}
.intro .summary {
	padding: 114px 30px 40px;
	min-height: 276px;
	background-image: url(/company/recruit/introduction/img/bg_about-us_intro06_pc.jpg);
}
}/* @media */
/* -----------------------------------------------
= history
----------------------------------------------- */
.history .inner {
	position: relative;
	padding: 45px 20px 177px;
	color: #fff;
	background: url(/company/recruit/introduction/img/bg_about-us_history01_sp.jpg) no-repeat 50% 0 / 1000px auto,
	url(/company/recruit/introduction/img/bg_about-us_history02_sp.jpg) repeat 50% 0 / 375px auto;
	text-align: center;
}
.history .inner::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: calc(615 / 750 * 100vw);
	background: url(/company/recruit/introduction/img/bg_about-us_history03_sp.jpg) no-repeat 50% 100% / 100% auto;
}
.history .lead {
	position: relative;
	margin-bottom: 50px;
	padding-bottom: 80px;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
	line-height: calc(27 / 16);
}
.history .lead.lead02 {
	margin-block: auto;
	text-align: left;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
}
.history .lead strong {
	color: #ffeab6;
}
.history .lead::after {
	content: "";
	position: absolute;
	left: calc(50% - 30px);
	bottom: 0;
	width: 60px;
	height: 35px;
	background: linear-gradient(transparent, #daeaf5);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	opacity: .5;
}
.history .item + .item {
	margin-top: 80px;
}
.history .item .year {
	position: relative;
	font-family: var(--fig);
	font-size: calc(6rem / 1.6);
	font-weight: 600;
	letter-spacing: -.04em;
}
.history .item h3 {
	position: relative;
	margin-bottom: 10px;
	font-size: calc(1.7rem / 1.6);
	font-weight: 700;
	line-height: calc(29 / 17);
}
.history .item .text {
	position: relative;
	padding-block: 10px 15px;
	font-size: calc(1.3rem / 1.6);
	line-height: calc(23 / 13);
}
.history .item .text::before {
	content: "";
	position: absolute;
	top: 0;
	left: calc(50% - 125px);
	width: 250px;
	height: 1px;
	background: rgba(255,255,255,.4);
}
.history .item img {
	position: relative;
	width: 338px;
}
.history .item.y2020 img {
	width: 200px;
	margin-right: 90px;
}
.history .msg {
	padding: 70px 0;
	background: #edf0f5;
}
.history .msg p {
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
	line-height: calc(26 / 16);
	text-align: center;
}
.history .msg p > span {
	display: block;
	margin-top: 15px;
}
.history .msg p > span > span {
	display: inline-block;
	background: var(--grad-orix);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: calc(3rem / 1.6);
	line-height: calc(45 / 32);
}
.history .summary {
	padding: 47px 0 85px;
	background: url(/company/recruit/introduction/img/bg_about-us_history04_sp.jpg) no-repeat 50% 0 / cover;
}
@media print, screen and (min-width: 768px) {/* PC */
.history .inner {
	padding: 90px 0 150px;
	background: url(/company/recruit/introduction/img/bg_about-us_history01_pc.jpg) no-repeat 50% 0 / 100% auto,
	url(/company/recruit/introduction/img/bg_about-us_history02_pc.jpg) repeat-y 50% 0 / 100% auto;
}
.history .inner::before {
	height: 355px;
	background: url(/company/recruit/introduction/img/bg_about-us_history03_pc.jpg) no-repeat 50% 0 / cover;
}
.history .lead {
	margin-bottom: clamp(50px, calc(90 / 1440 * 100vw), 90px);
	padding-bottom: clamp(100px, calc(150 / 1440 * 100vw), 150px);
	font-size: clamp(calc(2.4rem / 1.6), calc(28 / 1440 * 100vw), calc(2.8rem / 1.6));
	line-height: calc(46 / 28);
}
.history .lead::after {
	left: calc(50% - 60px);
	width: 120px;
	height: 70px;
}
.history .item + .item {
	margin-top: 0;
}
.history .item {
	display: flex;
	align-items: start;
	position: relative;
	text-align: left;
}
.history .item::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: min(98px, calc(98 / 1440 * 100vw));
	margin-top: min(50px, calc(50 / 1440 * 100vw));
}
.history .item.y1976::after,
.history .item.y1987::after {
	height: min(389px, calc(389 / 1440 * 100vw));
	left: calc(50% + calc(15 / 1440 * 100vw));
	background: url(/company/recruit/introduction/img/img_about-us_history_line01.png) no-repeat 50% 0 / cover;
}
.history .item.y1987::after {
	left: calc(50% + calc(25 / 1440 * 100vw));
}
.history .item.y1980::after,
.history .item.y2000::after {
	height: min(420px, calc(420 / 1440 * 100vw));
	left: calc(50% - calc(96 / 1440 * 100vw));
	background: url(/company/recruit/introduction/img/img_about-us_history_line02.png) no-repeat 50% 0 / cover;
}
.history .item.y2000::after {
	left: calc(50% + calc(20 / 1440 * 100vw));
	transform: scaleX(-1);
}
.history .item.y1990::after {
	height: min(282px, calc(282 / 1440 * 100vw));
	margin-left: clamp(200px, calc(404 / 1440 * 100vw), 404px);
	background: url(/company/recruit/introduction/img/img_about-us_history_line03.png) no-repeat 50% 0 / cover;
}
.history .item .set {
	flex: 1;
}
.history .item picture {
	display: block;
}
.history .item img {
	display: block;
}
.history .item.type01 {
	text-align: right;
}
.history .item.type02 .set {
	order: 2;
}
.history .item.type02 picture {
	order: 1;
}
.history .item .year {
	font-size: clamp(calc(8rem / 1.6), calc(100 / 1440 * 100vw), calc(10rem / 1.6));
}
.history .item h3 {
	margin-bottom: 10px;
	font-size: clamp(calc(2.1rem / 1.6), calc(28 / 1440 * 100vw), calc(2.8rem / 1.6));
	line-height: calc(46 / 28);
}
.history .item .text {
	padding-block: 10px 0;
	font-size: clamp(calc(1.6rem / 1.6), calc(20 / 1440 * 100vw), calc(2rem / 1.6));
	line-height: calc(32 / 20);
}
.history .item .text::before {
	left: auto;
	right: 0;
	width: 100%;
}
.history .item img {
	width: auto;
}
.history .item.y1976 {
	height: clamp(300px, calc(440 / 1440 * 100vw), 440px);
	padding-inline: min(106px, calc(106 / 1440 * 100vw));
}
.history .item.y1976 .set {
	width: min(414px, calc(414 / 1440 * 100vw));
}
.history .item.y1976 picture {
	flex: 1;
}
.history .item.y1976 img {
	width: 95px;
	margin-top: min(10px, calc(10 / 1440 * 100vw));
	margin-left: clamp(130px, calc(205 / 1440 * 100vw), 205px);
}
.history .item.y1980 {
	height: clamp(330px, calc(470 / 1440 * 100vw), 470px);
}
.history .item.y1980 .set {
	margin-left: calc(-16 / 1040 * 100%);
	padding-inline: 0 calc(106 / 1040 * 100%);
}
.history .item.y1980 img {
	width: clamp(400px, calc(536 / 1440 * 100vw), 536px);
}
.history .item.y1987 {
	height: clamp(300px, calc(430 / 1440 * 100vw), 430px);
}
.history .item.y1987 .set {
	position: relative;
	margin-left: min(70px, calc(70 / 1440 * 100vw));
}
.history .item.y1987 .text::before {
	left: auto;
	right: 0;
}
.history .item.y1987 img.is-pc {
	position: absolute;
	top: calc(-120 / 1440 * 100vw);
	left: 0;
	width: clamp(150px, calc(206 / 1440 * 100vw), 206px);
}
.history .item.y1987 picture {
	margin-left: min(70px, calc(70 / 1440 * 100vw));
}
.history .item.y1987 picture img {
	width: clamp(340px, calc(441 / 1440 * 100vw), 441px);
}
.history .item.y1990 {
	height: clamp(300px, calc(330 / 1440 * 100vw), 400px);
	padding-left: min(94px, calc(94 / 1440 * 100vw));
}
.history .item.y1990 img {
	width: clamp(150px, calc(241 / 1440 * 100vw), 241px);
	top: calc(-50 / 1440 * 100vw);
	margin-right: min(180px, calc(180 / 1440 * 100vw));
}
.history .item.y2000 {
	height: clamp(300px, calc(470 / 1440 * 100vw), 470px);
	padding-inline: min(106px, calc(106 / 1440 * 100vw)) min(95px, calc(95 / 1440 * 100vw));
}
.history .item.y2000 .set {
	max-width: 400px;
}
.history .item.y2000 img {
	width: clamp(150px, calc(241 / 1440 * 100vw), 241px);
	margin-left: min(180px, calc(180 / 1440 * 100vw));
}
.history .item.y2020 {
	height: clamp(170px, calc(300 / 1440 * 100vw), 300px);
	padding-inline: min(106px, calc(106 / 1440 * 100vw)) min(80px, calc(80 / 1440 * 100vw));
}
.history .item.y2020 img {
	width: clamp(260px, calc(310 / 1440 * 100vw), 310px);
	margin-top: calc(-40 / 1440 * 100vw);
	margin-right: min(95px, calc(95 / 1440 * 100vw));
}
.history .msg {
	padding: 95px 0;
}
.history .msg p {
	font-size: calc(2rem / 1.6);
	line-height: calc(34 / 20);
}
.history .msg p > span {
	display: inline-block;
	margin-top: 15px;
	background: var(--grad-orix);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.history .msg p > span > span {
	background: transparent;
	font-size: calc(4.5rem / 1.6);
}
.history .summary {
	padding: 70px 0 60px;
	background-image: url(/company/recruit/introduction/img/bg_about-us_history04_pc.jpg);
}
}/* @media */
@media print, screen and (max-width: 1440px) and (min-width: 768px) {/* TABLET */
.history .item.y2000::after {
	left: calc(50% + calc(30 / 1440 * 100vw));
}
}/* @media */
@media print, screen and (max-width: 1023px) and (min-width: 768px) {/* TABLET */
.history .item.y1976 {
	margin-top: calc(180 / 1023 * 100vw);
}
.history .item.y1980::after {
	left: calc(50% - calc(240 / 1440 * 100vw));
}
.history .item.y1987::after {
	left: calc(50% + calc(60 / 1440 * 100vw));
}
.history .item.y2000::after {
	left: calc(50% + calc(140 / 1440 * 100vw));
}
.history .item.y2020 img {
	margin-top: calc(-40 / 1440 * 100vw);
}
}/* @media */
/* -----------------------------------------------
= role
----------------------------------------------- */
.role .inner {
	padding: 45px 0 0;
	color: #fff;
	background: url(/company/recruit/introduction/img/bg_about-us_role01_sp.jpg) repeat 50% 0 / 375px auto;
	text-align: center;
}
.role .lead {
	margin-bottom: 50px;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
	line-height: calc(27 / 16);
}
.role .lead strong {
	color: #ffeab6;
}
.role .text01 {
	margin-bottom: 15px;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
	line-height: calc(27 / 16);
}
.role .inner picture {
	display: block;
	max-width: 375px;
	margin-inline: auto;
}
.role .inner .text01 picture {
	margin-top: 15px;
}
.role .text02 {
	margin-top: 15px;
	font-size: calc(1.8rem / 1.6);
	font-weight: 700;
	line-height: calc(27 / 16);
}
.role .text03 {
	position: relative;
	margin-top: -15px;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
	line-height: calc(28 / 16);
}
.role .text03 > span {
	display: inline-block;
	margin-top: 10px;
}
.role .text03 > span > span > span {
	display: inline-block;
	margin: 0 5px 5px;
	padding: 0 8px;
	color: #fff;
	background: var(--grad-orix);
	font-size: calc(1.8rem / 1.6);
}
.role .line {
	position: relative;
	padding-bottom: 190px;
}
.role .line::before {
	content: "";
	position: absolute;
	left: calc(50% - 1px);
	bottom: 12px;
	width: 1px;
	height: 168px;
	border-left: 1px dashed rgba(255,255,255,.6);
}
.role .line::after {
	content: "";
	position: absolute;
	left: calc(50% - 6px);
	bottom: 0;
	width: 12px;
	height: 13px;
	background: url(/company/recruit/introduction/img/img_about-us_role_circle.png) no-repeat 50% / cover;
}
.role .text04 {
	position: relative;
	padding-top: 20px;
	background: url(/company/recruit/introduction/img/bg_about-us_role04_sp.jpg) repeat-x 50% / 350px auto;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
	line-height: calc(28 / 16);
}
.role .text04.line {
	margin-bottom: -40px;
}
.role .text04 span {
	display: inline-block;
	position: relative;
	margin-inline: auto;
	padding-inline: 10px 5px;
}
.role .text04 span::before,
.role .text04 span::after {
	content: "";
	position: absolute;
	top: 0;
	width: 27px;
	height: 100%;
	background: linear-gradient(var(--red), var(--blue));
	clip-path: polygon(0 0, 100% 0, 100% 3px, 3px 3px, 3px calc(100% - 3px), 100% calc(100% - 3px), 100% 100%, 0 100%);
}
.role .text04 span::before {
	left: 0;
}
.role .text04 span::after {
	right: 0;
	transform: scaleX(-1);
}
.role .text04 strong {
	display: inline-block;
	font-size: calc(2.2rem / 1.6);
	line-height: calc(37 / 22);
	letter-spacing: .05em;
}
.role .text-set {
	padding-block: 60px calc(285 / 375 * 100vw);
	background: url(/company/recruit/introduction/img/bg_about-us_role02_sp.jpg) no-repeat 50% 100% / 100% auto #000;
	text-align: center;
}
.role .text05 {
	margin-bottom: 20px;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
	line-height: calc(22 / 16);
}
.role .text05 .set {
	display: inline-block;
	margin-top: 10px;
	color: #fff;
	background: var(--grad-orix);
	font-size: calc(2.85rem / 1.6);
}
.role .text05 .set span {
	display: inline-block;
	padding-inline: calc(.5rem / 1.6);
	border: 1px solid #fff;
}
.role .text05 .set + span {
	padding-inline: calc(.5rem / 1.6);
	font-size: calc(2.7rem / 1.6);
}
.role .text05 .set span + span {
	border-left: none;
}
.role .text05 strong {
	display: inline-block;
	margin-block: 5px;
	font-size: calc(2.85rem / 1.6);
}
.role .text06 {
	font-size: calc(1.2rem / 1.6);
	line-height: calc(22 / 12);
}
.role .summary {
	padding: 30px 0 75px;
	background: url(/company/recruit/introduction/img/bg_about-us_role03_sp.jpg) no-repeat 50% 0 / cover;
}
@media print, screen and (min-width: 768px) {/* PC */
.role .inner {
	padding: min(90px, calc(90 / 1440 * 100vw)) 0 510px;
	background: url(/company/recruit/introduction/img/bg_about-us_role02_pc.jpg) no-repeat 50% calc(100% + 1px) / 100% auto, url(/company/recruit/introduction/img/bg_about-us_role01_pc.jpg) repeat-y 50% 0 / 100% auto;
}
.role .lead {
	margin-bottom: min(110px, calc(110 / 1440 * 100vw));
	font-size: clamp(calc(2.4rem / 1.6), calc(28 / 1440 * 100vw), calc(2.8rem / 1.6));
	line-height: calc(46 / 28);
}
.role .text01 {
	margin-bottom: 30px;
	font-size: calc(2.8rem / 1.6);
}
.role .inner picture {
	max-width: none;
}
.role .text01 picture {
	margin-top: 30px;
}
.role .text02 {
	position: relative;
	margin-top: 35px;
	margin-bottom: -50px;
	font-size: clamp(calc(2.8rem / 1.6), calc(32 / 1440 * 100vw), calc(3.2rem / 1.6));
}
.role .text03 {
	margin-top: 30px;
	font-size: clamp(calc(2.4rem / 1.6), calc(28 / 1440 * 100vw), calc(2.8rem / 1.6));
	line-height: calc(46 / 28);
}
.role .text03 > span > span {
	margin: 0 5px 5px;
	padding: 3px 12px;
	color: #fff;
	background: var(--grad-orix);
}
.role .text03 > span > span > span {
	margin: 0;
	padding: 0;
	background: transparent;
	font-size: clamp(calc(2.8rem / 1.6), calc(32 / 1440 * 100vw), calc(3.2rem / 1.6));
}
.role .line {
	margin-bottom: 20px;
}
.role .line::before {
	bottom: 14px;
}
.role .line::after {
	left: calc(50% - 7px);
	width: 14px;
	height: 15px;
}
.role .text04 {
	padding-top: 0;
	background: transparent;
	font-size: clamp(calc(2.4rem / 1.6), calc(28 / 1440 * 100vw), calc(2.8rem / 1.6));
	line-height: calc(46 / 28);
}
.role .text04.line {
	margin-bottom: 0;
}
.role .text04 span {
	padding-inline: clamp(40px, calc(70 / 1440 * 100vw), 70px);
}
.role .text04 span::before,
.role .text04 span::after {
	width: 54px;
	clip-path: polygon(0 0, 100% 0, 100% 7px, 7px 7px, 7px calc(100% - 7px), 100% calc(100% - 7px), 100% 100%, 0 100%);
}
.role .text04 strong {
	font-size: clamp(calc(4rem / 1.6), calc(50 / 1440 * 100vw), calc(5rem / 1.6));
	line-height: calc(76 / 50);
}
.role .text-set {
	padding-block: 30px 0;
	background: transparent;
}
.role .text05 {
	font-size: clamp(calc(2.2rem / 1.6), calc(26 / 1440 * 100vw), calc(2.6rem / 1.6));
	line-height: calc(34 / 26);
}
.role .text05 .set {
	margin-top: 15px;
	font-size: clamp(calc(3.8rem / 1.6), calc(42 / 1440 * 100vw), calc(4.2rem / 1.6));
}
.role .text05 .set + span {
	font-size: clamp(calc(3.6rem / 1.6), calc(40 / 1440 * 100vw), calc(4rem / 1.6));
}
.role .text05 strong {
	margin-block: 10px;
	font-size: clamp(calc(3.8rem / 1.6), calc(42 / 1440 * 100vw), calc(4.2rem / 1.6));
}
.role .text06 {
	font-size: clamp(calc(1.6rem / 1.6), calc(18 / 1440 * 100vw), calc(1.8rem / 1.6));
	line-height: calc(34 / 18);
}
.role .summary {
	padding: 70px 0;
	background: url(/company/recruit/introduction/img/bg_about-us_role03_pc.jpg) no-repeat 50% 0 / cover;
}
}/* @media */
/* -----------------------------------------------
= strengths
----------------------------------------------- */
.strengths .inner {
	padding: 45px 20px;
	color: #fff;
	background: url(/company/recruit/introduction/img/bg_about-us_history02_sp.jpg) repeat 50% 0 / 375px auto;
}
.strengths h3 {
	margin-bottom: 45px;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
	text-align: center;
}
.strengths .item {
	position: relative;
	margin-bottom: 80px;
	padding: 35px 20px 40px;
	background: rgba(255,255,255,.22);
}
.strengths .item.num07 {
	margin-bottom: 0;
}
.strengths .item::before,
.strengths .item::after {
	content: "";
	position: absolute;
}
.strengths .item.num07:after {
	display: none;
}
.strengths .item::before {
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	background: var(--grad-orix);
}
.strengths .item::after {
	left: -20px;
	bottom: -40px;
	width: calc(100% + 40px);
	height: 1px;
	background: rgba(27,61,92,.5);
	mix-blend-mode: multiply;
}
.strengths .item .num {
	position: absolute;
	top: -.1em;
	right: -.1em;
	color: rgba(27,61,92,.85);
	font-family: var(--fig);
	font-size: calc(2.2rem / 1.6);
	font-weight: 600;
	text-align: right;
	line-height: .9;
	letter-spacing: 0;
}
.strengths .item .num span {
	display: block;
	position: relative;
	right: -.05em;
	font-size: calc(11rem / 1.6);
	letter-spacing: -.04em;
}
.strengths .item h4 {
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
	font-size: calc(2.1rem / 1.6);
	font-weight: 700;
	line-height: calc(32 / 21);
}
.strengths .item.num01 h4 {
	padding-right: 120px;
}
.strengths .item ul {
	padding-left: 1.5em;
	list-style-type: disc;
}
.strengths .item li {
	position: relative;
	padding-block: 11px;
	font-size: calc(1.2rem / 1.6);
	line-height: 2;
}
.strengths .item li::after {
	content: "";
	position: absolute;
	left: -1.5em;
	bottom: 0;
	width: calc(100% + 1.5em);
	height: 1px;
	background: rgba(255,255,255,.5);
}
.strengths .item li:first-child::before {
	content: "";
	position: absolute;
	top: 0;
	left: -1.5em;
	width: calc(100% + 1.5em);
	height: 1px;
	background: rgba(255,255,255,.5);
}
.strengths .item img {
	position: absolute;
}
.strengths .item.num01 img {
	top: 25px;
	right: 40px;
	width: 89px;
}
.strengths .item.num03 img {
	right: 32px;
	bottom: -22px;
	width: 106px;
}
.strengths .item.num06 img {
	right: 28px;
	bottom: -45px;
	width: 90px;
}
.strengths .item.num07 img {
	right: 32px;
	bottom: -32px;
	width: 105px;
}
.strengths .summary {
	padding-block: 32px;
	background: url(/company/recruit/introduction/img/bg_about-us_strengths01_sp.jpg) no-repeat 50% 0 / cover;
}
@media print, screen and (min-width: 768px) {/* PC */
.strengths .inner {
	padding: min(90px, calc(90 / 1440 * 100vw)) min(60px, calc(60 / 1440 * 100vw));
	background: url(/company/recruit/introduction/img/bg_about-us_history02_pc.jpg) repeat-y 50% 0 / 100% auto;
}
.strengths h3 {
	margin-bottom: 90px;
	font-size: calc(2.8rem / 1.6);
}
.strengths .list {
	display: flex;
	flex-wrap: wrap;
	gap: 0 48px;
}
.strengths .item {
	width: 100%;
}
.strengths .item.num01,
.strengths .item.num02,
.strengths .item.num04,
.strengths .item.num05 {
	width: calc(50% - 24px);
}
.strengths .item {
	margin-bottom: 48px;
	padding: 40px 27px 50px;
	box-sizing: border-box;
}
.strengths .item::before {
	width: 28px;
	height: 28px;
}
.strengths .item::after {
	left: 0;
	bottom: -24px;
	width: 100%;
}
.strengths .item.num01::after,
.strengths .item.num04::after {
	width: calc(100% + 48px);
}
.strengths .item.num06 {
	margin-bottom: 0;
}
.strengths .item.num06::after {
	display: none;
}
.strengths .item .num {
	font-size: calc(2.6rem / 1.6);
}
.strengths .item .num span {
	font-size: calc(13rem / 1.6);
}
.strengths .item h4 {
	margin-bottom: 30px;
	font-size: calc(3rem / 1.6);
	line-height: calc(44 / 30);
}
.strengths .item li {
	padding-block: 13px;
	font-size: calc(1.8rem / 1.6);
	line-height: calc(30 / 18);
}
.strengths .item.num03 ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: start;
	gap: 0 52px;
}
.strengths .item.num03 li:nth-child(2) {
	grid-area: 2 / 1;
}
.strengths .item.num03 li:nth-child(3) {
	grid-area: 1 / 2;
}
.strengths .item.num03 li:nth-child(3)::before {
	content: "";
	position: absolute;
	top: 0;
	left: -1.5em;
	width: calc(100% + 1.5em);
	height: 1px;
	background: rgba(255,255,255,.5);
}
.strengths .item.num06 li:nth-child(2) {
	margin-right: 200px;
}
.strengths .item.num01 img {
	top: 32px;
	right: 47px;
	width: 106px;
}
.strengths .item.num03 img {
	right: 70px;
	bottom: 16px;
	width: 172px;
}
.strengths .item.num06 img {
	right: 42px;
	bottom: 16px;
	width: 147px;
}
.strengths .line {
	position: absolute;
	right: -24px;
	width: 1px;
	background: rgba(27,61,92,.5);
	mix-blend-mode: multiply;
}
.strengths .item.num01 .line {
	top: 0;
	height: calc(100% + 24px);
}
.strengths .item.num04 .line {
	top: -24px;
	height: calc(100% + 48px);
}
.strengths .summary {
	padding: 70px 0;
	background: url(/company/recruit/introduction/img/bg_about-us_strengths01_pc.jpg) no-repeat 50% 0 / cover;
}
}/* @media */
/* -----------------------------------------------
= future
----------------------------------------------- */
.future .inner {
	padding: 45px 20px;
	color: #fff;
	background: url(/company/recruit/introduction/img/bg_about-us_future01_sp.jpg) no-repeat 50% 0 / 375px auto,
	url(/company/recruit/introduction/img/bg_about-us_role01_sp.jpg) repeat 50% 0 / 375px auto;
	text-align: center;
}
.future .text {
	position: relative;
	margin-bottom: 50px;
	padding-bottom: 80px;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
	line-height: calc(27 / 16);
}
.future .text.text02 {
	margin-block: auto;
	text-align: left;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-orientation: upright;
}
.future .text .quotation {
	position: relative;
	margin-top: -.3em;
	bottom: -.3em;
}
.future .text .quotation.type01 {
	right: -.3em;
}
.future .text .quotation.type02 {
	left: -.3em;
}
.future .text strong {
	color: #ffeab6;
}
.future .text::after {
	content: "";
	position: absolute;
	left: calc(50% - 30px);
	bottom: 0;
	width: 60px;
	height: 35px;
	background: linear-gradient(transparent, #daeaf5);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	opacity: .5;
}
.future .text03 {
	margin-bottom: 65px;
	padding-bottom: 0;
}
.future .text03::after {
	display: none;
}
.future .column {
	text-align: left;
}
.future .column h3 {
	margin-bottom: 25px;
	text-align: center;
}
.future .column h3 .en {
	display: inline-block;
	margin-bottom: 20px;
	padding: 3px 20px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	font-family: var(--fig);
	font-size: calc(1.4rem / 1.6);
	font-weight: 600;
	letter-spacing: 0;
}
.future .column h3 .jp {
	display: block;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
}
.future .column .head {
	display: flex;
	margin-bottom: 2px;
}
.future .column .head .case {
	padding: 8px 20px;
	color: #fff;
	background: var(--grad-orix);
	font-family: var(--fig);
	font-size: calc(1.2rem / 1.6);
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.5;
}
.future .column .head h4 {
	flex: 1;
	padding: 8px 20px;
	background: #dde0e7;
	font-size: calc(1.2rem / 1.6);
	font-weight: 700;
}
.future .column .head h4 span {
	background: var(--grad-orix);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.future .column .item + .item {
	margin-top: 30px;
}
.future .column .box {
	position: relative;
	padding: 20px;
	border: 1px solid #fff;
}
.future .column .box::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(27,47,92,.3);
	mix-blend-mode: multiply;
}
.future .column .box p {
	position: relative;
	font-size: calc(1.2rem / 1.6);
	line-height: 2;
}
.future .column .box p + p {
	margin-top: 1em;
}
.future .summary {
	padding: 30px 0 75px;
	background: url(/company/recruit/introduction/img/bg_about-us_future02_sp.jpg) no-repeat 50% 0 / cover;
}
.future .msg {
	padding: 100px 0 60px;
	background: url(/company/recruit/introduction/img/bg_about-us_future03_sp.jpg) no-repeat 50% 74% / 100% auto;
	text-align: center;
}
.future .msg .text01 {
	display: inline-block;
	margin-bottom: 25px;
	background: var(--grad-orix);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: calc(2.1rem / 1.6);
	font-weight: 700;
	line-height: calc(32 / 21);
}
.future .msg .text02 {
	margin-bottom: 15px;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
	line-height: calc(27 / 16);
	text-shadow: 0 0 10px #fff;
}
.future .msg .text03 {
	display: inline-block;
	position: relative;
	margin-bottom: 0;
	padding-top: 165px;
	background: var(--grad-orix);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: calc(3.1rem / 1.6);
	font-weight: 700;
	line-height: calc(46 / 31);
	letter-spacing: 0;
}
.future .msg .text03::before {
	content: "";
	position: absolute;
	left: calc(50% - 1px);
	top: 0;
	width: 1px;
	height: 145px;
	border-left: 1px dashed #6f768f;
}
.future .msg .text03::after {
	display: block;
	content: "";
	position: absolute;
	left: calc(50% - 6px);
	top: 140px;
	width: 12px;
	height: 13px;
	background: url(/company/recruit/introduction/img/img_about-us_future_circle.png) no-repeat 50% / cover;
}
@media print, screen and (min-width: 768px) {/* PC */
.future .inner {
	padding: min(90px, calc(90 / 1440 * 100vw)) min(60px, calc(60 / 1440 * 100vw));
	background: url(/company/recruit/introduction/img/bg_about-us_future01_pc.jpg) no-repeat 50% 0 / 100% auto,
	url(/company/recruit/introduction/img/bg_about-us_role01_pc.jpg) repeat-y 50% 0 / 100% auto;
	text-align: center;
}
.future .text {
	margin-bottom: 80px;
	padding-bottom: 140px;
	font-size: calc(2.8rem / 1.6);
	line-height: calc(46 / 28);
}
.future .text::after {
	left: calc(50% - 60px);
	width: 120px;
	height: 70px;
}
.future .text03 {
	margin-bottom: 80px;
	padding-bottom: 0;
}
.future .column h3 {
	margin-bottom: 35px;
}
.future .column h3 .en {
	margin-bottom: 25px;
	padding: 5px 25px;
	font-size: calc(1.8rem / 1.6);
}
.future .column h3 .jp {
	font-size: calc(2.8rem / 1.6);
}
.future .column .head .case {
	padding: 20px 50px;
	font-size: calc(2rem / 1.6);
}
.future .column .head h4 {
	padding: 20px 30px;
	font-size: calc(2rem / 1.6);
}
.future .column .box {
	padding: 40px;
}
.future .column .box p {
	font-size: calc(1.8rem / 1.6);
	line-height: calc(32 / 18);
}
.future .summary {
	padding: 70px 0;
	background: url(/company/recruit/introduction/img/bg_about-us_future02_pc.jpg) no-repeat 50% 0 / cover;
}
.future .msg {
	padding: 165px 0 150px;
	background: url(/company/recruit/introduction/img/bg_about-us_future03_pc.jpg) no-repeat 50% 74% / 100% auto;
}
.future .msg .text01 {
	margin-bottom: 45px;
	font-size: clamp(calc(3.6rem / 1.6), calc(40 / 1440 * 100vw), calc(4rem / 1.6));
	line-height: calc(60 / 40);
}
.future .msg .text02 {
	margin-bottom: 25px;
	font-size: clamp(calc(2rem / 1.6), calc(24 / 1440 * 100vw), calc(2.4rem / 1.6));
	line-height: calc(44 / 24);
}
.future .msg .text03 {
	margin-bottom: 0;
	padding-top: 350px;
	font-size: clamp(calc(4.8rem / 1.6), calc(62 / 1440 * 100vw), calc(6.2rem / 1.6));
	line-height: calc(92 / 62);
}
.future .msg .text03::before {
	height: 310px;
}
.future .msg .text03::after {
	left: calc(50% - 7px);
	top: 310px;
	width: 14px;
	height: 14px;
}
}/* @media */
/* -----------------------------------------------
= bnr
----------------------------------------------- */
.bnr {
	scroll-margin-top: 45px;
	margin: 0 20px 100px;
}
@media print, screen and (min-width: 768px) {/* PC */
.bnr {
	scroll-margin-top: 79px;
}
}/* @media */
/* -----------------------------------------------
= special
----------------------------------------------- */
.special {
	background: #fff;
}
.special h2 {
	padding: 25px 20px;
	color: #fff;
	background: var(--grad-orix);
	font-size: calc(1.8rem / 1.6);
	font-weight: 700;
	line-height: calc(24 / 18);
	text-align: center;
}
.special .inner {
	padding: 20px 20px 30px;
	background: #fff;
}
.special .img01 {
	position: relative;
	margin-bottom: 35px;
}
.special .img01 p {
	position: absolute;
	top: 50%;
	right: calc(40 / 295 * 100%);
	transform: translateY(-50%);
	font-size: calc(1rem / 1.6);
	font-weight: 500;
}
.special .img01 p span {
	display: block;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
}
.special h3 {
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px;
	font-size: calc(1.8rem / 1.6);
	font-weight: 700;
	line-height: calc(24 / 18);
	text-align: center;
}
.special h3::before,
.special h3::after {
	content: "";
	position: absolute;
}
.special h3::before {
	left: 0;
	bottom: 2px;
	width: 100%;
	height: 1px;
	background: #ededf1;
}
.special h3::after {
	left: calc(50% - 20px);
	bottom: 0;
	width: 40px;
	height: 5px;
	background: var(--grad-orix);
}
.special .text {
	margin-bottom: 10px;
	font-size: calc(1.2rem / 1.6);
	line-height: 2;
}
.special .note {
	margin-bottom: 20px;
	font-size: calc(1.1rem / 1.6);
	line-height: calc(20 / 11);
}
.special .text + h3 {
	margin-top: 40px;
}
.special .block {
	margin-bottom: 40px;
}
.special .img02 {
	display: block;
	max-width: calc(190 / 375 * 100vw);
	margin: 20px auto 40px;
}
.special .img03 {
	margin: 25px auto 40px;
}
@media print, screen and (min-width: 768px) {/* PC */
.special h2 {
	padding: 60px 20px 180px;
	font-size: calc(4rem / 1.6);
}
.special .inner {
	position: relative;
	margin: -125px calc(50 / 1100 * 100%) 0;
	padding: calc(80 / 1100 * 100%);
}
.special .img01 {
	margin-bottom: 100px;
}
.special .img01 p {
	right: calc(280 / 1100 * 100%);
	font-size: calc(1.8rem / 1.6);
}
.special .img01 p span {
	font-size: calc(3rem / 1.6);
}
.special h3 {
	margin-bottom: 35px;
	padding-bottom: 35px;
	font-size: calc(3.4rem / 1.6);
}
.special h3::before {
	bottom: 2px;
}
.special h3::after {
	left: calc(50% - 16px);
	width: 32px;
	height: 6px;
}
.special .text {
	margin-bottom: 15px;
	font-size: calc(1.4rem / 1.6);
}
.special .note {
	margin-bottom: 0;
	font-size: calc(1.2rem / 1.6);
	line-height: calc(22 / 12);
}
.special .text + h3 {
	margin-top: 90px;
}
.special .block {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 60px;
	margin-bottom: 90px;
}
.special .img02 {
	max-width: none;
	margin: 0;
}
.special .img03 {
	margin-block: 80px;
}
}/* @media */
@media print, screen and (max-width: 1023px) and (min-width: 768px) {/* TABLET */
.special .img01 p {
	right: 40px;
}
.special .block {
	display: block;
}
.special .block .set {
	margin-bottom: 40px;
}
}/* @media */




