* {
  margin: 0;
  padding: 0;
  font-family: "PyeojinGothic";
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

ol, ul {
  list-style: none;
}

a {
  display: block;
  color: #fff;
  text-decoration: none;
}

button {
  border: none;
  background: none;
}

html, body {
  height: 100%;
}

body {
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}

section {
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@font-face {
  font-family: "BitgoeulGwangju";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_seven@1.2/Bitgoeul_Light.woff") format("woff");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "PyeojinGothic";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/2504-1@1.0/PyeojinGothic-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}
.blogBtn {
  position: fixed;
  bottom: 30px;
  right: 0;
  z-index: 999;
  padding: 10px 15px;
  background-color: rgba(255, 255, 255, 0.75);
  border: 1px solid #ddd;
  border-radius: 5px 0 0 5px;
}
.blogBtn > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
  text-align: center;
}
.blogBtn > a > img {
  width: 50px;
  height: 50px;
}
.blogBtn > a > span {
  display: block;
  color: #333;
  line-height: 1.3;
  white-space: nowrap;
}

header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  width: 1140px;
  transition: background-color 0.3s ease;
}
header > h1 > a {
  display: flex;
  align-items: center;
  justify-content: center;
}
header > h1 > a > img {
  width: 75px;
}
header > ol {
  display: flex;
}
header > ol > li {
  position: relative;
}
header > ol > li > a {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  color: #fff;
  font-size: 20px;
}
header > ol > li > a::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  content: "";
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(10px);
}
header > ol > li > a:hover::after, header > ol > li > a:focus::after {
  opacity: 1;
  transform: translateY(0);
}
header > ol > li + li {
  margin-left: 35px;
  padding-left: 35px;
}
header > ol > li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 40%;
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.45);
}
header > ol > li.isActive a {
  font-weight: 700;
}
header > ol > li.isActive a::after {
  opacity: 1;
  transform: translateY(0);
}
header.isNotHome {
  left: 0;
  transform: none;
  width: 100%;
  height: auto;
  justify-content: center;
  border-bottom: 1px solid rgba(221, 221, 221, 0.5);
}
header.isNotHome > h1 {
  display: none;
}
header.isNotHome > ol {
  padding: 30px 0 20px;
  width: auto;
}
header.isNotHome > ol li a {
  padding-bottom: 0;
  color: #000;
}
header.isNotHome > ol li a::after {
  content: none;
}
header.isNotHome > ol li.isActive a {
  color: #282a53;
  text-decoration: underline;
  text-underline-offset: 10px;
}
header.isNotHome > ol li.isActive a::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: #282a53;
  border-radius: 50%;
}
header.isNotHome > ol li + li::before {
  content: none;
}
header.isNotHome.isContact > ol li a {
  color: rgba(255, 255, 255, 0.7);
}
header.isNotHome.isContact > ol li.isActive a {
  color: #fff;
}
header.isNotHome.isContact > ol li.isActive a::before {
  background: #fff;
}

#home {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
#home .homeSwiper {
  position: absolute;
  inset: 0;
  z-index: 1;
}
#home .homeSwiper .slide {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center 85%;
  background-size: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
#home .homeSwiper .slide.is-active {
  opacity: 1;
}
#home .homeTxt {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 50px;
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.25);
}
#home .homeTxt > h2 {
  padding-bottom: 20px;
  position: relative;
  font-size: 40px;
  font-family: "BitgoeulGwangju";
}
#home .homeTxt > h2::before, #home .homeTxt > h2::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100%;
  height: 1px;
  transform: translateX(-50%);
}
#home .homeTxt > h2::before {
  bottom: 0;
  background: rgba(255, 255, 255, 0.3);
}
#home .homeTxt > h2::after {
  bottom: -4px;
  background: rgba(255, 255, 255, 0.3);
}
#home .homeTxt > p {
  padding-top: 20px;
  font-size: 25px;
  line-height: 1.3;
}
#home .scrollSec {
  position: absolute;
  left: 50%;
  bottom: 260px;
  z-index: 3;
  transform: translateX(-50%);
  width: 60px;
}
#home .scrollSec > #scrollLottie {
  width: 100%;
  height: 100%;
}
#home .menuBtn {
  display: none;
}

#intro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#intro .introPhoto {
  padding-top: 75px;
  overflow: hidden;
}
#intro .introPhoto .introPhotoTrack {
  display: flex;
  justify-content: center;
  gap: 30px;
}
#intro .introPhoto .introPhotoTrack > img {
  width: 280px;
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: transform, opacity;
}
#intro .introPhoto .introPhotoTrack > img.introPhotoClone {
  display: none;
}
#intro.isEntered .introPhoto .introPhotoTrack > img {
  opacity: 1;
  transform: translateY(0);
}
#intro.isEntered .introPhoto .introPhotoTrack > img:nth-child(2) {
  transition-delay: 0.14s;
}
#intro.isEntered .introPhoto .introPhotoTrack > img:nth-child(3) {
  transition-delay: 0.28s;
}
#intro .introTxt {
  padding-top: 40px;
  text-align: center;
}
#intro .introTxt > h2 {
  font-size: 25px;
  font-family: "BitgoeulGwangju";
}
#intro .introTxt > h2 > span {
  color: #282a53;
  font-family: "BitgoeulGwangju";
  font-size: 30px;
}
#intro .introTxt > p {
  padding-top: 20px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 19px;
  line-height: 1.4;
}
#intro .introTxt > p > span {
  box-shadow: inset 0 -10px 0 rgba(40, 42, 83, 0.2);
}
#intro .introTxt > p > span.thick {
  font-weight: bold;
}

#business {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f4f4;
}
#business > h2 {
  display: none;
}
#business > ol {
  position: relative;
  margin-top: 75px;
  width: 900px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
#business > ol > li {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
#business > ol > li:nth-child(1), #business > ol > li:nth-child(3) {
  transform: translateX(-60px);
}
#business > ol > li:nth-child(2), #business > ol > li:nth-child(4) {
  transform: translateX(60px);
}
#business > ol > li > .thumb {
  height: 280px;
  overflow: hidden;
}
#business > ol > li > .thumb > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}
#business > ol > li > .thumb:hover > img {
  transform: scale(1.05);
  filter: brightness(0.8);
}
#business > ol > li > span {
  display: block;
  padding-top: 10px;
  font-size: 20px;
  text-align: center;
}
#business.isEntered > ol > li {
  opacity: 1;
  transform: translateY(0);
}

#contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #000;
}
#contact > img {
  padding-top: 75px;
  width: 80px;
}
#contact > ul {
  padding-top: 30px;
  width: 1140px;
  gap: 30px;
  text-align: center;
}
#contact > ul > li {
  padding: 20px;
  color: #fff;
}
#contact > ul > li > h3 {
  font-size: 25px;
  font-weight: normal;
}
#contact > ul > li > a, #contact > ul > li > p, #contact > ul > li > span {
  display: block;
  padding-top: 20px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.3;
}
#contact > ul > li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
#contact > ul > li:nth-child(3) > span, #contact > ul > li:nth-last-child(1) > span {
  margin-top: 20px;
  padding-top: 0;
  font-size: 20px;
  font-weight: normal;
}

#map {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#map > #naverMap {
  margin-top: 75px;
  width: 1000px;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
#map > #naverMap .infoWindow {
  padding: 10px 12px;
  font-size: 20px;
  white-space: nowrap;
}
#map > ul {
  padding-top: 40px;
  display: flex;
  align-items: center;
}
#map > ul > li {
  position: relative;
  font-size: 19px;
}
#map > ul > li + li {
  margin-left: 20px;
  padding-left: 20px;
}
#map > ul > li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background: #000;
}
#map > p {
  padding-top: 15px;
  font-size: 15px;
  color: rgba(128, 128, 128, 0.75);
}

.blind {
  display: none;
}

@media (max-width: 1024px) {
  .blogBtn {
    padding: 10px;
  }
  .blogBtn > a > img {
    width: 40px;
    height: 40px;
  }
  .blogBtn > a > span {
    font-size: 14px;
  }
  section {
    height: auto !important;
    min-height: auto !important;
  }
  section > h2 {
    color: #171717;
    font-size: 1.56rem;
    font-weight: normal;
    font-family: "BitgoeulGwangju";
  }
  .menuBtn {
    display: block;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    width: 5rem;
    height: 1.88rem;
    background: rgba(132, 128, 136, 0.75);
    border-radius: 0 0 0.38rem 0.38rem;
  }
  .menuBtn > svg {
    color: rgba(255, 255, 255, 0.8);
  }
  header {
    display: none;
    justify-content: center;
    flex-direction: column;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 21.88rem;
    background: rgb(30, 41, 59);
    border-radius: 0.38rem;
    z-index: 9999;
  }
  header > h1 {
    display: none;
  }
  header > button {
    position: absolute;
    top: 0.63rem;
    right: 0.63rem;
    color: rgba(255, 255, 255, 0.8);
  }
  header > h2 {
    padding-bottom: 1.88rem;
    width: 90%;
    color: #fff;
    font-size: 1.88rem;
    font-weight: normal;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  }
  header > ol {
    padding-top: 1.88rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  header > ol > li a {
    padding-bottom: 0;
    font-size: 1.13rem;
    font-weight: 500;
  }
  header > ol > li a:hover::after, header > ol > li a:focus::after {
    content: none;
  }
  header > ol > li + li {
    margin-top: 1.88rem;
    padding-left: 0;
    margin-left: 0;
  }
  header > ol > li + li::before {
    display: none;
  }
  header > ol > li.isActive a {
    font-weight: normal;
  }
  header > ol > li.isActive a::after {
    content: none;
  }
  .headerDim {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
  }
  body.isMenuOpen {
    overflow: hidden;
  }
  body.isMenuOpen header {
    display: flex;
  }
  body.isMenuOpen .headerDim {
    display: block;
  }
  #home .homeTxt {
    position: relative;
    padding: 9.38rem 0;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: none;
  }
  #home .homeTxt > * {
    padding: 0 1.25rem;
    word-break: keep-all;
  }
  #home .homeTxt > h2 {
    padding-top: 3.13rem;
    font-size: 2.19rem;
    line-height: 1.3;
  }
  #home .homeTxt > h2::before, #home .homeTxt > h2::after {
    width: 80%;
    height: 2px;
  }
  #home .homeTxt > p {
    font-size: 1.25rem;
  }
  #home .scrollSec {
    display: none;
  }
  #intro {
    padding: 3.75rem 0;
    overflow: hidden;
  }
  #intro .introPhoto {
    padding-top: 0;
    width: 100%;
  }
  #intro .introPhoto .introPhotoTrack {
    width: -moz-max-content;
    width: max-content;
    justify-content: flex-start;
    gap: 1.25rem;
    animation: introPhotoFlow 12s linear infinite;
  }
  #intro .introPhoto .introPhotoTrack > img {
    width: 12.5rem;
    height: 12.5rem;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 1;
    transform: none;
    transition: none;
  }
  #intro .introPhoto .introPhotoTrack > img.introPhotoClone {
    display: block;
  }
  #intro .introTxt {
    padding-top: 2.5rem;
  }
  #intro .introTxt > h2 > span {
    font-size: 1.56rem;
  }
  #intro .introTxt > p {
    padding: 1.25rem 1.25rem 0;
    color: rgb(91, 91, 91);
    font-size: 1.13rem;
    line-height: 1.5;
    word-break: keep-all;
  }
  #intro .introTxt > p > br {
    display: none;
  }
  #intro .introTxt > p > span {
    box-shadow: none;
  }
  @keyframes introPhotoFlow {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-50% - 0.63rem));
    }
  }
  #business {
    padding: 3.75rem 0;
    flex-direction: column;
    overflow: hidden;
  }
  #business > h2 {
    display: block;
    font-size: 1.56rem;
    font-family: "BitgoeulGwangju";
    font-weight: normal;
  }
  #business > ol {
    margin-top: 1.88rem;
    padding: 0 1.88rem 3.75rem;
    width: 100%;
    box-sizing: border-box;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 5rem;
  }
  #business > ol > li,
  #business > ol > li:nth-child(1),
  #business > ol > li:nth-child(2),
  #business > ol > li:nth-child(3),
  #business > ol > li:nth-child(4) {
    width: 100%;
    height: 12.5rem;
    text-align: center;
    opacity: 1;
    transform: none;
    transition: none;
  }
  #business > ol > li .thumb,
  #business > ol > li:nth-child(1) .thumb,
  #business > ol > li:nth-child(2) .thumb,
  #business > ol > li:nth-child(3) .thumb,
  #business > ol > li:nth-child(4) .thumb {
    height: 100%;
  }
  #business > ol > li > span,
  #business > ol > li:nth-child(1) > span,
  #business > ol > li:nth-child(2) > span,
  #business > ol > li:nth-child(3) > span,
  #business > ol > li:nth-child(4) > span {
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding-top: 1.25rem;
    color: #000;
    font-size: 1.25rem;
    text-align: center;
    white-space: nowrap;
    transform-origin: center center;
    opacity: 0;
    transform: scaleX(0.6) scaleY(0.98);
    will-change: transform, opacity;
  }
  #business > ol > li.isEntered > span,
  #business > ol > li:nth-child(1).isEntered > span,
  #business > ol > li:nth-child(2).isEntered > span,
  #business > ol > li:nth-child(3).isEntered > span,
  #business > ol > li:nth-child(4).isEntered > span {
    animation: businessSpanUnified 0.6s cubic-bezier(0.2, 0.65, 0.2, 1) both;
  }
  @keyframes businessSpanUnified {
    0% {
      opacity: 0;
      transform: scaleX(0.6) scaleY(0.98);
    }
    100% {
      opacity: 1;
      transform: scaleX(1) scaleY(1);
    }
  }
  #business.isEntered > ol > li {
    opacity: 1;
    transform: none;
    transition: none;
  }
  #contact {
    padding: 5rem 0;
    overflow: hidden;
  }
  #contact > img {
    padding-top: 0;
    width: 2.5rem;
  }
  #contact > ul {
    width: 90%;
  }
  #contact > ul > li {
    padding: 1.25rem;
  }
  #contact > ul > li > h3 {
    font-size: 1.38rem;
  }
  #contact > ul > li > a, #contact > ul > li > p, #contact > ul > li > span {
    margin-top: 0.94rem !important;
    padding-top: 0 !important;
  }
  #contact > ul > li > a, #contact > ul > li > p {
    font-size: 1.25rem !important;
    font-weight: bold;
  }
  #contact > ul > li > a {
    position: relative;
    padding-bottom: 0.31rem;
    display: inline-block;
  }
  #contact > ul > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
  }
  #contact > ul > li > span {
    font-size: 1.13rem !important;
  }
  #map {
    padding: 3.75rem 0;
    overflow: hidden;
  }
  #map > #naverMap {
    margin-top: 1.88rem;
    width: 80%;
    box-shadow: none;
    border-radius: 0;
  }
  #map > #naverMap .infoWindow {
    font-size: 0.94rem;
  }
  #map > button {
    display: block;
    margin-top: 1.25rem;
    padding: 1rem 0;
    width: 80%;
    color: #fff;
    font-size: 1.13rem;
    background: #282a53;
    border-radius: 0.38rem;
  }
  #map > ul {
    flex-direction: column;
    width: 90%;
    text-align: center;
  }
  #map > ul > li {
    width: 100%;
    color: rgb(91, 91, 91);
    font-size: 0.94rem;
  }
  #map > ul > li + li {
    margin-left: 0;
    padding-top: 0.31rem;
    padding-left: 0;
  }
  #map > ul > li + li::before {
    display: none;
  }
  #map > p {
    padding-top: 2.5rem;
  }
  .blind {
    display: block;
  }
}