@font-face {
  font-family: "MaruBuri-Regular";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-10-21@1.0/MaruBuri-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.maru {
  font-family: "MaruBuri-Regular";
}

.slide {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11.25rem;
  height: 2.75rem;
  line-height: 40px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 1.875rem;
  position: relative;
  transition: color 0.5s;
}
.slide.green {
  border: 3px solid black;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .slide.green {
    background-color: #2eb32e;
    color: white;
    border: 0;
  }
}
.slide.green::before {
  background-color: #2eb32e;
}
.slide.green:hover {
  border: 3px solid #2eb32e;
  color: #fff;
}
.slide.black {
  border: 3px solid #fff;
  color: #fff;
}
.slide.black::before {
  background-color: black;
}
@media screen and (max-width: 1024px) {
  .slide.black {
    background-color: #2eb32e;
    color: white;
    border: 0;
  }
}
.slide::before {
  content: "";
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border-radius: 2.5rem;
  z-index: -1;
  transition: all 0.5s;
}
.slide:hover::before {
  opacity: 1;
  width: 100%;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  padding: 0 30px;
  align-items: center;
  justify-content: space-between;
  min-height: 75px;
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 0 16px;
  }
}
.header > .logo > img {
  height: 2.5rem;
}
.header > .gnb {
  display: flex;
  align-items: center;
  gap: 48px;
  font-family: "MaruBuri-Regular";
}
@media screen and (max-width: 1024px) {
  .header > .gnb {
    display: none;
  }
}
.header > .gnb > li {
  position: relative;
}
.header > .gnb > li:has(ul) > a {
  padding-bottom: 100px;
}
.header > .gnb > li:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 40px;
}
.header > .gnb > li > ul {
  transition: all 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  padding: 14px 20px;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-fit-content;
  width: fit-content;
  visibility: hidden;
  opacity: 0;
}
.header > .gnb > li > ul > li {
  font-size: 13px;
  white-space: nowrap;
  line-height: 2;
}
.header > .gnb > li > ul > li > a {
  color: #999;
  transition: color 0.2s;
}
.header > .gnb > li > ul > li > a:hover {
  color: #000;
}
.header > .tnb {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header > .tnb > li {
  position: relative;
}
.header > .tnb > li.mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header > .tnb > li.mobile {
    display: block;
  }
}
.header > .tnb > li:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 40px;
}
.header > .tnb > li > a {
  position: relative;
}
.header > .tnb > li > a > .count {
  background-color: #2eb32e;
  color: #fff;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  right: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header > .tnb > li > ul {
  transition: all 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  padding: 14px 20px;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-fit-content;
  width: fit-content;
  visibility: hidden;
  opacity: 0;
}
.header > .tnb > li > ul > li {
  white-space: nowrap;
  font-size: 13px;
  line-height: 2;
}
.header > .tnb > li > ul > li > a {
  color: #999;
  transition: color 0.3s;
}
.header > .tnb > li > ul > li > a:hover {
  color: #000;
}

.mobile_menu {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: #fff;
  z-index: 100;
  padding: 30px 20px;
  transition: all 0.2s;
  display: none;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 1024px) {
  .mobile_menu {
    display: flex;
  }
}
.mobile_menu.active {
  right: 0;
}
.mobile_menu > .top {
  display: flex;
}
.mobile_menu > .top > p {
  font-size: 12px;
  line-height: 1.6;
  width: calc(100% - 40px);
  color: #777;
}
.mobile_menu > .top > p > span {
  color: #000;
  font-weight: 500;
}
.mobile_menu > .top > .close {
  width: 40px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile_menu > .search {
  position: relative;
  display: flex;
  border: 1px solid #ddd;
}
.mobile_menu > .search > input {
  width: calc(100% - 40px);
  height: 40px;
  font-size: 16px;
  padding: 0 6px;
  box-sizing: border-box;
}
.mobile_menu > .search > .btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #777;
}
.mobile_menu > .login {
  display: flex;
  gap: 6px;
}
.mobile_menu > .login > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 50%;
}
.mobile_menu > .login > a:first-of-type {
  background-color: #2eb32e;
  color: #fff;
}
.mobile_menu > .login > a:last-of-type {
  border: 1px solid #2eb32e;
  color: #2eb32e;
}
.mobile_menu > .middle {
  display: flex;
}
.mobile_menu > .middle > a {
  border: 1px solid #ddd;
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin-left: -1px;
  flex-direction: column;
  gap: 4px;
}
.mobile_menu > .middle > a > i {
  font-size: 12px;
  color: #999;
}
.mobile_menu > .middle > a > span {
  color: #555;
  font-size: 12px;
}
.mobile_menu > .gnb {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 12px;
  border: 1px solid #2eb32e;
}
.mobile_menu > .gnb > a {
  font-size: 14px;
  color: #555;
}
.mobile_menu > .bottom > strong {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.mobile_menu > .bottom > p {
  font-size: 13px;
  color: #777;
  line-height: 1.8;
}

.main {
  overflow-x: hidden;
}
.main > .parts {
  z-index: 10;
  position: fixed;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 1024px) {
  .main > .parts {
    gap: 12px;
    right: 30px;
  }
}
.main > .parts > li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main > .parts > li > a {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: white;
}
@media screen and (max-width: 1024px) {
  .main > .parts > li > a {
    background-color: #767676;
    width: 10px;
    height: 10px;
  }
}
.main > .parts > li > a.active {
  background-color: #2eb32e;
  width: 14px;
  height: 14px;
}
.main > section {
  width: 100vw;
  height: 100vh;
  position: relative;
}
.main > section > .box {
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .main > section > .box {
    left: 50% !important;
    top: 30% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center;
    width: 100%;
  }
  .main > section > .box .slide {
    margin-left: auto;
    margin-right: auto;
  }
}
.main > section > .box > .sub {
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px #fff;
  letter-spacing: 2px;
  font-weight: 700;
}
.main > section > .box > .title {
  font-size: 2.75rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}
.main > section > .box > .desc {
  font-size: 1.25rem;
  color: #555;
  line-height: 1.5;
}
.main > section > .box > .desc.mobile-text {
  display: none;
}
@media screen and (max-width: 1024px) {
  .main > section > .box > .desc.pc-text {
    display: none;
  }
  .main > section > .box > .desc.mobile-text {
    display: block;
  }
}
.main > section.section01 {
  background: url("/new_images/main/bg_01.jpeg") center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 1024px) {
  .main > section.section01 {
    background: url("/new_images/main/bg_01_mobile.jpeg") center bottom no-repeat;
    background-size: cover;
  }
}
.main > section.section01 > .box {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.main > section.section02 {
  background: url("/new_images/main/bg_02.jpeg") center center no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .main > section.section02 {
    background: url("/new_images/main/bg_02_mobile.jpeg") center bottom no-repeat;
    background-size: cover;
  }
}
.main > section.section02 > .box {
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
}
.main > section.section03 {
  background: url("/new_images/main/bg_03.jpeg") center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 1024px) {
  .main > section.section03 {
    background: url("/new_images/main/bg_03_mobile.jpeg") center center no-repeat;
    background-size: cover;
  }
}
.main > section.section03 > .box {
  left: 50%;
  top: 200px;
  transform: translateX(-50%);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .main > section.section03 > .box {
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
  }
}
.main > section.section03 > .box > .title {
  margin-top: 30px;
  color: #fff;
}
.main > section.section03 > .box > .desc {
  color: #fff;
}
.main > section.section03 > .box > .slide {
  margin: 50px auto 0;
}
.main > section.section04 {
  background: url("/new_images/main/bg_04.jpeg") center center no-repeat;
  background-attachment: fixed;
}
@media screen and (max-width: 1024px) {
  .main > section.section04 {
    background-size: cover;
    background: url("/new_images/main/bg_04_mobile.jpg") center center no-repeat;
  }
}
.main > section.section04::after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-color: #000;
  opacity: 0.3;
}
.main > section.section04 > .box {
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.main > section.section04 > .box > .title {
  margin-top: 30px;
  color: #fff;
}
.main > section.section04 > .box > .desc {
  color: #fff;
}
.main > section.section04 > .box > .slide {
  margin: 50px auto 0;
}

.footer {
  padding: 4.25rem 3.75rem;
  display: flex;
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 1024px) {
  .footer {
    flex-direction: column;
    padding: 1.875rem 0.75rem;
  }
}
.footer > div {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .footer > div {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .footer > div.left {
    order: 2;
  }
}
.footer > div.left > strong {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}
.footer > div.left > div > p {
  color: #777;
  font-size: 12px;
}
.footer > div.left > div > p > span {
  display: inline-block;
  word-break: keep-all;
  line-height: 2.2;
}
.footer > div.left > div > p > span:last-of-type::after {
  content: "";
}
.footer > div.left > div > p > span::after {
  content: "/";
  display: inline-block;
  vertical-align: middle;
  margin: -4px 10px 0;
}
.footer > div.left > .insta {
  display: none;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #999;
  color: #999;
  font-size: 13px;
  margin-top: 22px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .footer > div.left > .insta {
    display: flex;
  }
}
.footer > div.left > .copyright {
  display: none;
  text-align: right;
  color: #777;
  font-size: 12px;
  margin-top: 22px;
}
@media screen and (max-width: 1024px) {
  .footer > div.left > .copyright {
    display: block;
  }
}
.footer > div.right > .foot_menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .footer > div.right > .foot_menu {
    gap: auto;
    justify-content: space-between;
    margin: 1.25rem 0 3rem;
  }
}
.footer > div.right > .foot_menu > li > a {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  color: #000;
  white-space: nowrap;
}
.footer > div.right > .box {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .footer > div.right > .box {
    display: none;
  }
}
.footer > div.right > .box > ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer > div.right > .box > ul a {
  font-size: 12px;
  color: #777;
}
.footer > div.right > .insta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #999;
  color: #999;
  font-size: 13px;
  margin-top: 22px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .footer > div.right > .insta {
    display: none;
  }
}
.footer > div.right > .copyright {
  text-align: right;
  color: #777;
  font-size: 12px;
  margin-top: 22px;
}
@media screen and (max-width: 1024px) {
  .footer > div.right > .copyright {
    display: none;
  }
}

.moveicon {
  animation: moveicon infinite 1s;
  position: relative;
}

.list {
  margin-top: 4.6875rem;
  padding: 5rem 1.875rem 0;
  box-sizing: border-box;
}
.list > .title {
  text-align: center;
  color: black;
  font-size: 1.625rem;
  margin-bottom: 3.75rem;
}
.list > .items {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.list > .items > li {
  width: calc(33.33334% - 1.375rem);
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 1024px) {
  .list > .items > li {
    width: calc(50% - 12px);
  }
}
.list > .items > li > a > img {
  width: 100%;
}
.list > .items > li > a > .info {
  color: #000;
}
.list > .items > li > a > .info > .title {
  font-size: 1.125rem;
  margin-top: 1.5rem;
}
.list > .items > li > a > .info > .sub {
  font-size: 0.9375rem;
  color: #999;
  margin-top: 1.5rem;
}
.list > .items > li > a > .info > .desc {
  font-size: 0.9375rem;
  color: #999;
  margin-top: 1.5rem;
}

.filter {
  display: flex;
  gap: 8px;
  margin: 3.125rem 0;
}
.filter > select {
  height: 32px;
  width: 100px;
  border-radius: 4px;
  padding: 0 1.875rem 0 0.625rem;
  color: #353535;
  font-size: 16px;
  border: 1px solid #d5d5d5;
}
@media screen and (max-width: 1024px) {
  .filter > select {
    width: 80px;
    padding: 0;
  }
}
.filter > input {
  width: 160px;
  height: 32px;
  border: 1px solid #d5d5d5;
  padding: 0.3125rem;
  background-color: white;
  font-size: 16px;
  border-radius: 4px;
}
@media screen and (max-width: 1024px) {
  .filter > input {
    width: 80px;
  }
}
.filter > a {
  background-color: black;
  color: white;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem 0.5rem;
  height: 32px;
  min-width: 6rem;
  border-radius: 4px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3.125rem auto;
}
.pagination > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 9px 0;
  height: 32px;
  width: 32px;
  border: 1px solid #ddd;
  margin-left: -1px;
  font-weight: 500;
  color: #999;
  transition: color 0.2s;
}
.pagination > a:hover {
  color: black;
}
.pagination > a > i {
  font-size: 18px;
}

.gree {
  margin: 4.6875rem 0;
  padding: 5rem 1.875rem 0;
  box-sizing: border-box;
}
.gree > .title {
  text-align: center;
  color: black;
  font-size: 1.625rem;
  margin-bottom: 3.75rem;
}
.gree > .btns {
  margin: 3.75rem auto;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.gree > .btns > button {
  width: 11.875rem;
  height: 2.8125rem;
  border-radius: 4px;
  background-color: white;
  color: #999;
  border: 1px solid #999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gree > .btns > button.active {
  background-color: black;
  border: 0;
  color: white;
}
.gree > .pages {
  margin-bottom: 3.75rem;
}
.gree > .pages > .brand {
  width: 100%;
  max-width: 780px;
  margin: auto;
  display: none;
}
.gree > .pages > .brand.active {
  display: block;
}
.gree > .pages > .brand > img {
  width: 100%;
}
.gree > .pages > .contact {
  margin: auto;
  display: none;
}
.gree > .pages > .contact.active {
  display: block;
}
.gree > .pages > .contact > iframe {
  width: 100%;
  height: 540px;
}
.gree > .pages > .contact > .info {
  margin-top: 3.75rem;
}
.gree > .pages > .contact > .info > strong {
  font-size: 18px;
  color: #353535;
  font-weight: 300;
  margin-bottom: 1.875rem;
}
.gree > .pages > .contact > .info > .box {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .gree > .pages > .contact > .info > .box {
    flex-direction: column;
  }
}
.gree > .pages > .contact > .info > .box > div > strong {
  font-size: 0.9375rem;
  color: #333;
  font-weight: 300;
  margin-bottom: 1.5625rem;
}
.gree > .pages > .contact > .info > .box > div > p {
  color: #777;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.gree > .pages > .contact > .info > .box > div > p.tel {
  font-size: 1.125rem;
  font-weight: 500;
  color: black;
}

@keyframes moveicon {
  0% {
    left: 0px;
  }
  50% {
    left: 5px;
  }
  100% {
    left: 0px;
  }
}/*# sourceMappingURL=style.css.map */