/* Noto-sans kr */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap");

* {
	font-family: "Noto Sans KR", sans-serif;
}
/* fixed menu */
.fixed-menu-box {
	width: 80px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	border-radius: 50%;
	bottom: 50px;
	right: 50px;
	background-color: #113d60;
	z-index: 100;
	cursor: pointer;
}
.fixed-menu-title {
	font-size: 36px;
	color: #fff;
}
.fixed-menu-list {
	position: absolute;
	overflow: hidden;
	bottom: 90px;
}
.fixed-menu {
	width: 120px;
	height: 0;
	box-sizing: border-box;
	text-align: center;
	line-height: 50px;
	background-color: #113d60;
	transition: 0.5s;
}
.fixed-menu:first-child {
	border-radius: 25px 25px 0 0;
}
.fixed-menu:last-child {
	border-radius: 0 0 25px 25px;
}
.fixed-menu a {
	width: 100%;
	height: 100%;
	display: block;
	color: #fff;
}
.fixed-menu:hover {
	text-decoration: underline;
}
.header {
	width: calc(100% - (20% * 2));
	min-width: 1000px;
	height: 95px;
	padding: 0 20%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	border-bottom: 1px solid #c5c5c5;
	background-color: transparent;
	transition: 0.5s;
	z-index: 2;
}
.logo-box {
	width: 220px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.logo-box img {
	width: 100%;
}
.menu-nav {
	width: 55%;
	margin-right: 150px;
}
.menu-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.menu {
	transition: 0.5s;
	cursor: pointer;
	position: relative;
}
.menu:hover {
	text-decoration: underline;
}
.sub-menu:hover {
	text-decoration: underline;
}
.menu:hover .sub-menu {
	height: 50px;
}
/* 메인 section */
.main-sec {
	width: 100vw;
	min-width: 1500px;
	overflow: hidden;
	position: relative;
}
.main-sec-banner {
	width: 100%;
	height: 50vh;
	background-image: url(../imgs/background_v2.png);
	background-size: cover;
	background-position: center right;
	display: flex;
	align-items: center;
}
.main-sec-banner-txt-box {
	padding-left: 15%;
	margin-top: 100px;
}
.banner-txt-p {
	font-size: 1.5rem;
}
.banner-txt-h1 {
	font-size: 2.5rem;
	margin: 0 0 40px 0;
}
.banner-txt-h1 > span {
	font-size: 1.8rem;
}
.banner-txt-h1 font {
	color: #3f5ab3;
}
.banner-txt-p:last-child {
	font-size: 1.1rem;
}
.main-sec-bot-box {
	width: 70%;
	text-align: center;
	margin: 2.5vh auto;
	padding-bottom: 110px;
}
.main-sec-bot-h1 {
	font-size: 1.8rem;
	color: #19496f;
}
.main-sec-bot-p {
	margin: 10px 0;
	font-size: 0.9rem;
	text-align: right;
}
.main-sec-bot-p a:hover {
	text-decoration: underline;
}
.main-sec-gongo-list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.gongo {
	width: calc(100% / 4 - 10px);
	margin-left: 10px;
	border-radius: 20px;
	margin-top: 10px;
	box-shadow: 0 5px 5px #e5e5e5;
	text-align: left;
	background-color: #e9e9e9;
	transition: 0.5s;
}
.gongo:hover {
	margin-top: 0;
	box-shadow: 0 10px 5px #cacaca;
}
.gongo a {
	width: calc(100% - 60px);
	padding: 30px;
	display: block;
}
.gongo-p {
	width: 80px;
	display: flex;
	justify-content: center;
	border-radius: 5px;
	align-items: center;
	color: #fff;
	background-color: #446986;
}
.gongo-p2 {
	margin-top: 5px;
	font-weight: 600;
	white-space: nowrap;
}
.scroll-box {
	width: 30px;
	height: 8vh;
	border-radius: 30px;
	border: 1px solid #252525;
	position: absolute;
	left: 50%;
	margin-left: calc(-30px / 2);
	bottom: 4vh;
}
/* 스크롤 애니메이션 */
@keyframes scroll-animation {
	from {
		margin: 20% auto;
	}
	to {
		margin: 100% auto;
	}
}
.scroll-one {
	width: 20px;
	height: 20px;
	margin: 20% auto;
	border-radius: 50%;
	background-color: #252525;
	animation: scroll-animation 0.8s alternate infinite linear;
}
.scroll-text {
	width: 80px;
	position: absolute;
	display: block;
	bottom: 1vh;
	left: 50%;
	margin-left: calc(-80px / 2);
	color: #252525;
}
/* 회사 소개 */
.company-section {
	width: 100vw;
	min-width: 1500px;
	overflow: hidden;
}
.company-section-top-banner {
	width: 100%;
}
.company-section-menu-box {
	width: 100%;
	height: 50px;
	border-bottom: 1px solid #c5c5c5;
	display: flex;
	justify-content: center;
	align-items: center;
}
.company-section-menu-list {
	width: 30%;
	height: 50px;
	line-height: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.company-section-menu {
	width: calc(100% / 3);
	height: 100%;
	text-align: center;
	cursor: pointer;
}
.company-section-menu:first-child {
	border-bottom: 2px solid #113d60;
}
.company-section-bot-box {
	width: 100%;
}
.company-section-bot-in-box {
	width: 100%;
	margin: 50px auto;
	text-align: center;
	display: none;
}
/* 개요 */
.company-section-bot-in-box:first-child {
	display: block;
}
.company-section-bot-in-box:first-child img,
.company-section-bot-in-box:last-child img {
	width: 60%;
}
.company-section-bot-in-box:first-child img:last-child {
	margin-top: 50px;
}
/* CEO 인사말 */
.company-section-bot-in-box:nth-child(2) {
	margin: 0;
}
.campany-section-bot-in-text {
	width: 1200px;
	margin: 50px auto;
	text-align: left;
	display: flex;
	justify-content: space-between;
	color: #444444;
}
/* 사업영역 */
.business-area-section {
	min-width: 1500px;
	margin: 50px 0 100px 0;
}
.business-section-top-banner {
	margin-bottom: 100px;
}
.business-area-box {
	width: 75%;
	margin: 0 auto;
}
.business-area-in-box {
	margin-top: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.business-area-content {
	width: 48%;
}
.business-area-title {
	font-size: 32px;
	border-bottom: 2px solid #114263;
	padding-bottom: 20px;
	margin-bottom: 20px;
	color: #144164;
}
.business-area-in-box:nth-child(2n) {
	text-align: right;
}
.business-area-text,
.business-area-list {
	color: #444444;
}
.business-area-list {
	margin: 25px 0 0 20px;
}
.business-area-list,
.business-area {
	list-style: disc;
}
.business-flex-list-box {
	width: 65%;
	display: flex;
	justify-content: space-between;
	text-align: left;
}
.business-area-in-box:nth-child(2n) .business-flex-list-box {
	float: right;
}
/* 직무 소개 */
.introduction-section {
	width: 100%;
	min-width: 1500px;
	overflow: hidden;
}

.introduction-banner-box {
	width: 100%;
}
.job-introduction-list {
	width: 70%;
	margin: 80px auto;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
}
.job-introduction-title {
	padding: 20px 40px;
	display: flex;
	justify-content: space-between;
	border-top: 1px solid #c5c5c5;
	border-bottom: 1px solid #c5c5c5;
	cursor: pointer;
}
.introduction-color-blue {
}
.job-introduction-icon {
	font-size: 1.5rem;
}
.job-introduction {
	height: 0;
	overflow: hidden;
}
.job-introduction-main-text {
	width: calc(100% - 80px);
	margin: 30px auto;
}
.job-introduction-bot-box {
	width: calc(100% - 80px);
	margin: 0 auto;
	margin-bottom: 50px;
}
.introduction-bot-title {
	color: #174265;
}
.job-introduction-bot-in-box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.job-introduction-table {
	width: 100%;
	text-align: center;
	margin-top: 10px;
}
.job-introduction-flex {
	width: 80%;
	height: 400px;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.job-introduction-img-bg-box {
	width: 350px;
	height: 180px;
	position: absolute;
	margin-top: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.job-introduction-img-bg-box:nth-child(1) {
	background-image: url(../imgs/introduction/1단계.png);
	left: 0;
	top: 0;
}
.job-introduction-img-bg-box:nth-child(2) {
	background-image: url(../imgs/introduction/2단계.png);
	left: 310px;
	top: 0;
}
.job-introduction-img-bg-box:nth-child(3) {
	background-image: url(../imgs/introduction/3단계.png);
	left: 620px;
	top: 0;
}
.job-introduction-img-bg-box:nth-child(4) {
	background-image: url(../imgs/introduction/4단계.png);
	left: 0;
	top: 190px;
}
.job-introduction-img-bg-box:nth-child(5) {
	background-image: url(../imgs/introduction/5단계.png);
	left: 460px;
	top: 190px;
}
.job-introduction-text-box {
	height: 60%;
	margin-left: 20px;
	color: #fffdf5;
}
.job-introduction-text-box h1 {
	font-size: 21px;
}
.job-introduction-text-box p {
	font-size: 15px;
}
.job-introduction-img {
	margin-top: 25px;
}
table,
th,
tr,
td {
	padding: 10px;
	border-collapse: collapse;
}
.font-blue {
	color: #224c6e;
}
.font-gray {
	color: #757575;
}
.bg-lightblue {
	font-weight: bold;
	color: #224c6e;
	background-color: #f3fbff;
}
.bg-gray {
	color: #404040;
	background-color: #f8f8f8;
}
.bg-blue {
	font-weight: normal;
	color: #fff;
	background-color: #144165;
}
.border-b-gray-100 {
	border-bottom: 1px solid #d1d1d1;
}
.border-b-gray-200 {
	border-bottom: 1px solid #969697;
}
.job-introduction-card {
	width: 43%;
	margin-top: 20px;
	display: flex;
	align-items: center;
	padding: 25px;
	background-color: #f3fbff;
}
.job-introduction-card-icon-box {
	margin-right: 30px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #def2fe;
}
.job-introduction-card-text p {
	color: #323232;
}
.job-introduction-card-icon-box img {
	width: 40px;
	padding: 15px;
}
.job-introduction strong {
	font-size: 1.2rem;
	display: block;
	margin: 10px 0;
}
/* 인터뷰 테스트 */
.interview-section {
	width: 100%;
	min-width: 1500px;
	overflow: hidden;
}

.interview-banner-box {
	width: 100%;
}

.interview-box {
	width: 80%;
	height: 80vh;
	margin: 30px auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.interview-left-box,
.interview-right-box {
	width: 48%;
	height: 100%;
	position: relative;
}
.interview-right-box {
	height: 85%;
	padding: 15px 30px;
	border: 1px solid #c5c5c5;
	border-radius: 5px;
	overflow-y: scroll;
}
.interview-right-box::-webkit-scrollbar {
	width: 5px;
}
.interview-right-box::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background-color: #144164;
}
.interview-top-title-box {
	margin: 30px 0 20px 0;
	display: flex;
	align-items: center;
}
.interview-top-team {
	padding: 2px 10px;
	margin-right: 10px;
	border-radius: 5px;
	color: white;
	background-color: #154367;
}
.interview-top-box-name {
	font-size: 52px;
	color: #154367;
}
.interview-top-box-name small {
	font-weight: normal;
	color: #000;
}
.interview-top-box-text {
	font-size: 30px;
}
.interview-top-box p {
	width: 90%;
	height: 87px;
	padding: 42.5px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-size: cover;
	background-image: url("../imgs/interview/현직자-인터뷰-배경.png");
}
.interview-left-bot-box {
	width: 90%;
	position: absolute;
	left: 40%;
	bottom: 15%;
	margin-left: calc(-80% / 2);
	display: flex;
	justify-content: center;
}
.mySwiper {
	width: 600px;
}
.swiper-wrapper {
	align-items: center;
}
.interview-img {
	cursor: pointer;
}
.swiper-button-prev,
.swiper-button-next {
	color: #000 !important;
	top: 120% !important;
}
.swiper-button-prev {
	left: 150px !important;
}
.swiper-button-next {
	right: 150px !important;
}
.interview-title {
	margin: 40px 0 10px 0;
	color: #113d60;
}
.swiper-slide-active {
	z-index: 2;
}
/* 복리 후생 */
.welfare-section {
	min-width: 1500px;
}
.welfare-box {
	width: 60%;
	margin: 50px auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.welfare-in-box {
	width: 45%;
	margin: 50px 0;
}
.welfare-in-top-box {
	margin-bottom: 40px;
	display: flex;
	justify-content: space-between;
}
.welfare-in-top-title {
	color: #2d5677;
}
.welfare-in-bot-list,
.welfare-in-bot-content {
	list-style: disc;
}
.welfare-in-top-box img {
	width: 60px;
	height: 60px;
}
/* footer */
.footer {
	width: 100%;
	min-width: 1500px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	background-color: #636363;
}
.footer-box {
	width: 60%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-left-box {
	width: 650px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-left-span-box span::before {
	content: "|";
	margin: 0 15px;
}
.footer-left-span-box span:first-child::before {
	content: "";
}
.family-site {
	padding: 5px;
	border-radius: 5px;
}
