@charset "UTF-8";
/* ---------------------------------------
基本情報
-----------------------------------------*/
html {
	font-size: 62.5%;
	overflow-y: scroll;
}
@media screen and (max-width: 1440px) {
	html {
		font-size: 0.6944444444vw;
	}
}
@media screen and (max-width: 767px) {
	html {
		font-size: 2.5641025641vw;
	}
}

*,
*:after,
*:before {
	box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
time,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
figure,
figcaption,
form,
input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	letter-spacing: 0;
	list-style-type: none;
	font-style: normal;
	font-weight: 500;
	font-family: "M PLUS 2", sans-serif;
	word-break: normal;
	overflow-wrap: break-word;
	line-break: strict;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	resize: none;
	outline: none;
	background: none;
}

select::-ms-expand {
	display: none;
}

button:hover {
	cursor: pointer;
}

img,
object {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

.preload* {
	transition: none !important;
}

@media screen and (max-width: 767px) {
	img {
		width: 100%;
	}
}
/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 767px) {
	.pc {
		display: none !important;
	}
}
/* base
--------------------------------*/
body {
	color: #1A1A1A;
	font-size: 1rem;
	text-align: left;
	background-color: #FEFEFE;
}

.main {
	display: block;
	background-color: #FEFEFE;
}

section {
	position: relative;
}

.wrap {
	position: relative;
	width: 100%;
	max-width: 135.2rem;
	padding: 0 2rem;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.wrap {
		padding: 0 1.6rem;
	}
}

p,
th,
td,
dt,
dd,
li,
input,
button,
textarea {
	font-size: 1.6rem;
	line-height: 2;
}
@media screen and (max-width: 767px) {
	p,
	th,
	td,
	dt,
	dd,
	li,
	input,
	button,
	textarea {
		font-size: 1.5rem;
		line-height: 1.7333333333;
	}
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.5;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.flex.reverse {
	flex-direction: row-reverse;
}

.left {
	float: left;
}

.right {
	float: right;
}

.tal {
	text-align: left;
}

.tar {
	text-align: right;
}

.tac {
	text-align: center;
}

.center {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.bold,
strong {
	font-weight: bold;
	font-weight: 700;
}

.fixed {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.en, .dela {
	font-family: "Dela Gothic One", sans-serif;
}

._white {
	color: #FEFEFE;
}

._orange {
	color: #FD7D05;
}

._blue {
	color: #245FF3;
}

@media screen and (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
	}
	.fade {
		cursor: pointer;
		transition: opacity 0.3s ease-out;
	}
	.fade:hover {
		opacity: 0.6;
	}
}
/* animation
--------------------------------*/
.fadeup {
	opacity: 0;
	transform: translateY(3rem);
	transition: opacity 1s, transform 1s;
}

.fadein {
	opacity: 0;
	transition: opacity 1s;
}

.popin {
	opacity: 0;
	scale: 0;
	transition: opacity 0.2s ease, scale 0.2s ease;
}

.scroll.is-show.fadeup,
.scroll.is-show .fadeup {
	opacity: 1;
	transform: translate(0, 0);
}

.scroll.is-show.fadein,
.scroll.is-show .fadein {
	opacity: 1;
}

.is-show.popin,
.is-show .popin {
	opacity: 1;
	scale: 1;
}

/* ---------------------------------------
  main common
-----------------------------------------*/
@keyframes animeWave {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: var(--mask-size) 0;
	}
}
/* bg
--------------------------------*/
.bg_black {
	background-color: #1A1A1A;
}

.bg_white {
	background-color: #FEFEFE;
}

.bg_orange {
	background-color: #FD7D05;
}

.bg_yellow {
	background-color: #FFE41B;
}

.bg_green {
	background-color: #37E5C3;
}

.bg_blue {
	background-color: #245FF3;
}

/* 部署別カラー
--------------------------------*/
:root {
	/* 製販営業本部 */
	--dept-sales: #58BAF8;
	/* 海外営業部 */
	--dept-global-sales: #37E5C3;
	/* 製販技術本部 */
	--dept-technical: #FFB711;
	/* 設計本部 */
	--dept-design: #7CDE52;
	/* 工事本部 */
	--dept-construction: #FD7D05;
	/* 管理本部 */
	--dept-administration: #FF8492;
}

.department_label._sales {
	background-color: var(--dept-sales);
}
.department_label._global-sales {
	background-color: var(--dept-global-sales);
}
.department_label._technical {
	background-color: var(--dept-technical);
}
.department_label._design {
	background-color: var(--dept-design);
}
.department_label._construction {
	background-color: var(--dept-construction);
}
.department_label._administration {
	background-color: var(--dept-administration);
}

/* page_ttl
--------------------------------*/
#page_ttl {
	padding-top: 26.6rem;
}
@media screen and (max-width: 767px) {
	#page_ttl {
		padding-top: 18.1rem;
	}
}
#page_ttl .page_head {
	width: 100%;
	height: 33rem;
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
}
@media screen and (min-width: 1441px) {
	#page_ttl .page_head {
		height: calc(15.5rem + 12.1527777778vw);
	}
}
@media screen and (max-width: 767px) {
	#page_ttl .page_head {
		height: 15rem;
		padding-top: 13.3rem;
	}
}
#page_ttl .page_head::after {
	content: "";
	width: 100%;
	display: block;
	height: 17.5rem;
	background: url(../../img/recruit/common/pagehead_bg.png) no-repeat center top/cover;
	position: absolute;
	left: 0;
	top: 15.5rem;
	z-index: 1;
}
@media screen and (min-width: 1441px) {
	#page_ttl .page_head::after {
		height: 12.1527777778vw;
	}
}
@media screen and (max-width: 767px) {
	#page_ttl .page_head::after {
		height: 13.5rem;
		top: 13.3rem;
	}
}
#page_ttl .page_head .mascot {
	position: absolute;
	z-index: 1;
}
#page_ttl .page_head .mascot._01 {
	width: 32.55rem;
	left: calc(50% - 55.5rem);
	bottom: 8rem;
}
@media screen and (min-width: 1441px) {
	#page_ttl .page_head .mascot._01 {
		left: calc(50% - 38.5416666667vw);
		bottom: 5.5555555556vw;
	}
}
@media screen and (max-width: 767px) {
	#page_ttl .page_head .mascot._01 {
		width: 12.8rem;
		left: 4.85rem;
		bottom: -0.5rem;
	}
	#page_ttl .page_head .mascot._01 img {
		rotate: 9deg;
	}
}
#page_ttl .page_head .mascot._01 .fukidashi {
	width: 20.9rem;
	height: 9.8rem;
	font-size: 1.7rem;
	line-height: 1.1;
	letter-spacing: 0.1em;
	padding: 2rem 1.5rem 2rem 2rem;
	background: url(../../img/recruit/common/pagehead_fukidashi.svg) no-repeat center/100% 100%;
	position: absolute;
	left: -10.3rem;
	top: 4.1rem;
}
@media screen and (max-width: 767px) {
	#page_ttl .page_head .mascot._01 .fukidashi {
		width: 13rem;
		height: 6rem;
		font-size: 1.06rem;
		padding: 1.3rem 0.5rem 1rem 1.4rem;
		left: -4rem;
		top: -3.3rem;
	}
}
#page_ttl .page_head .mascot._01 .fukidashi span {
	color: #FD7D05;
	letter-spacing: 0;
	margin-right: 0.9rem;
}
@media screen and (max-width: 767px) {
	#page_ttl .page_head .mascot._01 .fukidashi span {
		margin-right: 0.4rem;
	}
}
#page_ttl .page_head .mascot._02 {
	width: 21.2rem;
	right: calc(50% - 45rem);
	bottom: 9.4rem;
}
@media screen and (min-width: 1441px) {
	#page_ttl .page_head .mascot._02 {
		right: calc(50% - 31.25vw);
		bottom: 6.5277777778vw;
	}
}
@media screen and (max-width: 767px) {
	#page_ttl .page_head .mascot._02 {
		width: 8.4rem;
		right: auto;
		left: 14.7rem;
		bottom: -0.2rem;
	}
	#page_ttl .page_head .mascot._02 img {
		rotate: -9.5deg;
	}
}
#page_ttl .ttl {
	position: relative;
	z-index: 2;
	--mask-size: 4.9rem;
}
@media screen and (max-width: 767px) {
	#page_ttl .ttl {
		--mask-size: 3rem;
	}
}
#page_ttl .ttl .en {
	display: inline-block;
	font-size: 12.8rem;
	line-height: 1;
	padding-bottom: 3rem;
	position: relative;
}
@media screen and (max-width: 767px) {
	#page_ttl .ttl .en {
		font-size: 6.4rem;
		white-space: nowrap;
		padding-bottom: 1.6rem;
	}
}
#page_ttl .ttl .en::after {
	content: "";
	width: 100%;
	height: 1.6rem;
	background-image: url(../../img/recruit/common/ttl_wave.png);
	background-repeat: repeat-x;
	background-size: var(--mask-size) auto;
	background-position: 0 0;
	background-color: transparent;
	animation: animeWave 1s linear infinite;
	position: absolute;
	left: 0;
	bottom: 0;
}
@media screen and (max-width: 767px) {
	#page_ttl .ttl .en::after {
		height: 1rem;
	}
}
#page_ttl .ttl .en .deco {
	display: inline-block;
	position: relative;
}
#page_ttl .ttl .en .deco::before {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
}
#page_ttl .ttl .ja {
	display: block;
	font-weight: 700;
	font-size: 3.2rem;
	line-height: 1.3125;
	margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
	#page_ttl .ttl .ja {
		font-size: 2rem;
		line-height: 1.5;
		margin-top: 1rem;
	}
}

.btn a {
	width: 22.4rem;
	height: 8.4rem;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	background-color: #FEFEFE;
	mask-image: url(../../img/recruit/common/btn_bg.svg);
	-webkit-mask-image: url(../../img/recruit/common/btn_bg.svg);
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-size: 100% 100%;
	-webkit-mask-size: 100% 100%;
	mask-position: center;
	-webkit-mask-position: center;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	transition: all 0.3s ease-out;
}
@media screen and (max-width: 767px) {
	.btn a {
		width: 16.7rem;
		height: 6.3rem;
	}
}
.btn a::before {
	content: "";
	width: 100%;
	height: 100%;
	background: url(../../img/recruit/common/btn_stroke.svg) no-repeat center/100% 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
.btn a .btn_txt {
	display: flex;
	justify-content: flex-start;
	gap: 0 1.2rem;
	font-size: 2.4rem;
	line-height: 1;
	white-space: nowrap;
	will-change: transform;
	animation: animeMarquee var(--dur, 30s) linear infinite;
}
@media screen and (max-width: 767px) {
	.btn a .btn_txt {
		gap: 0 0.9rem;
		font-size: 1.8rem;
		line-height: 1.2777777778;
	}
}
.btn a .btn_txt > span {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
}
.btn a .btn_txt > span::after {
	content: "";
	width: 0.9rem;
	height: 1.4rem;
	background-color: #1A1A1A;
	mask-image: url(../../img/recruit/common/btn_arw.svg);
	-webkit-mask-image: url(../../img/recruit/common/btn_arw.svg);
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-size: 100% 100%;
	-webkit-mask-size: 100% 100%;
	mask-position: center;
	-webkit-mask-position: center;
	margin-left: 1.2rem;
	margin-top: 0.1rem;
	transition: background-color 0.3s ease-out;
}
@media screen and (max-width: 767px) {
	.btn a .btn_txt > span::after {
		width: 0.7rem;
		height: 1rem;
		margin-left: 0.9rem;
		margin-top: 0.2rem;
	}
}
@media screen and (min-width: 768px) {
	.btn a:hover {
		color: #FEFEFE;
		background-color: #1A1A1A;
	}
	.btn a:hover .btn_txt > span::after {
		background-color: #FEFEFE;
	}
}

@keyframes animeMarquee {
	from {
		transform: translateX(calc(-1 * var(--shift, 0px)));
	}
	to {
		transform: translateX(0);
	}
}
/* ---------------------------------------
  header
-----------------------------------------*/
#header {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 999;
}
#header .header_wrap .logo {
	width: 19.55rem;
	position: absolute;
	left: 3.2rem;
	top: 3.5rem;
}
@media screen and (max-width: 767px) {
	#header .header_wrap .logo {
		width: 11.7rem;
		left: 0.8rem;
		top: 1rem;
	}
}
#header .header_wrap .logo a {
	display: block;
	width: 100%;
	height: 100%;
}
#header .header_wrap .logo img {
	width: 100%;
}
#header .nav_wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	position: fixed;
	right: 4.8rem;
	top: 3.2rem;
	z-index: 100;
}
@media screen and (max-width: 767px) {
	#header .nav_wrap {
		right: 1.6rem;
		top: 1.5rem;
	}
}
#header .btn._entry a {
	color: #FEFEFE;
	background-color: #FD7D05;
}
@media screen and (max-width: 767px) {
	#header .btn._entry a {
		width: 12.9rem;
		height: 4.9rem;
	}
}
#header .btn._entry a::before {
	background-image: url(../../img/recruit/common/btn_entry_stroke.svg);
}
#header .btn._entry a .btn_txt {
	font-size: 3.2rem;
	padding-bottom: 0.25em;
}
@media screen and (max-width: 767px) {
	#header .btn._entry a .btn_txt {
		font-size: 1.8rem;
	}
}
#header .btn._entry a .btn_txt > span::after {
	content: none;
}
#header .btn._entry a:hover {
	color: #FD7D05;
	background-color: #1A1A1A;
}
#header .menu_trigger {
	width: 11.2rem;
	height: 4.3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	position: relative;
	margin-top: 3.2rem;
	margin-right: 1.6rem;
}
@media screen and (max-width: 767px) {
	#header .menu_trigger {
		width: 8rem;
		height: 3rem;
		margin-top: 2.4rem;
		margin-right: 0.8rem;
	}
}
#header .menu_trigger svg {
	width: 100%;
	height: 100%;
	display: block;
}
#header .menu_trigger svg path {
	transition: fill 0.3s ease-out;
}
#header .menu_trigger .ico {
	width: 5.1rem;
	height: 1.5rem;
	position: absolute;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	#header .menu_trigger .ico {
		width: 3.6rem;
		height: 1rem;
	}
}
#header .menu_trigger .ico span {
	width: 100%;
	height: 0.3rem;
	background-color: #FEFEFE;
	border-radius: 100vh;
	position: absolute;
	left: 0;
	transition: all 0.3s ease-out;
}
@media screen and (max-width: 767px) {
	#header .menu_trigger .ico span {
		height: 0.175rem;
	}
}
#header .menu_trigger .ico span:nth-child(1) {
	top: 0;
}
#header .menu_trigger .ico span:nth-child(2) {
	top: calc(100% - 0.3rem);
}
@media screen and (max-width: 767px) {
	#header .menu_trigger .ico span:nth-child(2) {
		top: calc(100% - 0.175rem);
	}
}
#header .menu_trigger .txt {
	display: block;
	text-align: center;
	color: #FEFEFE;
	font-size: 1.2rem;
	line-height: 1.4166666667;
	letter-spacing: 0.15em;
	margin-top: 0.9rem;
}
@media screen and (max-width: 767px) {
	#header .menu_trigger .txt {
		font-size: 1.2rem;
		margin-top: 0.4rem;
	}
}
@media screen and (min-width: 768px) {
	#header .menu_trigger:hover svg path {
		fill: #FEFEFE;
	}
	#header .menu_trigger:hover .ico span {
		background-color: #1A1A1A;
	}
}
#header.navOpen .menu_trigger svg path {
	fill: #FEFEFE;
}
#header.navOpen .menu_trigger .ico span {
	background-color: #1A1A1A;
	top: 0.6rem;
}
@media screen and (max-width: 767px) {
	#header.navOpen .menu_trigger .ico span {
		top: 0.4rem;
	}
}
#header.navOpen .menu_trigger .ico span:nth-child(1) {
	rotate: 19deg;
}
#header.navOpen .menu_trigger .ico span:nth-child(2) {
	rotate: -19deg;
}
#header .header_nav {
	display: none;
	width: fit-content;
	padding: 1.3rem 2.1rem;
	background-color: #FEFEFE;
	border: 0.3rem solid #1A1A1A;
	border-radius: 1.6rem;
	margin-top: 1.6rem;
	z-index: 99;
}
@media screen and (max-width: 767px) {
	#header .header_nav {
		padding: 1.4rem;
		border: 0.2rem solid #1A1A1A;
		margin-top: 0.8rem;
	}
}
#header .header_nav .nav_list {
	font-family: "Dela Gothic One", sans-serif;
}
#header .header_nav .nav_list .item {
	text-align: right;
	font-size: 2rem;
	line-height: 1.2;
	letter-spacing: 0.05em;
	white-space: nowrap;
}
@media screen and (max-width: 767px) {
	#header .header_nav .nav_list .item {
		font-size: 1.6rem;
		line-height: 1.1875;
	}
}
#header .header_nav .nav_list .item + .item {
	margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
	#header .header_nav .nav_list .item + .item {
		margin-top: 2rem;
	}
}
#header .header_nav .nav_list .item a {
	display: inline-flex;
	align-items: center;
	transition: color 0.3s ease-out;
}
@media screen and (min-width: 768px) {
	#header .header_nav .nav_list .item a:hover {
		color: #FD7D05;
	}
}
#header .header_nav .nav_list .item a::after {
	content: "";
	width: 0.9rem;
	height: 1.4rem;
	background-color: #FD7D05;
	mask-image: url(../../img/recruit/common/btn_arw.svg);
	-webkit-mask-image: url(../../img/recruit/common/btn_arw.svg);
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-size: 100% 100%;
	-webkit-mask-size: 100% 100%;
	mask-position: center;
	-webkit-mask-position: center;
	margin-left: 1.2rem;
}
@media screen and (max-width: 767px) {
	#header .header_nav .nav_list .item a::after {
		width: 0.6rem;
		height: 0.8rem;
		margin-left: 0.8rem;
	}
}

/* ---------------------------------------
footer
-----------------------------------------*/
#footer {
	color: #FEFEFE;
	position: relative;
	padding: 12.5rem 0 0;
	background-color: #1A1A1A;
}
@media screen and (min-width: 1441px) {
	#footer {
		padding: 8.6805555556vw 0 0;
	}
}
@media screen and (max-width: 767px) {
	#footer {
		padding: 6.25rem 0 0;
	}
}
#footer::before {
	content: "";
	display: block;
	width: 100%;
	height: 12.5rem;
	background: #FEFEFE url(../../img/recruit/common/footer_bg.png) no-repeat center bottom -1px/cover;
	position: absolute;
	left: 0;
	top: 0;
}
@media screen and (min-width: 1441px) {
	#footer::before {
		height: 8.6805555556vw;
	}
}
@media screen and (max-width: 767px) {
	#footer::before {
		height: 6.25rem;
	}
}
#footer .footer_contents {
	padding: 0 0 4rem;
	position: relative;
	overflow: hidden;
}
@media screen and (max-width: 767px) {
	#footer .footer_contents {
		padding: 3.4rem 0 2.4rem;
	}
}
@media screen and (min-width: 768px) {
	#footer .wrap {
		max-width: 100%;
		padding: 0;
		z-index: 1;
	}
}
#footer .inner {
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 767px) {
	#footer .inner {
		display: block;
	}
}
#footer .footer_mascot {
	flex: 1;
	position: relative;
}
@media screen and (max-width: 767px) {
	#footer .footer_mascot {
		position: absolute;
		right: 6.5rem;
		bottom: 3.6rem;
	}
}
#footer .footer_mascot .mascot_wrap {
	width: 18.1rem;
}
@media screen and (min-width: 768px) {
	#footer .footer_mascot .mascot_wrap {
		position: absolute;
		left: 6.4rem;
		bottom: 3.6rem;
	}
}
@media screen and (max-width: 767px) {
	#footer .footer_mascot .mascot_wrap {
		width: 12.6rem;
	}
}
#footer .footer_mascot .mascot_wrap .mascot .fukidashi {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 13.8rem;
	height: 7.4rem;
	text-align: center;
	color: #1A1A1A;
	font-size: 1.4rem;
	line-height: 1.1428571429;
	padding: 1rem 0.6rem 2rem;
	background: url(../../img/recruit/common/footer_mascot_fukidashi.svg) no-repeat center/100% 100%;
	position: absolute;
	right: -7rem;
	top: -6rem;
	transition: rotate 0.2s ease;
}
@media screen and (max-width: 767px) {
	#footer .footer_mascot .mascot_wrap .mascot .fukidashi {
		width: 9.7rem;
		height: 5.3rem;
		font-size: 0.98rem;
		padding: 0.5rem 0.2rem 1.2rem;
		left: auto;
		right: -5rem;
		top: -4.2rem;
	}
}
#footer .footer_mascot .mascot_wrap .mascot._02 {
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	opacity: 0;
}
#footer .footer_mascot .mascot_wrap.is-tilt .mascot .fukidashi {
	rotate: 15deg;
}
#footer .footer_entry {
	width: 67.2rem;
	margin-top: 6.3rem;
}
@media screen and (max-width: 767px) {
	#footer .footer_entry {
		width: 100%;
		margin-top: 0;
	}
}
#footer .footer_entry a {
	display: block;
}
#footer .footer_entry .ttl {
	color: #FD7D05;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.4166666667;
	letter-spacing: 0.2em;
	margin-left: 1rem;
}
@media screen and (max-width: 767px) {
	#footer .footer_entry .ttl {
		font-size: 1.6rem;
		line-height: 1.375;
		margin-left: 0.5rem;
	}
}
#footer .footer_entry .ttl .en {
	display: block;
	font-weight: 400;
	font-size: 12.8rem;
	line-height: 1;
	letter-spacing: 0;
	margin-top: -1rem;
}
@media screen and (max-width: 767px) {
	#footer .footer_entry .ttl .en {
		font-size: 6.4rem;
		margin-top: -0.5rem;
	}
}
#footer .footer_entry .ttl .en span {
	display: inline-block;
	rotate: 20deg;
	margin-left: 0.5rem;
}
#footer .footer_entry .txt_wrap {
	position: relative;
}
#footer .footer_entry .txt_wrap .txt {
	width: 100%;
	font-size: 3.2rem;
	line-height: 1.59375;
	position: relative;
	transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
	#footer .footer_entry .txt_wrap .txt {
		font-size: 1.7rem;
		line-height: 1.5882352941;
	}
}
#footer .footer_entry .txt_wrap .txt._01 {
	color: #FD7D05;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding-top: 3rem;
}
@media screen and (max-width: 767px) {
	#footer .footer_entry .txt_wrap .txt._01 {
		padding-top: 1.6rem;
	}
}
#footer .footer_entry .txt_wrap .txt._01::before, #footer .footer_entry .txt_wrap .txt._01::after {
	content: "";
	width: 10.8rem;
	height: 15.5rem;
	background: url(../../img/recruit/common/footer_entry_fukidashi.svg) no-repeat center top/contain;
	position: absolute;
	top: 3.5rem;
}
@media screen and (max-width: 767px) {
	#footer .footer_entry .txt_wrap .txt._01::before, #footer .footer_entry .txt_wrap .txt._01::after {
		width: 5.7rem;
		height: 8.2rem;
		top: 1.8rem;
	}
}
#footer .footer_entry .txt_wrap .txt._01::before {
	left: 0;
}
#footer .footer_entry .txt_wrap .txt._01::after {
	right: 1.5rem;
	scale: -1 1;
}
@media screen and (max-width: 767px) {
	#footer .footer_entry .txt_wrap .txt._01::after {
		right: 0.4rem;
	}
}
#footer .footer_entry .txt_wrap .txt._02 {
	color: #FEFEFE;
	letter-spacing: 0.05em;
	opacity: 0;
	position: absolute;
	top: 0;
}
#footer .footer_entry .txt_wrap .txt._02::after {
	content: "";
	width: 4.3rem;
	height: 5.4rem;
	background: url(../../img/recruit/common/footer_entry_pointer.svg) no-repeat center top/contain;
	position: absolute;
	left: calc(50% - 3.5rem);
	right: 0;
	bottom: -6rem;
	animation: animePointer 1s linear infinite;
}
@media screen and (max-width: 767px) {
	#footer .footer_entry .txt_wrap .txt._02::after {
		width: 2.2rem;
		height: 2.8rem;
		left: calc(50% - 1.2rem);
		bottom: -3.5rem;
	}
}
#footer .footer_entry .txt_wrap .txt._02 span {
	font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
	#footer .footer_entry .txt_wrap .txt._02 span {
		font-size: 2.5rem;
	}
}
#footer .footer_entry .hole_wrap {
	width: 42.6rem;
	margin: 4.6rem auto 0;
	position: relative;
}
@media screen and (max-width: 767px) {
	#footer .footer_entry .hole_wrap {
		width: 21.8rem;
		margin: 2.1rem auto 0;
	}
}
#footer .footer_entry .hole_wrap .hole {
	width: 100%;
	position: relative;
}
#footer .footer_entry .hole_wrap .tool {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, 0) scale(0.6);
	opacity: 0;
	z-index: 1;
	pointer-events: none;
	transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.1s ease;
}
#footer .footer_entry .hole_wrap .tool._01 {
	width: 16.4rem;
}
@media screen and (max-width: 767px) {
	#footer .footer_entry .hole_wrap .tool._01 {
		width: 8.6rem;
	}
}
#footer .footer_entry .hole_wrap .tool._02 {
	width: 14.45rem;
}
@media screen and (max-width: 767px) {
	#footer .footer_entry .hole_wrap .tool._02 {
		width: 7.6rem;
	}
}
#footer .footer_entry .hole_wrap .tool._03 {
	width: 18.85rem;
}
@media screen and (max-width: 767px) {
	#footer .footer_entry .hole_wrap .tool._03 {
		width: 9.8rem;
	}
}
#footer .footer_entry .hole_wrap .tool._04 {
	width: 26.8rem;
}
@media screen and (max-width: 767px) {
	#footer .footer_entry .hole_wrap .tool._04 {
		width: 13.2rem;
	}
}
#footer .footer_entry:hover .txt_wrap .txt._01 {
	opacity: 0;
}
#footer .footer_entry:hover .txt_wrap .txt._02 {
	opacity: 1;
}
#footer .footer_entry:hover .hole_wrap .tool {
	opacity: 1;
	z-index: 3;
}
#footer .footer_entry:hover .hole_wrap .tool._01 {
	transform: translate(calc(-50% - 29.1rem), -15.2rem) scale(1);
	transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
	#footer .footer_entry:hover .hole_wrap .tool._01 {
		transform: translate(calc(-50% - 13.8rem), -7.9rem) scale(1);
	}
}
#footer .footer_entry:hover .hole_wrap .tool._02 {
	transform: translate(calc(-50% + 21.6rem), -10.7rem) scale(1);
	transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
	#footer .footer_entry:hover .hole_wrap .tool._02 {
		transform: translate(calc(-50% + 9.8rem), -5.8rem) scale(1);
	}
}
#footer .footer_entry:hover .hole_wrap .tool._03 {
	transform: translate(calc(-50% - 27.7rem), -4rem) scale(1);
	transition-delay: 0.6s;
}
@media screen and (max-width: 767px) {
	#footer .footer_entry:hover .hole_wrap .tool._03 {
		transform: translate(calc(-50% - 13.2rem), -2rem) scale(1);
	}
}
#footer .footer_entry:hover .hole_wrap .tool._04 {
	transform: translate(calc(-50% + 27.8rem), -13.3rem) scale(1);
	transition-delay: 0.8s;
}
@media screen and (max-width: 767px) {
	#footer .footer_entry:hover .hole_wrap .tool._04 {
		transform: translate(calc(-50% + 13.2rem), -6.5rem) scale(1);
	}
}
#footer .footer_nav {
	flex: 1;
	position: relative;
	padding-bottom: 5.9rem;
}
@media screen and (max-width: 767px) {
	#footer .footer_nav {
		padding-bottom: 0;
	}
}
#footer .footer_nav .link_top {
	width: 31.9rem;
	position: relative;
	margin-left: auto;
	translate: 120% 0;
	transition: translate 0.2s ease;
}
@media screen and (max-width: 767px) {
	#footer .footer_nav .link_top {
		width: 14.9rem;
		position: absolute;
		top: 0;
		right: -1.6rem;
	}
}
#footer .footer_nav .link_top a {
	display: block;
}
#footer .footer_nav .link_top .mascot._02 {
	position: absolute;
	right: 0;
	top: 0;
	opacity: 0;
}
@media screen and (min-width: 768px) {
	#footer .footer_nav .link_top a:hover .mascot._01 {
		opacity: 0;
	}
	#footer .footer_nav .link_top a:hover .mascot._02 {
		opacity: 1;
	}
}
#footer .footer_nav .nav_list {
	font-family: "Dela Gothic One", sans-serif;
	padding-right: 4.8rem;
	margin-top: 3rem;
}
@media screen and (max-width: 767px) {
	#footer .footer_nav .nav_list {
		padding: 0;
		margin-top: 4.3rem;
	}
}
#footer .footer_nav .nav_list .item {
	text-align: right;
	font-size: 2rem;
	line-height: 1.2;
	letter-spacing: 0.05em;
	white-space: nowrap;
}
@media screen and (max-width: 767px) {
	#footer .footer_nav .nav_list .item {
		text-align: left;
		font-size: 1.6rem;
		line-height: 1.1875;
		letter-spacing: 0;
	}
}
#footer .footer_nav .nav_list .item + .item {
	margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
	#footer .footer_nav .nav_list .item + .item {
		margin-top: 2rem;
	}
}
#footer .footer_nav .nav_list .item a {
	display: inline-flex;
	align-items: center;
	transition: color 0.3s ease-out;
}
@media screen and (min-width: 768px) {
	#footer .footer_nav .nav_list .item a:hover {
		color: #FD7D05;
	}
}
#footer .footer_nav .nav_list .item a::after {
	content: "";
	width: 0.9rem;
	height: 1.4rem;
	background-color: #FD7D05;
	mask-image: url(../../img/recruit/common/btn_arw.svg);
	-webkit-mask-image: url(../../img/recruit/common/btn_arw.svg);
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	mask-size: 100% 100%;
	-webkit-mask-size: 100% 100%;
	mask-position: center;
	-webkit-mask-position: center;
	margin-left: 1.2rem;
}
@media screen and (max-width: 767px) {
	#footer .footer_nav .nav_list .item a::after {
		width: 0.5rem;
		height: 0.9rem;
		margin-left: 0.8rem;
	}
}
#footer.is-show .link_top {
	translate: 0 0;
}
#footer .logo {
	width: 20.8rem;
	position: absolute;
	left: 6.4rem;
	top: 0;
}
@media screen and (max-width: 767px) {
	#footer .logo {
		position: static;
		width: 11.7rem;
		margin-top: 6rem;
	}
}
#footer .logo a {
	display: block;
}
#footer .logo img {
	width: 100%;
}
#footer .copyright {
	text-align: right;
	color: #FEFEFE;
	font-weight: 400;
	font-size: 1.2rem;
	line-height: 1.4166666667;
	padding-right: 4.8rem;
	margin-top: 2.87rem;
}
@media screen and (max-width: 767px) {
	#footer .copyright {
		text-align: left;
		font-size: 1rem;
		line-height: 1.8;
		letter-spacing: 0.1em;
		padding: 0;
		margin-top: 2rem;
	}
}

@keyframes animePointer {
	0%, 100% {
		transform: translateY(-0.8rem);
	}
	50% {
		transform: translateY(0.8rem);
	}
}
/* ---------------------------------------
clearfix
-----------------------------------------*/
.cf:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.cf {
	display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
	height: 1%;
}

.cf {
	display: block;
}

/* End Hack */