/******************************************************************
recruit css
*/
:root {
	--recruit-main-color: #09469C;
	--recruit-mainsub-color: #E0E9F1;
}
/* header
----------------------------------------------------------- */
.recruit-logo a{
	display: flex;
	align-items: center;
}
.recruit-logo__img{
	height: clamp(40px, 3.1vw, 60px);
	width: auto;
	margin-right: 10px;
}
.recruit-logo__text{
	display: block;
	font-size: 14px;
	padding: 4px 10px;
	border-radius: 2px;
	background-color: var(--recruit-main-color);
	line-height: 1.4;
	color: #fff;
}
.recruit-navwrap {
	width:100%;
	background-color: rgba(255,255,255,0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	position:fixed;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	align-items: center;
	top:0;
	left:0;
	z-index:998;
	transition:all ease 0.8s;
	padding: 0 25px;
}
.recruit-navwrap-left{
	display:flex;
	flex-wrap:wrap;
	align-items: center;
}
.recruit-left-link{
	margin-left: clamp(15px, 1.3vw, 25px);
	display:flex;
	flex-wrap:wrap;
	align-items: center;
}
.recruit-left-link__item{
	text-align: center;
	position: relative;
}
.recruit-left-link__item a{
	display: inline-block;
	padding: clamp(20px, 1.6vw, 30px) clamp(15px, 1.3vw, 25px);
	transition: color 0.4s ease;
	position: relative;
}
.recruit-left-link__item a:hover{
	color: var(--recruit-main-color);
}
.recruit-right-link__item a{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 40px;
	border-radius: 50px;
	color: #fff;
	background-color: var(--recruit-main-color);
	transition: background-color 0.4s ease;
	line-height: 1.4;
	position: relative;
}
.recruit-right-link__item a:hover{
	background-color: #5980B7;
}
.recruit-right-link__item a::before{
	content: "";
	position: absolute;
	left: -2px;
	top: -2px;
	border: 1px solid #5980B7;
	border-radius: 50px;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
}
.recruit-right-link__item a svg{
	height: 15px;
	margin-left: 15px;
	width: auto;
}
.entry-btn{
	position: fixed;
	right: 20px;
	bottom: 20px;
	background-color: var(--recruit-main-color);
	color: #fff;
	width: clamp(120px, 7.8vw, 150px);
	height: clamp(120px, 7.8vw, 150px);
	border-radius: 80px;
	display: grid;
	place-content: center;
	place-items: center center;
	margin: 20px;
	font-size: 11px;
	transition: background-color 0.4s ease, color 0.4s ease;
	z-index: 3;
}
.entry-btn:hover{
	background-color: #fff;
	color: var(--recruit-main-color);
}
.entry-btn::before,
.entry-btn::after{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: calc(100% + 40px);
	height: calc(100% + 40px);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	animation: rotateForever 30s linear infinite;
	transition: opacity 0.4s ease;
}
.entry-btn::before{
	background-image: url('../images/entry-btn-text.png');
}
.entry-btn:hover::before{
	opacity: 0;
}
.entry-btn::after{
	background-image: url('../images/entry-btn-text-hover.png');
	opacity: 0;
}
.entry-btn:hover::after{
	opacity: 1;
	animation: rotateForever 5s linear infinite;
}
@keyframes rotateForever {
	0% { transform: translate(-50%,-50%) rotate(0deg); }
	100% { transform: translate(-50%,-50%) rotate(360deg); }
}
.entry-btn svg{
	height: 25px;
	width: auto;
	margin-bottom: 5px;
}
.entry-btn:hover svg path{
	fill: var(--recruit-main-color);
}
.entry-btn span{
	font-size: var(--fontsize-20);
	font-weight: 700;
	position: relative;
}
.top_back{
	background-color: var(--recruit-main-color);
	left: 15px;
	right: auto;
}
/* recruit
----------------------------------------------------------- */
.recruit-fv{
	width: 100%;
	height: 100vh;
	position: relative;
	z-index: -1;
}
.recruit-fv__bg{
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
}
.recruit-fv__bg::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background-color: rgba(255,255,255,0.6);
	-webkit-backdrop-filter: blur(20px) brightness(1.15);
	backdrop-filter: blur(20px) brightness(1.15);
	opacity: 0;
	transition: opacity 0.4s ease;
}
.is-view .recruit-fv__bg::before{
	opacity: 1;
}
.recruit-slider{
	height: 100%;
	width: 100%;
}
.recruit-slider img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.recruit-fv__text{
	color: #fff;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	display: grid;
	place-content: center;
	place-items: center center;
	font-family: "BIZ UDPMincho", serif;
	margin-top: clamp(30px, 2.6vw, 50px);
	pointer-events: none;
	transition: filter 0.5s ease;
}
.is-view .recruit-fv__text{
	filter: blur(3.5px);
}
.recruit-fv__title{
	writing-mode: vertical-rl;
	letter-spacing: 0.1em;
	line-height: 1.8;
	font-size: clamp(33px, 2.6vw, 50px);
	margin-bottom: 20px;
}
.recruit-read{
	position: relative;
}
.recruit-read .inner{
	padding: 0 0 clamp(120px, 10.1vw, 195px);
}
.recruit-read__title{
	text-align: center;
	color: var(--recruit-main-color);
	font-size: clamp(30px, 2.6vw, 50px);
	margin-bottom: clamp(30px, 3.4vw, 65px);
}
.recruit-read__maskItem {
	font-size: var(--fontsize-25);
	color: var(--recruit-main-color);
	font-weight: 700;
	line-height: 2.5;
}
.recruit-read__maskText {
	text-align: center;
	backface-visibility: hidden;
	-webkit-mask-image: url('../images/paragraph-mask.png');
	mask-image: url('../images/paragraph-mask.png');
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 500%;
	mask-size: 100% 500%;
	-webkit-mask-position: 0 100%;
	mask-position: 0 100%;
}
.recruit-read__en {
	display:flex;
	position:absolute;
	left: 0;
	bottom: 5px;
}
.recruit-read__en li {
	animation:text-loop 100s linear 0s infinite;
	line-height: 1;
	font-size: 80px;
	color: rgba(0,0,0,0.05);
	font-family: "Marcellus", serif;
	white-space: nowrap;
	padding-right: 0.5em;
	font-weight: 400;
	font-style: normal;
}
.recruit-read__en li:nth-child(2) {
	animation:text-loop2 100s linear -50s infinite;
}
@keyframes text-loop {
	0% {
		transform:translateX(100%)
	}
	to {
		transform:translateX(-100%)
	}
}
@keyframes text-loop2 {
	0% {
		transform:translateX(0)
	}
	to {
		transform:translateX(-200%)
	}
}
.recruit-h2{
	font-size: clamp(25px, 2.6vw, 50px);
	margin-bottom: clamp(40px, 4.1vw, 80px);
	color: var(--recruit-main-color);
	text-align: center;
	line-height: 1.4;
}
.recruit-h2 span{
	display: block;
	font-size: var(--fontsize-16);
}
.recruit-merit__bg{
	background-image: url('../images/recruit-merit-bg.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.recruit-merit .recruit-h2{
	color: #fff;
}
.merit-list__item{
	position: relative;
	display: flex;
	align-items: center;
}
.merit-list__item:not(:last-child){
	margin-bottom: clamp(40px, 4.1vw, 80px);
}
.merit-list__item:nth-child(odd){
	justify-content: flex-end;
}
.merit-list__item:nth-child(even){
	flex-direction: row-reverse;
}
.merit-list__illust{
	position: relative;
}
.merit-list__item:nth-child(odd) .merit-list__illust{
	right: -50px;
}
.merit-list__item:nth-child(even) .merit-list__illust{
	left: -50px;
}
.merit-list__illust img{
	height: 200px;
	width: auto;
}
.merit-list__box{
	width: 75%;
	background-color: #fff;
	border-radius: 3px;
	padding: clamp(20px, 2.6vw, 50px) clamp(30px, 4.7vw, 90px);
}
.merit-list__label{
	line-height: 1.4;
	color: var(--recruit-main-color);
	font-family: "Marcellus", serif;
}
.merit-list__title{
	line-height: 1.4;
	color: var(--recruit-main-color);
	font-size: var(--fontsize-25);
	margin-bottom: 15px;
}
.merit-list__text{
	margin-left: 20px;
	padding: 10px 0 10px 20px;
	border-left: 1px solid rgba(0,0,0,0.1);
}
.recruit-portrait__bg{
	background-image: linear-gradient(to right, #E0E9F1 0%, #E0E9F1 40%, #FAFAFA 40%, #FAFAFA 100%);
}
.recruit-portrait .inner{
	width: min(90%,1415px);
	padding: clamp(70px, 8.3vw, 160px) 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.recruit-portrait .recruit-h2{
	writing-mode: vertical-rl;
	text-orientation: upright;
	letter-spacing: 0.1em;
	text-align: left;
	margin-left: clamp(40px, 5.2vw, 100px);
}
.portrait-list{
	width: 68%;
}
.portrait-list__item{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.portrait-list__item:not(:last-child){
	margin-bottom: clamp(40px, 4.9vw, 95px);
}
.portrait-list__img{
	width: 41.5%;
}
.portrait-list__img img{
	width: 100%;
	height: auto;
}
.portrait-list__body{
	width: 52%;
}
.portrait-list__label{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	color: var(--recruit-main-color);
	line-height: 1.4;
	font-family: "Marcellus", serif;
}
.portrait-list__number{
	display: block;
	padding-left: 50px;
	font-size: 30px;
	position: relative;
}
.portrait-list__number::before{
	content: "";
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	padding: 12.5px;
	background-image: url('../images/portrait-list-number-line.svg');
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.portrait-list__title{
	color: var(--recruit-main-color);
	font-size: var(--fontsize-25);
	margin-bottom: 15px;
}
.recruit-job__bg{
	background-color: #FAFAFA;
}
.recruit-job__bg .inner{
	padding: clamp(70px, 8.3vw, 160px) 0 0;
}
.job-nav{
	background-color: #fff;
	padding: 8px;
	box-shadow: 0px 40px 60px 0px rgba(0, 0, 0, 0.08);
	display: grid;
	gap: 8px;
	grid-template-columns: repeat(4, 1fr);
	position: relative;
	z-index: 1;
}
.job-nav__item a{
	width: 100%;
	height: 100%;
	padding: 20px 10px;
	background-color: var(--recruit-mainsub-color);
	border-radius: 3px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.5s ease, color 0.5s ease;
	color: var(--recruit-main-color);
}
.job-nav__item a:hover{
	color: #fff;
	background-color: var(--recruit-main-color);
}
.job-nav__item a svg{
	height: 1em;
	width: auto;
	margin-left: 10px;
}
.job-nav__item a svg path,
.job-nav__item a svg circle{
	transition: fill 0.5s ease;
}
.job-nav__item a:hover svg circle{
	fill: #fff;
}
.job-nav__item a:hover svg path{
	fill: var(--recruit-main-color);
}
.job-item:first-of-type .inner{
	padding-top: clamp(40px, 4.1vw, 80px);
}
.job-item__bg{
	background-image: linear-gradient(to bottom, #FAFAFA 0%, #FAFAFA 60%, #E0E9F1 60%, #E0E9F1 100%);
}
.job-item__flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: clamp(30px, 3.4vw, 65px);
}
.job-item__img{
	width: 50%;
}
.job-item__img img{
	width: 100%;
	height: auto;
}
.job-item__text{
	width: 46.5%;
}
.job-item__title{
	font-size: var(--fontsize-25);
	margin-bottom: 30px;
	font-family: "BIZ UDPGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	line-height: 1.4;
}
.job-item__title span{
	font-size: var(--fontsize-16);
	color: var(--recruit-main-color);
	font-family: "Marcellus", serif;
	display: block;
}
.job-item__box{
	background-color: #FFFFFF;
	padding: clamp(30px, 3.4vw, 65px) clamp(20px, 2.6vw, 50px);
	border: 1px solid #EAEAEA;
}
.job-item__box-title{
	text-align: center;
	line-height: 1.4;
	font-size: var(--fontsize-25);
	color: var(--recruit-main-color);
	margin-bottom: 30px;
}
.job-item__box-list{
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(3, 1fr);
}
.job-item__box-item{
	display: grid;
	place-content: center;
	place-items: center center;
	color: #fff;
	text-align: center;
	background-image: linear-gradient(to right bottom, #09469C, #2A66BA, #05234E);
	padding: clamp(20px, 2vw, 40px) 20px;
}
.recruit-process .recruit-h2{
	color: #fff;
}
.recruit-process__bg{
	background-image: url('../images/recruit-process-bg.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.process-list{
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, 1fr);
}
.process-list__item{
	background-color: rgba(250,250,250,0.15);
	padding: clamp(25px, 2.6vw, 50px) 30px;
	-webkit-backdrop-filter: blur(30px);
	backdrop-filter: blur(30px);
	color: #fff;
}
.process-list__title{
	text-align: center;
	font-size: var(--fontsize-20);
	margin-bottom: 25px;
	font-family: "BIZ UDPGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	line-height: 1.4;
}
.process-list__img{
	height: clamp(60px, 5.2vw, 100px);
	width: auto;
	margin: 0 auto 20px;
}
.recruit-recruitment__bg{
	background-color: var(--recruit-mainsub-color);
	position: relative;
	z-index: 0;
}
.recruit-recruitment__bg::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: clamp(130px, 14vw, 270px);
	background-color: #FAFAFA;
	z-index: -1;
}
.recruitment-list__item{
	background-color: #fff;
	border-radius: 3px;
}
.recruitment-list__item:not(:last-child){
	margin-bottom: 25px;
}
.recruitment-list__button{
	padding: clamp(20px, 2.6vw, 50px) calc(clamp(20px, 3.4vw, 65px) + 30px) clamp(20px, 2.6vw, 50px) clamp(20px, 3.4vw, 65px);
	font-size: var(--fontsize-25);
	color: var(--recruit-main-color);
}
.recruitment-list__type{
	padding-left: 25px;
	position: relative;
}
.recruitment-list__type::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 8px;
	width: 8px;
	border-radius: 4px;
	background-color: var(--recruit-main-color);
}
.recruitment-list .js-accordion-button::before,
.recruitment-list .js-accordion-button::after{
	right: clamp(20px, 3.4vw, 65px);
	width: 20px;
	height: 2px;
	background-color: var(--recruit-main-color);
}
.recruitment-list__inner{
	background-color: #F4F4F4;
	border-radius: 3px;
	padding: clamp(20px, 2.6vw, 50px) clamp(20px, 5.5vw, 105px);
	margin: 0 clamp(20px, 3.4vw, 65px) clamp(20px, 2.6vw, 50px);
}
.recruitment-list__row{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border-bottom: 1px solid #DBDBDB;
	padding-bottom: 25px;
}
.recruitment-list__row:not(:last-of-type){
	margin-bottom: 25px;
}
.recruitment-list__term{
	font-weight: 700;
	width: 160px;
}
.recruitment-list__desc{
	width: calc(100% - 160px);
}
.recruit-entry-btn{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: clamp(30px, 4.1vw, 80px) clamp(30px, 12.5vw, 240px);
	background-image: linear-gradient(to right bottom, #09469C, #69D9EF);
	color: #fff;
	margin-top: clamp(50px, 6.8vw, 130px);
	transition: opacity 0.5s ease;
}
.recruit-entry-btn:hover{
	opacity: 0.7;
}
.recruit-entry-btn__title{
	line-height: 1.4;
}
.recruit-entry-btn__en{
	display: block;
	font-family: "Marcellus", serif;
	font-size: clamp(40px, 4.1vw, 80px);
}
.recruit-entry-btn__icon{
	height: clamp(50px, 4.1vw, 80px);
	width: auto;
}
/* footer
----------------------------------------------------------- */
.recruit-footer{
	background-color: #222; 
}
.recruit-footer .inner{
	padding: clamp(40px, 4.1vw, 80px) 0 10px;
	width: min(90%,800px);
}
.recruit-footer-wrap{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.recruit-footer-info .recruit-logo__img{
	margin-right: 20px;
}
.recruit-footer-info__link{
	display: flex;
	align-items: center;
	margin-top: clamp(20px, 2vw, 40px);
}
.recruit-footer-info__link a{
	color: #D6D6D6;
	text-decoration: underline;
	transition: opacity 0.4s ease;
	font-size: var(--fontsize-15);
}
.recruit-footer-info__link a:hover{
	opacity: 0.7;
}
.recruit-footer-info__link svg{
	height: 15px;
	width: auto;
	margin-left: 10px;
}
.recruit-footer-sitemap__item:not(:last-of-type){
	margin-bottom: clamp(10px, 1.3vw, 25px);
}
.recruit-footer-sitemap__item a{
	color: #868686;
	font-size: 14px;
	line-height: 1.4;
	transition: opacity 0.4s ease;
}
.recruit-footer-sitemap__item a:hover{
	opacity: 0.7;
}
@media screen and (max-width: 1400px) {
	/* 
	 header
	----------------------------------------------------------- */
	.recruit-navwrap {
		padding: 0 15px;
	}
	.recruit-left-link__item a{
		padding: 20px 10px;
		font-size: 15px;
	}
	.recruit-right-link__item a{
		padding: 10px 20px;
		font-size: 15px;
	}
	.recruit-right-link__item a svg{
		height: 13px;
		margin-left: 5px;
	}
	.merit-list__item:nth-child(odd) .merit-list__illust{
		right: -30px;
	}
	.merit-list__item:nth-child(even) .merit-list__illust{
		left: -30px;
	}
}
@media screen and (max-width: 1100px) {
	/* 
	 header
	----------------------------------------------------------- */
	.recruit-navwrap{
		height: 60px;
	}
	.recruit-left-link{
		display: none;
	}
	.recruit-navwrap-right{
		margin-right: 50px;
	}
	/* 
	 recruit
	----------------------------------------------------------- */
	.merit-list__item:nth-child(odd) .merit-list__illust{
		right: -10px;
	}
	.merit-list__item:nth-child(even) .merit-list__illust{
		left: -10px;
	}
	.recruit-portrait .inner{
		display: block;
	}
	.recruit-portrait .recruit-h2{
		writing-mode: inherit;
		margin-left: 0;
	}
	.portrait-list{
		width: 100%;
	}
	.merit-list__illust img{
		height: 150px;
		width: auto;
	}
	.job-nav{
		grid-template-columns: repeat(2, 1fr);
	}
	.job-item__box-list{
		gap: 20px;
	}
	.process-list{
		grid-template-columns: repeat(2, 1fr);
	}
	/* 
	 footer
	----------------------------------------------------------- */
	.recruit-footer-sitemap{
		display: none;
	}
	.recruit-footer-wrap{
		margin-bottom: 100px;
	}
}
@media screen and (max-width: 820px) {
	/* 
	 header
	----------------------------------------------------------- */
	.entry-btn{
		right: 10px;
		bottom: 10px;
		width: 90px;
		height: 90px;
		margin: 15px;
		font-size: 10px;
	}
	.entry-btn::before,
	.entry-btn::after{
		width: calc(100% + 30px);
		height: calc(100% + 30px);
	}
	.entry-btn svg{
		height: 15px;
		margin-bottom: 3px;
	}
	.entry-btn span{
		font-size: 16px;
		line-height: 1.3;
	}
	/* 
	 recruit
	----------------------------------------------------------- */
	.portrait-list__label{
		margin-bottom: 10px;
	}
	.portrait-list__img{
		width: 40%;
	}
	.portrait-list__body{
		width: 57%;
	}
	.job-item__bg{
		background-image: linear-gradient(to bottom, #FAFAFA 0%, #FAFAFA 80%, #E0E9F1 80%, #E0E9F1 100%);
	}
	.job-item__img{
		width: 100%;
		margin-bottom: 20px;
	}
	.job-item__text{
		width: 100%;
	}
	.job-item__box-list{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.job-item__box-item{
		width: calc(50% - 20px);
	}
	.job-item__title{
		margin-bottom: 20px;
	}
	.recruitment-list__row{
		padding-bottom: 15px;
	}
	.recruitment-list__row:not(:last-of-type){
		margin-bottom: 15px;
	}
	.job-item__box-title{
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 640px) {
	/* 
	 header
	----------------------------------------------------------- */
	.recruit-right-link__item{
		display: none;
	}
	/* 
	 recruit
	----------------------------------------------------------- */
	.recruit-read__title{
		font-size: 25px;
	}
	.recruit-read__maskText{
		font-size: 14.5px;
	}
	.recruit-read__en li {
		font-size: 60px;
	}
	.merit-list__illust{
		display: none;
	}
	.merit-list__box{
		width: 100%;
	}
	.merit-list__text{
		margin-left: 0;
	}
	.portrait-list__img{
		width: 100%;
		margin-bottom: 20px;
	}
	.portrait-list__body{
		width: 100%;
	}
	.job-nav{
		grid-template-columns: repeat(1, 1fr);
	}
	.job-nav__item a{
		padding: 10px;
	}
	.job-item__box-item{
		width: 100%;
	}
	.process-list{
		grid-template-columns: repeat(1, 1fr);
	}
	.recruitment-list__term{
		width: 100%;
		margin-bottom: 5px;
	}
	.recruitment-list__desc{
		width: 100%;
	}
}