@charset "utf-8";

/* 採用情報
========================================== */

:root {
/* ブランドカラー */
--color-primary: #45a97f;
--color-secondary: #f09410;
--color-accent: #edda0b;

/* テキストカラー */
--text-primary: #222222;
--text-secondary: #a09381;

/* 境界・背景カラー */
--border-color: #e5e5e5;
--bg-grey:#f8f9f9;
--bg-beige: #fff3e2;
--bg-green:#d3e7d6;

/* フォントファミリー */
--font-primary:"Zen Kaku Gothic New", sans-serif;
--font-secondary:"Oswald", sans-serif;

/* フォントサイズ */
--font-size-body: clamp(1.5rem, 1.5vw + 0.5rem, 1.6rem);
--font-size-accent: clamp(1.7rem, 1.5vw + 0.5rem, 2rem);
--font-size-heading: clamp(2.4rem, 3vw + 0.8rem, 3.6rem);
--font-size-subheading: clamp(1.8rem, 2vw + 0.6rem, 2.4rem);
--font-size-caption: clamp(1.2rem, 1vw + 0.4rem, 1.4rem);

/* 行間 */
--line-height-base: 1.6;
--line-height-heading: 1.3;
--line-height-caption: 1.4;

/* 装飾 */
--shadow-primary: 3px 3px 10px 0.4px rgba(30, 38, 30, 0.1);
--shadow-box:3px 3px 7px rgba(30, 38, 30, 0.15);
--shadow-light:drop-shadow(0 0 1px #fff);
}

/* Body
========================================== */
html{}
html, body {
	width: 100%;
	font-size: 62.5%;
	overflow-x: clip; /*sticky用*/
}
body {
	line-height: var(--line-height-base);
	font-size: var(--font-size-body);
	font-family: var(--font-primary);
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: var(--text-primary);
}
@media screen and (max-width: 599px) {
	body {word-wrap: break-word;font-size: 1.5rem;}
}

/*pc*/
@media screen and (min-width: 769px) {
	.sp {display: none !important;}
}
/*sp*/
@media screen and (max-width: 768px) {
	.pc {display: none !important;}
}

/* header
========================================== */
.headerArea {
	z-index: 1000;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
}
.headerArea .inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	padding: 0 20px;
	height: 100px;
}
.headerLogo{
	position: fixed;
	top: 0;
	left: 20px;
	width: 170px;
}
.headerLogo a{
	display: block;
	z-index:1001;
	padding:10px 20px 20px;
	text-decoration: none;
	background-color: #fff;
	border-radius:0 0 5px 5px;
	box-shadow: var(--shadow-primary);
	text-align: center;
}
.headerLogo a img{
	width: 100%;
	height: auto;
}

.headerInfo{
	display: flex;
	gap: 0 2em;
	align-items: center;
	border-radius: 9999px;
	background-color: #fff;
	box-shadow: var(--shadow-primary);
	padding: 0 10px;
	max-width: calc(100% - 200px);
}
.headerNavi{
	position: relative;
	z-index: 100;
}
.headerNavi > ul{
	display: flex;
	justify-content: center;
	list-style: none;
	margin: 0;
	padding: 0 0 0 0.5em;
	height: 100%;
}
.headerNavi > ul > li {position: relative;}
.headerNavi > ul > li > a {
	line-height: 1.3;
	display: block;
	padding: 1.5rem 1.5rem;
	color: var(--text-primary);
	font-weight: 600;
	font-size: var(--font-size-caption);
	text-decoration: none;
	text-align: center;
	transition: 0.3s;
}
.headerNavi > ul > li > a:hover{color: var(--color-primary);}
.headerNavi .subMenu {position: relative;}
.headerNavi .subMenu > a{
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
}
.headerNavi .subMenu > a::after{
	display: block;
	top: 48%;
	right:5px;
	content: "";
	width: 8px;
	border-top: 5px solid var(--text-primary);
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
}
.headerNavi .subMenu > a:hover{text-decoration: none;}
.subMenuBox{
	position: absolute;
	top: 100%;
	left: 50%;
	width: fit-content;
	max-width: 90vw;
	transform: translateX(-50%);
	background:rgba(255,255,255,0.85);
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%);
	border-radius: 5px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	z-index: 3000;
	padding: 1.5em 2em;
}
.headerNavi > ul .subMenu:hover .subMenuBox{
	opacity: 1;
	visibility: visible;
}
.subMenuList{
	display: flex;
	flex-direction: column;
	gap:0.5em 1em;
}
.subMenuList > li a{
	display: inline-block;
	white-space: nowrap;
	width: 100%;
	color: var(--text-primary);
	text-decoration: none;
	font-size: var(--font-size-caption);
	font-weight: 600;
	transition: 0.3s;
}
.subMenuList > li a:hover{
	color: var(--color-primary);
	text-decoration: underline;
}
.headerSns{
	display: flex;
	align-items: center;
	gap: 1.5em;
}
.headerSns li a{
    display: flex;
    flex-direction: column;
}
.headerSns li a:hover img{opacity: 0.7; transition: 0.3s;}
.headerLang{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.headerLang select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 5px 32px 5px 10px;
	color: #333;
	font-size:1.4rem;
	box-sizing: border-box;
	cursor: pointer;
}
.headerLang::after {
	content:"▼";
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	color: #666;
	pointer-events: none;
}
.headerCorp{
	line-height: 1.2;
	text-align: center;}
.headerCorp a{
	line-height: 1.3;
	position: relative;
	display: block;
	padding: 0.5em 45px 0.5em 1.5em;
	background-color: var(--color-accent);
	border-radius: 9999px;
	font-size: var(--font-size-caption);
	font-weight: 600;
	white-space: nowrap;
	text-decoration: none;
}
.headerCorp a::after{
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	background: url(../images/recruit/icn_external.svg) right top/contain no-repeat;
	transform: translateY(-50%);
	width:12px;
	height:12px;
	transition: .3s;
}
.headerCorp a:hover{
	background-color: var(--color-secondary);
	transition: .3s;
}

.spMenuWrap{display: none;}
.spBtn,
.spMenu,
.overlay {
	opacity: 0;
	pointer-events: none;
}
@media screen and (max-width: 1400px) {
	.headerLogo{width: 10%;}
	.headerInfo{max-width:100%;gap: 0 1em;justify-content: center;margin-left: 11%;}
	.headerNavi > ul > li > a{padding:1.5rem 1rem;}
	.headerCorp a{white-space: wrap;font-size: 1.2rem;}
}

@media screen and (max-width:1024px){
	.headerArea{
		background-color: #fff;
		height: 60px;
		box-shadow: var(--shadow-primary);
	}
	.headerArea.active{box-shadow: none;}
	.headerArea .inner{
		padding: 0 10px;
		height: 50px;
	}
	.headerLogo {
		top: 10px;
		left: 10px;
		width: auto;
	}
	.headerLogo a{
		padding:0;
		box-shadow: none;
	}
	.headerLogo a img{width: auto;height: 40px;}
	.headerLogo a {font-size: 1.2rem;gap: 1em;}
	.headerNavi,
	.headerLang,
	.headerCorp{display: none;}
	.headerInfo{
		position: fixed;
		top: 15px;
		right: 65px;
		width: auto;
		background: none;
		box-shadow: none;
	}
	.headerSns{gap: 20px;}
	.spMenuWrap{display: block;}
	.spBtn{
		opacity: 1;
		pointer-events: auto;
		position:fixed;
		top: 5px;
		right: 5px;
		display: inline-block;
		width: 50px;
		height:50px;
		padding: 20px 13px 15px;
		border-radius: 3px;
		background-color: var(--color-primary);
		cursor: pointer;
		z-index: 2000;
	}
	.spBtn::after{
		position: absolute;
		left: 0;
		top: 3px;
		content: "MENU";
		text-align: center;
		width: 50px;
		font-size: 8px;
		color: #fff;
	}
	.spBtn.active::after{content: "CLOSE";}
	.spBtn div {position: relative;}
	.spBtn span {
		display: block;
		position: absolute;
		height: 2px;
		width: 100%;
		background:#fff;
		left: 0;
		transition: .3s ease;
	}
	.spBtn span:nth-child(1) {top: 0;}
	.spBtn span:nth-child(2) {top: 8px;}
	.spBtn span:nth-child(3) {top: 16px;}
	.spBtn.active span:nth-child(1) {
		top: 8px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.spBtn.active span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.spBtn.active span:nth-child(3) {
		top: 8px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	.overlay {
		position: fixed;
		top: 0; left: 0;
		width: 100vw;
		height: 100vh;
		background-color:#fff;
		z-index: 999;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.3s ease;
	}
	.overlay.active {
		opacity: 1;
		pointer-events: auto;
	}
	.spLang{
		position: relative;
		margin-bottom: 20px;
		text-align: right;
	}
	.spLang select {
		appearance: none;
		-webkit-appearance: none;
		-moz-appearance: none;
		background-color: #fff;
		border: 1px solid #ccc;
		border-radius: 4px;
		padding: 5px 32px 5px 10px;
		color: #333;
		font-size:1.2rem;
		text-align: left;
		box-sizing: border-box;
		cursor: pointer;
	}
	.spLang::after {
		content:"▼";
		position: absolute;
		right: 12px;
		top: 50%;
		transform: translateY(-50%);
		font-size: 10px;
		color: #666;
		pointer-events: none;
	}
	.spMenu{
		overflow-y: auto;
		-webkit-overflow-scrolling: touch; /* iOSで慣性スクロール */
		position: fixed;
		top: 0; right: 0;
		width: 100%;
		height: 100vh;
		z-index: 999;
		transition: transform 0.3s ease;
		padding: 80px 2em 60px;
	}
	.spMenu.active{
		opacity: 1;
		pointer-events: auto;
	}

	.spMenu::-webkit-scrollbar{width: 5px;}
	.spMenu::-webkit-scrollbar-track{background: transparent;}
	.spMenu::-webkit-scrollbar-thumb {background: transparent;}

	.spNavi{
		margin-bottom: 3em;
		border-top: 1px solid var(--border-color);}

	.spNavi > li{border-bottom: 1px solid var(--border-color);}
	.spNavi > li > a{
		display: block;
		padding: 1em 1em;
		font-optical-sizing: auto;
		font-size: 1.5rem;
		font-weight: 500;
		color:var(--text-primary);
		text-decoration: none;
	}
	.spsubMenuTrigger{
		position: relative;
		display: block;
		padding: 1em 1em;
		font-size: 1.5rem;
		font-weight: 500;
	}
	.spsubMenuTrigger::after {
		position: absolute;
		top: 50%;
		right: 1em;
		transform: translateY(-50%);
		content: "＋";
		font-weight: 600;
		color: var(--color-primary);
		transition: transform 0.3s;
	}
	.is-open .spsubMenuTrigger::after{
		content: "ー";
	}
	.spsubMenuList{
		display: none;
		padding:0.5em 1em 1em;
	}
	.spsubMenuList ul{
		display: flex;
		flex-direction: column;
		gap: 0.6em;
		padding-left: 1em;
	}
	.spsubMenuList ul li{
		position: relative;
		padding-left: 20px;
	}
	.spsubMenuList ul li::before{
		content: "";
		position: absolute;
		top: 0.7em;
		left: 0;
		width: 10px;
		height: 1px;
		background-color: var(--color-primary);
	}
	.spsubMenuList ul li a{
		text-decoration: none;
		font-weight: 500;
	}
	.spNavi li.externalLink a{position: relative;}
	.spNavi li.externalLink a::after{
		content: "";
		position: absolute;
		right: 16px;
		top: 50%;
		background: url(../images/recruit/icn_external_green.svg) right top/contain no-repeat;
		transform: translateY(-50%);
		width:12px;
		height:12px;
	}

	.spInfo{
		margin-bottom: 30px;
		text-align: center;
		font-size: 1.4rem;
	}
	.spInfo .logo{margin-bottom: 20px;;}
	.spInfo .logo a{display: block;}
	.spInfo .address{margin-top: 0.6em;}
	.spInfo .spTel{font-family: var(--font-secondary);}
	.spInfo .spTel a{
		line-height: 1.3;
		display: block;
		letter-spacing: 2px;
		width: fit-content;
		margin: 0 auto;
		text-decoration: none;
		font-size:3rem;
		color: var(--color-primary);
	}
	.spNaviSub{
		margin-bottom: 3em;}
	.spNaviSub li{
		position: relative;
		padding-left: 18px;
	}
	.spNaviSub li::before{
		position: absolute;
		left: 0;
		top: .6em;
		content: "";
		width: 6px;
		height: 6px;
		border-top: 1px solid var(--color-primary);
		border-right: 1px solid var(--color-primary);
		transform: rotate(45deg);
	}
	.spNaviSub li a{
		display: block;
		font-size: 1.4rem;
		font-weight: 500;
		color: var(--text-primary);
		text-decoration: none;
	}
}

@media screen and (max-width:320px) {
	.headerInfo{right:55px;}
	.headerSns{gap:10px;}

}

/* contents
========================================== */
.recruitwrap{overflow: hidden;}
.contents {
	margin: 0 auto;
	width: 100%;
}
.contents.subpage{padding-bottom: 180px;}
.contents p+p {margin-top: 1.5em;}
.contentsInner {
	margin: 0 auto;
	width: 1200px;
}
.contentsInner.flex{
	display: flex;
}

@media screen and (max-width:1200px) {
	.contentsInner {
		width: 100%;
		padding: 30px 30px 60px;
	}
}

@media screen and (max-width:1024px) {
	.contents.subpage{padding-bottom: 120px;}
}

@media screen and (max-width:599px) {
	.contentsInner {padding: 50px 20px;}
	.contents.subpage{padding-bottom: 80px;}
}

/* サイドバナー
========================================== */
.sideLink{
	z-index: 1000;
	position: fixed;
	right: 0;
	top: 200px;
}

.sideLink li:first-child{margin-bottom: 15px;}
.sideLink li a{
	position: relative;
	display: block;
	padding: 10px 10px 20px;
	border-radius: 5px;
	background-color: var(--color-primary);
	box-shadow: var(--shadow-primary);
	text-decoration: none;
	color: #fff;
	text-align: center;
	font-weight: 600;
}
.sideLink li img{
	width: 100%;
	height: auto;
	border-radius: 5px;
	margin-bottom: 10px;
}
.sideLink li a::after{
	content: "";
	position: absolute;
	right: 8px;
	bottom: 8px;
	background: url(../images/recruit/icn_arrow_white.svg) right bottom/contain no-repeat;
	width:11px;
	height:11px;
}
.sideLink li a:hover{
	background-color: var(--color-secondary);
	transition: 0.3s;
}

@media screen and (max-width:1024px){
	.sideLink{
		right: 0;
		top: auto;
		bottom: 0;
		display: flex;
		width: 100%;
		border-top: 1px solid #fff;
	}
	.sideLink li{width: 50%;}
	.sideLink li:first-child{margin-bottom: 0;border-right: 1px solid #fff;}
	.sideLink li a{
		padding: 20px 10px;
		border-radius: 0;
	}
	.sideLink li img{display: none;}
}

@media screen and (max-width:599px){
	.sideLink li a{padding:10px}

}

/* mv
========================================== */
.mvArea {
	position: relative;
	margin-top: 100px;
	width: 100%;
}
.video-container {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%; /* 16:9比率 */
	overflow: hidden;
}

.video-container iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width:1024px){
	.mvArea {margin-top: 60px;}
}

/* 新着情報
========================================== */
.newsArea{
	margin: 0 auto;
	padding:100px 150px 150px 30px;
	max-width: 1380px;
}
.newsArea .inner{display: flex;gap: 20px;}
.newsArea .inner .titleBlock{width: 30%;}
.newsArea .inner .contBlock{width: 70%;}
.newsList{
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.newsList li{
	line-height: 1.3;
	display: flex;
	align-items: flex-start;
	gap:1em;
	padding: 1em 1.5em;
	background-color: var(--bg-grey);
	border-radius: 5px;
	min-width: 0;
}
.newsList li .date{
	width: 6em;
	color: var(--text-secondary);
	font-family: var(--font-secondary);
}
.newsList li .title{
	flex: 1;
	min-width: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.newsList li .title a{
	text-decoration: none;
	font-weight: 600;
	transition: 0.3s;
}
.newsList li .title a:hover{text-decoration: underline;color: var(--color-primary);}


@media screen and (max-width:1024px) {
	.newsArea{padding:100px clamp(20px, 5vw, 30px);}
}

@media screen and (max-width:599px) {
	.newsArea{padding: 60px  clamp(20px, 5vw, 30px) 30px;}
	.newsArea .inner{
		flex-direction: column;
		gap: 30px;
	}
	.newsArea .inner .titleBlock{width: auto;margin: 0 auto;}
	.newsArea .inner .contBlock{width: 100%;}

}

/* 採用メッセージ
========================================== */
.messageArea{
	position: relative;
	padding:0 0 100px;
}
.messageArea .innerBlock{
	z-index: 100;
	position: relative;
	display: flex;
	align-items: center;
	gap: 60px;
	margin: 0 150px 0 auto;
}
.messageArea .innerBlock .imageBlock{width: 40%;padding-top: 30px;}
.messageArea .innerBlock .imageBlock img{max-width: 100%;height: auto;}
.messageArea .innerBlock .textBlockWrap{width: 60%;display: flex;padding-top: 10%;gap: 1em;}
.messageArea .innerBlock .titleBlock{width: 20%;}
.messageArea .innerBlock .textBlock{
	margin-top: 50px;
	width: 80%;}

.messageTitle{
	margin-bottom: 1em;
	color: var(--color-secondary);
	font-size: var(--font-size-heading);
	font-weight: 600;
}
.messageArea dl{
	margin-bottom: 0.5em;
	font-size: var(--font-size-subheading);
	font-weight: 400;
}
.messageArea dl:last-of-type{margin-bottom: 1em;}
.messageArea dl dt{
	position: relative;
	padding-left: 50px;
	font-weight: 400;
}
.messageArea dl dt::before{
	content: "";
	position: absolute;
	top: 50%;
	left:0;
	width: 30px;
	height: 2px;
	background-color: var(--text-primary);
}
.messageArea dl dd{padding-left: 50px;}


@media screen and (max-width:1200px) {
	.messageArea .innerBlock{margin: 0 150px 0 auto;}
}

@media screen and (max-width:1024px) {
	.messageArea{padding:0 0 100px;}
	.messageArea .innerBlock{
		width: 100%;
		padding-right: clamp(20px, 5vw, 30px);
	}
}
@media screen and (max-width:840px) {
	.messageArea{padding:100px 0 100px;}
	.messageArea .innerBlock .imageBlock{display: none;}
	.messageArea .innerBlock .textBlockWrap{
		padding: 0 clamp(20px, 5vw, 30px);
		width:100%;}
	.messageArea .innerBlock .textBlock{
		margin-top: 0;
		filter: drop-shadow(var(--shadow-light));}
}

@media screen and (max-width:599px) {
	.messageArea{padding:60px 0;}
	.messageArea .innerBlock .textBlockWrap{flex-direction: column;}
	.messageArea .innerBlock .titleBlock{
		margin: 0 auto 3em;
		width: fit-content;}
	.messageArea .innerBlock .textBlock{width: 100%;}

}

/* インタビュー
========================================== */
.managerArea{
	margin: 0 auto;
	padding:0 150px 150px 30px;
	max-width: 1380px;
}
.managerList{
	display: flex;
	column-gap: 40px;
}
.managerList .managerBox{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	width: calc((100% - 40px * 3)/4);
}
.managerList .imageBlock{margin-bottom: 20px;}
.managerList .imageBlock img{
	width: 100%;
	height: auto;
}

.managerList .department{
	line-height: var(--line-height-heading);
	margin-bottom: .3em;
	color: var(--color-primary);
	font-size: var(--font-size-accent);
	font-weight: 600;
}
.managerList .position{
	line-height: var(--line-height-heading);
	margin-bottom: .5em;
	color:var(--text-secondary);
	font-weight: 600;
}
.managerList .name{
	line-height: var(--line-height-heading);
	margin-bottom: .3em;
	font-size: var(--font-size-subheading);
	font-weight: 700;
}

.managerList .more{
	margin-top: 1em;
}
.managerList .more a{
	line-height: 1.2;
	display: inline-block;
	padding: .5em 2em;
	background-color: var(--color-primary);
	border-radius: 9999px;
	color: #fff;
	text-decoration: none;
	font-family: var(--font-secondary);
	transition: 0.3s;
}
.managerList .more a:hover{background-color: var(--color-secondary);}

@media screen and (max-width:1200px) {
}

@media screen and (max-width:1024px) {
	.managerArea{
		padding-right: clamp(20px, 5vw, 30px);
		padding-left: clamp(20px, 5vw, 30px);}
	.managerList{column-gap: 20px;}
	.managerList .managerBox{width: calc((100% - 20px * 3)/4);}
}
@media screen and (max-width:840px) {
	.managerList{flex-wrap: wrap;gap: 30px;}
	.managerList .managerBox{width: calc((100% - 30px)/2);}
}


/* 募集要項
========================================== */
.jobArea{
	position: relative;
	padding:100px 0 200px;
}
.jobArea::before{
	z-index: 6;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--color-secondary);
	transform: skewY(8deg);
}
.jobArea .innerBlock{
	z-index: 100;
	position: relative;
	display: flex;
	align-items: center;
	margin: 0 auto;
	max-width: 1380px;
	padding-right: 150px;
	padding-left: 30px;
}
.jobArea .innerBlock .titleBlock{width: 20%;}
.jobArea .innerBlock .textBlock{
	position: relative;
	width: 80%;
	background-color: #fff;
	border-radius: 10px;
	padding:8% 5%;
	display: flex;
	gap: 5%;
}
.jobArea .innerBlock .textBlock .image01,
.jobArea .innerBlock .textBlock .image02{
	position: absolute;
}
.jobArea .innerBlock .textBlock .image01 img,
.jobArea .innerBlock .textBlock .image02 img{
	max-width: 100%;
	height: auto;
}
.jobArea .innerBlock .textBlock .image01{
	bottom:85%;
	left: 5%;
	width: 15%;
}
.jobArea .innerBlock .textBlock .image02{
	top: 85%;
	right: 3%;
	width: 50%;
}
.jobArea .innerBlock .textBlock .boxL{width: 60%;}
.jobArea .innerBlock .textBlock .boxR{width: 40%;}

.jobTitle{
	line-height: 1.3;
	margin-bottom: 1em;
	color: var(--color-secondary);
	font-size: var(--font-size-heading);
	font-weight: 600;
}
.jobTitle span{display: inline-block;}
.jobLink{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.jobLink li a{
	display: block;
	padding: 1em;
	border: 2px solid var(--color-primary);
	border-radius: 9999px;
	box-sizing: border-box;
	box-shadow: var(--shadow-primary);
	background-color: #fff;
	text-align: center;
	text-decoration: none;
	font-weight: 600;
	color: var(--color-primary);
	transition: 0.3s;
}
.jobLink li a:hover{
	background-color: var(--color-primary);
	color: #fff;
}
.jobLink li.entry a{
	border-color: var(--color-secondary);
	color: var(--color-secondary);
}
.jobLink li.entry a:hover{
	background-color: var(--color-secondary);
	color: #fff;
}

@media screen and (max-width:1024px) {
	.jobArea .innerBlock{
		padding-left: clamp(20px, 5vw, 30px);
		padding-right: clamp(20px, 5vw, 30px);
	}
}

@media screen and (max-width:840px) {
	.jobArea .innerBlock .textBlock{
		flex-direction: column;
		gap: 30px;
		padding:60px 1.5em;
		width: 100%;}
	.jobArea .innerBlock .textBlock .image01{bottom:93%;}
	.jobArea .innerBlock .textBlock .image02{top: 93%;}
	.jobArea .innerBlock .textBlock .boxL,
	.jobArea .innerBlock .textBlock .boxR{width: 100%;}
	.jobLink{flex-wrap: wrap;flex-direction: row;justify-content: center;}
	.jobLink li{width: fit-content;}
	.jobLink li a{padding: 1em 2.5em;}
}

@media screen and (max-width:599px) {
	.jobArea{padding:60px 0 150px;}
	.jobArea .innerBlock{
		flex-direction: column;
		gap: 30px;
	}

}

/* 社員インタビュー
========================================== */
.interviewArea{
	position: relative;
	padding:200px 0;
}
.interviewArea::before{
	z-index: 5;
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 80%;
	background-color: var(--bg-grey);
	transform: translateY(-50%) skewY(-8deg);
}
.interviewArea .innerBlock{
	z-index: 10;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 30px;
	margin: 0 auto;
	max-width: 1380px;
	padding-right: 150px;
	padding-left: 30px;
}

.interviewArea .innerBlock .titleBlock{width: 20%;}
.interviewArea .innerBlock .textBlock{width: 80%;}

.interviewWrap{
	display: flex;
	gap: 30px;
	margin-top: 50px;
	width: 100%;
}

/* box共通 */
.roleWrap{width: 100%;}

.interviewWrap .interviewBox,
.roleWrap .roleBox{
	width:calc((100% - 30px * 2)/3);
}

.interviewWrap .interviewBox a,
.roleWrap .roleBox a{
	position: relative;
	display:flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding:1.5em 2em;
	border: 5px solid var(--color-primary);
	border-radius: 10px;
	background-color: #fff;
	box-sizing: border-box;
	box-shadow: var(--shadow-primary);
	text-decoration: none;
	transition: 0.3s;
}

.interviewWrap .interviewBox .number,
.roleWrap .roleBox .number{
	line-height: 1.3;
	margin-bottom: 20px;
	text-align: center;
	font-family: var(--font-secondary);
	font-size: 5rem;
	color: var(--color-primary);
	transition: 0.3s;
}

.interviewWrap .interviewBox h3,
.roleWrap .roleBox h3{
	margin-bottom: 1em;
	text-align: center;
	font-size: var(--font-size-subheading);
	font-weight: 600;
}

.interviewWrap .interviewBox .icon,
.roleWrap .roleBox .icon{
	margin-bottom: 20px;
	text-align: center;}

.interviewWrap .interviewBox .icon img,
.roleWrap .roleBox .icon img{
	max-width: 100%;
	height: auto;
}

.interviewWrap .interviewBox a .more,
.roleWrap .roleBox a .more{
	line-height: 1.2;
	width: fit-content;
	margin: 1em auto 0;
	padding: .5em 2em;
	background-color: var(--color-primary);
	border-radius: 9999px;
	color: #fff;
	text-decoration: none;
	font-family: var(--font-secondary);
	transition: 0.3s;
}

.interviewWrap .interviewBox a:hover,
.roleWrap .roleBox a:hover{
	background-color:#fffaf4;
	border-color: var(--color-secondary);
}
.interviewWrap .interviewBox a:hover .more,
.roleWrap .roleBox a:hover .more{background-color: var(--color-secondary);}

.interviewWrap .interviewBox a:hover .number,
.roleWrap .roleBox a:hover .number{color: var(--color-secondary);}

@media screen and (max-width:1024px) {
	.interviewArea .innerBlock{
		padding-left: clamp(20px, 5vw, 30px);
		padding-right: clamp(20px, 5vw, 30px);
	}
}


@media screen and (max-width:840px) {
	.interviewWrap,
	.roleWrap{flex-wrap: wrap;justify-content: center;margin-top: 0;}
	.interviewWrap .interviewBox,
	.roleWrap .roleBox{width:calc((100% - 30px)/2);}
}

@media screen and (max-width:599px) {
	.interviewArea{padding:60px 0;}
	.interviewArea .innerBlock{
		flex-direction: column-reverse;
		gap: 30px;
	}
	.interviewArea .innerBlock .titleBlock{width: auto;margin: 0 auto;}
	.interviewArea .innerBlock .textBlock{width: 100%;}
	.interviewWrap{flex-direction: column;}
	.interviewWrap .interviewBox,
	.roleWrap .roleBox{
		width:100%;
	}
}


/* 仕事を知る
========================================== */
.roleArea{
	position: relative;
	padding:100px 0;
}
.roleArea::before{
	z-index: 4;
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:var(--bg-beige);
	transform: translateY(-50%) skewY(8deg);
}
.roleArea .innerBlock{
	z-index: 10;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 5%;
	margin: 0 auto;
	max-width: 1380px;
	padding-right: 150px;
	padding-left: 30px;
}
.roleWrap{
	display: flex;
	gap: 30px;
	margin-top: 50px;
}

@media screen and (max-width:1024px) {
	.roleArea .innerBlock{
		padding-left: clamp(20px, 5vw, 30px);
		padding-right: clamp(20px, 5vw, 30px);
	}
}
@media screen and (max-width:840px) {
	.roleWrap{margin-top: 0;}
}

@media screen and (max-width:599px) {
	.roleArea .innerBlock{
		flex-direction: column;
		align-items: center;
		gap: 30px;
	}
	.roleWrap{flex-direction: column;}
	.roleWrap .ttlMain{margin: 0 auto;width: fit-content;}

}

/* movie
========================================== */

.movieArea{
	margin: 0 auto;
	padding:100px 0;
	max-width:1200px;
}
.movieArea .ttlMain{margin-bottom:50px;}

.movieWrap{
	display: flex;
	gap: 30px;
}
.movieBox{width: 50%;}
.movieBox .title{
	line-height: 1.2;
	margin-bottom: .6em;
	color: var(--color-primary);
	font-weight: 600;
	font-size: var(--font-size-accent);
	text-align: center;
}
.movie-container {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%; /* 16:9比率 */
	overflow: hidden;
}

.movie-container iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width:1024px) {
	.movieArea{
		padding-left: clamp(20px, 5vw, 30px);
		padding-right: clamp(20px, 5vw, 30px);
	}
}

@media screen and (max-width:599px) {
	.movieArea{
		padding:60px clamp(20px, 5vw, 30px);
	}
	.movieWrap{
		flex-direction: column;
	}
	.movieBox{width: 100%;}
}



/* 求める人材
========================================== */
.idealArea{
	position: relative;
	padding:100px 0;
}
.idealArea::before{
	z-index: 3;
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 80%;
	background-color:var(--color-primary);
	transform: translateY(-50%) skewY(-8deg);
}
.idealArea .idealImage{
	z-index: 5;
	position: absolute;
	bottom:-20%;
	left: 5%;
	width: 20%;
}
.idealArea .idealImage img{
	max-width: 100%;
	height: auto;
}

.idealArea .innerBlock{
	z-index: 10;
	position: relative;
	margin: 0 auto;
	max-width: 1380px;
	padding-right: 150px;
	padding-left: 30px;
	display: flex;
	align-items: flex-start;
	gap: 5%;
}

.idealArea .innerBlock .ttlMain{width: 15%;}
.idealWrap{
	display: flex;
	justify-content: space-around;
	align-items: stretch;
	gap: 8%;
	width:85%;
}
.idealWrap .idealBox{
	display: flex;
	flex-direction: column;
	width:calc((100% - 8% * 2)/3);
	filter:drop-shadow(var(--shadow-box));
}
.idealWrap .idealBox:nth-child(2){margin-top: 50px;}
.idealWrap .idealBox:nth-child(3){margin-top: 100px;}
.idealWrap .idealBox .icon img{
	width: 100%;
	height: auto;
}
.idealWrap .idealBox .textBlock{
	margin-top: -1px;
	background-color: #fff;
	border-radius: 0 0 10px 10px;
	padding:1em 1.5em 2em;
}
.idealWrap .idealBox .textBlock h3{
	line-height: 1.5;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom:1em;
	font-size:var(--font-size-accent);
	font-weight: 600;
}
.idealWrap .idealBox .textBlock h3 .text-block{}
.idealWrap .idealBox .textBlock h3 .break{
	flex-basis: 100%;
	height: 0;
}

@media screen and (max-width:1024px) {
	.idealArea .innerBlock{
		padding-left: clamp(20px, 5vw, 30px);
		padding-right: clamp(20px, 5vw, 30px);
	}
	.idealWrap{gap:30px;}
	.idealWrap .idealBox{width:calc((100% - 30px * 2)/3);}
	.idealWrap .idealBox:nth-child(2){margin-top: 0;}
	.idealWrap .idealBox:nth-child(3){margin-top: 0;}
	.idealWrap .idealBox .textBlock{flex: 1;}
}

@media screen and (max-width:840px) {
	.idealWrap{flex-wrap: wrap;}
	.idealWrap .idealBox{width:calc((100% - 30px)/2);}
	.idealArea .idealImage{display: none;}
}


@media screen and (max-width:599px) {
	.idealArea{padding:50px 0;}
	.idealArea::before{height: 100%;}
	.idealArea .innerBlock{
		flex-direction: column;
		gap: 30px;
		padding-right: 0;
	}
	.idealArea .innerBlock .ttlMain{width: auto;margin: 0 auto;}
	.idealWrap{
		overflow-x: scroll;
		padding:0 2em 20px 0;
		width: 100%;
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: minmax(260px, 1fr);
		-webkit-overflow-scrolling: touch;
	}
	.idealWrap .idealBox{width:auto;}
	.idealWrap::-webkit-scrollbar{height: 10px;}
	.idealWrap::-webkit-scrollbar-track{background: #fff;}
	.idealWrap::-webkit-scrollbar-thumb {background: var(--color-accent);}
}


/* 数字で見る
========================================== */
.numberArea{
	position: relative;
	padding:200px 0 100px;
}
.numberArea::before {
	z-index: 2;
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 50%;
	background-color: var(--bg-grey);
	transform: translateY(-50%) skewY(8deg);
}
.numberArea .innerBlock{
	z-index: 100;
	position: relative;
	display: flex;
	margin: 0 auto;
	max-width: 1380px;
	padding-right: 150px;
	padding-left: 30px;
}
.numberArea .innerBlock .titleBlock{width: 25%;}
.numberArea .innerBlock .textBlock{width: 75%;}

.numberList{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}

.numberList .stat {
	width: calc((100% - 40px *2)/3);
	padding:2em;
	background-color: #fff;
	border-radius:10px;
	text-align: center;
	filter:drop-shadow(var(--shadow-box));
}
.numberList .stat h3{
	line-height: 1.3;
	margin-bottom: 1em;
	padding: 0.3em 1em;
	background-color: var(--color-secondary);
	color: #fff;
	font-weight: 600;
	font-size: var(--font-size-accent);
	text-align: center;
	border-radius: 9999px;
}
.numberList .stat p{margin-top: 1em;}
.numberList .statWrap{
	display: flex;
	gap: 1em;
}
.numberList .statWrap dl{
	width: 50%;
}
.numberList .statWrap dl dt{padding-right: 1em;line-height: 1;}
.counter-wrap {
	display: flex;
	align-items: baseline;
	justify-content: center;
}
.counter {
	line-height: 1.2;
	font-size: 6rem;
	font-weight: 600;
}
.unit {
	font-size: 1.6rem;
	font-weight: 600;
	margin-left: 0.2rem;
}

@media screen and (max-width:1024px) {
	.numberArea .innerBlock{
		padding-left: clamp(20px, 5vw, 30px);
		padding-right: clamp(20px, 5vw, 30px);
	}
	.numberList{gap: 20px;}
	.numberList .stat {width: calc((100% - 20px * 2)/3);}
	.numberList .stat {padding:1.5em;}
}

@media screen and (max-width:840px) {
	.numberArea{padding:50px 0 60px;}
	.numberArea::before {height: 80%;}
	.numberList .stat {width: calc((100% - 20px)/2);}
}

@media screen and (max-width:599px) {
	.numberArea .innerBlock{
		flex-direction: column;
		gap: 20px;
	}
	.numberArea .innerBlock .titleBlock{width:auto;margin: 0 auto;}
	.numberArea .innerBlock .textBlock{width: 100%;}
	.counter {font-size: 4rem;}
}

/* 福利厚生
========================================== */
.benefitArea{
	position: relative;
	padding:100px 0 200px;
}
.benefitArea::before{
	z-index: -1;
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height:80%;
	background-color:#ded0bd;
	transform: translateY(-50%) skewY(-8deg);
}
.benefitArea .innerBlock{
	z-index: 10;
	position: relative;
	margin: 0 auto;
	max-width: 1380px;
	padding-right: 150px;
	padding-left: 30px;
}

.benefitArea .innerBlock .ttlMain{margin-bottom: 3em;}
.benefitBoxWrap{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap:60px 4%;
	align-items: stretch;
}
.benefitBoxWrap .benefitBox{
	display: flex;
	flex-direction: column;
	width:calc((100% - 4% * 2)/3);
	filter:drop-shadow(var(--shadow-box));
}
.benefitBoxWrap .benefitBox .icon img{
	width: 100%;
	height: auto;
}
.benefitBoxWrap .benefitBox h3{
	position: relative;
	z-index: 2;
	line-height: 1.3;
	margin-top: -5em;
	margin-bottom: 2.5em;
	padding:0.6em 1em;
	background-color: var(--bg-beige);
	border-radius: 9999px;
	text-align: center;
	font-size: var(--font-size-accent);
	font-weight: 600;
}
.benefitBoxWrap .benefitBox .textBlock{
	flex: 1;
	margin-top: -1px;
	background-color: #fff;
	border-radius: 0 0 10px 10px;
	padding:1em 2em 2em;
}

@media screen and (max-width:1024px) {
	.benefitArea .innerBlock{
		padding-left: clamp(20px, 5vw, 30px);
		padding-right: clamp(20px, 5vw, 30px);
	}
}
@media screen and (max-width:840px) {
	.benefitArea{padding:50px 0 150px;}
	.benefitArea::before{height:80%;}
	.benefitBoxWrap{gap:20px 30px;}
	.benefitBoxWrap .benefitBox{width:calc((100% - 30px)/2);}
	.benefitBoxWrap .benefitBox h3{margin-top: -3em;margin-bottom: 1em;}
	.benefitBoxWrap .benefitBox .textBlock{padding:1em 1.5em 2em;}

}


@media screen and (max-width:599px) {
	.benefitArea .innerBlock{padding-right: 0;}
	.benefitBoxWrap{
		overflow-x: scroll;
		padding:0 2em 20px 0;
		width: 100%;
		display: grid;
		grid-auto-flow: column;
		grid-auto-columns: minmax(260px, 1fr);
		-webkit-overflow-scrolling: touch;
	}
	.benefitBoxWrap .benefitBox{width:auto;}
	.benefitBoxWrap::-webkit-scrollbar{height: 10px;}
	.benefitBoxWrap::-webkit-scrollbar-track{background: #fff;}
	.benefitBoxWrap::-webkit-scrollbar-thumb {background: var(--color-secondary);}
}


/* 外部リンク
========================================== */
.linkArea{
	position: relative;
	padding:50px 0 200px;
}

.linkArea .linkList{
	margin: 0 auto;
	max-width: 1380px;
	padding-right: 150px;
	padding-left: 30px;
	display: flex;
	gap: 4%;
}
.linkArea .linkList li{
	width: calc((100% - 4% * 2)/3);
}
.linkArea .linkList li a{
	position: relative;
	display: block;
	padding:10px;
	background-color: #fff;
	border-radius: 10px;
	text-decoration: none;
	filter:drop-shadow(var(--shadow-box));
}
.linkArea .linkList li a::after{
	content: "";
	position: absolute;
	right: 10px;
	bottom: 10px;
	background: url(../images/recruit/icn_arrow_green.svg) right bottom/contain no-repeat;
	width: 11px;
	height: 11px;
	transition: 0.3s;
}

.linkArea .linkList li a .imageBlock{
	display: block;
	position: relative;
	overflow: hidden;
	aspect-ratio: 2 / 1;
}
.linkArea .linkList li a .imageBlock::before{
	content: "";
	display: block;
}
.linkArea .linkList li a .imageBlock img{
	z-index: 1;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	object-fit: cover;
	transition: 0.5s;
	border-radius: 5px;
}
.linkArea .linkList li a h3{
	line-height: 1.2;
	margin: 1em 0;
	text-align: center;
	font-size: var(--font-size-accent);
	font-weight: 600;
	color: var(--color-primary);
	transition: 0.3s;
}
.linkArea .linkList li a:hover h3{
	color: var(--color-secondary);
}
.linkArea .linkList li a:hover::after{background-image: url(../images/recruit/icn_arrow_orange.svg);}
.linkArea .linkList li a:hover .imageBlock img{
	opacity: 1;
	transform: scale(1.1);}

@media screen and (max-width:1024px) {
	.linkArea .linkList{
		padding-left: clamp(20px, 5vw, 30px);
		padding-right: clamp(20px, 5vw, 30px);
	}
}
@media screen and (max-width:840px) {
	.linkArea{padding:0 clamp(20px, 5vw, 30px) 100px;}
}

@media screen and (max-width:599px) {
	.linkArea .linkList{
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
		padding: 0;
	}
	.linkArea .linkList li{width: calc((100% - 20px)/2);}
}



/* footer
========================================== */
footer {
	position: relative;
	margin-top: 50px;
	width: 100%;
	background-color: var(--color-primary);
}
footer::before{
	z-index: 1;
	content:"";
	position: absolute;
	left: 0;
	bottom: 99%;
	width: 120%;
	height: 200px;
	background-color: var(--color-primary);
	clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.footerWrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding:50px 30px;
	max-width: 1350px;
	padding-right: 150px;
}
.footerInfo{width: 30%;color: #fff;}
.footerInfo .footerLogo{margin-bottom: 30px;}
.footerInfo .footerLogo img{margin-bottom: 10px;}
.footerInfo .footerLogo a{
	display: inline-block;
	padding: 20px 25px;
	background-color: #fff;
	border-radius: 5px;
	box-shadow: var(--shadow-primary);
	text-align: center;
	text-decoration: none;
}
.footerName{
	margin-bottom: 0.6em;
	font-weight: 600;
}
.footerTel{
	margin-top:20px;
	font-family: var(--font-secondary);
	color: #fff;
}
.footerTel a{
	line-height: 1.3;
	letter-spacing: 2px;
	text-decoration: none;
	font-size: clamp(2.4rem, 3vw + 0.8rem, 3rem);
	color: #fff;
}

.footerNaviWrap{
	width: 70%;
}
.footerNavi{
	display: flex;
	justify-content:space-between;
	gap:1em 3em;
	margin-bottom: 50px;
}
.footerNavi ul{
	display: flex;
	flex-direction: column;
	gap: 1.5em;
}
.footerNavi ul li,
.footerNavi ul li a{
	line-height: 1.2;
	text-decoration: none;
	font-weight: 600;
	color: #fff;
}
.footerNavi li a:hover{
	text-decoration: underline;
}
.footerNavi ul li ul{
	margin-top: 1.5em;
	margin-left: 1em;
}
.footerNavi ul li ul li{
	position: relative;
	padding-left: 23px;
}
.footerNavi ul li ul li::before{
	content: "";
	position: absolute;
	top: 4px;
	left:0;
	background: url(../images/recruit/icn_arrow_white.svg)left top/contain no-repeat;
	width:11px;
	height: 11px;
	transform: rotate(-45deg);
}

.footerSns{
	display: flex;
	justify-content:flex-end;
	align-items: center;
	gap:1em 1.5em;
	margin: 1.5em 0;
}
.footerSns li{
	line-height: 1;
	font-size: var(--font-size-caption);
}
.footerSns li a:hover img{
	opacity: 0.7;
	transition: 0.3s;
}
.footerSns li.company a{
	position: relative;
	padding: 0.3em 40px 0.3em 1.5em;
	text-decoration: none;
	background-color: var(--color-accent);
	border-radius: 9999px;
	font-weight: 600;
	transition: 0.3s;
}
.footerSns li.company a::after{
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	background: url(../images/recruit/icn_external.svg) right top/contain no-repeat;
	transform: translateY(-50%);
	width:12px;
	height:12px;
	transition: .3s;
}
.footerSns li.company a:hover{
	background-color: var(--color-secondary);
}
.copyright {
	margin: 0 auto;
	padding:2rem 1rem;
	text-align: center;
	font-size: 1.2rem;
	background-color: var(--color-primary);
	color: #fff;
}

@media screen and (max-width: 1024px) {
	footer {padding-bottom: 70px;}
	footer::before{height: 150px;}
	.footerWrap{
		align-items: flex-start;
		column-gap: 60px;
		padding-right: clamp(20px, 5vw, 30px);}
	.footerNavi{gap:2em 3em;}
}

@media screen and (max-width: 840px) {
	.footerWrap {
		flex-direction: column;
		padding:30px clamp(20px, 5vw, 30px) 0;
		gap: 60px;
	}
	footer::before{height: 80px;}
	.footerNavi{justify-content: space-between;}
	.footerNaviWrap{width: 100%;}
	.footerNavi > ul{width:calc((100% - 3em * 2)/3);}
	.footerInfo{width: 100%;text-align: center;}
	.copyright {padding: 1em;}
}

@media screen and (max-width: 599px) {
	.footerNavi{width: 100%;flex-wrap: wrap;}
	.footerNavi > ul{width:calc((100% - 3em)/2);}
	.footerNavi > ul:nth-child(1){order: 1;}
	.footerNavi > ul:nth-child(2){order: 3;}
	.footerNavi > ul:nth-child(3){order: 2;}
	.footerNavi ul li,
	.footerNavi ul li a{font-size: 1.4rem;}
}


/* pageTop
========================================== */
#pageTop{
	position:fixed;
	line-height: 1;
	right:0;
	bottom:20px;
	z-index: 100;
	width: 70px;
}
#pageTop a{
	display: block;
}
#pageTop img{
	max-width:100%;
	height: auto;
}
#pageTop:hover{
	bottom:30px;
	transition: 0.3s;
}

@media screen and (max-width: 1200px) {
	#pageTop{width: 60px;}
}
@media screen and (max-width: 1024px) {
	#pageTop{display: none!important;}
}


