@import url(http://fonts.googleapis.com/css?family=Dosis:400,500,600,700,800,300,200);

/*************************
*******Typography*********
**************************/
/*
html {
//	font-size: 62.5%;
	font-size: 100%;
}
*/
body {
	font-family: "メイリオ", "Hiragino Kaku Gothic Pro", Meiryo, "ヒラギノ角ゴ Pro W3", "MS PGothic", "MS UI Gothic", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-size: 1.0rem;
	line-height: 1.5;
	color: #fff;
	background: #007bbb;
	/*
	background: -webkit-linear-gradient(90deg, #007bbb 10%, #c1e4e9 90%);
	/* Chrome 10+, Saf5.1+ 
	background: -moz-linear-gradient(90deg, #007bbb 10%, #c1e4e9 90%);
	/* FF3.6+ 
	background: -ms-linear-gradient(90deg, #007bbb 10%, #c1e4e9 90%);
	/* IE10 
	background: -o-linear-gradient(90deg, #007bbb 10%, #c1e4e9 90%);
	/* Opera 11.10+ 
	background: linear-gradient(90deg, #007bbb 10%, #c1e4e9 90%);
	/* W3C 
	overflow-y: scroll;
	*/
}

main {
	height: fit-content;
	border: solid rgba(0, 0, 0, .15);
	border-width: 1px 0;
	box-shadow: inset 0 0rem 2rem 1rem rgba(0, 0, 0, .3);
}

ul {
	list-style: none;
	padding: 0
}


a {
	color: #fff;
	text-decoration: none;
	-webkit-transition: color 400ms, background-color 400ms;
	transition: color 400ms, background-color 400ms;
}

a:focus,
a:hover {
	text-decoration: none;
	outline: none;
	color: rgba(255, 255, 255, 1);
}

#footer {
	background-color: rgba(255, 255, 255, 0.6);
	text-shadow: 0 0 2px #333, 0 0 5px #333, 0 0 10px #333;
}

#footer a:hover {
	text-shadow: 0 0 2px #007bbb, 0 0 5px #007bbb, 0 0 10px #007bbb;
}

.dark-shadow {
	text-shadow: 0 0 2px #333, 0 0 5px #333, 0 0 10px #333;
}

.dark-shadow-force {
	text-shadow: 0 0 10px #333, 0 0 10px #333, 0 0 10px #333;
}

.blue-shadow {
	text-shadow: 0 0 2px #007bbb, 0 0 5px #007bbb, 0 0 10px #007bbb;
}

.yellow-shadow {
	text-shadow: 0 0 2px yellow, 0 0 5px yellow, 0 0 10px yellow;
}

.green-shadow {
	text-shadow: 0 0 2px green, 0 0 5px green, 0 0 10px green;
}

.orange-shadow {
	text-shadow: 0 0 2px orange, 0 0 5px orange, 0 0 10px orange;
}

.red-shadow {
	text-shadow: 0 0 2px orangered, 0 0 5px orangered, 0 0 10px orangered;
}

.blur,
.blur>img {
	position: relative;
	font-size: 0;
	line-height: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.blur:after {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	box-shadow: inset 0px 0px 1rem 1rem #007bbb;
	content: "  ";
}

.blur>img:after {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	box-shadow: inset 0px 0px 1rem 1rem #007bbb;

	content: "  ";
}

.fade-2s {
	animation: fadeIn 2s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.fade-4s {
	animation: fadeIn 4s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	90% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.fade-6s {
	animation: fadeIn 6s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	90% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.fade-8s {
	animation: fadeIn 8s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	90% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.fade-10s {
	animation: fadeIn 10s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	90% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.fade-12s {
	animation: fadeIn 12s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	80% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.reflection {
	opacity: 1;
	overflow: hidden;
	position: relative;
	cursor: pointer;
}

.reflection::before {
	background-color: #fff;
	content: "";
	display: block;
	position: absolute;
	top: -100px;
	left: 0;
	width: 30px;
	height: 100%;
	opacity: 0;
	transition: cubic-bezier(0.32, 0, 0.67, 0);
}

.reflection:hover::before {
	animation: reflection 1s linear 1;
}

@keyframes reflection {
	0% {
		transform: scale(2) rotate(45deg);
		opacity: 0;
	}

	20% {
		transform: scale(20) rotate(45deg);
		opacity: 0.6;
	}

	40% {
		transform: scale(30) rotate(45deg);
		opacity: 0.4;
	}

	80% {
		transform: scale(45) rotate(45deg);
		opacity: 0.2;
	}

	100% {
		transform: scale(50) rotate(45deg);
		opacity: 0;
	}
}

.bounce {
	animation: bounce 2s ease-out infinite;
	opacity: 1;
}

@keyframes bounce {

	0%,
	40%,
	60%,
	80% {
		transform: scale(1.0);
	}

	50%,
	70% {
		transform: scale(0.95);
	}
}


/*************************
********NavBar CSS********
**************************/

.navbar-nav li a {
	position: relative;
	text-shadow: 0 0 2px #333, 0 0 5px #333, 0 0 10px #333;
}

.navbar-nav li a:hover,
.navbar-nav li a:focus {
	color: #fff;
	text-shadow: 0 0 2px #007bbb, 0 0 5px #007bbb, 0 0 10px #007bbb;
}

/*************************
*****Carousel Base CSS****
**************************/

.carousel-control-next,
.carousel-control-prev {
	width: 8%;
	top: 20rem;
	bottom: auto;
}

.carousel-control-next>i,
.carousel-control-prev>i {
	font-size: 4rem;
}

.vertical-middle {
	height: 100%;
	width: 100%;
	/*display: table;*/
}

.vertical-middle>div {
	/*display: table-cell;*/
	vertical-align: top;
}

.page-header {
	font-size: 300%;
	border: 0;
	padding: 0;
	margin-top: 0;
	font-weight: 700;
	margin-bottom: 20px;
	text-shadow: 0 0 2px #333, 0 0 5px #333, 0 0 10px #333;
}

.page-header.req-header {
	text-shadow: 0 0 2px green, 0 0 5px green, 0 0 10px green;
}

#new-req dl,
#career-req dl,
#corporate-profile dl {
	font-weight: bold;
	width: 100%;
	text-align: left;
	font-size: 100%;
	text-shadow: 0 0 2px #333, 0 0 5px #333, 0 0 10px #333;
}

#new-req dl,
.page-header.new-req-header {
	text-shadow: 0 0 2px green, 0 0 5px green, 0 0 10px green;
}

#career-req dl,
.page-header.career-req-header {
	text-shadow: 0 0 2px orange, 0 0 5px orange, 0 0 10px orange;
}

#new-req .child dl,
#career-req .child dl,
#corporate-profile .child dl {
	margin-bottom: 0;
}


#new-req dt,
#career-req dt,
#corporate-profile dt {
	font-weight: bold;
	width: 10em;
	padding: 0.2em 0 0.2em 0;
	text-indent: 0;
	font-size: 120%;
}

@media(min-width:768px) {

	#new-req dt,
	#career-req dt,
	#corporate-profile dt {
		float: left;
		font-size: 100%;
		text-indent: 1em;
	}
}

#career-req .child dt,
#corporate-profile .child dt {
	font-weight: normal;
	width: 7em;
	padding: 0.1em 0 0.1em 0;
	text-indent: 0em;
	font-size: 100%;
}

@media(min-width:768px) {

	#new-req .child dt,
	#career-req .child dt,
	#corporate-profile .child dt {
		float: left;
		font-size: 100%;
	}
}

#new-req .child dt {
	font-weight: normal;
	width: 7em;
	padding: 0.1em 0 0.1em 0;
	text-indent: 0em;
	font-size: 100%;
}

@media(min-width:768px) {

	#new-req .child dt,
	#career-req .child dt,
	#corporate-profile .child dt {
		float: left;
		font-size: 100%;
	}
}

#new-req dd,
#career-req dd,
#corporate-profile dd {
	margin: 0 0 0 0;
	padding: 0.2em 0 0.2em 1em;
	border-bottom: 1px #ffffff dotted;
}

@media(min-width:768px) {

	#new-req dd,
	#career-req dd,
	#corporate-profile dd {
		padding: 0.2em 0 0.2em 10em;
	}
}

#career-req .child dd,
#corporate-profile .child dd {
	margin: 0 0 0 0;
	padding: 0.1em 0 0.1em 1em;
	border-bottom: none;
}

@media(min-width:768px) {

	#new-req .child dd,
	#career-req .child dd,
	#corporate-profile .child dd {
		padding: 0.1em 0 0.1em 7em;
	}
}

#new-req .child dd {
	margin: 0 0 0 0;
	padding: 0.1em 0 0.1em 1em;
	border-bottom: none;
}

@media(min-width:768px) {

	#new-req .child dd,
	#career-req .child dd,
	#corporate-profile .child dd {
		padding: 0.1em 0 0.1em 7em;
	}
}

#req-force p.text-left {
	text-align: center;
}

@media(min-width:768px) {
	#req-force p.text-left {
		text-align: left;
	}
}



/*************************
****Home-page Carousel****
**************************/

#home-page .btn {
	margin: 20px 0;
}

#home-page .info {
	transform-origin: 50% 50% 0;
	background: rgba(144, 198, 149);
	width: 80%;
	animation: slide-in 2s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
}

@keyframes slide-in {
	0% {
		transform: translateX(53%);
		opacity: 0;
	}

	50% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(0);
	}

	40%,
	100% {
		opacity: 1;
	}
}


@keyframes bg {
	0% {
		opacity: 0;
		transform: scaleX(0) translateX(-20%) translateY(-40%);
	}

	30% {
		transform: scaleX(1) translateX(-50%) translateY(-40%);
	}

	100% {
		transform: scaleX(1) translateX(-50%) translateY(-40%);
	}

	30%,
	100% {
		opacity: 1;
	}
}

#btn-link-div {
	margin-top: 3rem;
}

/*************************
****Req-Force Carousel****
**************************/

#req-force>div {
	/* background-image: linear-gradient(to right, rgba(0, 123, 187, .9), rgba(193, 228, 233, .1)), url(../images/24729899_m.jpg); */
	background-image: url(../images/bg/24729899_m.jpg);
	width: 100%;
	background-size: cover;
	height: fit-content;
	border: solid rgba(0, 0, 0, .15);
	border-width: 1px 0;
	position: relative;
	z-index: 0;
	overflow: hidden;
	max-width: -webkit-fill-available;
}

#req-force>div:before {
	box-shadow: inset 0 2rem 3rem 3rem rgba(0, 123, 187, 1);
	content: '';
	background: inherit;
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	z-index: -1;
}

.border-round {
	display: inline-block;
	font-size: 3rem;
	height: 14rem;
	width: 15rem;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: blue;
	white-space: nowrap;
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.4), 0 0 5px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.4);
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.4), 0 0 5px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.4), inset 0 0rem 2rem 1rem rgba(0, 0, 0, 0.3);
	transition: all 2s;
	cursor: pointer;
}

#req-force .info {
	background: rgba(144, 198, 149);
	width: 50%;
	border-radius: 30px;
	animation: slide-in-left 2s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
	padding-top: 0.5rem;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes slide-in-left {
	0% {
		transform: translateX(-120%);
		opacity: 0;
	}

	50% {
		transform: translateX(0%);
	}

	100% {
		transform: translateX(0%);
	}

	40%,
	100% {
		opacity: 1;
	}
}

.demand {
	font-size: 1.5rem;
}

/*************************
**Senior-Voice Carousel***
**************************/

#senior-voice .info {
	/* position: absolute;
	top: 50%;
	left: 51%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	background: rgba(144, 198, 149);
	width: 40%;
	animation: slideIn 4s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
	z-index: 100; */

	transform-origin: 50% 50% 0;
	background: rgba(144, 198, 149);
	width: fit-content;
	text-align: center;
	animation: slide-in 4s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
}

@keyframes slideIn {
	0% {
		transform: translate(0%, -50%);
		opacity: 0;
	}

	100% {
		transform: translateX(0%, 0%);
	}

	40%,
	100% {
		opacity: 1;
	}
}

#senior-voice .card-img-overlay {
	top: 35%;
}

/* #senior-voice .card-img-overlay>.card {
	margin-left: 1rem;
	margin-right: 1rem;
} */

#senior-voice .senior-img>img {
	border-radius: 30px;
}

/* 
.hire-year-down {
	top: 75%;
	left: 60%;
	transform: translate(-75%, -60%);
	font-size: 0.8rem;
	position: absolute;
	white-space: nowrap;
	text-shadow: 0 0 2px black, 0 0 5px black, 0 0 10px black;
	z-index: 1;
}

.group-hire-year-1 {
	top: 75%;
	left: 20%;
	transform: translate(-75%, -20%);
	font-size: 0.8rem;
	position: absolute;
	white-space: nowrap;
	text-shadow: 0 0 2px black, 0 0 5px black, 0 0 10px black;
	z-index: 99;
}

.group-hire-year-2 {
	top: 60%;
	left: 35%;
	transform: translate(-60%, -35%);
	font-size: 0.8rem;
	position: absolute;
	white-space: nowrap;
	text-shadow: 0 0 2px black, 0 0 5px black, 0 0 10px black;
}

.group-hire-year-3 {
	top: 75%;
	left: 55%;
	transform: translate(-75%, -55%);
	font-size: 0.8rem;
	position: absolute;
	white-space: nowrap;
	text-shadow: 0 0 2px black, 0 0 5px black, 0 0 10px black;
}

.group-hire-year-4 {
	top: 60%;
	left: 70%;
	transform: translate(-60%, -70%);
	font-size: 0.8rem;
	position: absolute;
	white-space: nowrap;
	text-shadow: 0 0 2px black, 0 0 5px black, 0 0 10px black;
}

.group-hire-year-5 {
	top: 75%;
	left: 90%;
	transform: translate(-75%, -90%);
	font-size: 0.8rem;
	position: absolute;
	white-space: nowrap;
	text-shadow: 0 0 2px black, 0 0 5px black, 0 0 10px black;
	z-index: 99;
} */

/* .department-down {
	top: 90%;
	left: 74%;
	transform: translate(-80%, -74%);
	color: orange;
	font-size: 1.5rem;
	position: absolute;
	white-space: nowrap;
	text-shadow: 0 0 2px black, 0 0 5px black, 0 0 10px black;
	z-index: 99;
} */

/* .hire-year-up {
	top: 65%;
	left: 60%;
	transform: translate(-65%, -60%);
	font-size: 0.8rem;
	position: absolute;
	white-space: nowrap;
	text-shadow: 0 0 2px black, 0 0 5px black, 0 0 10px black;
	z-index: 1;
} */

.hire-year {
	display: none;
}

/* .department-up {
	top: 90%;
	left: 74%;
	transform: translate(-80%, -74%);
	color: orange;
	font-size: 1.5rem;
	position: absolute;
	white-space: nowrap;
	text-shadow: 0 0 2px black, 0 0 5px black, 0 0 10px black;
	z-index: 99;
} */

.hover-zoom {
	cursor: pointer;
	transition-duration: 0.3s;
}

.hover-zoom:hover {
	transform: scale(1.3, 1.3);
	transition-duration: 0.3s;
	z-index: 99;
}

#senior-voice blur:after:hover {
	box-shadow: inset 0 0rem 2rem 1rem rgba(0, 0, 0, 0.3);
}

.select-border:hover img {
	/* border: 3px solid #362ae0; */
	border: 3px solid orange;

	/* animation: stroke 1.8s cubic-bezier(0.22, 1, 0.36, 1); */
}

@keyframes stroke {
	0% {
		width: 0;
		opacity: 1;
	}

	100% {
		width: calc(100% - 10%);
		opacity: 1;
	}
}

#senior-voice .line-height-1 {
	line-height: 1;
}

#senior-voice .senior-img {
	position: relative;
}

.senior-popup-img {
	object-fit: cover;
	height: -webkit-fill-available;
	max-width: -webkit-fill-available;
}

#senior-voice .card-img-overlay {
	/* top: 17%;
	padding: 0px; */
	text-align: center;
	top: 65%;
	color: orange;
	font-size: 1.5rem;
	position: absolute;
	white-space: nowrap;
	text-shadow: 0 0 2px black, 0 0 5px black, 0 0 10px black;
	z-index: 99;
}

/*************************
*Plant-Overview Carousel**
**************************/

.hover-filter:hover>img {
	cursor: pointer;
	transform: scale(.95, .95);
	transition-duration: 0.6s;
	filter: blur(4px) brightness(0.5);
}

.plant-img {
	cursor: pointer;
}

#plant-overview .description {
	font-size: 0.8rem;
	white-space: nowrap;
	text-shadow: 0 0 2px black, 0 0 5px black, 0 0 10px black;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 30px;
}

#plant-overview .department-container {
	position: relative;
}

#plant-overview .department {
	cursor: pointer;
	top: 50%;
	left: 10%;
	font-size: 0.8rem;
	position: absolute;
	white-space: nowrap;
	color: black;
	/* text-shadow: 0 0 2px black, 0 0 5px black, 0 0 10px black; */
	background: rgba(255, 255, 255, 0.8);
	border-radius: 30px;
	z-index: 99;
	animation: fadeIn 2s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

#plant-overview .department:hover {
	background: rgba(255, 255, 255, 0.8);
	font-size: large;
	z-index: 100;
}

#plant-overview .info {
	top: 50%;
	left: 10%;
	position: absolute;
	white-space: nowrap;
	text-shadow: 0 0 2px black, 0 0 5px black, 0 0 10px black;
	/* background: rgba(255, 255, 255, 0.6); */
	border-radius: 30px;
	z-index: 99;
	animation: fadeIn 2s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

.overview-img-card {
	border-radius: 30px;
	overflow: hidden;
	align-self: center;
	height: auto !important;
	max-height: 85vh;
}

.overview-nav {
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.4), 0 0 5px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.4);
}

.overview-nav:hover {
	text-shadow: none;
}

span.overview-nav {
	background: yellowgreen;
	padding: 0.1rem 0.5rem;
	border-radius: 30px;
	font-weight: bold;
}



.bg-overview-main {
	position: relative;
	background-size: cover;
	background-image: linear-gradient(to right, rgba(0, 123, 187, .9), rgba(193, 228, 233, .1)), url(../images/overview/company/main-min.jpg);
	z-index: 0;
}

.bg-overview-first {
	position: relative;
	background-size: cover;
	background-image: linear-gradient(to right, rgba(0, 123, 187, .9), rgba(193, 228, 233, .1)), url(../images/overview/company/c_first-min.jpg);
	z-index: 0;
}

.bg-overview-second {
	position: relative;
	background-size: cover;
	background-image: linear-gradient(to right, rgba(0, 123, 187, .9), rgba(193, 228, 233, .1)), url(../images/overview/company/c_second-min.jpg);
	z-index: 0;
}

.bg-overview-main2 {
	position: relative;
	background-size: cover;
	background-image: linear-gradient(to right, rgba(0, 123, 187, .9), rgba(193, 228, 233, .1)), url(../images/bg/honsha.jpg);
	z-index: 0;
}

.bg-overview-main:before,
.bg-overview-main2:before,
.bg-overview-first:before,
.bg-overview-second:before {
	content: '';
	top: -5px;
	bottom: -10px;
	left: -10px;
	right: -10px;
	position: absolute;
	filter: blur(4px) brightness(1.1);
	background-image: inherit;
	background-size: inherit;
	z-index: -1;
}

.department-title {
	/* font-size: 2rem; */
	font-weight: bold;
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.4), 0 0 5px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.4);
	color: #fff;
}

.border-round .text-hovered:nth-child(2) {
	display: none;
}

.border-round:hover .text-hovered:first-child {
	display: none;
	animation: fadeOut 2s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.border-round:hover .text-hovered:nth-child(2) {
	font-size: 2rem;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.4), 0 0 5px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.4);
	animation: fadeIn 2s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
	cursor: pointer;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#plant-overview .building {
	position: absolute;
    white-space: nowrap;
	top: 100%;
	left: 30%;
	background: none;
	color: white;
	z-index: 99;
    animation: fadeIn 2s;
}

/*************************
*****Recruit Carousel*****
**************************/

/* #recruit>div {
	background-image: url(../images/bg/ryojin.jpg);
	width: 100%;
	background-size: cover;
	min-height: 100vh;
	border: solid rgba(0, 0, 0, .15);
	border-width: 1px 0;
	position: relative;
	z-index: 0;
	overflow: hidden;
	max-width: -webkit-fill-available;
}

#recruit>div:before {
	content: '';
	background: inherit;
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	z-index: -1;
} */

#recruit>div>div>div {
	position: relative;
	background-size: cover;
	background-image: linear-gradient(to right, rgba(0, 123, 187, .9), rgba(193, 228, 233, .1)), url(../images/bg/ryojin.jpg);
	z-index: 0;
}

#new-req {
	position: relative;
	background-size: cover;
	background-image: linear-gradient(to right, rgba(0, 123, 187, .9), rgba(193, 228, 233, .1)), url(../images/bg/recruit-new.jpg);
	z-index: 0;
}

#career-req {
	position: relative;
	background-size: cover;
	background-image: linear-gradient(to right, rgba(0, 123, 187, .9), rgba(193, 228, 233, .1)), url(../images/bg/recruit-career.jpg);
	z-index: 0;
}

#new-entry {
	position: relative;
	background-size: cover;
	background-image: linear-gradient(to right, rgba(0, 123, 187, .9), rgba(193, 228, 233, .1)), url(../images/bg/chichibu.jpg);
	z-index: 0;
}

#new-entry:before,
#new-req:before,
#career-req:before,
#recruit>div>div>div:before {
	content: '';
	top: -5px;
	bottom: -10px;
	left: -10px;
	right: -10px;
	position: absolute;
	filter: blur(4px) brightness(1.1);
	background-image: inherit;
	background-size: inherit;
	z-index: -1;
}


#recruit .card,
#new-entry .card {
	overflow: hidden;
	border-radius: 30px;
	cursor: pointer;
	padding: none;
	/*white-space: nowrap;*/
}

#recruit .card:hover,
#new-entry .card:hover {
	font-weight: bold;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.4), 0 0 5px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.4);
}

#new-entry-body,
#recruit-body {
	justify-content: space-around;
	align-self: center;
	height: 90vh;
}

#link-career-req,
#link-new-req {
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.4), 0 0 5px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.4);
}

#link-career-req:hover,
#link-new-req:hover {
	cursor: pointer;
	text-shadow: 0 0 2px #007bbb, 0 0 5px #007bbb, 0 0 10px #007bbb;
}

.card .entry {
	top: 30%;
	font-weight: bold;
}

/*************************
********FAQ Carousel******
**************************/

.accordion {
	--bs-accordion-bg: transparent;
}

.accordion-button {
	/* font-size: 1.5rem; */
	color: #fff;
	background-color: transparent;
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.4), 0 0 5px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.4);
}

.fa-circle-question {
	font-size: 1.8rem;
	color: yellow;
}

.accordion-button:not(.collapsed) {
	/* font-size: 1.5rem; */
	color: #fff;
	background-color: transparent;
	text-shadow: 0 0 2px #007bbb, 0 0 5px #007bbb, 0 0 10px #007bbb;
}

.accordion-button:focus {
	border-color: transparent;
}

.accordion-body {
	padding: 15px;
	color: #fff;
	text-shadow: 0 0 2px #333, 0 0 5px #333, 0 0 10px #333;
	background: rgba(0, 0, 0, .2);
}

/*************************
********Cover body********
**************************/
.cover-eml {
	color: #000;
	background: rgba(0, 0, 0, 0.3);
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	animation-name: my-fade-in;
	animation-duration: .8s;
	margin: 0;
}

@keyframes my-fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.cover-eml>.card {
	max-width: 90%;
	max-height: 90%;
}

.close {
	display: block;
	position: relative;
	width: 0px;
	height: 30px;
	top: -45%;
	right: -80%;
	cursor: pointer;
}

.close-img {
	display: block;
	position: absolute;
	width: 0px;
	height: 30px;
	top: 2%;
	right: 5%;
	cursor: pointer;
}

.close::before,
.close-img::before,
.close::after,
.close-img::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 5px;
	height: 30px;
	background: lawngreen;
	border-radius: 2.5px;
}

.close::before,
.close-img::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.close::after,
.close-img::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

#card-new-req,
#card-new-entry {
	background: rgba(144, 198, 149);
}

#card-career-entry,
#card-career-req {
	background: rgba(255, 165, 0, 0.6);
}

/*************************
********Responsive********
**************************/

@media(max-width:1400px) {
	#home-page .info {
		width: 100%;
	}
}

@media(max-width:1220px) {
	#senior-voice .senior-voice-group {
		/* height: 80vh; */
	}

	#senior-voice .card-img-overlay {
		padding: 0px;
	}

	#senior-voice .card-img-overlay>.card {
		/* font-size: small; */
		margin: 0;
	}
}

@media(max-width:1050px) {
	#first-catchword {
		/* font-size: x-large !important; */
	}

	.department-up,
	.department-down {
		font-size: 1rem;
		left: 69%
	}

	#senior-voice .card-img-overlay {
		font-size: 1rem;
	}
}

@media(max-width:850px) {
	#second-catchword {
		/* font-size: large !important; */
	}

	#req-force-info {
		justify-content: center;
	}

	.card .entry {
		top: 0%;
	}
}

@media(max-width:768px) {
	#home-page .info {
		width: 100%;
		margin: 1rem 0rem;
		padding-top: 0.5rem;
	}

	#btn-link-div {
		margin-top: 0rem;
	}

	.demand {
		font-size: 1rem;
	}

	#select-main {
		padding-bottom: 1.5rem;
	}

	#senior-voice .info {
		/* top: 42%; */
		width: 80%;
	}

	/* #senior-voice .group-hire-year-1,
	#senior-voice .group-hire-year-2,
	#senior-voice .group-hire-year-3,
	#senior-voice .group-hire-year-4,
	#senior-voice .group-hire-year-5,
	#senior-voice .answer-span {
		font-size: x-small;
		font-size: small
	} */

	#senior-voice .senior-img {
		margin: 0 !important;
		position: relative;
	}

	#home-page .img-span {
		margin: 0 !important;
	}

	#home-page .btn {
		font-size: inherit;
	}

	.border-round {
		box-shadow: inset 0 0rem 1rem .7rem rgba(0, 0, 0, 0.3);
	}
}


@media(max-width:480px) {

	#home-page .blue-shadow {
		font-size: 2rem;
	}

	.border-round {
		font-size: 1.6rem;
		height: 6rem;
		width: 6rem;
	}

	#senior-voice .card-img-overlay {
		font-size: 0.8rem;
		top: 70%;
	}

	#req-force .info {
		width: 90%;
	}

	#req-force .bg-row {
		/*margin-top: 28vh;*/
		justify-content: center;
	}
	.senior-popup-img {
		object-fit: contain;
		height: auto;
	}
	/* #senior-voice .card-img-overlay {
		top: 17%;
		padding: 0px;
		text-align: center;
		top: 80%;
	} */

	/* #senior-voice .hire-year-up,
	#senior-voice .hire-year-down {
		font-size: x-small
	} */

	.border-round:hover .text-hovered:nth-child(2) {
		font-size: small;
	}

	.department-container {
		margin-bottom: 3rem;
	}

	.overview-img-card {
		height: auto;
	}

	#plant-overview .info {
		font-size: xx-large;
	}

	.cover-eml>.card {
		height: fit-content;
	}
}