@charset "utf-8";


#recruit .intro {
	font-weight: normal;
	font-size: 20px;
	line-height: 36px;
	text-align: center;
	margin-bottom: 65px;
}
#recruit .intro p {
	margin-top: 45px;
}
#recruit .intro p:first-child {
	margin-top: 0px;
}
#recruit h2.subtitle {
	font-weight: bold;
	font-size: 32px;
	line-height: 48px;
	text-align: center;
	color: #1e88e4;
	background-image: url("/recruit/img/subtitle_icon.svg");
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: 22px auto;
	margin-bottom: 50px;
	padding-bottom: 50px;
}
#recruit .subtitle2 {
	font-weight: 600;
	font-size: 22px;
	line-height: 35px;
	text-align: center;
	margin-bottom: 30px;
}

@media(min-width:769px) and (max-width:1200px) {
}
@media(max-width:768px){
	#recruit .intro {
        font-size: 16px;
        line-height: 30px;
        text-align: left;
	}
	#recruit h2.subtitle {
		font-size: 20px;
		line-height: 34px;
	}
}



/*---- header ----*/
#recruit header {
	position: relative;
	width: 100%;
	color: #4d4d4d;
	z-index: 100;
}
#recruit header a {
	text-decoration: none;
}
#recruit header .companyname {
	position: absolute;
	top: 0px;
	left: 0px;
	margin: 15px 0 0 40px;
}
#recruit header .companyname .logo {
	display: inline-block;
	width: 184px;
	margin-right: 50px;
	vertical-align: middle;
}
#recruit header .companyname .logo img {
	width: 100%;
}
#recruit header .companyname .txt {
	display: inline-block;
	font-size: 12px;
	line-height: 18px;
	margin-top: 12px;
	vertical-align: middle;
}
#recruit header .companyname .txt span {
	font-family: "DIN Pro", "Outfit", sans-serif;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1px;
	margin-left: 20px;
}
#recruit header .recruitmenu {
	position: fixed;
	top: 0px;
	right: 0px;
	display: flex;
	justify-content: flex-end;
}
#recruit header .recruitmenu .btn_corporate a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 88px;
	width: 100%;
	min-width: 240px;
	text-align: center;
	font-weight: 500;
	font-size: 22px;
	line-height: 1;
	color: #fff;
	background: #1E88E4;
	transition-duration: .5s;
}
#recruit header .recruitmenu .btn_corporate a:hover {
	background-color: #6FB6F3;
}
#recruit header .recruitmenu .btn_entry a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 88px;
	width: 100%;
	min-width: 170px;
	text-align: center;
	font-family: "DIN Pro", "Outfit", sans-serif;
	font-weight: 500;
	font-size: 24px;
	line-height: 1;
	color: #fff;
	background: #df913f;
	transition-duration: .5s;
}
#recruit header .recruitmenu .btn_entry a:hover {
	background-color: #FFBB74;
}
#recruit header .recruitmenu .popupbtn {
	position: relative;
	display: inline-block;
	height: 88px;
	width: 88px;
	background-color: #FFF;
	cursor: pointer;
	transition-duration: .5s;
}
#recruit header .recruitmenu .popupbtn div {
	display: inline-block;
	position: absolute;
	left: 50%;
	height: 2px;
	width: 28px;
	margin-left: -14px;
	background-color: #1E88E4;
}
#recruit header .recruitmenu .popupbtn:hover div {
	background-color: #6FB6F3;
}
#recruit header .recruitmenu .popupbtn div:nth-of-type(1) { bottom: 55px;}
#recruit header .recruitmenu .popupbtn div:nth-of-type(2) { bottom: 43px;}
#recruit header .recruitmenu .popupbtn div:nth-of-type(3) { bottom: 31px;}
#recruit header .recruitmenu .popupmenu {
	opacity: 0;
	visibility: hidden;

	position: fixed;
	left: 0px;
	top: -200px;
	width: 100%;

	background: #e7ecfc;
	padding: 70px 20px;
	transition: 0.5s;
}
#recruit header .recruitmenu .popupmenu.active {
	opacity: 1;
	visibility: visible;
	bottom: auto;
	top: 0px;
	left: 0px;
}
#recruit header .recruitmenu .popupmenu .close {
	position: absolute;
	top: 30px;
	right: 33px;
	cursor: pointer;
}
#recruit header .recruitmenu .popupmenu .close img {
	width: 30px;
}
#recruit header .recruitmenu .popupmenu .flexBox {
	display: flex;
	justify-content: center;
	gap: 0px 50px;
}
#recruit header .recruitmenu .popupmenu .flexBox li a {
	text-decoration: none;
}
#recruit header .recruitmenu .popupmenu .flexBox li a:hover {
	text-decoration: underline;
	color: #1740b9;
}
#recruit header .recruitmenu .popupmenu .flexBox li.link {
	margin-bottom: 20px;
}
#recruit header .recruitmenu .popupmenu .flexBox li.link span,
#recruit header .recruitmenu .popupmenu .flexBox li.link a {
	font-weight: 500;
	font-size: 16px;
	line-height: 27px;
}
#recruit header .recruitmenu .popupmenu .flexBox li.sublink a {
	font-size: 16px;
	line-height: 30px;
}

#overlay {
	opacity: 0;
	filter: alpha(opacity=0);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background: #000;
	overflow: hidden;
}

@media(min-width:769px) and (max-width:1200px) {
	#recruit header .companyname {
		width: calc(100% - 40px);
	}
	#recruit header .companyname .logo {
		display: block;
	}
	#recruit header .companyname .txt {
		display: block;
		width: 100%;
		text-align: center;
		font-size: 1.5vw;
	}
	#recruit header .companyname .txt span {
		font-size: 1.7vw;
	}
	#recruit header .recruitmenu .btn_corporate a {
		height: 60px;
		width: 100%;
		min-width: 20vw;
		font-size: 2vw;
	}
		#recruit header .recruitmenu .btn_entry a {
		height: 60px;
		width: 100%;
		min-width: 13vw;
		font-size: 2vw;
	}
	#recruit header .recruitmenu .popupbtn {
		height: 60px;
		width: 60px;
	}
	#recruit header .recruitmenu .popupbtn div {
		left: 50%;
		height: 2px;
		width: 30px;
		margin-left: -15px;
	}
	#recruit header .recruitmenu .popupbtn div:nth-of-type(1) { bottom: 38px;}
	#recruit header .recruitmenu .popupbtn div:nth-of-type(2) { bottom: 28px;}
	#recruit header .recruitmenu .popupbtn div:nth-of-type(3) { bottom: 18px;}
}
@media(max-width:768px){
	#recruit header .companyname {
		margin: 5px 0 0 15px;
		width: calc(100% - 30px);
	}
	#recruit header .companyname .logo {
		display: block;
		width: 27vw;
	}
	#recruit header .companyname .txt {
		display: block;
		text-align: center;
		font-size: 2vw;
		margin-top: 3px;
	}
	#recruit header .companyname .txt span {
		font-size: 2.2vw;
		margin-left: 15px;
	}
	#recruit header .recruitmenu .btn_corporate a {
		height: 45px;
		width: 100%;
		min-width: 27vw;
		font-size: 2.8vw;
	}
	#recruit header .recruitmenu .btn_entry a {
		height: 45px;
		width: 100%;
		min-width: 18vw;
		font-size: 2.8vw;
	}
	#recruit header .recruitmenu .popupbtn {
		height: 45px;
		width: 45px;
	}
	#recruit header .recruitmenu .popupbtn div {
		left: 50%;
		height: 2px;
		width: 18px;
		margin-left: -9px;
	}
	#recruit header .recruitmenu .popupbtn div:nth-of-type(1) { bottom: 28px;}
	#recruit header .recruitmenu .popupbtn div:nth-of-type(2) { bottom: 22px;}
	#recruit header .recruitmenu .popupbtn div:nth-of-type(3) { bottom: 16px;}
	#recruit header .recruitmenu .popupmenu {
		padding: 70px 20px 40px;
	}
	#recruit header .recruitmenu .popupmenu .close {
		top: 15px;
		right: 15px;
	}
	#recruit header .recruitmenu .popupmenu .close img {
		width: 20px;
	}
	#recruit header .recruitmenu .popupmenu .flexBox {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 0px 50px;
	}
	#recruit header .recruitmenu .popupmenu .flexBox ul {
		width: 40%;
		margin-bottom: 40px;
	}
	#recruit header .recruitmenu .popupmenu .flexBox li.link {
		margin-bottom: 0px;
	}
	#recruit header .recruitmenu .popupmenu .flexBox li.link span,
	#recruit header .recruitmenu .popupmenu .flexBox li.link a {
		font-size: 13.2px;
		line-height: 32.4px;
	}
	#recruit header .recruitmenu .popupmenu .flexBox li.sublink a {
		font-size: 12px;
		line-height: 24px;
	}
}

/* footer設置時 */
#recruit .recruitfooter header {
	position: inherit;
    margin-top: 200px;
}
#recruit .recruitfooter header .recruitmenu{
	position: inherit;
}
#recruit .recruitfooter header .companyname,
#recruit .recruitfooter header .recruitmenu .btn_corporate,
#recruit .recruitfooter header .recruitmenu .btn_entry,
#recruit .recruitfooter header .recruitmenu .popupbtn {
	display: none;
}
#recruit .recruitfooter header .recruitmenu .popupmenu {
	opacity: inherit;
	visibility: visible;
	position: inherit;
	left: 0px;
	top: 0px;
}
#recruit .recruitfooter header .recruitmenu .popupmenu .close {
	display: none;
}
@media(max-width:768px){
    #recruit .recruitfooter header {
        margin-top: 80px;
    }
	#recruit .recruitfooter header .recruitmenu .popupmenu {
		padding: 40px 10px 30px 20px;
	}
	#recruit .recruitfooter header .recruitmenu .popupmenu .flexBox {
		justify-content: space-between;
		gap: 0 5px;
	}
	#recruit .recruitfooter header .recruitmenu .popupmenu .flexBox ul {
		width: 32%;
		margin-bottom: 20px;
	}
	#recruit .recruitfooter header .recruitmenu .popupmenu .flexBox li.link span,
	#recruit .recruitfooter header .recruitmenu .popupmenu .flexBox li.link a {
		font-size: 11px;
		line-height: 16px;
	}
	#recruit .recruitfooter header .recruitmenu .popupmenu .flexBox li.sublink a {
		font-size: 10px;
		line-height: 16px;
	}
}


/*---- mv ----*/
#recruit #mv {
	width: 100%;
	height: 300px;
	background-image: url("/recruit/img/recruit_mv.jpg");
	background-position: top -29.5vw center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding: 205px 20px 0;
	z-index: 8;
}
#recruit #mv .titleback {
	background-color: #FFF;
	border-radius: 40px 0px 0px;
	width: 100%;
	max-width: 1200px;
	height: 100px;
	margin: 0px auto;
}

#recruit .title {
	margin-top: -30px;
	margin-bottom: 80px;
}
#recruit .title h1 {
	font-weight: 500;
	font-size: 44px;
	line-height: 66px;
	text-align: center;
}

@media(min-width:769px) and (max-width:1200px) {
	#recruit #mv {
		background-position: bottom center;
	}
}
@media(max-width:768px){
	#recruit #mv {
		height: 40vw;
		background-position: bottom -10vw center;
		background-size: 170% auto;
		padding: 28vw 30px 0;
	}
	#recruit #mv .titleback {
		border-radius: 20px 0px 0px;
		height: 100px;
	}
	#recruit .title {
		margin-top: -4vw;
		margin-bottom: 80px;
	}
	#recruit .title h1 {
		font-size: 22px;
		line-height: 27px;
	}
}


/*---- btn ----*/
#recruit a.btn_icon {
	position: relative;
	display: block;
	padding: 18px;
	border: 2px solid #006ac6;
	font-weight: 500;
	font-size: 16.8px;
	line-height: 25px;
	color: #006ac6;
	text-align: center;
	text-decoration: none;
	transition-duration: .3s;
}
#recruit a.btn_icon .arrow {
	position: absolute;
	display: inline-block;
	top: calc(50% - 12px);
	right: 20px;
	width: 18px;
	height: 2px;
	margin: 12px 0 6px 8px;
	border-radius: 9999px;
	background-color: #006ac6;
}
#recruit a.btn_icon .arrow::before,
#recruit a.btn_icon .arrow::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 0;
	width: 10px;
	height: 2px;
	border-radius: 9999px;
	background-color: #006ac6;
	transform-origin: calc(100% - 1px) 50%;
}
#recruit a.btn_icon .arrow::before {
	transform: rotate(45deg);
}
#recruit a.btn_icon .arrow::after {
	transform: rotate(-45deg);
}
#recruit a.btn_icon .winopen {
	position: absolute;
	display: inline-block;
	top: calc(50% - 9px);
	right: 20px;
	width: 18px;
	height: 18px;
	background: url("../img/icon_winopen.svg") no-repeat;
	background-size: contain;
}
#recruit a:hover.btn_icon {
	border: 2px solid #006ac6;
	background-color: #006ac6;
	color: #fff;
}
#recruit a:hover.btn_icon .arrow {
	background-color: #fff;
}
#recruit a:hover.btn_icon .arrow::before,
#recruit a:hover.btn_icon .arrow::after {
	background-color: #fff;
}
#recruit a:hover.btn_icon .winopen {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 16"><path d="M15,3V0H0v13h3v3h15V3h-3ZM1.5,11.5V1.5h12v10H1.5ZM16.5,14.5H4.5v-1.5h10.5V4.5h1.5v10Z" fill="%23fff"/></svg>');

}

/*---- interview list ----*/

#recruit #interview_wrap {
	overflow: hidden;
}
#recruit #interview_wrap .slick-next { display:none!important; }
#recruit #interview_wrap .slick-prev { display:none!important; }
@media(max-width:1600px){
	#recruit #interview_wrap .slick-list {
		margin: 0 -2px;
	}
}
#recruit #interview_wrap .slick-track {
	display: flex;
}
#recruit #interview_wrap .slick-slide {
 	margin: 0 12px;
	height: auto !important;
}
#recruit #interview_wrap .slick-initialized .slick-slide {
	display: flex;
}
#recruit .employee a {
	width: 100%;
	display: flex;
	flex-direction: column;
	text-decoration: none;
	transition-duration: .3s;
}
#recruit .employee a:hover {
	opacity: 0.7;
}
#recruit .employee .photo {
	margin-bottom: 25px;
}
#recruit .employee .photo img {
	width: 100%;
	border-radius: 60px 0 0 0;
}
#recruit .employee .txt01 {
	font-weight: 600;
	font-size: 22px;
	line-height: 35px;
	color: #1e88e4;
	margin-bottom: 15px;
}
#recruit .employee .txt02 {
	font-size: 20px;
	line-height: 36px;
	margin-bottom: 32px;
	flex-grow: 1;
}
#recruit .employee .txt02 strong {
	font-weight: 500;
}
#recruit .employee .tag {
	line-height: 1;
}
#recruit .employee .tag span {
	display: inline-block;
	font-size: 14px;
	line-height: 1;
	border-radius: 18px;
	background: #fff;
	border: solid 1px #1a1a1a;
	margin: 0 4px 5px 0;
	padding: 6px 15px; 
}
@media(max-width:768px){
	#recruit .employee .photo {
		margin-bottom: 25px;
	}
	#recruit .employee .photo img {
		border-radius: 30px 0 0 0;
	}
	#recruit .employee .txt01 {
		font-size: 4.4vw;
		line-height: 35px;
	}
	#recruit .employee .txt02 {
		font-size: 4vw;
		line-height: 27px;
		margin-bottom: 25px;
	}
	#recruit .employee .tag span {
		font-size: 8.96px;
		border: solid 0.5px #1a1a1a;
		padding: 6px 15px;
	}
}
