@charset "utf-8";

/* 컬러 설정 ======================================================================================= */
:root {
  --blue: #0091ff;

  --white: #fff;
  --black01: #121212;
  --black02: #1A1B1C;
  --black03: #222;

  --gray01: #3e3e3e;
  --gray02: #555;
  --gray03: #666;
  --gray04: #999;
  --gray05: #ccc;
}

/* sub 공통 ========================================================================================= */
figure {
  margin: 0;
}
/* 

/* sub wrap 넓이 설정 =============================================================================== */
.sub_wrap {
  font-size: 16px;
  padding: 80px 16px;
}

.max_w1600 {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.max-w1400 {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.max-w1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* greeting 인사말 ================================================================================== */
.greeting_visual {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  font-size: 16px;
  margin-bottom: 144px;
}

.greeting_visual figure {
  max-width: 858px;
  border-radius: 48px 48px 152px 48px;
  overflow: hidden;
}

.visual_text_group {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0;
}

.visual_title {
	font-size: 72px;
	font-size: clamp(32px, 4vw, 72px);
  font-weight: 800;
  margin-bottom: 120px;
}

.visual_signature > p {
  font-size: 18px;
}

.signature_wrap {
  display: flex;
  align-items: center;
}

.signature_name {
  font-size: 48px;
  font-weight: 700;
  margin: 0 32px 0 0;
}

.greeting_intro_wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.greeting_intro {
  font-size: 22px;
	font-size: clamp(16px, 4vw, 22px);
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 72px;
  color: #666;
}

.greeting_title {
  font-size: 48px;
	font-size: clamp(20px, 4vw, 48px);
  margin-bottom: 24px;
}

.greeting_ul {
  font-size: 22px;
	font-size: clamp(16px, 4vw, 22px);
}

.greeting_ul li {
  display: flex;
}

.greeting_ul li + li {
  margin-top: 16px;
}

.greeting_date {
  font-weight: 700;
  flex: 0 0 120px;
}

.greeting_text {
  color: #666;
}

@media (max-width: 1024px) {
  .greeting_visual {
    justify-content: center;
    margin-bottom: 80px;
  }

  .greeting_visual figure {
    max-width: unset;
    width: 100%;
  }

  .greeting_visual figure > img {
    width: 100%;
  }

  .visual_text_group {
    position: unset;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .visual_title {
    margin: 40px 0;
  }
}

@media (max-width: 640px) {
  .signature_name {
    font-size: 32px;
  }

  .signature_wrap img {
    max-width: 122px;
  }
}

/* company_intro 회사소개 ==================================================================================== */
.company_intro_wrap {
  width: 100%;
  height: 1400px;
  position: relative;
}

.sticky_container {
  position: sticky;
  transition: all 0.5s;
  padding-top: 266px;
  z-index: 1;
}

.sticky_container > .sticky_text {
  width: 100%;
  position: absolute;
  transform: translate(0%, -130px);
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  opacity: 1;
  transition: all 0.5s;
}

.sticky_image > img {
  position: absolute;
  top: 394px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  /* transition: clip-path 0.5s, top 0.5s ease; */
  transition: all 0.5s;;
  clip-path: inset(0 15% 0 15%);
  z-index: -2;
}

.text_below_image {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 40vh;
  transform: translateX(-50%);
  text-align: center;
  font-size: 2em;
  transition: transform 0.5s;
  opacity: 0;
}

.text_below_image .row {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}

.text_below_image .row .box_tit {
  width: calc(100% - 560px);
}

.text_below_image .row .box_tit .tit-h4 {
  font-size: 60px;
	font-size: clamp(48px, 4vw, 60px);
  font-weight: 800;
  margin-bottom: 72px;
}

.text_below_image .row .box-con {
  width: calc(100% - 560px);
}

.text_below_image .row .box-con .top_desc {
  font-size: 24px;
	font-size: clamp(20px, 4vw, 24px);
  font-weight: 700;
  max-width: 830px;
  word-break: keep-all;
}

.text_below_image .row .box-con + .top_desc {
  margin-top: 28px;
  line-height: 1.6;
}

.company_msg {
  margin-top: 72px;
  color: #555;
}

.company_msg p {
  font-size: 17px;
  padding: 0px 0 50px 0;
  line-height: 1.6;
  max-width: 800px;
  word-break: keep-all;
}

.company_msg p strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 24px;
}

.company_intro_list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 80px;
}

.company_intro_item {
  position: relative;
  width: 48%;
  height: auto;
  margin: 0 auto;
}

.company_intro_title {
  position: relative;
  width: 100%;
  height: auto;
  line-height: 40px;
  font-size: 26px;
	font-size: clamp(20px, 4vw, 26px);
  color: #ccc;
  text-align: left;
  padding: 0px 10px;
  padding-bottom: 20px;
}

.company_intro_title::after {
  position: absolute;
  bottom: -1px;
  left: 0px;
  display: inline-block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
  transition: all 0.3ms ease-in-out;
  -webkit-transition: all 0.3ms ease-in-out;
}

.company_intro_desc {
  width: 100%;
  height: auto;
  min-height: calc(4.8em + 30px);
  line-height: 1.6;
  font-size: 20px;
	font-size: clamp(16px, 4vw, 20px);
  color: #666;
  text-align: left;
  padding-left: 10px;
  padding-right: 5px;
  padding-top: 30px;
  border-top: 1px solid #999;
  word-break: keep-all;
}

.company_intro_item:nth-child(n + 5) {
  width: 98%;
  margin-top: 30px;
}

.company_intro_item:hover .company_intro_title {
  font-weight: bold;
  color: #0091ff;
}

.company_intro_item:hover .company_intro_title::after {
  background-color: #0091ff;
}

.company_intro_item:hover .company_intro_desc {
  color: #0091ff;
}

.company_place {
  width: 100%;
  height: auto;
  padding: 200px 20px;
  background-color: #3e3e3e;
}

.company_place_title {
  width: 100%;
  height: auto;
  line-height: 1;
	font-size: clamp(48px, 4vw, 60px);
  color: #fff;
  text-align: center;
  position: relative;
  display: inline-block;
  /* float: left; */
  box-sizing: border-box;
}

.company_place_list {
  width: 100%;
  max-width: 1400px;
  margin: 80px auto 0;
  display: flex;
  flex-wrap: wrap;
}

.company_place_item:nth-child(n + 3) {
  margin-top: 65px;
}

.company_place_item {
  width: 50%;
  height: auto;
}

.company_place_item:nth-child(odd) {
  width: 58%;
  height: auto;
}

.company_place_item:nth-child(even) {
  width: 42%;
  height: auto;
}

.company_place_item .company_place_title::before {
  position: absolute;
  top: 50%;
  left: 0px;
  display: inline-block;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 100%;
  margin-top: -4px;
  background-color: #199cff;
}

.company_place_item .company_place_title {
  width: 100%;
  height: auto;
  line-height: 1;
  padding-left: 30px;
  font-size: 26px;
	font-size: clamp(20px, 4vw, 26px);
	font-weight: 700;
  color: #fff;
  text-align: left;
}

.company_place_item .company_place_desc {
  width: 100%;
  height: 68px;
  line-height: 1.7;
  padding-left: 30px;
  margin-top: 30px;
  font-size: 20px;
	font-size: clamp(16px, 4vw, 20px);
  color: #d1d1d1;
  text-align: left;
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .text_below_image {
    top: 20vh;
  }

  .text_below_image .row {
    align-items: flex-start;
    padding-top: 24px;
  }

  .text_below_image .row .box-con {
    width: calc(100% - 0px);
  }

  .company_intro_wrap {
    height: 1100px;
  }

  .sticky_image img {
    min-height: 300px;
  }

  .sticky_container > .sticky_text {
    font-size: 24px;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .company_place_item:nth-child(odd),
  .company_place_item:nth-child(even) {
    width: 100%;
  }

  .company_place_item:nth-child(n + 2) {
    margin-top: 32px;
  }

  .company_place_item .company_place_desc {
    margin-top: 16px;
  }
}

@media (max-width: 510px) {
  .company_intro_wrap {
    height: 1400px;
  }
}

@media (max-width: 370px) {
  .company_intro_wrap {
    height: 1600px;
  }
}

/* sub02 ==================================================================================== */
.sub02_top_tit {
	font-size: 60px;
	font-size: clamp(32px, 4vw, 60px);
	font-weight: 700;
	text-align: center;
	padding: 420px 20px;
}

.sub02_top_text {
	background: url(../img/sub02_img01.jpg) no-repeat center;
	background-attachment: fixed;
  padding: 160px 20px;
	text-align: center;
  color: #fff;
}

.sub02_top_text > p {
	text-align: center;
} 

[class^="sub02_contents0"] {
	padding: 80px 20px 0;
}

.sub02_top_text h3 {
	font-size: 48px;
  font-weight: 700;
}

.sub02_top_text p {
	font-size: 32px;
  font-weight: 700;
}

.sub02_contents01 p {
	padding-top: 40px;
}

[class^="sub02_contents0"] h4 {
	font-size: 32px;
	padding-top: 160px;
}

[class^="sub02_contents0"] p {
	font-size: 18px;
	line-height: 32px;
	text-align: justify;
}

.sub02_contents02,
.sub02_contents03 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

[class^="sub02_contents0"] img {
	border-radius: 16px;
	width: 100%;
}

.sub02_img_wrap01 {
	width: 40%;
}

.sub02_img_wrap02 {
	width: 52%;
}

.sub02_contents02 p {
	width: 52%;
}

.sub02_contents03 p {
	width: 41%;
}

.sub02_contents04 p {
	padding: 40px 0;
}

.sub02_img_wrap04 {
	width: 40%;
}

.sub02_contents05_2  {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 80px 20px;
}

.sub02_contents05_2 p {
	width: 52%;
}

.sub02_contents06_wrap {
	padding: unset;
	background-color: #F4F8FF;
}

.sub02_img_wrap05 {
	padding-top: 80px;
}

.sub02_contents06_wrap .sub02_list {
	display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
	padding: 80px 0;
}

.sub02_contents06_wrap .sub02_list .sub02_item:nth-child(n + 3) {
	padding-top: 40px;
}

.sub02_contents06_wrap .sub02_item {
	width: 48%;
}

.sub02_contents06_wrap .sub02_item p:first-child {
	font-size: 20px;
	font-weight: 700;
	padding-bottom: 20px;
}

.sub02_contents07 p,
.sub02_contents08 p {
	padding: 40px 0;
}

.sub02_contents09 {
	background: linear-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3) ), url(../img/sub02_img08.jpg) no-repeat center;
	color: #fff;
	height: 600px;
	margin-top: 160px;
	padding: 0 20px;
	display: flex;
  justify-content: center;
  align-items: center;
}

.sub02_contents09 p {
	display: flex;
  justify-content: center;
	font-size: 24px;
  font-size: clamp(16px, 4vw, 24px);
	font-weight: 800;
	text-align: center;
	line-height: 40px;
}

@media (max-width: 1024px) {
	[class^="sub02_img_wrap0"] {
		width: 100%;
	}

	[class^="sub02_contents0"] p:not(.sub02_item p, .sub02_contents09 p) {
		width: 100%;
		line-height: 32px;
		padding-top: 40px;
	}

	.sub02_img_wrap02 {
		order: 1;
	}

	.sub02_contents03 p {
		order: 2;
	}
}

@media (max-width: 768px) {
	.sub02_top_tit {
		font-size: 32px;
    font-size: clamp(30px, 4vw, 32px);
	}

	[class^="sub02_contents0"] h4 {
		padding-top: unset;
	}

	.sub02_contents06_wrap .sub02_item {
		width: 100%;
	}

	.sub02_contents06_wrap .sub02_list .sub02_item:nth-child(n + 2) {
		padding-top: 40px;
	}

	.sub02_top_text {
		background-attachment: unset;
	}
}

/* sub04 ======================================================================================================*/
.sub04_branditem {
	display: flex;
	margin-bottom: 160px;
}

[class^="sub04"] h2 {
	width: 20%;
	font-size: 40px;
  font-weight: 700;
}

[class^="sub04"] h3 {
	font-size: 24px;
  font-weight: 700;
}

.sub04_symbol {
	width: 100%;
}

.sub04_symbol p {
	font-size: 18px;
	font-weight: 500;
  color: #666;
}

.sub04_mark {
	width: 100%;
  border: 1px solid #d2d2d2;
  border-radius: 30px;
  background-color: #fff;
  padding: 180px 0;
  position: relative;
  margin-bottom: 40px;
	text-align: center;
}

.sub04_contents01 {
	display: flex;
}

.sub04_color_wrap {
	width: 100%;
}

.sub04_color_main {
	width: 100%;
  display: flex;
  gap: 56px;
  margin: 24px 0 120px 0;
}

.sub04_color_main li {
	width: calc((100% - 3.5rem) / 2);
}

.sub04_color_main p {
	font-size: 24px;
  color: #fff;
  font-weight: 700;
  padding: 32px;
  margin-bottom: 32px;
  border-radius: 10px;
}

[class^="sub04_color"] span {
	display: block;
  font-size: 16px;
  line-height: 1.75;
  color: #666;
  font-weight: 600;
}

.sub04_color_main li:nth-of-type(1) p {
	background-color: #C5A253;
}

.sub04_color_main li:nth-of-type(2) p {
	background-color: #85677B;
}

.sub04_color_sub {
	width: 100%;
  display: flex;
  column-gap: 80px;
  row-gap: 80px;
  flex-wrap: wrap;
	margin-top: 24px;
}

.sub04_color_sub li {
	width: calc((100% - 10rem) / 3);
}

.sub04_color_sub li p {
	padding: 40px 0 0 0;
  margin-bottom: 12px;
	border-radius: 10px;
}

.sub04_color_sub li:nth-of-type(1) p {
	background: #D8C8BD;
}

.sub04_color_sub li:nth-of-type(2) p {
	background: #A78C7B;
}

.sub04_color_sub li:nth-of-type(3) p {
	background: #964F4C;
}

.sub04_color_sub li:nth-of-type(4) p {
	background: #FFBE98;
}

.sub04_color_sub li:nth-of-type(5) p {
	background: #CA848A;
}

.sub04_color_sub strong {
	font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  margin: 12px 0 20px 0;
}

@media (max-width: 960px) {
	.sub04_branditem {
		flex-direction: column;
    row-gap: 24px;
    margin-bottom: 120px;
	}

	.sub04_mark img {
		width: 80%;
	}

	.sub04_contents01 {
		display: flex;
		flex-direction: column;
  	row-gap: 24px;
  	margin-bottom: 120px;
	}

	.sub04_color_main {
		width: 100%;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 58px;
	}

	.sub04_color_sub {
		flex-direction: column;
    column-gap: initial;
    row-gap: 24px;
	}

	[class^="sub04"] h2 {
		width: 100%;
	}

	[class^="sub04_color"] li {
		width: 100%;
	}
}

/* sub06 ======================================================================================================*/
.sub06_contents01 {
	display: flex;
	justify-content: space-between;
}

.sub06_left_txt {
	display: flex;
	flex-direction: column;
}

.sub06_conbox:nth-of-type(n + 2) {
	padding-top: 32px;
}

.sub06_conbox strong {
	font-size: 24px;
	font-weight: 700;
	color: #0091ff;
}

.sub06_cate > span {
	font-weight: 800;
	display: block;
  padding: 10px 0;
}

.sub06_infotxt {
	color: #8F8F8F;
  line-height: 1.7;
  font-weight: 400;
  margin-bottom: 8px;
}

.sub06_right_img {
	width: calc(100% - 490px);
}

.sub06_right_img ul {
	display: flex;
	flex-wrap: wrap;
  gap: 10px;

	& li {
		flex-basis: calc(50% - 10px);
		height: 300px;
		border-radius: 10px;
		overflow: hidden;

		& img {
			width: 100%;
  		height: 100%;
  		object-fit: cover;
		}
	}
}

/* .sub06_right_img ul li {
	flex-basis: calc(50% - 10px);
	height: 300px;
	border-radius: 10px;
	overflow: hidden;
} */

/* .sub06_right_img ul li img {
	width: 100%;
  height: 100%;
  object-fit: cover;
} */

@media (max-width: 960px) {
	.sub06_right_img {
		width: calc(100% - 50vw);
	}

	.sub06_right_img ul {
		flex-direction: column;
	}

	.sub06_right_img ul li {
		flex-basis: 100%;
    height: 16vw;
	}
}

@media (max-width: 640px) {
	.sub06_contents01 {
		flex-direction: column;
	}

	.sub06_right_img {
		width: 100%;
		margin-top: 40px;
	}

	.sub06_right_img ul {
		flex-direction: unset;
	}

	.sub06_right_img ul li {
		flex-basis: calc(50% - 10px);
		height: 30vw;
	}
}

