@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  vertical-align: top;
  max-width: 100%;
  filter: none;
}

button {
  background-color: inherit;
  cursor: pointer;
  font-family: "Noto Sans KR", sans-serif;
  color: #000;
}

html,
body {
  font-family: "Noto Sans KR", sans-serif;
  color: #000;
  overflow-x: hidden;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  letter-spacing: -1px;
}

.top_contents {
  position: relative;
  width: 100%;
  height: 430px;
}
.top_contents .logo {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 11;
}
.top_contents .logo img {
  width: 55%;
  max-height: 50px;
  object-fit: contain;
}
.top_contents .back_bg {
  width: 100%;
  height: 100%;
}
.top_contents .back_bg .back_img {
  width: 100%;
  height: 100%;
}
.top_contents .back_bg .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.25;
}

.swiper_inner {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.swiper_inner .top_slide {
  position: relative;
  width: 100%;
}
.swiper_inner .top_slide .swiper-slide {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.swiper_inner .top_slide .swiper-slide img {
  height: 330px;
}
.swiper_inner .top_slide .swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  align-items: center;
}
.swiper_inner .top_slide .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border: 1px solid #000;
  background-color: transparent;
  margin: 0 2px;
  opacity: 1;
}
.swiper_inner .top_slide .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.swiper_inner .top_slide .swiper-pagination-bullet-active {
  background-color: #000;
  width: 6px;
  height: 6px;
}

.reference {
  position: relative;
  width: 100%;
  padding: 60px 0;
}
.reference h2 {
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 25px;
}
.reference .prev_btn,
.reference .next_btn {
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  width: 20px;
}
.reference .prev_btn {
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 15px solid transparent;
  border-top: 15px solid transparent;
  border-left: 25px solid transparent;
}
.reference .next_btn {
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 15px solid transparent;
  border-top: 15px solid transparent;
  border-right: 25px solid transparent;
}

.gallery {
  width: 100%;
  padding: 60px 0 110px;
}
.gallery h2 {
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 25px;
}
.gallery .contents {
  max-width: 343px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 11px;
}
.gallery .contents img {
  width: 107px;
  height: 107px;
  object-fit: cover;
  cursor: pointer;
}

.gal_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
  z-index: 101;
  display: none;
}

.gal_pop {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 343px;
  height: 343px;
  border-radius: 20px;
  background-color: #fff;
  z-index: 102;
  display: none;
}
.gal_pop img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  object-fit: cover;
}
.gal_pop .close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.gal_pop .close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 3px;
  border-radius: 3px;
  background-color: #000;
}
.gal_pop .close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.gal_pop .close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

footer,
.footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 480px;
  width: 100%;
  box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  padding: 10px 0;
}
footer .inner,
.footer .inner {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
footer .inner a,
.footer .inner a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
}
footer > a,
.footer > a {
  display: block;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
  margin-top: 5px;
}
footer .visitor,
.footer .visitor {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  line-height: 12px;
  gap: 10px;
  margin-top: 5px;
}

.footer {
  position: absolute;
}

.header {
  width: 100%;
  height: 70px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 16px;
  z-index: 30;
}
.header .logo {
  position: relative;
  top: 0;
  left: 0;
  transform: translateX(0);
  width: 150px;
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 11;
}
.header .logo img {
  width: 55%;
  max-height: 50px;
  object-fit: contain;
}
.header p {
  font-size: 12px;
  line-height: 14px;
  text-align: right;
}

.body_slide {
  width: 100%;
  height: 100vh;
}
.body_slide .section_in {
  width: 100%;
  height: 100vh;
}
.body_slide .body12 {
  width: 100%;
  height: 100vh;
}

.top_contents02 {
  height: 100%;
}
.top_contents02 .header {
  width: 100%;
  height: 70px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 16px;
  z-index: 30;
}
.top_contents02 .logo {
  position: relative;
  top: 0;
  left: 0;
  transform: translateX(0);
  width: 150px;
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 11;
}
.top_contents02 .logo img {
  width: 55%;
  max-height: 50px;
  object-fit: contain;
}
.top_contents02 .header p {
  font-size: 12px;
  line-height: 14px;
  text-align: right;
}

.swiper_inner .top_slide_02 .swiper-pagination {
  position: absolute;
  bottom: 10px;
  left: auto;
  right: 30px;
  transform: translateX(0);
  z-index: 15;
  display: flex;
  align-items: center;
}
.swiper_inner .top_slide_02 .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border: 1px solid #000;
  background-color: transparent;
  margin: 0 2px;
  opacity: 1;
}
.swiper_inner .top_slide_02 .swiper-pagination-bullet:last-child {
  margin-right: 0;
}
.swiper_inner .top_slide_02 .swiper-pagination-bullet-active {
  background-color: #000;
  width: 6px;
  height: 6px;
}
.swiper_inner .top_slide_02 .swiper-slide img {
  height: auto;
  max-width: 300px;
  width: 100%;
}

.right_fix02 {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}
.right_fix02 a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.right_fix02 a img {
  width: 25px;
}
.right_fix02 a p {
  font-size: 10px;
  color: #fff;
}

.info_box {
  position: relative;
  width: 100%;
  height: 100%;
}
.info_box .info_contents {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  max-width: 270px;
  width: 100%;
}
.info_box .info_contents .contents {
  position: relative;
  display: flex;
  align-items: flex-start;
  width: 100%;
  border-radius: 10px;
  border: 1px solid;
  padding: 30px 10px 15px;
  margin-bottom: 10px;
}
.info_box .info_contents .contents:last-child {
  margin-bottom: 0;
}
.info_box .info_contents .contents h2 {
  font-size: 10px;
  width: 53px;
  position: relative;
  top: 1px;
}
.info_box .info_contents .contents p {
  font-size: 12px;
  width: calc(100% - 53px);
  word-break: keep-all;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.info_box .info_contents .contents h3 {
  font-size: 12px;
  width: calc(100% - 53px);
}
.info_box .info_contents .contents a,
.info_box .info_contents .contents button {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70px;
  height: 20px;
  border-radius: 10px;
  padding: 0 10px;
}
.info_box .info_contents .contents a img,
.info_box .info_contents .contents button img {
  width: 13px;
}
.info_box .info_contents .contents a span,
.info_box .info_contents .contents button span {
  font-size: 10px;
  position: relative;
  top: -1px;
}

.live_inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.live_inner .reference01 {
  padding: 0;
}

.career_inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.career_inner .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
}
.career_inner .information01 {
  padding: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.information01 {
  width: 100%;
  padding: 60px 0;
}
.information01 > h2 {
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 25px;
  padding: 0 16px;
}
.information01 .contents {
  display: flex;
  max-width: 300px;
  width: 100%;
  margin: 10px auto 0;
}
.information01 .contents01 {
  max-width: 100%;
  padding: 0 16px;
}
.information01 .contents:first-child {
  margin: 0 auto;
}
.information01 .contents h2 {
  font-size: 12px;
  line-height: 16px;
  width: 80px;
}
.information01 .contents a {
  font-size: 12px;
  line-height: 16px;
  word-break: keep-all;
}
.information01 .contents div {
  display: flex;
  gap: 10px;
}
.information01 .contents div a,
.information01 .contents div p {
  position: relative;
}
.information01 .contents div a::before,
.information01 .contents div p::before {
  content: "/";
  position: absolute;
  top: 1px;
  left: -7px;
  font-size: 12px;
  line-height: 16px;
}
.information01 .contents div a:first-child::before,
.information01 .contents div p:first-child::before {
  display: none;
}
.information01 .contents p {
  font-size: 12px;
  line-height: 16px;
  word-break: keep-all;
  width: calc(100% - 80px);
}

.refer_slide_01 {
  width: 240px;
  margin: 0 auto;
}
.refer_slide_01 .swiper-slide {
  position: relative;
  width: 100%;
}
.refer_slide_01 .swiper-slide > img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.refer_slide_01 .swiper-slide p {
  font-size: 12px;
  text-align: center;
  margin: 10px auto;
}
.refer_slide_01 .swiper-slide a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 130px;
  height: 40px;
  border-radius: 40px;
  margin: 0 auto;
}
.refer_slide_01 .swiper-slide a img {
  height: 20px;
}
.refer_slide_01 .swiper-slide a span {
  font-size: 10px;
  position: relative;
  top: -1px;
}

.reference01 .prev_btn,
.reference01 .next_btn {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  width: 20px;
}
.reference01 > .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
}

/*# sourceMappingURL=style02.css.map */
