@charset "UTF-8";
/*------------------------
募集要項
------------------------*/
.job-info {
	padding: 100px 0;
}
.job-info .inner {
	width: 1200px;
	margin: auto;
	position: relative;
	z-index: 1;
}
.job-info .inner .ttl {
	margin-bottom: 35px;
}
.job-info .tab {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 20px;
}
.job-info .tab li button {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e5e5e5;
	font-size: 20px;
	height: 62px;
	padding: 0 30px 0;
	transition:
	background-color .45s cubic-bezier(0, 0, 0.2, 1),
	color .45s cubic-bezier(0, 0, 0.2, 1);
}
.job-info .tab li button:hover {
		background: var(--btncolor);
		color: #fff;
}
.job-info .tab li button.current {
	background: var(--career);
	color: #fff;
}
/*各要項ブロック*/
.job-info .tab-panels .block[hidden]{
  display: none;
}
.tab-panels .block{
	padding-top: 40px;
}
.tab-panels .block .flex-box{
  gap:60px;
}
.flex-box .txt{
	flex: 1;
  min-width:0;
	font-size: 18px;
}
.flex-box .txt .excerpt{
	line-height: 1.67;
	margin-bottom: 20px;
}
.flex-box .txt .excerpt,
.flex-box .workstyle-desc{
	text-align: justify;
}
.tab-panels .block h3{
	font-weight: bold;
	font-size: 2.8rem;
	letter-spacing: 0.06em;
	color: var(--btncolor);
	margin-bottom:7px;
}
.tab-panels .block .img{
	width: 490px;
	height: 360px;
	border-radius: 20px;
	overflow: hidden;
}
.tab-panels .block .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.flex-box .workstyle-desc{
	line-height: 1.55;
	padding: 25px;
	background: #f3f4f5;
}
/*.tab-panels .block table{
	font-size: 16px;
	margin-bottom: 30px;
}
.tab-panels .block table th{
	background: var(--career);
	color: #fff;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	padding: 14px 10px 12px 20px;
	width: 230px;
}
.tab-panels .block table td{
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	padding: 20px 10px 18px 20px;
}
.job-info .inner table td .item:not(:last-of-type) {
	margin-bottom: 20px;
}
.job-info .inner table td .item .item-head {
	display: block;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 10px;
}
.job-info .inner table td .item p {
	margin-bottom: 10px;
}
.tab-panels .block table ul{
  margin: 0;
  padding: 0;
}
.tab-panels .block table li{
  list-style: none;
  position: relative;
  margin: 0 0 5px 0;
  padding-left: 1.1em;
}
.tab-panels .block table li::before{
  content: "●";
	font-size: 0.5em;
  position: absolute;
  left: 0;
  top: 1em;
}*/
.tab-panels .block .content p{
	margin-bottom: 1em;
}
.tab-panels .block .content h2,
.tab-panels .block .content h3{
	color: var(--btncolor);
	font-size: 24px;
	font-weight: bold;
}
/*------------------------
選考フロー
------------------------*/
.recruit-flow {
	padding: 100px 0 50px;
	position: relative;
	overflow: hidden;
}
.recruit-flow .inner .ttl {
	margin-bottom: 35px;
}
.recruit-flow .flow_list {
	display: flex;
	flex-direction: column;
	gap :20px;
}
.recruit-flow .item {
	position: relative;
	background: #f3f4f5;
	margin-left: 50px;
	padding: 40px 40px 40px 90px;
	border-radius: 20px;
	min-height: 102px;
}
.recruit-flow .badge {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	padding-top: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: var(--career);
	position: absolute;
	top: 50%;
	left: -50px;
	transform: translateY(-50%);
}
.recruit-flow .badge .en {
	font-size: 14px;
	line-height: 1;
	margin-bottom: 1px;
	letter-spacing: 0.06em;
}
.recruit-flow .badge .num {
	font-weight: 500;
	font-size: 42px;
	line-height: 1;
	letter-spacing: -0.03em;
}
.tab-panels .recruit-flow .content h3{
	color: var(--btncolor);
	font-weight: bold;
	letter-spacing: 0.05em;
	font-size: 3.2rem;
	margin-bottom: 0;
}
.recruit-flow .content .desc {
	letter-spacing: 0.05em;
	margin-top: 3px;
	font-size: 2.1rem;
}
.recruit-flow .content a{
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.recruit-flow .content a::after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.1em;
	height: 1px; 
	background: currentColor;
	transition:opacity .2s ease;
}
.recruit-flow .content a:hover::after{
	opacity: 0;
}
/*ボタン*/
.job-info .btn {
	width: fit-content;
	margin: auto;
}
.job-info .btn a {
	width: 420px;
	padding: 30px;
	font-size: 1.8rem;
}
.job-info .btn a::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto 0;
	display: inline-block;
	width: 18px;
	height: 13px;
	background: url(/recruit/pc/img/common/icn_blank.svg) no-repeat 100% / contain;
}
.job-info .btn a::after ,
.job-info .btn a span::before ,
.job-info .btn a span::after {
	content: none;
}
.job-info .btn a:hover {
	background: var(--career);
}
/*------------------------
追従
------------------------*/
.bottom-contact-career-requirements {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: rgba(231, 233, 238, .9);
}
.bottom-contact-career-requirements .inner {
	width: 1200px;
	margin: auto;
	padding: 20px;
	gap: 0 20px;
	justify-content: center;
}
.bottom-contact-career-requirements .inner span a {
	display: block;
	padding: 22px 20px;
	width: 400px;
	font-size: 2.1rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	line-height: 1;
	position: relative;
}
.bottom-contact-career-requirements span a:hover {
	background: var(--btncolor)
}
.bottom-contact-career-requirements .entry a {
	background: var(--btncolor);
}
.bottom-contact-career-requirements .entry a:hover {
	background: var(--career);
}
.bottom-contact-career-requirements .entry a::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto 0;
	display: inline-block;
	width: 18px;
	height: 13px;
	background: url(/recruit/pc/img/common/icn_blank.svg) no-repeat 100% / contain;
}
footer {
	margin-bottom: 105px;
}