/* ========================================
   Main Content - KV Section
   ======================================== */

.kv-section {
  position: relative;
  width: 100%;
  height: calc(200vh + 200px);
  background-color: #000;
  margin-top: -52px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .kv-section {
    margin-top: -4.33vw; /* -52px / 1200px */
  }
}

@media (max-width: 767px) {
  .kv-section {
    margin-top: -46px;
    height: calc(200vh + 146px);
  }
}

/* Scroll Down Button */
.kv-section__scroll-down {
  position: sticky;
  top: calc(100vh - 48px);
  transform: translateY(-100%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .kv-section__scroll-down {
    top: calc(100vh - 4vw); /* 48px / 1200px */
  }
}

@media (max-width: 767px) {
  .kv-section__scroll-down {
    top: calc((var(--vh) * 100) - 26px);
  }
}

.kv-section__scroll-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: aniScroll 1.5s infinite;
  width: 52px;
  height: 52px;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 0;
}

.kv-section__scroll-btn-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
}

.kv-section__scroll-btn-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .kv-section__scroll-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.33vw; /* 52px / 1200px */
    height: 4.33vw;
    border-radius: 1.67vw; /* 20px / 1200px */
  }

  .kv-section__scroll-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.67vw; /* 20px / 1200px */
    height: 1.67vw;
  }

  .kv-section__scroll-btn-icon svg {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 767px) {
  .kv-section__scroll-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 17px;
  }

  .kv-section__scroll-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
  }

  .kv-section__scroll-btn-icon svg {
    width: 100%;
    height: 100%;
  }
}

@keyframes aniScroll {
  0% {
    opacity: 0;
    transform: translateY(-15%);
  }
  10% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translateY(15%);
  }
}

/* Video Box */
.kv-section__video-box {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  opacity: 0.6;
}

.kv-section__video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* KV Box */
.kv-section__kv-box {
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 10;
  top: calc(152px);
  color: rgb(255, 255, 255);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.2s ease-in;
  transition-delay: 0s;
}

/* 스크롤 후 나타남 */
.site-header--scrolled ~ main .kv-section__kv-box {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.3s;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .kv-section__kv-box {
    top: calc(100px + 4.33vw); /* 52px / 1200px */
  }

  .kv-section__kv-box button {
    margin-top: 4vw; /* 48px / 1200px */
    height: 4.67vw; /* 56px / 1200px */
    font-size: 1.5vw; /* 18px / 1200px */
    border-radius: 0.83vw; /* 10px / 1200px */
    gap: 0.67vw; /* 8px / 1200px */
    padding: 0 2.83vw; /* 34px / 1200px */
  }
}

@media (max-width: 767px) {
  .kv-section__kv-box {
    text-align: center;
    top: 146px;
  }

  .kv-section__kv-box button {
    margin: 72px auto 0;
    width: auto;
    height: 48px;
    font-size: 15px;
    border-radius: 10px;
    gap: 8px;
    padding: 0 28px;
  }
}

.kv-section__kv-box .kv-section__kv-box-inner {
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0 60px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .kv-section__kv-box .kv-section__kv-box-inner {
    padding: 0 2.92vw; /* 35px / 1200px */
  }
}

@media (max-width: 767px) {
  .kv-section__kv-box .kv-section__kv-box-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    padding: 0 20px;
    flex-direction: column;
    justify-content: center;
  }
}

.kv-section__kv-box .kv-section__kv-box-title {
  flex: none;
}

.kv-section__kv-box .kv-section__kv-box-title .kv-section__kv-box-img-text {
  display: flex;
  align-items: center;
}

.kv-section__kv-box
  .kv-section__kv-box-title
  .kv-section__kv-box-img-text.only_mo {
  display: none;
}

.kv-section__kv-box
  .kv-section__kv-box-title
  .kv-section__kv-box-img-text.only_pc {
  width: 530px;
}

.kv-section__kv-box-text-icon {
  display: inline-flex;
  width: 530px;
  height: 306px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  transition: 0.4s ease-in;
  flex-shrink: 0;
}

.kv-section__kv-box-text-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .kv-section__kv-box
    .kv-section__kv-box-title
    .kv-section__kv-box-img-text.only_pc {
    width: 44.17vw; /* 530px / 1200px */
  }

  .kv-section__kv-box-text-icon {
    width: 44.17vw; /* 530px / 1200px */
    height: 25.5vw; /* 306px / 1200px */
  }
}

@media (max-width: 767px) {
  .kv-section__kv-box
    .kv-section__kv-box-title
    .kv-section__kv-box-img-text.only_pc {
    display: none;
  }

  .kv-section__kv-box
    .kv-section__kv-box-title
    .kv-section__kv-box-img-text.only_mo {
    display: flex;
    width: 270px;
  }
}

.kv-section__kv-box-text-icon-mo {
  display: inline-flex;
  width: 270px;
  height: 156px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  transition: 0.4s ease-in;
}

.kv-section__kv-box-text-icon-mo svg {
  width: 100%;
  height: 100%;
}

.kv-section__kv-box .kv-section__kv-box-text {
  position: absolute;
  left: 66%;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 60px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .kv-section__kv-box .kv-section__kv-box-text {
    padding-right: 2.92vw; /* 35px / 1200px */
  }
}

@media (max-width: 767px) {
  .kv-section__kv-box .kv-section__kv-box-text {
    position: static;
    transform: translateY(0);
    padding-right: 0;
  }
}

.kv-section__kv-box .kv-section__kv-box-info {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .kv-section__kv-box .kv-section__kv-box-info {
    font-size: 2vw; /* 24px / 1200px */
  }
}

@media (max-width: 767px) {
  .kv-section__kv-box .kv-section__kv-box-info {
    margin-top: 48px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
}

.kv-section__kv-box-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0px 34px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-top: 48px;
  transition: color 0.2s ease-in, background 0.2s ease-in;
  color: rgb(0, 0, 0);
  background: rgb(255, 255, 255);
  border: 1px solid rgb(255, 255, 255);
}

.kv-section__kv-box-btn-icon-arrow {
  display: inline-flex;
  width: 12px;
  height: 14px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  transition: 0.4s ease-in;
}

.kv-section__kv-box-btn-icon-arrow svg {
  width: 100%;
  height: 100%;
}

.kv-section__kv-box .kv-section__kv-box-ready-desc {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.428;
  letter-spacing: -0.01em;
  color: rgb(255, 255, 255);
  opacity: 0.8;
  white-space: pre-line;
}

@media (min-width: 1201px) {
  .kv-section__kv-box-btn:hover {
    background: #e7e7e7;
  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .kv-section__kv-box-btn {
    height: 4.67vw; /* 56px / 1200px */
    font-size: 1.5vw; /* 18px / 1200px */
    border-radius: 0.83vw; /* 10px / 1200px */
    gap: 0.67vw; /* 8px / 1200px */
    padding: 0 2.83vw; /* 34px / 1200px */
    margin-top: 4vw; /* 48px / 1200px */
  }

  .kv-section__kv-box-btn .kv-section__kv-box-btn-icon-arrow {
    width: 1vw; /* 12px / 1200px */
    height: 1.17vw; /* 14px / 1200px */
  }

  .kv-section__kv-box-btn .kv-section__kv-box-btn-icon-arrow i {
    width: 100%;
    height: 100%;
  }

  .kv-section__kv-box .kv-section__kv-box-ready-desc {
    margin-top: 1.33vw;
    font-size: 1.17vw;
  }
}

@media (max-width: 767px) {
  .kv-section__kv-box-btn {
    width: auto;
    height: 48px;
    font-size: 15px;
    border-radius: 10px;
    gap: 8px;
    padding: 0 28px;
    margin: 72px auto 0;
  }

  .kv-section__kv-box-btn .kv-section__kv-box-btn-icon {
    margin-top: 2px;
  }

  .kv-section__kv-box-btn .kv-section__kv-box-btn-icon-arrow {
    width: 12px;
    height: 14px;
  }

  .kv-section__kv-box-btn .kv-section__kv-box-btn-icon-arrow i {
    width: 100%;
    height: 100%;
  }
}

/* Summary Box */

.kv-section__summary-box {
  position: absolute;
  width: 100%;
  height: 100vh;
  z-index: 10;
  top: calc(100vh + 100px);
  color: #fff;
}

@media (max-width: 767px) {
  .kv-section__summary-box {
    top: calc(100vh + 146px);
    text-align: center;
  }
}

.kv-section__summary-box .kv-section__summary-box-inner {
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0 60px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .kv-section__summary-box .kv-section__summary-box-inner {
    padding: 0 2.92vw; /* 35px / 1200px */
  }
}

@media (max-width: 767px) {
  .kv-section__summary-box .kv-section__summary-box-inner {
    flex-direction: column;
    justify-content: center;
  }
}

.kv-section__summary-box
  .kv-section__summary-box-title
  .kv-section__summary-box-img-text {
  display: flex;
  align-items: center;
}

.kv-section__summary-box
  .kv-section__summary-box-title
  .kv-section__summary-box-img-text.only_mo {
  display: none;
}

.kv-section__summary-box
  .kv-section__summary-box-title
  .kv-section__summary-box-img-text.only_pc {
  width: 498px;
}

.kv-section__summary-box-text-icon {
  display: inline-flex;
  width: 498px;
  height: 182px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  transition: 0.4s ease-in;
}

.kv-section__summary-box-text-icon svg {
  width: 100%;
  height: 100%;
}

.kv-section__summary-box-text-icon-mo {
  display: inline-flex;
  width: 258px;
  height: 93px;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  transition: 0.4s ease-in;
}

.kv-section__summary-box-text-icon-mo svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .kv-section__summary-box
    .kv-section__summary-box-title
    .kv-section__summary-box-img-text.only_pc {
    width: 41.5vw; /* 498px / 1200px */
  }

  .kv-section__summary-box-text-icon {
    width: 41.5vw; /* 498px / 1200px */
    height: 15.17vw; /* 182px / 1200px */
  }
}

@media (max-width: 767px) {
  .kv-section__summary-box
    .kv-section__summary-box-title
    .kv-section__summary-box-img-text.only_pc {
    display: none;
  }

  .kv-section__summary-box
    .kv-section__summary-box-title
    .kv-section__summary-box-img-text.only_mo {
    display: flex;
    width: 258px;
  }
}

.kv-section__summary-box .kv-section__summary-box-text {
  position: absolute;
  left: 66%;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 60px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .kv-section__summary-box .kv-section__summary-box-text {
    padding-right: 2.92vw; /* 35px / 1200px */
  }
}

@media (max-width: 767px) {
  .kv-section__summary-box .kv-section__summary-box-inner {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    padding: 0 20px;
  }

  .kv-section__summary-box .kv-section__summary-box-text {
    position: static;
    transform: translateY(0);
    padding-right: 0;
  }
}

.kv-section__summary-box .kv-section__summary-box-desc {
  font-size: 20px;
  line-height: 1.5;
  word-break: keep-all;
  white-space: normal;
}

.kv-section__summary-box
  .kv-section__summary-box-desc
  + .kv-section__summary-box-desc {
  margin-top: 16px;
}

.kv-section__summary-box button {
  margin-top: 48px;
  width: auto;
  height: 56px;
  font-size: 18px;
  border-radius: 10px;
  gap: 8px;
  padding: 0px 34px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .kv-section__summary-box .kv-section__summary-box-desc {
    font-size: 1.67vw; /* 20px / 1200px */
    word-break: keep-all;
    white-space: normal;
  }

  .kv-section__summary-box
    .kv-section__summary-box-desc
    + .kv-section__summary-box-desc {
    margin-top: 1.33vw; /* 16px / 1200px */
  }

  .kv-section__summary-box button {
    margin-top: 4vw; /* 48px / 1200px */
    height: 4.67vw; /* 56px / 1200px */
    font-size: 1.5vw; /* 18px / 1200px */
    border-radius: 0.83vw; /* 10px / 1200px */
    gap: 0.67vw; /* 8px / 1200px */
    padding: 0 2.83vw; /* 34px / 1200px */
  }
}

@media (max-width: 767px) {
  .kv-section__summary-box .kv-section__summary-box-desc {
    margin-top: 48px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    word-break: keep-all;
    white-space: normal;
  }

  .kv-section__summary-box
    .kv-section__summary-box-desc
    + .kv-section__summary-box-desc {
    margin-top: 10px;
  }

  .kv-section__summary-box button {
    margin: 72px auto 0;
    width: auto;
    height: 48px;
    font-size: 15px;
    border-radius: 10px;
    gap: 8px;
    padding: 0 28px;
  }
}

.kv-section__summary-box-btn {
  width: auto;
  height: 56px;
  font-size: 18px;
  border-radius: 10px;
  gap: 8px;
  padding: 0 34px;
  margin-top: 48px;
  background: #fff;
  color: #000;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease-in;
}

.kv-section__summary-box-btn .kv-section__summary-box-btn-icon {
  width: 12px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.kv-section__summary-box-btn .kv-section__summary-box-btn-icon i {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1201px) {
  .kv-section__summary-box-btn:hover {
    background: #e7e7e7;
  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .kv-section__summary-box-btn {
    height: 4.67vw; /* 56px / 1200px */
    font-size: 1.5vw; /* 18px / 1200px */
    border-radius: 0.83vw; /* 10px / 1200px */
    gap: 0.67vw; /* 8px / 1200px */
    padding: 0 2.83vw; /* 34px / 1200px */
    margin-top: 4vw; /* 48px / 1200px */
  }

  .kv-section__summary-box-btn .kv-section__summary-box-btn-icon {
    width: 1vw; /* 12px / 1200px */
    height: 1.17vw; /* 14px / 1200px */
  }

  .kv-section__summary-box-btn .kv-section__summary-box-btn-icon i {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 767px) {
  .kv-section__summary-box-btn {
    width: auto;
    height: 48px;
    font-size: 15px;
    border-radius: 10px;
    gap: 8px;
    padding: 0 28px;
    margin: 72px auto 0;
  }

  .kv-section__summary-box-btn .kv-section__summary-box-btn-icon {
    width: 12px;
    height: 14px;
  }

  .kv-section__summary-box-btn .kv-section__summary-box-btn-icon i {
    width: 100%;
    height: 100%;
  }
}

.box_icon {
  width: 12px;
  height: 14px;
  margin-left: 8px;
}

/* ========================================
   Programs Section
   ======================================== */

.programs-section {
  position: relative;
  padding: 140px 60px;
  background: #e7e7e7;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .programs-section {
    padding: 11.67vw 2.92vw; /* 140px 35px / 1200px */
  }
}

@media (max-width: 767px) {
  .programs-section {
    padding: 80px 20px;
  }
}

.programs-section__title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: #000;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .programs-section__title {
    font-size: 5vw; /* 60px / 1200px */
  }
}

@media (max-width: 767px) {
  .programs-section__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
  }
}

.programs-section__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 55px;
}

@media (min-width: 1201px) {
  .programs-section__list:hover .programs-section__item-img {
    opacity: 0.84;
    filter: grayscale(1);
  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .programs-section__list {
    gap: 2.67vw; /* 32px / 1200px */
    margin-top: 4.58vw; /* 55px / 1200px */
  }
}

@media (max-width: 767px) {
  .programs-section__list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
}

.programs-section__item {
  position: relative;
  overflow: hidden;
  display: block;
  height: 380px;
  padding: 52px;
  border-radius: 20px;
  transition: transform 0.3s cubic-bezier(0, 0, 0.5, 1);
  background-color: #fff;
}

@media (min-width: 1201px) {
  .programs-section__item:hover .programs-section__item-img {
    opacity: 1;
    filter: grayscale(0);
  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .programs-section__item {
    height: 31.67vw; /* 380px / 1200px */
    padding: 4.33vw; /* 52px / 1200px */
    border-radius: 1.67vw; /* 20px / 1200px */
  }
}

@media (max-width: 767px) {
  .programs-section__item {
    height: 360px;
    padding: 28px;
    border-radius: 14px;
    background-color: #000;
  }
}

.programs-section__item .programs-section__item-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease-in;
}

.programs-section__item .programs-section__item-img img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
}

@media screen and (min-width: 1920px) {
  .programs-section__item .programs-section__item-img img {
    width: 100%;
    object-fit: cover;
  }
}

.programs-section__item .programs-section__item-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.programs-section__item .programs-section__item-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .programs-section__item .programs-section__item-title {
    font-size: 3vw; /* 36px / 1200px */
  }
}

@media (max-width: 767px) {
  .programs-section__item .programs-section__item-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
  }
}

.programs-section__item .programs-section__item-desc {
  word-break: keep-all;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #808080;
  flex: 1;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .programs-section__item .programs-section__item-desc {
    margin-top: 1.33vw; /* 16px / 1200px */
    font-size: 1.33vw; /* 16px / 1200px */
    width: 16.67vw; /* 200px / 1200px */
  }
}

@media (max-width: 767px) {
  .programs-section__item .programs-section__item-desc {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
  }
}

.programs-section__item .programs-section__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 20px;
  color: #000;
  transition: all 0.2s ease-in;
}

.programs-section__item .programs-section__item-icon i,
.programs-section__item .programs-section__item-icon svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .programs-section__item .programs-section__item-icon {
    width: 4.33vw; /* 52px / 1200px */
    height: 4.33vw;
    border-radius: 1.67vw; /* 20px / 1200px */
  }

  .programs-section__item .programs-section__item-icon i,
  .programs-section__item .programs-section__item-icon svg {
    width: 1.67vw; /* 20px / 1200px */
    height: 1.67vw;
  }
}

@media (max-width: 767px) {
  .programs-section__item .programs-section__item-icon {
    width: 46px;
    height: 46px;
    border-radius: 18px;
  }

  .programs-section__item .programs-section__item-icon i,
  .programs-section__item .programs-section__item-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* ========================================
   Location Section
   ======================================== */

.location-section {
  padding: 140px 60px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .location-section {
    padding: 11.67vw 2.92vw; /* 140px 35px / 1200px */
  }
}

@media (max-width: 767px) {
  .location-section {
    padding: 80px 20px 60px;
  }
}

.location-section__title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.2px;
  color: rgb(0, 0, 0);
}

@media (max-width: 1200px) and (min-width: 768px) {
  .location-section__title {
    font-size: 5vw; /* 60px / 1200px */
  }
}

@media (max-width: 767px) {
  .location-section__title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
  }
}

.location-section .location-section__content {
  display: flex;
  margin-top: 58px;
  gap: 32px;
  justify-content: space-between;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .location-section .location-section__content {
    margin-top: 4.83vw; /* 58px / 1200px */
    gap: 2.67vw; /* 32px / 1200px */
  }
}

@media (max-width: 767px) {
  .location-section .location-section__content {
    flex-direction: column;
    margin-top: 42px;
    gap: 40px;
  }
}

.location-section__map-box {
  position: relative;
  width: calc(50% - 16px);
  border-radius: 20px;
  overflow: hidden;
}

.location-section__map-box img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}

@media screen and (min-width: 1920px) {
  .location-section__map-box img {
    width: 100%;
    object-fit: cover;
  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .location-section__map-box {
    border-radius: 1.67vw; /* 20px / 1200px */
  }
}

@media (max-width: 767px) {
  .location-section__map-box {
    width: 100%;
    min-width: auto;
    border-radius: 14px;
  }

  .location-section__map-box img {
    position: static;
    width: 100%;
    height: auto;
  }
}

.location-section__info-box {
  width: calc(50% - 16px);
  padding: 52px;
  border-radius: 20px;
  background-color: #e7e7e7;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .location-section__info-box {
    padding: 3.5vw; /* 42px / 1200px */
    border-radius: 1.67vw; /* 20px / 1200px */
  }
}

@media (max-width: 767px) {
  .location-section__info-box {
    width: 100%;
    padding: 0;
    background-color: transparent;
  }
}

.location-section__info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: #000;
  flex: none;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .location-section__info-list {
    gap: 1.5vw; /* 18px / 1200px */
  }
}

@media (max-width: 767px) {
  .location-section__info-list {
    gap: 13px;
  }
}

.location-section__info-item {
  display: flex;
  gap: 56px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .location-section__info-item {
    gap: 1.67vw; /* 20px / 1200px */
  }
}

@media (max-width: 767px) {
  .location-section__info-item {
    gap: 24px;
  }
}

.location-section__info-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  flex: none;
}

.type_en .location-section__info-title {
  min-width: 110px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .location-section__info-title {
    font-size: 2.17vw; /* 26px / 1200px */
  }
  .type_en .location-section__info-title {
    min-width: 9.17vw; /* 110px / 1200px */
  }
}

@media (max-width: 767px) {
  .location-section__info-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
  }
  .type_en .location-section__info-title {
    min-width: 93px;
  }
}

.location-section__info-desc {
  margin-top: 5px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  white-space: normal;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .location-section__info-desc {
    margin-top: 0.5vw; /* 6px / 1200px */
    font-size: 1.67vw; /* 20px / 1200px */
    word-break: keep-all;
    white-space: normal;
  }
}

@media (max-width: 767px) {
  .location-section__info-desc {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 4px;
    word-break: keep-all;
    white-space: normal;
  }
}

.location-section__info-desc p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #808080;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .location-section__info-desc p {
    margin-top: 0.75vw; /* 9px / 1200px */
    font-size: 1.17vw; /* 14px / 1200px */
  }
}

@media (max-width: 767px) {
  .location-section__info-desc p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 11px;
  }
}

.location-section__map-list {
  display: flex;
  gap: 14px;
  width: 100%;
  margin-top: 44px;
  flex-wrap: wrap;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .location-section__map-list {
    gap: 1.17vw; /* 14px / 1200px */
    margin-top: 3vw; /* 36px / 1200px */
  }
}

@media (max-width: 767px) {
  .location-section__map-list {
    flex-direction: column;
    max-width: 100%;
    margin-top: 40px;
    gap: 12px;
    padding-left: 0;
  }
}

.location-section__map-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  height: 60px;
  padding: 0 36px;
  border-radius: 12px;
  background: #000;
  color: #fff;
  -webkit-text-fill-color: #fff;
  font-size: 18px;
  line-height: 1.5;
  transition: background 0.2s ease-in;
  box-sizing: border-box;
  white-space: nowrap;
}

@media (min-width: 1201px) {
  .location-section__map-link:hover {
    background-color: #282828;
    color: #fff;
    -webkit-text-fill-color: #fff;
  }
}

@media screen and (max-width: 1500px) and (min-width: 1301px) {
  .location-section__map-link {
    padding: 0;
    justify-content: center;
    gap: 8px;
  }
}

@media screen and (max-width: 1300px) and (min-width: 1201px) {
  .location-section__map-link {
    padding: 0 20px;
    justify-content: center;
    gap: 8px;
    width: calc(50% - 7px);
    flex: none;
    white-space: normal;
  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .location-section__map-link {
    width: calc(50% - 0.6vw); /* gap / 2, 14px / 2 / 1200px */
    flex: none;
    height: 5vw; /* 60px / 1200px */
    padding: 0 3vw; /* 36px / 1200px */
    border-radius: 1vw; /* 12px / 1200px */
    font-size: 1.5vw; /* 18px / 1200px */

  }
}

@media (max-width: 767px) {
  .location-section__map-link {
    height: 56px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    padding: 0 29px 0 28px;
    border-radius: 14px;
    flex: none;
  }
}

.location-section__map-link .location-section__map-link-icon {
  width: 24px;
  height: 24px;
}

.location-section__map-link .location-section__map-link-icon i,
.location-section__map-link .location-section__map-link-icon svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .location-section__map-link .location-section__map-link-icon {
    width: 2vw; /* 24px / 1200px */
    height: 2vw;
  }

  .location-section__map-link .location-section__map-link-icon i,
  .location-section__map-link .location-section__map-link-icon svg {
    width: 1.67vw; /* 20px / 1200px */
    height: 1.67vw;
  }
}

@media (max-width: 767px) {
  .location-section__map-link .location-section__map-link-icon {
    width: 20px;
    height: 20px;
  }

  .location-section__map-link .location-section__map-link-icon i,
  .location-section__map-link .location-section__map-link-icon svg {
    width: 100%;
    height: 100%;
  }
}


/* ========================================
   Footer
   ======================================== */

.footer-container {
  padding: 60px;
  background: transparent;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .footer-container {
    padding: 5vw 2.92vw; /* 60px 35px / 1200px */
  }
}

@media (max-width: 767px) {
  .footer-container {
    padding: 20px 20px 26px;
  }
}

.footer-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 680px;
  padding: 60px;
  background-color: #000;
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.footer-inner:after,
.footer-inner:before,
.footer-bg-bar {
  content: '';
  display: block;
  position: absolute;
  background-color: #999;
  left: 50%;
  top: 50%;
}

.footer-inner:before {
  width: 1px;
  height: 100%;
  transform: translate(-50%, -50%);
}

.footer-inner:after {
  width: 200%;
  height: 1px;
  transform: translate(-50%, -50%) rotate(-30deg);
}

.footer-bg-bar {
  height: 100%;
  width: 1px;
  transform: rotate(300deg);
  transform-origin: 0 0;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .footer-inner {
    height: 56.67vw; /* 680px / 1200px */
    padding: 5vw; /* 60px / 1200px */
    border-radius: 1.67vw; /* 20px / 1200px */
  }
}

@media (max-width: 767px) {
  .footer-inner {
    height: auto;
    padding: 30px 28px;
    border-radius: 14px;
  }
}

.footer-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 466px;
  z-index: 1;
}

.footer-logo svg {
  width: 100%;
  height: auto;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .footer-logo {
    width: 38.83vw; /* 466px / 1200px */
  }
}

@media (max-width: 767px) {
  .footer-logo {
    width: 100%;
  }
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 22px;
  z-index: 1;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .footer-bottom {
    gap: 1.83vw; /* 22px / 1200px */
  }
}

@media (max-width: 767px) {
  .footer-bottom {
    margin-top: 255px;
  }
}

.footer-link-list {
  display: flex;
}

.footer-link-list li {
  display: flex;
  align-items: center;
}

.footer-link-list li + li:before {
  content: '';
  display: block;
  width: 1px;
  height: 12px;
  background: #808080;
  margin-right: 14px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .footer-link-list li + li:before {
    height: 1vw; /* 12px / 1200px */
    margin-right: 1.17vw; /* 14px / 1200px */
  }
}

@media (max-width: 767px) {
  .footer-link-list {
    flex-direction: column;
  }

  .footer-link-list li + li:before {
    display: none;
  }
}

.footer-link {
  display: flex;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  padding: 7px 14px 5px 0;
  gap: 9px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .footer-link {
    font-size: 1.17vw; /* 14px / 1200px */
    padding: 0.58vw 1.17vw 0.42vw 0; /* 7px 14px 5px 0 / 1200px */
    gap: 0.75vw; /* 9px / 1200px */
  }
}

@media (max-width: 767px) {
  .footer-link {
    font-size: 13px;
    padding: 7px 0;
  }
}

.footer-copyright {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 17px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .footer-copyright {
    font-size: 2vw; /* 24px / 1200px */
    margin-top: 1.42vw; /* 17px / 1200px */
  }
}

@media (max-width: 767px) {
  .footer-copyright {
    margin-top: 28px;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
  }
}

.footer-btn-top {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 60px;
  top: 60px;
  width: 52px;
  height: 52px;
  border-radius: 20px;
  border: 1px solid #fff;
  transition: all 0.2s ease-in;
  z-index: 10;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

@media (min-width: 1201px) {
  .footer-btn-top:hover {
    background: #fff;
    color: #000;
  }
}

.footer-icon-arrow {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-icon-arrow svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .footer-btn-top {
    right: 5vw; /* 60px / 1200px */
    top: 5vw;
    width: 4.33vw; /* 52px / 1200px */
    height: 4.33vw;
    border-radius: 1.67vw; /* 20px / 1200px */
  }

  .footer-icon-arrow svg {
    width: 1.67vw; /* 20px / 1200px */
    height: 1.67vw;
  }
}

@media (max-width: 767px) {
  .footer-btn-top {
    right: 28px;
    top: auto;
    bottom: 30px;
    width: 46px;
    height: 46px;
    border-radius: 17px;
  }

  .footer-icon-arrow svg {
    width: 18px;
    height: 18px;
  }
}

/* Developer Site (Previous) Dropdown */
.box-developer-site {
  position: relative;
  width: 280px;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .box-developer-site {
    width: 23.33vw; /* 280px / 1200px */
  }
}

@media (max-width: 767px) {
  .box-developer-site {
    display: none;
  }
}

.btn-dropdown {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-bottom: 14px;
  border-bottom: 1px solid #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
}

@media (max-width: 1200px) and (min-width: 768px) {
  .btn-dropdown {
    padding-bottom: 1.33vw; /* 16px / 1200px */
    font-size: 1.42vw; /* 17px / 1200px */
  }
}

@media (max-width: 767px) {
  .btn-dropdown {
    padding-bottom: 16px;
    font-size: 17px;
  }
}

.dropdown-icon {
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
  flex-shrink: 0;
}

.dropdown-icon:before,
.dropdown-icon:after {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
  content: '';
  transition: all 0.2s ease-in;
}

.dropdown-icon:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.btn-dropdown.is-open .dropdown-icon:after {
  transform: translate(-50%, -50%);
}

@media (max-width: 1200px) and (min-width: 768px) {
  .dropdown-icon {
    width: 1.67vw; /* 20px / 1200px */
    height: 1.67vw;
  }

  .dropdown-icon:before,
  .dropdown-icon:after {
    width: 1.33vw; /* 16px / 1200px */
  }
}

@media (max-width: 767px) {
  .dropdown-icon {
    width: 20px;
    height: 20px;
  }

  .dropdown-icon:before,
  .dropdown-icon:after {
    width: 16px;
  }
}

.list-dropdown {
  overflow-y: auto;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: -14px;
  max-height: 0;
  border-radius: 14px;
  border: 1px solid #fff;
  transform: translateY(-100%);
  background: #000;
  transition: max-height 0.3s ease-out, visibility 0.3s ease-out;
  width: 280px;
  padding: 20px;
}

.list-dropdown.is-open {
  visibility: visible;
  max-height: 180px;
}

.list-dropdown::-webkit-scrollbar {
  width: 8px;
}

.list-dropdown::-webkit-scrollbar-thumb {
  background: #808080;
  border-radius: 18px;
  border: 2px solid #000;
}

.list-dropdown::-webkit-scrollbar-track {
  background: transparent;
}

.item-dropdown {
  display: flex;
  width: 100%;
  padding: 2px 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
}
