@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;
}

input,
select, textarea {
  font-family: "Noto Sans KR", sans-serif;
  color: #000;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 2px;
}

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

.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: 0px;
  width: 0px;
  height: 0px;
  border-bottom: 15px solid transparent;
  border-top: 15px solid transparent;
  border-left: 25px solid transparent;
}
.reference .next_btn {
  right: 0px;
  width: 0px;
  height: 0px;
  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;
}
.gallery .gal_bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.4;
  z-index: 101;
  display: none;
}
.gallery .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;
}
.gallery .gal_pop img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  object-fit: cover;
}
.gallery .gal_pop .close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
}
.gallery .gal_pop .close span:first-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 25px;
  height: 3px;
  border-radius: 3px;
  background-color: #000;
}
.gallery .gal_pop .close span:last-child {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 25px;
  height: 3px;
  border-radius: 3px;
  background-color: #000;
}

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;
  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: 50;
  padding: 10px 0;
  z-index: 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;
}

.top_contents05 {
  width: 100%;
  border-radius: 360px 360px 0 0;
  margin-top: 40px;
  overflow: hidden;
}
.top_contents05 .logo {
  width: 150px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 11;
  margin: 20px auto 0;
}
.top_contents05 .logo img {
  width: 55%;
  max-height: 50px;
  object-fit: contain;
}

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

.bottom_contents05 {
  width: 100%;
  border-radius: 0 0 360px 360px;
  margin-bottom: 25px;
  overflow: hidden;
  padding: 60px 60px 80px;
}
.bottom_contents05 .info_me .contents {
  display: block;
  margin-bottom: 10px;
}
.bottom_contents05 .info_me .contents h2 {
  font-size: 12px;
}
.bottom_contents05 .info_me .contents p {
  font-size: 12px;
}
.bottom_contents05 .bottom_p {
  margin-top: 50px;
  text-align: center;
}
.bottom_contents05 .bottom_p p {
  font-size: 18px;
  line-height: 21px;
  word-break: keep-all;
  padding: 0 16px;
}

.below_contents05 {
  width: 100%;
  border-radius: 360px 360px 0 0;
  overflow: hidden;
}
.below_contents05 .career05 {
  padding: 80px 60px 0;
}
.below_contents05 .career05 > h2 {
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 25px;
}
.below_contents05 .career05 .contents {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.below_contents05 .career05 .contents:last-child {
  margin-bottom: 0;
}
.below_contents05 .career05 .contents h2 {
  font-size: 12px;
  width: 40px;
}
.below_contents05 .career05 .contents p {
  font-size: 12px;
  width: calc(100% - 40px);
  word-break: keep-all;
}
.below_contents05 .reference > h2 {
  font-size: 20px;
  line-height: 20px;
}

.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=style05.css.map */
