/* -----------------------------------------------
= reset
----------------------------------------------- */
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
body, h1, h2, h3, h4, h5, h6, p,
dl, dt, dd, ol, ul, li,
figure, figcaption {
	margin: 0;
	padding: 0;
	font-size: 1em;
	font-weight: normal;
}
ol, ul {
	list-style-type: "";
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
a {
	color: inherit;
	text-decoration: none;
}
a img {
	border: none;
}
img {
	width: 100%;
	height: auto;
	vertical-align: top;
	box-sizing: border-box;
}
button,
textarea {
	margin: 0;
	padding: 0;
	color: inherit;
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
	font: inherit;
}
button {
	cursor: pointer;
}
input {
	border: none;
	border-radius: 0;
	font: inherit;
}
select {
	font: inherit;
}
iframe {
	border: none;
}
/* -----------------------------------------------
= variable
----------------------------------------------- */
:root {
	--fig: "Figtree", sans-serif;
	--min: serif;
	--gothic: "Zen Kaku Gothic Antique", sans-serif;
	--black: #161920;
	--blue: #1e4191;
	--dark-blue: #1d2840;
	--red: #cd1432;
	--grad-orix: linear-gradient(90deg,#cd1432,#1e4191);
	--grad-blue: linear-gradient(90deg,transparent,#1e4191);
	--grad-red: linear-gradient(90deg,transparent,#cd1432);
	--filter-black: invert(6%) sepia(11%) saturate(1502%) hue-rotate(184deg) brightness(99%) contrast(92%);
	--filter-white: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
/* -----------------------------------------------
= animation
----------------------------------------------- */
.js-inview {
	opacity: 0;
	transition: .8s .4s;
}
.js-inview.is-show {
	opacity: 1;
}
/* -----------------------------------------------
= base
----------------------------------------------- */
body {
	color: var(--black);
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-weight: 400;
	letter-spacing: .04em;
}
body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	background: url(/company/recruit/assets/img/bg_body_sp.jpg) no-repeat 50% / cover;
}
.is-pc {
	display: none;
}
.is-sp-inline {
	display: inline;
}
@media print, screen and (min-width: 768px) {/* PC */
body::before {
	background-image: url(/company/recruit/assets/img/bg_body_pc.jpg);
}
.is-pc {
	display: block;
}
.is-sp {
	display: none;
}
.is-sp-inline {
	display: none;
}
}/* @media */
/* -----------------------------------------------
= header
----------------------------------------------- */
.header {
	display: flex;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	transition: background .3s;
}
.is-scrolled .header {
	background: #fff;
}
.header .site-name a {
	display: inline-flex;
	align-items: center;
	gap: 0 10px;
	min-height: 45px;
	padding-inline: 15px;
}
.header .site-name img {
	width: 122px;
}
.header .site-name span {
	padding-left: 10px;
	border-left: 1px solid rgba(22,25,32,.1);
	font-family: var(--fig);
	font-size: calc(.8rem / 1.6);
	font-weight: 600;
	line-height: 1.375;
	letter-spacing: .02em;
}
@media print, screen and (min-width: 768px) {/* PC */
.header .site-name {
	flex: 1;
}
.header .site-name a {
	gap: 0 30px;
	min-height: 110px;
	padding-inline: 40px;
}
.is-scrolled .header .site-name a {
	min-height: 80px;
}
.header .site-name img {
	width: clamp(220px, calc(287 / 1920 * 100vw), 287px);
	margin-bottom: 8px;
}
.header .site-name span {
	padding-left: 30px;
	font-size: 12px;
	line-height: 1.666;
	letter-spacing: 0;
}
}/* @media */
@media print, screen and (max-width: 1440px) and (min-width: 768px) {
.header .site-name a {
	min-height: 80px;
}
}/* @media */
/* -----------------------------------------------
= nav-global(PC)
----------------------------------------------- */
.nav-global {
	display: none;
}
@media print, screen and (min-width: 768px) {/* PC */
.nav-global {
/*	display: block;*/
}
.nav-global ul {
	display: flex;
	gap: 0 30px;
	min-height: 110px;
}
.is-scrolled .nav-global ul {
	min-height: 80px;
}
.nav-global li {
	text-align: center;
}
.nav-global li a {
	display: grid;
	place-content: center;
	height: 100%;
}
.nav-global li span {
	line-height: 1.5;
}
.nav-global li a span:first-child {
	display: inline-block;
	position: relative;
	color: transparent;
	font-family: var(--fig);
	font-size: 16px;
	font-weight: 600;
	letter-spacing: .01em;
}
.nav-global li a span:first-child::before,
.nav-global li a span:first-child::after {
	content: attr(data-text);
	position: absolute;
	inset: 0;
	transition: opacity 0.3s ease;
}
.nav-global li a span:first-child::before {
	background: var(--black);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: 1;
}
.nav-global li a span:first-child::after {
	background: var(--grad-orix);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: 0;
}
.nav-global li a span:last-child {
	display: block;
	font-size: 12px;
	letter-spacing: .05em;
}
}/* @media */
@media print, screen and (max-width: 1719px) and (min-width: 768px) {
.nav-global {
	display: none;
}
}/* @media */
@media (hover:hover) {
.nav-global li a:hover span:first-child::before {
	opacity: 0;
}
.nav-global li a:hover span:first-child::after {
	opacity: 1;
}
}/* @media */
/* -----------------------------------------------
= nav-entry(PC)
----------------------------------------------- */
.nav-entry {
	display: none;
}
@media print, screen and (min-width: 768px) {/* PC */
.nav-entry {
	display: block;
	margin-inline: 30px 60px;
	padding-block: 30px;
	transition: padding .3s;
}
.is-scrolled .nav-entry {
	padding-block: 15px;
}
.nav-entry > ul {
	display: flex;
}
.nav-entry > ul > li {
	position: relative;
}
.nav-entry li:first-child button {
	background: linear-gradient(90deg,#cd1432,#981958);
}
.nav-entry li:last-child button {
	background: linear-gradient(90deg,#971959,#1e4191);
	border-left: 1px solid #ae5281;
}
.nav-entry li button {
	display: block;
	position: relative;
	min-width: 164px;
	padding: 14px 20px;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-align: left;
	letter-spacing: .05em;
}
.nav-entry li button::after {
	content: "";
	position: absolute;
	top: calc(50% - 3px);
	right: 20px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(135deg);
}
.nav-entry li ul {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background: #fff;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}
.nav-entry li + li ul {
	border-left: 1px solid #fbf2f6;
}
.nav-entry li ul li + li {
	border-top: 1px solid #e2e2e7;
}
.nav-entry li ul li {
	margin-inline: 20px;
}
.nav-entry li ul li a {
	display: block;
	position: relative;
	padding-block: 15px;
	font-weight: 700;
	line-height: 20px;
}
.nav-entry li ul li a::after {
	content: "";
	position: absolute;
	top: calc(50% - 3px);
	right: 3px;
	width: 6px;
	height: 6px;
	border-top: 1px solid var(--black);
	border-right: 1px solid var(--black);
	transform: rotate(45deg);
}
.nav-entry li:first-child ul li a {
	font-size: 12px;
	font-family: var(--fig);
	letter-spacing: .01em;
}
.nav-entry li:last-child ul li a {
	font-size: 14px;
	letter-spacing: .05em;
}
}/* @media */
@media print, screen and (max-width: 1440px) and (min-width: 768px) {
.nav-entry {
	padding-block: 15px;
}
}/* @media */
@media print, screen and (max-width: 1023px) and (min-width: 768px) {
.nav-entry {
	display: none;
}
}/* @media */
@media (hover:hover) {
.nav-entry > ul > li:hover ul,
.nav-entry > ul > li:focus-within ul {
	opacity: 1;
	pointer-events: auto;
}
.nav-entry > ul > li:hover button::after {
	top: 50%;
	transform: rotate(-45deg);
}
}/* @media */
/* -----------------------------------------------
= nav
----------------------------------------------- */
.btn-nav {
	position: relative;
	z-index: 20;
	width: 45px;
	height: 45px;
	background: var(--black);
}
.btn-nav::before,
.btn-nav::after,
.btn-nav span::before {
	content: "";
	position: absolute;
	left: 12.5px;
	width: 20px;
	height: 1px;
	background: #fff;
}
.btn-nav::before {
	top: 16px;
}
.btn-nav::after {
	top: 22px;
}
.btn-nav span::before {
	top: 28px;
}
.btn-nav[aria-expanded="true"] {
	background: #fff;
}
.btn-nav[aria-expanded="true"]::before {
	top: 22px;
	transform: rotate(-45deg);
	background: var(--black);
}
.btn-nav[aria-expanded="true"]::after {
	top: 22px;
	transform: rotate(45deg);
	background: var(--black);
}
.btn-nav[aria-expanded="true"] span::before {
	display: none;
}
@media print, screen and (min-width: 768px) {/* PC */
.btn-nav {
	top: 50px;
	right: 30px;
	width: 35px;
	height: 14px;
	background: transparent;
	transition: top .3s;
}
.is-scrolled .btn-nav {
	top: 35px;
}
.btn-nav::before,
.btn-nav::after,
.btn-nav span::before {
	left: 0;
	width: 100% ;
	height: 2px;
	background: var(--black);
}
.btn-nav::before {
	top: 0;
}
.btn-nav::after {
	top: 6px;
}
.btn-nav span::before {
	top: 12px;
}
.btn-nav[aria-expanded="true"] {
	background: transparent;
}
.btn-nav[aria-expanded="true"]::before,
.btn-nav[aria-expanded="true"]::after {
	top: 6px;
	background: #fff;
}
.btn-nav[aria-expanded="true"]::before {
	transform: rotate(-30deg);
}
.btn-nav[aria-expanded="true"]::after {
	transform: rotate(30deg);
}
}/* @media */
@media print, screen and (max-width: 1440px) and (min-width: 768px) {
.btn-nav {
	top: 35px;
}
}/* @media */
/* -----------------------------------------------
= menu
----------------------------------------------- */
.nav-hamburger {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100svh;
	color: #fff;
	background: var(--black);
	overflow-y: auto;
	overscroll-behavior: contain;
	opacity: 0;
	pointer-events: none;
	transition: opacity .5s ease;
}
.nav-hamburger.is-open {
	opacity: 1;
	pointer-events: auto;
}
.nav-hamburger .inner {
	padding: 15px 20px 80px;
}
.nav-hamburger .name {
	margin-bottom: 30px;
	color: rgba(255,255,255,.3);
	font-family: var(--fig);
	font-size: calc(.8rem / 1.6);
	font-weight: 600;
	line-height: 1.375;
	letter-spacing: .02em;
	display: inline-block;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .6s ease-in-out .2s, transform .6s ease-in-out .2s;
}
.nav-hamburger.is-open .name {
	opacity: 1;
	transform: translateY(0);
}
.hamburger-entry {
	margin-bottom: 40px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .6s ease-in-out .2s, transform .6s ease-in-out .2s;
}
.nav-hamburger.is-open .hamburger-entry {
	opacity: 1;
	transform: translateY(0);
}
.hamburger-entry > ul > li {
	position: relative;
	margin-bottom: 10px;
}
.hamburger-entry li button {
	display: block;
	position: relative;
	width: 100%;
	padding: 22px 60px 22px 20px;
	color: #fff;
	background: var(--grad-orix);
	text-align: left;
}
.hamburger-entry li button span:first-child {
	margin-right: 10px;
	font-size: calc(1.8rem / 1.6);
	font-weight: 700;
	letter-spacing: -.02em;
}
.hamburger-entry li button span:last-child {
	font-family: var(--fig);
	font-size: calc(1rem / 1.6);
	font-weight: 500;
	letter-spacing: 0;
}
.hamburger-entry li button::before {
	content: "";
	position: absolute;
	top: 22px;
	right: 50px;
	bottom: 22px;
	width: 1px;
	height: calc(100% - 44px);
	background: rgba(255,255,255,.3);
}
.hamburger-entry li button::after {
	content: "";
	position: absolute;
	top: calc(50% - 3px);
	right: 20px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(135deg);
}
.hamburger-entry li.is-open button::after {
	transform: rotate(-45deg);
}
.hamburger-entry li ul {
	max-height: 0;
	background: rgba(111,116,123,.1);
	overflow: hidden;
	transition: max-height 0.3s ease;
}
.hamburger-entry li.is-open ul {
	max-height: 120px;
}
.hamburger-entry li ul li + li {
	border-top: 1px solid rgba(236,236,236,.3);
}
.hamburger-entry li ul li a {
	display: block;
	position: relative;
	padding: 20px;
	line-height: 20px;
}
.hamburger-entry li ul li a::after {
	content: "";
	position: absolute;
	top: calc(50% - 3px);
	right: 20px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
}
.hamburger-entry li:first-child ul li a {
	font-size: calc(1.4rem / 1.6);
	font-family: var(--fig);
	font-weight: 600;
	letter-spacing: .01em;
}
.hamburger-entry li:last-child ul li a {
	font-size: calc(1.3rem / 1.6);
	font-weight: 700;
	letter-spacing: .05em;
}
.nav-hamburger .menu p {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .6s ease-in-out .2s, transform .6s ease-in-out .2s;
}
.nav-hamburger.is-open .menu p {
	opacity: 1;
	transform: translateY(0);
}
.nav-hamburger .menu p + ul {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .6s ease-in-out .6s, transform .6s ease-in-out .6s;
}
.nav-hamburger.is-open .menu p + ul {
	opacity: 1;
	transform: translateY(0);
}
.nav-hamburger .utility .copyright {
	color: rgba(255,255,255,.3);
}
.nav-hamburger .menu > ul > li > ul > li > ul {
	margin-block: 20px 0;
}
.nav-hamburger .utility {
	text-align: center;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .6s ease-in-out .6s, transform .6s ease-in-out .6s;
}
.nav-hamburger.is-open .utility {
	opacity: 1;
	transform: translateY(0);
}
@media print, screen and (min-width: 768px) {
.nav-hamburger {
	height: 100vh;
}
.nav-hamburger .inner {
	padding: 30px;
}
.nav-hamburger .name {
	margin-bottom: 60px;
	font-size: calc(1.2rem / 1.6);
}
.nav-hamburger .menu-wrap {
	display: flex;
	gap: 0 40px;
	max-width: 1360px;
	margin-inline: auto;
}
.nav-hamburger .menu-wrap .hamburger-entry {
	order: 2;
}
.nav-hamburger .menu-wrap .menu {
	flex: 1;
	order: 1;
	padding: 0;
}
.hamburger-entry {
	width: calc(427 / 1360 * 100%);
	margin-bottom: 0;
}
.hamburger-entry > ul > li {
	margin-bottom: 10px;
}
.hamburger-entry li button {
	padding: 15px 20px;
}
.hamburger-entry li button span:first-child {
	margin-right: 10px;
	font-size: calc(2rem / 1.6);
}
.hamburger-entry li button span:last-child {
	font-size: calc(1.2rem / 1.6);
}
.hamburger-entry li button::before,
.hamburger-entry li button::after {
	display: none;
}
.hamburger-entry li ul {
	max-height: none;
	overflow: visible;
	transition: none;
}
.hamburger-entry li.is-open ul {
	max-height: none;
}
.hamburger-entry li:first-child ul li a {
	font-size: calc(1.8rem / 1.6);
}
.hamburger-entry li:last-child ul li a {
	font-size: calc(1.6rem / 1.6);
}
.nav-hamburger .menu > ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 40px;
}
.nav-hamburger .menu > ul > li:nth-child(3) {
	grid-row: span 2;
}
.nav-hamburger .menu > ul > li > ul > li > ul {
	grid-template-columns: repeat(2, 1fr);
	gap: 0 10px;
	margin-block: 30px 0;
}
.nav-hamburger .utility {
	display: grid;
	grid-template-columns: repeat(2, auto);
	justify-content: end;
	max-width: 1360px;
	margin-inline: auto;
}
.nav-hamburger .utility ul {
	margin: 0;
}
.nav-hamburger .utility ul:nth-child(1) {
	margin-bottom: 0;
	padding-left: 0;
	line-height: 1;
}
.nav-hamburger .utility .copyright {
	grid-column: span 2;
	margin-top: 20px;
	text-align: right;
}
}/* @media */
@media print, screen and (max-width: 1280px) and (min-width: 768px) {
.nav-hamburger .utility {
	min-height: 0;
}
.nav-hamburger .utility ul:nth-child(1) {
	margin-top: 0;
	padding-left: 0;
}
.nav-hamburger .utility ul:nth-child(2) {
	margin-bottom: 0;
}
.nav-hamburger .utility .copyright {
	padding-right: 0;
}
}/* @media */
@media print, screen and (max-width: 1023px) and (min-width: 768px) {/* TABLET */
.nav-hamburger .menu-wrap {
	display: block;
}
.hamburger-entry {
	width: auto;
	margin-bottom: 40px;
}
.hamburger-entry > ul {
	display: flex;
	gap: 0 40px;
}
.hamburger-entry > ul > li {
	width: 100%;
}
}/* @media */
@media (hover:hover) {
.hamburger-entry a {
	transition: opacity .3s;
}
.hamburger-entry a:hover {
	opacity: .8;
}
}/* @media */
/* -----------------------------------------------
= menu
----------------------------------------------- */
.menu {
	font-size: calc(1.3rem / 1.6);
}
.menu {
	border-bottom: 1px solid rgba(255,255,255,.3);
}
.menu p {
	position: relative;
	margin-bottom: 25px;
	padding: 0 0 10px 17px;
	border-bottom: 1px solid rgba(255,255,255,.3);
}
.menu p::before {
	content: "";
	position: absolute;
	top: .6em;
	left: 0;
	width: 6px;
	height: 6px;
	background: linear-gradient(120deg,var(--red),#7d1e69 65%,var(--blue));
	border-radius: 50%;
}
.menu p span {
	display: inline-block;
}
.menu p span:first-child {
	margin-right: .5em;
	font-family: var(--fig);
	font-size: calc(1.8rem / 1.6);
	font-weight: 600;
	letter-spacing: -.04em;
}
.menu p span:last-child {
	color: rgba(255,255,255,.3);
	font-size: calc(1rem / 1.6);
	font-weight: 500;
}
.menu ul {
	margin-bottom: 40px;
}
.menu li {
	margin-bottom: 20px;
	font-size: calc(1.3rem / 1.6);
	font-weight: 500;
	letter-spacing: .05em;
}
.menu li a {
	display: inline-block;
	position: relative;
	padding-left: 25px;
}
.menu li a::before {
	content: "";
	position: absolute;
	top: .6em;
	left: 0;
	width: 15px;
	height: 1px;
	background: rgba(255,255,255,.3);
}
@media print, screen and (min-width: 768px) {/* PC */
.menu {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 20px;
	border-bottom: none;
}
.menu ul {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
	gap: 0 40px;
}
.menu p {
	margin-bottom: 25px;
	padding: 0 0 15px 30px;
}
.menu p::before {
	top: .7em;
	width: 8px;
	height: 8px;
}
.menu p span:first-child {
	margin-right: 1em;
	font-size: calc(2.4rem / 1.6);
	letter-spacing: 0;
}
.menu p span:last-child {
	font-size: calc(1.2rem / 1.6);
}
.menu ul {
	margin-bottom: 35px;
}
.menu li {
	margin-bottom: 15px;
	font-size: calc(1.4rem / 1.6);
	letter-spacing: .04em;
}
.menu li a {
	padding-left: 30px;
}
.menu li a::before {
	top: .7em;
	width: 8px;
}
}/* @media */
@media (hover:hover) {
.menu a {
	transition: opacity .3s;
}
.menu a:hover {
	opacity: .8;
}
}/* @media */
/* -----------------------------------------------
= utility
----------------------------------------------- */
.utility {
	position: relative;
	padding-top: 40px;
}
.utility ul {
	display: inline-flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 -10px;
}
.utility ul:nth-child(1) {
	gap: 10px 20px;
}
.utility ul:nth-child(1) a {
	color: #fff;
	font-family: var(--fig);
	font-size: calc(1.2rem / 1.6);
}
.utility ul a[target="_blank"] {
	position: relative;
	padding-right: 15px;
}
.utility ul a[target="_blank"]::after {
	content: "";
	position: absolute;
	top: .25em;
	right: 0;
	width: 11px;
	height: 9px;
	background: url(/company/recruit/assets/img/icon_link_external.svg) no-repeat 50% / cover;
}
.utility ul:nth-child(2) {
	padding-block: 20px 40px;
}
.utility ul:nth-child(2) a {
	font-size: calc(1rem / 1.6);
	font-weight: 500;
}
.utility .copyright {
	font-size: calc(.9rem / 1.6);
	text-align: center;
}
@media print, screen and (min-width: 768px) {/* PC */
.utility {
	padding: 0;
}
.utility ul {
	gap: 10px;
	margin: 0;
	gap: 0 30px;
}
.utility ul:nth-child(1) {
	gap: 0 30px;
	margin-bottom: 5px;
	padding-left: 40px;
}
.utility ul:nth-child(1) a {
	font-size: calc(1.2rem / 1.6);
}
.utility ul a[target="_blank"] {
	padding-right: 22px;
}
.utility ul a[target="_blank"]::after {display:;
	top: .25em;
	width: 12px;
	height: 10px;
}
.utility ul:nth-child(2) {
	margin-left: 30px;
	padding: 0 0 0 30px;
	border-left: 1px solid rgba(255,255,255,.3);
	font-size: calc(1.2rem / 1.6);
}
.utility ul:nth-child(2) a {
	font-size: calc(1.2rem / 1.6);
}
.utility .copyright {
	font-size: calc(1.2rem / 1.6);
}
}/* @media */
@media print, screen and (max-width: 1280px) and (min-width: 768px) {
.utility {
	display: block;
	min-height: 100px;
}
.utility ul {
	justify-content: start;
	gap: 0 20px;
}
.utility ul:nth-child(1) {
	gap: 0 20px;
	margin-top: 15px;
	padding-left: 20px;
}
.utility ul:nth-child(2) {
	margin-left: 20px;
	margin-bottom: 10px;
	padding: 0;
	border-left: none;
}
.utility .copyright {
	float: right;
	padding-right: 120px;
}
}/* @media */
@media (hover:hover) {
.utility a {
	transition: opacity .3s;
}
.utility a:hover {
	opacity: .8;
}
}/* @media */
/* -----------------------------------------------
= main
----------------------------------------------- */
.main {
	margin-top: 45px;
}
@media print, screen and (min-width: 768px) {/* PC */
.main {
	margin-top: 110px;
}
}/* @media */
@media print, screen and (max-width: 1440px) and (min-width: 768px) {
.main {
	margin-top: 80px;
}
}/* @media */
/* -----------------------------------------------
= info
----------------------------------------------- */
.info {
	padding: 60px 20px;
	background: #f3f3f7;
}
.info h2 {
	margin-bottom: 35px;
	line-height: 1.4;
	text-align: center;
}
.info h2 span {
	display: block;
}
.info h2 span:first-child {
	font-family: var(--fig);
	font-size: calc(2.2rem / 1.6);
	font-weight: 600;
}
.info h2 span:last-child {
	font-size: calc(1.2rem / 1.6);
	font-weight: 500;
}
.info .box {
	padding: 28px 20px 30px;
	background: #fff;
}
.info .box + .box {
	margin-top: 20px;
}
.info .box p {
	margin-bottom: 30px;
}
.info .box p a {
	display: block;
	position: relative;
}
.info .box p a::before {
	content: "";
	position: absolute;
	top: calc(50% - 19px);
	right: 0;
	width: 38px;
	height: 38px;
	border: 1px solid #e2e2e7;
}
.info .box p a::after {
	content: "";
	position: absolute;
	top: calc(50% - 5.5px);
	right: 11px;
	width: 16px;
	height: 11px;
	background: url(/company/recruit/assets/img/icon_link_arrow.svg) no-repeat 50% / cover;
	filter: var(--filter-black);
}
.info .box p 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;
}
.info .box p a span:last-child {
	display: block;
	font-size: calc(1.8rem / 1.6);
	font-weight: 700;
	letter-spacing: .04em;
}
.info .box ul {
	border-top: 1px solid #e2e2e7;
}
.info .box li a {
	display: block;
	position: relative;
	padding: 20px 30px 20px 0;
	border-bottom: 1px solid #e2e2e7;
	font-size: calc(1.4rem / 1.6);
}
.info .box li a::before,
.info .box li a::after {
	content: "";
	position: absolute;
}
.info .box 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%;
}
.info .box li a::after {
	top: calc(50% - 2px);
	right: 9px;
	width: 4px;
	height: 4px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
}
.info .box li a span {
	font-size: calc(1.2rem / 1.6);
}
@media print, screen and (min-width: 768px) {/* PC */
.info {
	padding: 95px 40px 100px;
}
.info h2 {
	margin-bottom: 55px;
}
.info h2 span:first-child {
	font-size: calc(4.4rem / 1.6);
}
.info h2 span:last-child {
	font-size: calc(1.6rem / 1.6);
}
.info .inner {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 10px;
	max-width: 1360px;
	margin-inline: auto;
}
.info .box {
	padding: 40px 40px 60px;
}
.info .box + .box {
	margin-top: 0;
}
.info .box p {
	margin-bottom: 15px;
	padding-bottom: 40px;
	border-bottom: 1px solid #e2e2e7;
}
.info .box p a {
	padding-right: 70px;
}
.info .box p a::before {
	top: calc(50% - 32px);
	width: 64px;
	height: 64px;
}
.info .box p a::after {
	top: calc(50% - 7px);
	right: 23px;
	width: 20px;
	height: 14px;
}
.info .box p a span:first-child {
	top: 0;
	margin-bottom: 5px;
	font-size: calc(1.4rem / 1.6);
}
.info .box p a span:last-child {
	font-size: calc(2.4rem / 1.6);
}
.info .box ul {
	display: grid;
	grid-template-columns: 1fr 1.5fr 1fr;
	gap: 15px 40px;
	border-top: none;
}
.info .box + .box ul {
	display: block;
}
.info .box li a {
	padding: 20px 30px 20px 0;
	font-size: calc(1.6rem / 1.6);
	white-space: nowrap;
}
.info .box li a::before {
	top: calc(50% - 10px);
	width: 20px;
	height: 20px;
}
.info .box li a::after {
	top: calc(50% - 3px);
	right: 8px;
	width: 5px;
	height: 5px;
}
}/* @media */
@media print, screen and (max-width: 1280px) and (min-width: 768px) {
.info h2 span:first-child {
	font-size: calc(3.6rem / 1.6);
}
.info .box p a span:last-child {
	font-size: calc(2rem / 1.6);
}
.info .box ul {
	grid-template-columns: 1fr 1fr;
}
}/* @media */
@media print, screen and (max-width: 1023px) and (min-width: 768px) {
.info .inner {
	display: block;
}
.info .box + .box {
	margin-top: 10px;
}
}/* @media */
@media (hover:hover) {
.info .box p a::before {
	transition: border .3s;
}
.info .box p a:hover::before {
	border-color: var(--black);
}
.info .box li a {
	transition: border .3s;
}
.info .box li:hover a {
	border-bottom-color: var(--black);
}
}/* @media */
/* -----------------------------------------------
= footer
----------------------------------------------- */
.footer .recruit {
	position: relative;
	color: #fff;
	background: #484848;
	overflow: hidden;
}
.footer .recruit .img-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.footer .recruit .img-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(22,25,32,.6);
}
.footer .recruit .swiper {
	position: relative;
	overflow: hidden;
}
.footer .recruit .swiper::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}
.footer .recruit .swiper-wrapper {
	transition-timing-function: linear !important;
}
.footer .recruit .swiper-slide {
	width: 320px;
	height: 230px;
}
.footer .recruit .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.footer .recruit .set {
	padding: 46px 20px 54px;
	text-align: center;
}
.footer .recruit .name {
	position: relative;
	z-index: 1;
	margin-bottom: 15px;
	font-family: var(--fig);
	font-size: calc(1rem / 1.6);
	font-weight: 600;
}
.footer.js-inview .recruit .name {
	opacity: 0;
	transition: .8s 1.6s;
}
.footer.js-inview.is-show .recruit .name {
	opacity: 1;
}
.footer .recruit .copy {
	position: relative;
	z-index: 3;
	max-width: 310px;
	margin-inline: auto;
	text-align: center;
}
.footer .recruit .copy span {
	display: block;
	margin-bottom: 4px;
	padding-right: 4px;
	overflow: hidden;
}
.footer .recruit .copy span img {
	display: inline-block;
	width: auto;
	height: 29px;
	margin-right: -4px;
	filter: var(--filter-white);
}
.footer .recruit .copy span:first-child img:nth-child(1) {
	margin-right: -10px;
}
.footer .recruit .copy span:first-child img:nth-child(2) {
	margin-right: -8px;
}
.footer .recruit .copy span:first-child img:nth-child(4) {
	margin-right: -6px;
}
.footer .recruit .copy span:first-child img:nth-child(5) {
	margin-right: -6px;
}
.footer .recruit .copy span:first-child img:nth-child(6) {
	margin-right: 0;
}
.footer .recruit .copy span:first-child img:nth-child(9) {
	margin-right: -6px;
}
.footer .recruit .copy span:last-child img:nth-child(3) {
	margin-right: -8px;
}
.footer .recruit .copy span:last-child img:nth-child(4) {
	margin-right: -6px;
}
.footer .recruit .copy span:last-child img:nth-child(5) {
	margin-right: 2px;
}
.footer .recruit .copy span:last-child img:nth-child(6) {
	margin-right: -2px;
}
.footer .recruit .copy span:last-child img:nth-child(7) {
	margin-right: -2px;
}
.footer.js-inview .recruit .copy span img {
	opacity: 0;
	transform: translateY(100%);
	transform-origin: 50% 100%;
	transition-duration: .8s;
}
.footer.js-inview.is-show .recruit .copy span img {
	opacity: 1;
	transform: translateY(0);
}
.footer .recruit .copy span img:nth-child(1) {
	transition-delay: 1.6s;
}
.footer .recruit .copy span img:nth-child(2) {
	transition-delay: 1.7s;
}
.footer .recruit .copy span img:nth-child(3) {
	transition-delay: 1.8s;
}
.footer .recruit .copy span img:nth-child(4) {
	transition-delay: 1.9s;
}
.footer .recruit .copy span img:nth-child(5) {
	transition-delay: 2s;
}
.footer .recruit .copy span img:nth-child(6) {
	transition-delay: 2.1s;
}
.footer .recruit .copy span img:nth-child(7) {
	transition-delay: 2.2s;
}
.footer .recruit .copy span img:nth-child(8) {
	transition-delay: 2.3s;
}
.footer .recruit .copy span img:nth-child(9) {
	transition-delay: 2.4s;
}
.footer .recruit .copy span img:nth-child(10) {
	transition-delay: 2.5s;
}
.footer .recruit .copy span img:nth-child(11) {
	transition-delay: 2.6s;
}
.footer .recruit .copy span img:nth-child(12) {
	transition-delay: 2.7s;
}
.footer .recruit .copy span img:nth-child(13) {
	transition-delay: 2.8s;
}
.footer .recruit .entry {
	position: relative;
	z-index: 1;
	padding: 0 20px;
}
.footer .recruit .entry li + li {
	margin-top: 10px;
}
.footer .recruit .entry li a {
	display: block;
	position: relative;
	padding: 20px 56px 20px 20px;
	background: var(--grad-orix);
}
.footer .recruit .entry li a::before {
	content: "";
	position: absolute;
	top: calc(50% - 12px);
	right: 56px;
	width: 1px;
	height: 24px;
	background: rgba(255,255,255,.3);
}
.footer .recruit .entry li a::after {
	content: "";
	position: absolute;
	top: calc(50% - 5.5px);
	right: 20px;
	width: 18px;
	height: 13px;
	background: url(/company/recruit/assets/img/icon_link_arrow.svg) no-repeat 50% / cover;
	filter: var(--filter-white);
}
.footer .recruit .entry li a span:first-child {
	margin-right: .5em;
	font-size: calc(1.8rem / 1.6);
	font-weight: 700;
	letter-spacing: -.025em;
}
.footer .recruit .entry li a span:last-child {
	font-family: var(--fig);
	font-size: calc(1rem / 1.6);
	font-weight: 500;
}
.footer.js-inview .recruit .line {
	opacity: 0;
	transition: .8s .8s;
}
.footer.js-inview.is-show .recruit .line {
	opacity: 1;
	animation: mask .8s ease-in-out .8s forwards;
}
.footer .recruit .line {
	position: absolute;
	width: 80px;
	height: 14px;
	z-index: 2;
}
@keyframes mask {
	0% {
		clip-path: inset(0 100% 0 0);
	}
	50% {
		clip-path: inset(0);
	}
	100% {
		clip-path: inset(0);
		opacity: 1;
	}
}
.footer .recruit .line.type01 {
	top: 20px;
	left: -40px;
	background: var(--grad-blue);
}
.footer .recruit .line.type02 {
	top: 44px;
	left: -10px;
	background: var(--grad-red);
}
.footer .recruit .line.type03 {
	top: 127px;
	right: -10px;
	background: var(--grad-red);
}
.footer .recruit .line.type04 {
	top: 152px;
	right: 20px;
	background: var(--grad-blue);
}
.footer .inner {
	position: relative;
	margin-top: -110px;
	padding: 150px 20px 0;
	color: #fff;
	background: var(--black);
}
.footer .utility ul {
	margin: 0 10px 0 0;
}
.footer .copyright {
	padding: 35px 0 85px;
	border-top: 1px solid rgba(255,255,255,.3);
	text-align: left;
}
.footer .pagetop {
	position: absolute;
	right: 0;
	bottom: 70px;
	z-index: 4;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255,255,255,.3);
}
.footer .pagetop img {
	display: block;
	width: 16px;
	height: 10px;
	margin: 14px auto;
	transform: rotate(-90deg);
	filter: var(--filter-white);
}
@media print, screen and (min-width: 768px) {/* PC */
.footer .recruit .swiper-slide {
	width: 640px;
	height: 460px;
}
.footer .recruit .set {
	padding: 118px 20px 88px;
}
.footer .recruit .name {
	margin-bottom: 30px;
	font-size: calc(1.6rem / 1.6);
}
.footer .recruit .copy {
	max-width: 600px;
}
.footer .recruit .copy span {
	margin-bottom: 10px;
}
.footer .recruit .copy span img {
	height: 59px;
}
.footer .recruit .entry {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
	gap: 20px 40px;
	max-width: 1360px;
	margin: 0 auto;
}
.footer .recruit .entry li + li {
	margin-top: 0;
}
.footer .recruit .entry li a {
	padding: 42px 120px 42px 40px;
}
.footer .recruit .entry li a::before {
	top: calc(50% - 24px);
	right: 116px;
	height: 48px;
}
.footer .recruit .entry li a::after {
	top: calc(50% - 12.5px);
	right: 39px;
	width: 36px;
	height: 25px;
}
.footer .recruit .entry li a span:first-child {
	margin-right: .5em;
	font-size: calc(3rem / 1.6);
}
.footer .recruit .entry li a span:last-child {
	font-size: calc(1.2rem / 1.6);
}
.footer .recruit .line {
	width: 220px;
	height: 20px;
}
.footer .recruit .line.type01 {
	top: 230px;
	left: 240px;
}
.footer .recruit .line.type02 {
	top: 170px;
	left: 169px;
}
.footer .recruit .line.type03 {
	top: 230px;
	right: 219px;
}
.footer .recruit .line.type04 {
	top: 169px;
	right: 103px;
}
.footer .inner {
	margin-top: -64px;
	padding: 150px 0 0;
}
.footer .utility {
	display: grid;
	grid-template-columns: auto auto 1fr 100px;
	align-items: center;
	border-top: 1px solid rgba(255,255,255,.3);
}
.utility ul:nth-child(1) {
	line-height: 1;
}
.utility ul:nth-child(2) {
	margin-left: 30px;
}
.footer .copyright {
	padding: 0 40px;
	border-top: none;
	font-size: calc(1.2rem / 1.6);
	text-align: right;
}
.footer .pagetop {
	position: static;
	width: 99px;
	height: 100px;
	border: none;
	border-left: 1px solid rgba(255,255,255,.3);
}
.footer .pagetop img {
	width: 20px;
	height: 14px;
	margin: 40px auto;
}
}/* @media */
@media print, screen and (max-width: 1539px) and (min-width: 768px) {
.footer .recruit .line.type01 {
	left: 69px;
}
.footer .recruit .line.type02 {
	left: 0;
}
.footer .recruit .line.type03 {
	right: 117px;
}
.footer .recruit .line.type04 {
	right: 11px;
}
}/* @media */
@media print, screen and (max-width: 1279px) and (min-width: 768px) {
.footer .utility ul {
}
.footer .utility ul:nth-child(1) {
	grid-column: 1;
}
.footer .utility ul:nth-child(2) {
	grid-column: 2;
	margin-right: 20px;
}
.footer .copyright {
	grid-column: span 2;
	grid-row: 2;
	padding: 0 20px 0 0;
}
.footer .pagetop {
	grid-column: 3;
	grid-row: span 2;
	position: absolute;
	right: 0;
	bottom: 0;
}
}/* @media */
@media print, screen and (max-width: 860px) and (min-width: 768px) {
.footer .utility ul:nth-child(2) {
	grid-column: 1;
	margin-left: 20px;
}
.footer .copyright {
	grid-column: 1;
	grid-row: 3;
	padding: 0 0 0 20px;
}
}/* @media */
@media (hover:hover) {
.footer .recruit .entry li a {
	background: linear-gradient(90deg,var(--red),var(--blue) 50%,var(--red));
	background-size: 200% 100%;
	background-position: 0 0;
	transition: background .3s;
}
.footer .recruit .entry li a:hover {
	background-position: 100% 0;
}
}/* @media */
/* -----------------------------------------------
= fix-link
----------------------------------------------- */
.fix-link {
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 5;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}
.is-scrolled .fix-link {
	opacity: 1;
	pointer-events: auto;
}
.fix-link ul {
	display: flex;
	color: #fff;
	background: var(--grad-orix);
}
.fix-link li {
	width: 100%;
	font-size: calc(1.5rem / 1.6);
	font-weight: 700;
	letter-spacing: -.025rem;
}
.fix-link li a {
	display: block;
	position: relative;
	padding: 14px 40px 15px 15px;
}
.fix-link li + li a {
	border-left: 1px solid rgba(255,255,255,.3);
}
.fix-link li a::after {
	content: "";
	position: absolute;
	top: calc(50% - 5.5px);
	right: 16px;
	width: 18px;
	height: 13px;
	background: url(../../../../company/recruit/assets/img/icon_link_arrow.svg) no-repeat 50% / cover;
	filter: var(--filter-white);
}
/* -----------------------------------------------
= modal
----------------------------------------------- */
.modal {
	display: none;
	position: fixed;
	inset: 0;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}
.modal[aria-hidden="false"] {
	display: flex;
}
.modal-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.8);
	opacity: 0;
	transition: opacity .3s ease;
}
.modal-dialog {
	position: relative;
	z-index: 1;
	max-width: 1360px;
	width: calc(100% - 40px);
	max-height: calc(100svh - 100px);
	margin-inline: auto;
	margin: 50px 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	opacity: 0;
	transition: transform .3s ease, opacity .3s ease;
}
.modal[aria-hidden="false"],
.modal-overlay {
	opacity: 1;
}
.modal[aria-hidden="false"],
.modal-dialog {
	opacity: 1;
}
.modal-content .modal-close {
	display: block;
	position: relative;
	width: 100%;
	padding-block: 16px;
	color: #fff;
	background: #373737;
	font-family: var(--fig);
	font-size: calc(1.2rem / 1.6);
	font-weight: 600;
	text-align: center;
	letter-spacing: .025em;
}
.modal-content .modal-close::before,
.modal-content .modal-close::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 10px;
	height: 1px;
	background: #fff;
}
.modal-content .modal-close::before {
	transform: rotate(-45deg);
}
.modal-content .modal-close::after {
	transform: rotate(45deg);
}
@media print, screen and (min-width: 768px) {/* PC */
.modal-dialog {
	max-width: 1360px;
	width: calc(100% - 100px);
	margin: 60px 0;
}
.modal-content .modal-close {
	width: 250px;
	margin-inline: auto;
	padding: 22px 25px;
	font-size: calc(1.6rem / 1.6);
	text-align: left;
	letter-spacing: 0;
}
.modal-content .modal-close::before,
.modal-content .modal-close::after {
	right: 25px;
	width: 18px;
	height: 2px;
}
}/* @media */
@media (hover:hover) {
.modal-content .modal-close {
	border: 1px solid #373737;
	transition: .3s;
}
.modal-content .modal-close:hover {
	color: #373737;
	background: #fff;
}
.modal-content .modal-close::before,
.modal-content .modal-close::after {
	transition: background .3s;
}
.modal-content .modal-close:hover::before,
.modal-content .modal-close:hover::after {
	background: #373737;
}
}/* @media */



