@charset "utf-8";
/* =================================================================================================

   採用情報 （採用メニュー／新卒採用／キャリア採用）

   ================================================================================================= */
/* ---------------------------------------------------------------------------------------
   採用メニュー
   --------------------------------------------------------------------------------------- */
.recruit .jumbotron {
	background-image: url(../../Image/Recruit/bg-wide-recruit.jpg);
	background-position-x: right;
	background-position-y: bottom;
}

.recruit .menu-flex {
	display: flex;
	justify-content: space-evenly;
}

.recruit .box {
	position: relative;
	width: 46%;
}

.recruit .box::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	background: rgba(0, 0, 0, 0.3);
}

.recruit .box:hover {
	cursor: pointer;
}

.recruit .box:hover,
.recruit .box:hover img {
	opacity: 1;
} 

.recruit .box:hover::before {
	background: rgba(0, 0, 0, 0);
	transition: .5s;
}

.recruit .box img {
	width: 100%;
	height: auto;
}

.recruit .box .btn {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 280px;
	padding: 10px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	border: 2px solid #fff;
	border-radius: 30px;
	transform: translate(-50%, -50%);
}

.recruit .box:hover .btn {
	transition: .5s;
	background: linear-gradient(to right, #02c8ea, #067ff8);
}

.recruit .box .btn:active,
.recruit .box .btn:focus,
.recruit .btn:not(:disabled):not(.disabled).active,
.recruit .btn:not(:disabled):not(.disabled):active{
	background: linear-gradient(to right, #02c8ea, #067ff8);
}


/* インタビュー */
.recruit .interview .box {
	width: 22%;
	height: 100%;
}

.recruit .interview .box:hover {
	cursor: pointer;
}


.recruit .interview .box::before {
	content: none;
}

.recruit .interview .cover {
	position: relative;
}

.recruit .interview .cover::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	background: rgba(0, 0, 0, 0.3);
}

.recruit .interview .box:hover .cover::before,
.recruit .interview .cover:hover::before {
	background: rgba(0, 0, 0, 0);
	transition: .5s;
}

.recruit .interview .box:hover .text {
	background: #f0f8ff;
}

.recruit .interview .box .btn {
	top: 32%;
	width: 250px;
	font-size: 17px;
}

.recruit .interview .text {
	padding: 14px;
	text-align: center;
}

.recruit .interview .year {
	margin-right: 14px;
	font-size: 18px;
	font-weight: bold;
}

.recruit .interview .name {
	margin-bottom: 8px;
	font-size: 17px;
}

.recruit .interview .year,
.recruit .interview .name {
	display: inline-block;
}

.recruit .interview .fresh .year,
.recruit .interview .fresh .name {
	color: #0096e0;
}

.recruit .interview .carrer .year,
.recruit .interview .carrer .name {
	color: #28c98e;
}

.recruit .interview .type {
	display: inline-block;
	width: 100%;
	height: 40px;
	margin-bottom: 10px;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	line-height: 40px;
}

.recruit .interview .fresh .type {
	color: #fff;
	background: #0096e0;
}

.recruit .interview .carrer .type {
	color: #fff;
	background: #28c98e;
}

.recruit .interview .busho {
	color: #212529;
}


/* -----------------------------------------------
   メディアクエリ(max-width: 991px)
   ----------------------------------------------- */
@media (max-width: 991px) {
	.recruit .menu-flex {
		flex-wrap: wrap;
	}

	.recruit .box .btn {
		width: 250px;
		font-size: 18px;
	}

	.recruit .interview .box {
		width: 46%;
		margin-bottom: 24px;
	}

	.recruit .interview .box .btn {
		top: 33%;
	}
}


/* -----------------------------------------------
   メディアクエリ(max-width: 767px)
   ----------------------------------------------- */
@media (max-width: 767px) {
	.recruit .jumbotron {
		background-position-x: left;
	}

	/* fresh */
	.overview.fresh .jumbotron {
		background-position-x: left;
	}

	/* carrer */
	.overview.carrer .jumbotron {
		background-position-x: 30%;
	}

	.recruit .menu-flex {
		flex-direction: column;
	}

	.recruit .menu-flex a:first-of-type {
		margin-bottom: 30px;
	}
	
	.recruit .box {
		width: 100%;
	}

	.recruit .interview .box {
		width: 100%;
		margin-bottom: 40px;
	}

	.recruit .interview .box:last-of-type {
		margin-bottom: 0;
	}

	.recruit .interview .box .btn {
		top: 37%;
	}
}


/* ---------------------------------------------------------------------------------------
   新卒採用（個別）
   --------------------------------------------------------------------------------------- */
.overview.fresh .jumbotron {
	background-image: url(../../Image/Recruit/bg-wide-fresh.jpg);
}

.overview.fresh .message .corner {
	background: linear-gradient(to right, #02c8ea, #067ff8);
}

.overview.fresh .square li {
	background: linear-gradient(to right, #02c8ea, #067ff8);
}


/* ---------------------------------------------------------------------------------------
   キャリア採用（個別）
   --------------------------------------------------------------------------------------- */
.overview.carrer .jumbotron {
	background-image: url(../../Image/Recruit/bg-wide-carrer.jpg);
}

.overview.carrer .message .corner {
	background: linear-gradient(to right, #02c8ea, #47ded4);
}

.overview.carrer .square li {
	background: linear-gradient(to right, #02c8ea, #47ded4);
}


/* ---------------------------------------------------------------------------------------
   新卒採用／キャリア採用（共通）
   --------------------------------------------------------------------------------------- */
.overview .jumbotron {
	position: relative;
	background-size: cover;
	background-position-x: center;
	background-position-y: center;
}

.overview .jumbotron::before {
	background: rgba(0, 0, 0, 0.3);
}

.overview .content-wrap {
	max-width: 980px;
	margin: 0 auto;
}

.overview h3 {
	margin-bottom: 70px;
}

/* 採用担当メッセージ */
.overview .message {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 1400px;
	min-width: 1200px;
	margin: 0 auto;
	padding-bottom: 60px;
}

.overview .message .img-wrap {
	position: relative;
	width: 800px;
	height: 533px;
}

.overview .message .img-wrap::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: "";
	background: rgba(30, 160, 227, 0.5);
}

.overview .message .img-wrap img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.overview .message .text-wrap {
	position: absolute;
	top: 67px;
	left: 50%;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	line-height: 39px;
	text-align: center;
	transform: translateX(-50%);
	z-index: 10;
}

.overview .message .text-wrap .title {
	margin-bottom: 40px;
	font-size: 34px;
	text-align: center;
}

.overview .message .text-wrap .title + p {
	margin-bottom: 30px;
	text-align: center;
}

.overview .message .text-wrap p {
	text-align: left;
}

.overview .message .corner {
	position: absolute;
	width: 140px;
	height: 140px;
	border-radius: 8px;
}

.overview .message .corner-left {
	top: -63px;
	left: calc(50% - 401px);
	transform: translateX(-50%);
	z-index: -1;
}

.overview .message .corner-right {
	left: calc(50% + 394px);
	bottom: -7px;
	transform: translateX(-50%);
	z-index: -1;
}


/* ---------------------------------------------------------------------------------------
   募集要項
   --------------------------------------------------------------------------------------- */
.overview .boshu {
	background: #fff;
}

.overview .boshu h4 + p {
	margin-bottom: 6px;
	padding-top: 18px;
	font-size: 19px;
}

.overview .boshu .nav-tabs {
	margin-bottom: 35px;
}

.overview .boshu .nav-item {
	width: 50%;
	height: auto;
	font-size: 18px;
	line-height: 34px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	background: #fff;
}

.overview .boshu .nav-item:nth-of-type(1) {
	padding-right: 2px;
}

.overview .boshu .nav-item:nth-of-type(2) {
	padding-left: 2px;
}

.overview .boshu .nav-item br {
	display: none;
}

.overview .nav-tabs .nav-link {
	position: relative;
	top: 8px;
	padding-left: 20px;
	color: #615f5f;
	font-weight: bold;
	text-align: left;
	background: #e6f5fc;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.overview .nav-tabs .nav-item.show .nav-link,
.overview .nav-tabs .nav-link.active {
	position: relative;
	top: 0;
	color: #fff;
	font-weight: bold;
	line-height: 43px;
	background: #03b3ee;
	border-bottom: none;
	opacity: 1;
}

.overview .nav-tabs .nav-item.show .nav-link.item2,
.overview .nav-tabs .nav-link.active.item2 {
	background: #0599f3 !important;
}

.overview .nav-tabs .nav-item.show .nav-link::before,
.overview .nav-tabs .nav-link.active::before {
	position: absolute;
	top: 10px;
	right: 18px;
	content: "\f32d";
	font-family: "Font Awesome 5 Pro";
}

.overview .boshu .bumon {
	color: #0096e0;
	font-size: 17px;
	font-weight: bold;
}

.overview .boshu .table {
	margin-bottom: 40px;
}

.overview .boshu .table.last {
	margin-bottom: 0;
}

.overview .boshu .table th {
	font-weight: normal;
	background: #e6f5fc;
}

.overview .boshu .table-bordered td,
.overview .boshu .table-bordered th {
	border: 1px solid #cbced1;
}

/* 応募方法 */
.overview .boshu .table .way td p,
.overview .boshu .table .way td ul {
	margin-bottom: 12px;
}

.overview .boshu .table td .list-indent li {
	padding-left: 3em;
	text-indent: -3em;
}

/* 勤務時間 */
.overview .boshu .table .work-time table {
	margin-bottom: 0;
}

.overview .boshu .table .work-time table th,
.overview .boshu .table .work-time table td {
	display: table-cell;
	padding: 0 2px;
	border: none;
}

.overview .boshu .table .work-time table th {
	width: 158px;
	background: #fff;
}

.overview .boshu .table .work-time table td.colon {
	width: 20px;
	padding: 0;
}

.overview .boshu .table .work-time table .between span:first-of-type {
	padding-right: 14px;
}


/* ---------------------------------------------------------------------------------------
   データで見る都築クロスサポート
   --------------------------------------------------------------------------------------- */
.overview .data h4 {
	margin-bottom: 28px;
}

.overview .data .box-flex {
	display: flex;
}

.overview .data .box-flex:first-of-type {
	margin-bottom: 30px;
}

.overview .data .box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 32%;
	border: 3px solid #0096e0;
	margin-right: 28px;
	height: 200px;
}

.overview .data .box:last-of-type {
	margin-right: 0;
}

.overview .data .title {
	margin-bottom: 22px;
	font-size: 23px;
	font-weight: bold;
	color: #0096e0;
}

.overview .data .count {
	display: flex;
	width: 100%;
	margin-bottom: 11px;
}

.overview .data .count .icon {
	width: 44%;
	text-align: right;
}

.overview .data .count .icon i {
	color: #0096e0;
	font-size: 54px;
}

.overview .data .detail {
	width: 50%;
	padding-left: 15px;
	color: #0096e0;
}

.overview .data .detail .num {
	display: inline-block;
	padding-right: 10px;
	font-size: 50px;
	font-weight: bold;
	line-height: 50px;
}

.overview .data .detail .brackets {
	font-size: 14px;
	text-align: center;
}


/* ---------------------------------------------------------------------------------------
   支援制度
   --------------------------------------------------------------------------------------- */
.overview .seido h4 {
	margin-bottom: 28px;
}

.overview .seido .box-flex {
	display: flex;
	margin-bottom: 80px;
}

.overview .seido .box {
	width: 49%;
	margin-right: 28px;
	border: 3px solid #0096e0;
}

.overview .seido .box:last-of-type {
	margin-right: 0;
}

.overview .seido .box .title {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0 12px;
	color: #0096e0;
	font-size: 23px;
	font-weight: bold;
	text-align: center;
	border-bottom: 3px solid #0096e0;
}

.overview .seido .box .title i {
	margin-right: 15px;
	font-size: 50px;
}

.overview .seido .box .explain {
	min-height: 100px;
	padding: 24px 18px;
}

.overview .seido .box .explain .name {
	font-size: 18px;
}

.overview .seido ul li {
	padding-bottom: 4px;
}

.overview .seido ul li::before {
	top: 10px;
}


/* ---------------------------------------------------------------------------------------
   背景アニメーション
   --------------------------------------------------------------------------------------- */
.overview {
	position: relative;
}

.overview .animation-area {
	width: 100%;
	height: 100%;
}

/* animation (keyframes) */
@keyframes squareup {
	0%{
		transform: translateY(0) rotate(0deg);
		opacity: 1;
		border-radius: 0;
	}

	100%{
		transform: translateY(-2500px) rotate(720deg);
		opacity: 0;
		border-radius: 50%;
	}
}

/* animation (item) 共通 */
.overview .square li {
	display: block;
	position: absolute;
	bottom: 3000px;
	list-style: none;
	width: 20px;
	height: 20px;
	animation: squareup 25s linear infinite;
	z-index: -10;
}

/* animation (item) 個別 */
.overview .square li:nth-child(1) {
	left: 90%;
	width: 80px;
	height: 80px;
	animation-delay: -5s;
	animation-duration: 35s;
}

.overview .square li:nth-child(2) {
	left: 18%;
	width: 50px;
	height: 50px;
	animation-delay: -8s;
	animation-duration: 40s;
}

.overview .square li:nth-child(3) {
	left: 10%;
	width: 60px;
	height: 60px;
	animation-delay: -12s;
	animation-duration: 40s;
}

.overview .square li:nth-child(4) {
	left: 87%;
	width: 60px;
	height: 60px;
	animation-delay: -3s;
	animation-duration: 50s;
}

.overview .square li:nth-child(5) {
	left: 85%;
	width: 45px;
	height: 45px;
	animation-delay: -4s;
	animation-duration: 70s;
}

.overview .square li:nth-child(6) {
	left: 84%;
	width: 60px;
	height: 60px;
	animation-delay: -5s;
	animation-duration: 45s;
}

.overview .square li:nth-child(7) {
	left: 95%;
	width: 50px;
	height: 50px;
	animation-delay: -1s;
	animation-duration: 40s;
}

.overview .square li:nth-child(8) {
	left: 5%;
	width: 60px;
	height: 60px;
	animation-delay: 0s;
	animation-duration: 35s;
}

.overview .square li:nth-child(9) {
	left: 70%;
	width: 70px;
	height: 70px;
	animation-delay: -8s;
	animation-duration: 60s;
}

.overview .square li:nth-child(10) {
	left: 16%;
	width: 40px;
	height: 40px;
	animation-delay: -6s;
	animation-duration: 50s;
}

.overview .square li:nth-child(11) {
	left: 22%;
	width: 60px;
	height: 60px;
	animation-delay: -5s;
	animation-duration: 70s;
}

.overview .square li:nth-child(12) {
	left: 8%;
	width: 110px;
	height: 110px;
	animation-delay: -1s;
	animation-duration: 55s;
}

.overview .square li:nth-child(13) {
	left: 2%;
	width: 60px;
	height: 60px;
	animation-delay: -15s;
	animation-duration: 50s;
}

.overview .square li:nth-child(14) {
	left: 4%;
	width: 60px;
	height: 60px;
	animation-delay: -7s;
	animation-duration: 30s;
}

.overview .square li:nth-child(15) {
	left: 65%;
	width: 60px;
	height: 60px;
	animation-delay: -10s;
	animation-duration: 50s;
}


/* -----------------------------------------------
   メディアクエリ(max-width: 991px)
   ----------------------------------------------- */
@media (max-width: 991px) {
	.overview .jumbotron {
		background-position-y: top;
	}

	.overview .message {
		min-width: auto;
		padding-bottom: 0;
	}

	.overview .message .img-wrap,
	.overview .message .text-wrap {
		width: 680px;
		height: 453px;
	}

	.overview .message .text-wrap {
		top: 0;
		padding: 50px 60px;
		font-size: 18px;
		line-height: 36px;
	}

	.overview .message .text-wrap .title {
		margin-bottom: 30px;
		font-size: 28px;
	}

	.overview .message .corner {
		display: none;
	}

	.overview .square li {
		width: 30px !important;
		height: 30px !important;
	}

	.overview .boshu .table-bordered td,
	.overview .boshu .table-bordered th {
		border-right: none;
		border-bottom: none;
		border-left: none;
	}

	.overview .data .box-flex,
	.overview .seido .box-flex {
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.overview .data .box,
	.overview .seido .box {
		width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.overview .data .box:last-of-type {
		margin-bottom: 0;
	}
}


/* -----------------------------------------------
   メディアクエリ(max-width: 767px)
   ----------------------------------------------- */
@media (max-width: 767px) {
	.overview h3 {
		margin-bottom: 30px;
		text-align: left;
	}

	.overview .message .img-wrap,
	.overview .message .text-wrap {
		width: 100%;
		height: auto;
	}

	.overview .message .text-wrap {
		top: 0;
		padding: 26px 24px;
		font-size: 16px;
		line-height: 28px;
	}

	.overview .message .text-wrap .title {
		margin-bottom: 20px;
		font-size: 25px;
	}

	.overview .message .text-wrap .title + p {
		margin-bottom: 18px;
	}

	.overview .message .text-wrap p {
		padding: 0 20px;
	}

	.overview .square li {
		width: 20px !important;
		height: 20px !important;
	}

	.overview .boshu h4 + p {
		padding-top: 0;
		font-size: 16px;
	}

	.overview .boshu .nav-item {
		font-size: 17px;
		line-height: 24px;
	}

	.overview .nav-tabs .nav-link {
		font-weight: normal !important;
	}

	.overview .nav-tabs .nav-item.show .nav-link,
	.overview .nav-tabs .nav-link.active {
		line-height: 32px;
	}

	/* 勤務時間 */
	.overview .boshu .table .work-time table th {
		width: 140px;
	}
	
	.overview .boshu .table .work-time table td.colon {
		width: 14px;
	}

	.overview .seido .box-flex {
		margin-bottom: 30px;
	}
}


/* -----------------------------------------------
   メディアクエリ(max-width: 575px)
   ----------------------------------------------- */
@media (max-width: 575px) {
	.overview .message .img-wrap,
	.overview .message .text-wrap {
		width: 100vw;
		height: fit-content;
		min-height: 358px;
	}

	.overview .message .img-wrap img {
		height: 100%;
	}

	.overview .message .text-wrap {
		padding: 24px 24px;
		line-height: 26px;
	}

	.overview .message .text-wrap .title + p {
		text-align: left;
	}

	.overview .nav-tabs .nav-link {
		padding-left: 15px;
	}

	.overview .boshu .table td .list-indent li {
		margin-bottom: 3px;
	}

	.overview .boshu .table td .list-indent li br {
		display: none;
	}

	.overview .data .box {
		height: 150px;
	}

	.overview .data .title {
		margin-bottom: 10px;
		font-size: 20px;
	}

	.overview .data .count {
		margin-bottom: 4px;
	}

	.overview .data .count .icon i,
	.overview .seido .box .title i {
		font-size: 48px;
	}

	.overview .data .detail .num {
		font-size: 44px;
	}

	.overview .seido .box .explain {
		padding: 18px;
	}
}


/* -----------------------------------------------
   メディアクエリ(max-width: 480px)
   ----------------------------------------------- */
@media (max-width: 480px) {
	.overview .jumbotron {
		background-position-x: 22%;
	}

	/* carrer */
	.overview.carrer .jumbotron {
		background-position-x: 38%;
	}

	.overview .message .img-wrap img {
		min-height: 400px;
	}

	.overview .message .img-wrap, .overview .message .text-wrap {
		min-height: 426px;
	}

	.overview .square li {
		width: 14px !important;
		height: 14px !important;
	}

	.overview .boshu .nav-item br {
		display: block;
	}

	.overview .nav-tabs .nav-link {
		top: 0;
		padding-left: 6px;
		font-size: 16px;
		line-height: 22px !important;
		text-align: center;
	}

	.overview .nav-tabs .nav-item.show .nav-link::before,
	.overview .nav-tabs .nav-link.active::before {
		top: 20px;
	}

	/* 勤務時間 */
	.overview .boshu .table .work-time table .between span {
		display: block;
		padding-right: 0;
	}

	.overview .seido .box .title {
		font-size: 20px;
	}

	.overview .seido .box .explain .name {
		font-size: 16px;
	}
}


/* -----------------------------------------------
   メディアクエリ(max-width: 375px)
   ----------------------------------------------- */
@media(max-width: 375px) {
	.overview .message .img-wrap img {
		min-height: 430px;
	}

	.overview .message .text-wrap p {
		padding: 0 10px;
	}

	.overview .seido .box .title {
		font-size: 18px;
	}
}