@charset "UTF-8";
#index-main {
  width: 100%;
  height: auto;
}

.index-hero {
  width: 100%;
  height: 100dvh;
  margin-bottom: 120px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.index-hero .container {
  width: 95%;
  height: 100%;
  max-width: 1660px;
  padding-bottom: 24px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 64px;
}
.index-hero .container article {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.index-hero .container article h1 {
  font-size: 75px;
  font-weight: 600;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}
.index-hero .container article h1 > em {
  font-size: 1.5em;
  font-weight: 700;
  color: #065DDF;
  text-shadow: none;
}
.index-hero .container article span {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
}
.index-hero .container .mouse {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.index-hero .container .mouse .material-symbols-outlined {
  font-size: 28px;
  font-variation-settings: "wght" 300;
  color: black;
  animation-name: mouse;
  animation-timing-function: ease-in-out;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}
.index-hero .container .mouse .scroll-msg {
  font-size: 13px;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
}

@keyframes mouse {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(12px);
  }
}
.section-title-wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-title-wrap span {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #065DDF;
  word-break: keep-all;
  text-align: center;
}
.section-title-wrap h1 {
  margin-bottom: 32px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
}
.section-title-wrap p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  word-break: keep-all;
  text-align: center;
  color: black;
}

.news-notice {
  width: 100%;
  height: auto;
  margin-bottom: 120px;
}
.news-notice .container {
  width: 95%;
  height: auto;
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.news-notice .container .sec-body {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.news-notice .container .sec-body .notice-box {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 36px;
}
.news-notice .container .sec-body .notice-box .left {
  flex: 0 0 50%;
  display: flex;
}
.news-notice .container .sec-body .notice-box .left > img {
  width: 100%;
  height: auto;
}
.news-notice .container .sec-body .notice-box .right {
  flex: 1 1 auto;
}
.news-notice .container .sec-body .notice-box .right .news-latest {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-notice .container .sec-body .notice-box .right .news-latest .row {
  width: 100%;
  height: auto;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}
.news-notice .container .sec-body .notice-box .right .news-latest .row > a {
  width: 100%;
  height: auto;
  padding: 0 2%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 44px;
}
.news-notice .container .sec-body .notice-box .right .news-latest .row > a .latest-titles {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.news-notice .container .sec-body .notice-box .right .news-latest .row > a .latest-titles span {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: #065DDF;
}
.news-notice .container .sec-body .notice-box .right .news-latest .row > a .latest-titles h4 {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  word-break: keep-all;
  color: black;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-notice .container .sec-body .notice-box .right .news-latest .row > a .latest-titles p {
  font-size: 16px;
  line-height: 1.5;
  word-break: keep-all;
  color: black;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-notice .container .sec-body .notice-box .right .news-latest .row > a .latest-thumb {
  position: relative;
  flex: 0 0 auto;
  width: 230px;
  height: auto;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 10px;
}
.news-notice .container .sec-body .notice-box .right .news-latest .row > a .latest-thumb img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-notice .container .sec-body > a {
  width: 270px;
  height: 72px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 12px;
  background: black;
  border-radius: 100000rem;
}
.news-notice .container .sec-body > a > span {
  font-size: 16px;
  line-height: 1.2;
  color: white;
}
.news-notice .container .sec-body > a img {
  flex: 0 0 25%;
  height: auto;
}

.index-prd-list {
  width: 100%;
  height: auto;
  margin-bottom: 120px;
}
.index-prd-list .container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.index-prd-list .container .section-title-wrap {
  width: 95%;
  margin: 0 auto;
}
.index-prd-list .container .sec-body {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.index-prd-list .container .sec-body .prd-tabs {
  width: 95%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 70px;
}
.index-prd-list .container .sec-body .prd-tabs .tab {
  flex: 0 0 auto;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #818181;
  cursor: pointer;
}
.index-prd-list .container .sec-body .prd-tabs .tab.now {
  color: #065DDF;
}
.index-prd-list .container .sec-body .prd-blue-box {
  width: 100%;
  height: auto;
  padding: 60px 0;
  background-color: #065DDF;
}
.index-prd-list .container .sec-body .prd-blue-box .inner {
  width: 95%;
  height: auto;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 56px;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .left {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-header {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-header .prd-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-header .prd-title-wrap > h4 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-header .prd-title-wrap > span {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-header .view-more {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 1px solid white;
  border-radius: 100000rem;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-header .view-more span {
  font-size: 32px;
  font-variation-settings: "wght" 200;
  color: white;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-contents {
  width: 100%;
  height: auto;
  padding: 44px 52px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  background: white;
  border-radius: 8px;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-contents b {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-contents p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: black;
  word-break: keep-all;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .right {
  flex: 0 0 50%;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .right .prd-blue-swiper {
  position: relative;
  width: 100%;
  height: auto;
  padding-bottom: 36px;
  overflow: hidden;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .right .prd-blue-swiper .swiper-wrapper {
  width: 100% !important;
  height: auto;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .right .prd-blue-swiper .swiper-wrapper .swiper-slide {
  position: relative;
  width: 100% !important;
  height: auto;
  aspect-ratio: 16/10;
  border-radius: 24px;
  overflow: hidden;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .right .prd-blue-swiper .swiper-wrapper .swiper-slide > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .right .prd-blue-swiper .swiper-navigation {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%);
  width: 95%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  opacity: 0.3;
  transition: all 0.2s ease-in-out;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .right .prd-blue-swiper .swiper-navigation div {
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 100000rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .right .prd-blue-swiper .swiper-navigation div span {
  font-size: 32px;
  color: #464646;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .right .prd-blue-swiper .swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.index-prd-list .container .sec-body .prd-blue-box .inner .right .prd-blue-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 100000rem;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .right .prd-blue-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 48px;
}
.index-prd-list .container .sec-body .prd-blue-box .inner .right .prd-blue-swiper:hover .swiper-navigation {
  opacity: 1;
}

.icp-youtube {
  width: 100%;
  height: auto;
  margin-bottom: 120px;
}
.icp-youtube .container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.icp-youtube .container .section-title-wrap {
  width: 95%;
  height: auto;
  margin: 0 auto;
}
.icp-youtube .container .sec-body {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.icp-youtube .container .sec-body .youtube-swiper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.icp-youtube .container .sec-body .youtube-swiper .swiper-wrapper {
  width: 100%;
  height: auto;
}
.icp-youtube .container .sec-body .youtube-swiper .swiper-wrapper .swiper-slide {
  width: 32vw;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.icp-youtube .container .sec-body .youtube-swiper .swiper-wrapper .swiper-slide .youtube-frame {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 16px;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.icp-youtube .container .sec-body .youtube-swiper .swiper-wrapper .swiper-slide .youtube-frame iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.icp-youtube .container .sec-body .youtube-swiper .swiper-wrapper .swiper-slide .youtube-titles {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}
.icp-youtube .container .sec-body .youtube-swiper .swiper-wrapper .swiper-slide .youtube-titles b {
  width: 100%;
  height: auto;
  padding-bottom: 14px;
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
  border-bottom: 1px solid #ccc;
}
.icp-youtube .container .sec-body .youtube-swiper .swiper-wrapper .swiper-slide .youtube-titles span {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.2;
  color: #464646;
  word-break: keep-all;
  text-align: center;
}
.icp-youtube .container .sec-body .youtube-swiper .swiper-wrapper .swiper-slide.swiper-slide-active .youtube-titles {
  opacity: 1;
}
.icp-youtube .container .sec-body .youtube-swiper .swiper-navigation {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  width: 34vw;
  height: auto;
  z-index: 4;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.icp-youtube .container .sec-body .youtube-swiper .swiper-navigation div {
  width: 52px;
  height: 52px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 10000rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.icp-youtube .container .sec-body > a {
  width: 270px;
  height: 72px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  gap: 12px;
  background: black;
  border-radius: 100000rem;
}
.icp-youtube .container .sec-body > a > span {
  font-size: 16px;
  line-height: 1.2;
  color: white;
}
.icp-youtube .container .sec-body > a img {
  flex: 0 0 25%;
  height: auto;
}

.index-location {
  width: 100%;
  height: auto;
}
.index-location .container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}
.index-location .container .section-title-wrap {
  width: 95%;
}
.index-location .container .sec-body {
  width: 100%;
  height: auto;
  padding: 70px 0;
  background: #CBE0FF;
}
.index-location .container .sec-body .inner {
  width: 95%;
  height: auto;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.index-location .container .sec-body .inner .map-box {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 16px;
}
.index-location .container .sec-body .inner .map-box .root_daum_roughmap {
  width: 100%;
  height: 100%;
}
.index-location .container .sec-body .inner .map-box .root_daum_roughmap .wrap_map {
  width: 100%;
  height: 100%;
}
.index-location .container .sec-body .inner .addr-box {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.index-location .container .sec-body .inner .addr-box .left {
  flex: 1 1 auto;
  padding: 32px 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px 40px;
  background: white;
  border-radius: 16px;
}
.index-location .container .sec-body .inner .addr-box .left .dir-wrap {
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.index-location .container .sec-body .inner .addr-box .left .dir-wrap.full {
  flex: 1 1 100%;
}
.index-location .container .sec-body .inner .addr-box .left .dir-wrap > div {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.index-location .container .sec-body .inner .addr-box .left .dir-wrap > div > span {
  font-size: 36px;
  color: #065DDF;
  line-height: 1;
  font-variation-settings: "FILL" 1;
}
.index-location .container .sec-body .inner .addr-box .left .dir-wrap > div b {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
}
.index-location .container .sec-body .inner .addr-box .left .dir-wrap > span {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  word-break: keep-all;
  color: black;
}
.index-location .container .sec-body .inner .addr-box .goto-map {
  flex: 0 0 280px;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 16px;
  background-color: #065DDF;
}
.index-location .container .sec-body .inner .addr-box .goto-map span {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
}
.index-location .container .sec-body .inner .addr-box .goto-map img {
  width: auto;
  height: 48px;
}

/* ============================================================
   반응형 (Responsive)
   ============================================================ */
/* ---------- 1280px 이하 ---------- */
@media (max-width: 1280px) {
  .index-hero .container article h1 {
    font-size: 60px;
  }
  .section-title-wrap h1 {
    font-size: 42px;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner {
    gap: 40px;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-header .prd-title-wrap > h4 {
    font-size: 34px;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-contents b {
    font-size: 30px;
  }
  .icp-youtube .container .sec-body .youtube-swiper .swiper-wrapper .swiper-slide {
    width: 44vw;
  }
  .icp-youtube .container .sec-body .youtube-swiper .swiper-navigation {
    width: 46vw;
  }
}
/* ---------- 1024px 이하 (태블릿) ---------- */
@media (max-width: 1024px) {
  .index-hero {
    margin-bottom: 80px;
  }
  .index-hero .container {
    gap: 40px;
  }
  .index-hero .container article h1 {
    font-size: 46px;
  }
  .index-hero .container article span {
    font-size: 20px;
  }
  .section-title-wrap span {
    font-size: 16px;
  }
  .section-title-wrap h1 {
    margin-bottom: 24px;
    font-size: 36px;
  }
  .section-title-wrap p {
    font-size: 16px;
  }
  .news-notice {
    margin-bottom: 80px;
  }
  .news-notice .container {
    gap: 48px;
  }
  .news-notice .container .sec-body {
    gap: 48px;
  }
  .news-notice .container .sec-body .notice-box {
    flex-direction: column; /* 이미지 위 / 리스트 아래로 */
    gap: 32px;
  }
  .news-notice .container .sec-body .notice-box .left {
    flex: 1 1 auto;
    width: 100%;
  }
  .news-notice .container .sec-body .notice-box .right {
    width: 100%;
  }
  .index-prd-list {
    margin-bottom: 80px;
  }
  .index-prd-list .container {
    gap: 48px;
  }
  .index-prd-list .container .sec-body .prd-tabs {
    gap: 12px 36px;
  }
  .index-prd-list .container .sec-body .prd-tabs .tab {
    font-size: 18px;
  }
  .index-prd-list .container .sec-body .prd-blue-box {
    padding: 40px 0;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner {
    flex-direction: column; /* 텍스트 위 / 스와이퍼 아래로 */
    gap: 32px;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .left {
    width: 100%;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner { /* 세로 배치 시 좌측 풀폭 */ }
  .index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-header .prd-title-wrap > h4 {
    font-size: 30px;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-contents {
    padding: 32px 28px;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-contents b {
    font-size: 26px;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-contents p {
    font-size: 16px;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .right {
    flex: 1 1 auto;
    width: 100%;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner {
    /* 스와이퍼 네비 버튼 축소 */
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .right .prd-blue-swiper .swiper-navigation {
    width: 100%;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .right .prd-blue-swiper .swiper-navigation div {
    width: 48px;
    height: 48px;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .right .prd-blue-swiper .swiper-navigation div span {
    font-size: 26px;
  }
  .icp-youtube {
    margin-bottom: 80px;
  }
  .icp-youtube .container .sec-body .youtube-swiper .swiper-wrapper .swiper-slide {
    width: 60vw;
  }
  .icp-youtube .container .sec-body .youtube-swiper .swiper-navigation {
    width: 64vw;
  }
  .index-location .container .sec-body {
    padding: 48px 0;
  }
  .index-location .container .sec-body .inner .addr-box .left {
    padding: 28px 32px;
  }
  .index-location .container .sec-body .inner .addr-box .left .dir-wrap > div > span {
    font-size: 30px;
  }
  .index-location .container .sec-body .inner .addr-box .left .dir-wrap > div b {
    font-size: 20px;
  }
  .index-location .container .sec-body .inner .addr-box .left .dir-wrap > span {
    font-size: 18px;
  }
}
/* ---------- 768px 이하 (모바일) ---------- */
@media (max-width: 768px) {
  .index-hero {
    margin-bottom: 60px;
  }
  .index-hero .container {
    gap: 32px;
  }
  .index-hero .container article h1 {
    font-size: 34px;
  }
  .index-hero .container article span {
    font-size: 16px;
  }
  .index-hero .container .mouse {
    gap: 16px;
  }
  .section-title-wrap span {
    margin-bottom: 12px;
    font-size: 14px;
  }
  .section-title-wrap h1 {
    margin-bottom: 16px;
    font-size: 26px;
  }
  .section-title-wrap p {
    font-size: 15px;
  }
  .section-title-wrap p br {
    display: none;
  }
  .news-notice {
    margin-bottom: 60px;
  }
  .news-notice .container {
    gap: 36px;
  }
  .news-notice .container .sec-body {
    gap: 36px;
  }
  .news-notice .container .sec-body .notice-box {
    gap: 24px;
  }
  .news-notice .container .sec-body .notice-box .right .news-latest .row > a {
    padding: 0;
    flex-direction: column-reverse; /* 썸네일 위 / 글 아래 */
    gap: 16px;
  }
  .news-notice .container .sec-body .notice-box .right .news-latest .row > a .latest-titles h4 {
    font-size: 18px;
  }
  .news-notice .container .sec-body .notice-box .right .news-latest .row > a .latest-titles p {
    font-size: 14px;
  }
  .news-notice .container .sec-body .notice-box .right .news-latest .row .latest-thumb {
    width: 100%;
  }
  .news-notice .container .sec-body > a {
    width: 220px;
    height: 60px;
  }
  .index-prd-list {
    margin-bottom: 60px;
  }
  .index-prd-list .container {
    gap: 36px;
  }
  .index-prd-list .container .sec-body .prd-tabs {
    gap: 10px 20px;
  }
  .index-prd-list .container .sec-body .prd-tabs .tab {
    font-size: 15px;
  }
  .index-prd-list .container .sec-body .prd-blue-box {
    padding: 32px 0;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner {
    gap: 24px;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .left {
    gap: 24px;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-header {
    flex-direction: column;
    gap: 16px;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-header .prd-title-wrap > h4 {
    font-size: 24px;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-header .prd-title-wrap > span {
    font-size: 16px;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-header .view-more {
    width: 52px;
    height: 52px;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-header .view-more span {
    font-size: 26px;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-contents {
    padding: 24px 20px;
    gap: 20px;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-contents b {
    font-size: 20px;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-contents p {
    font-size: 15px;
    line-height: 1.5;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .left .prd-contents p br {
    display: none;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .right .prd-blue-swiper .swiper-navigation div {
    width: 40px;
    height: 40px;
  }
  .index-prd-list .container .sec-body .prd-blue-box .inner .right .prd-blue-swiper .swiper-navigation div span {
    font-size: 22px;
  }
  .icp-youtube {
    margin-bottom: 60px;
  }
  .icp-youtube .container {
    gap: 36px;
  }
  .icp-youtube .container .sec-body {
    gap: 36px;
  }
  .icp-youtube .container .sec-body .youtube-swiper .swiper-wrapper .swiper-slide {
    width: 82vw;
    gap: 20px;
  }
  .icp-youtube .container .sec-body .youtube-swiper .swiper-wrapper .swiper-slide .youtube-titles b {
    font-size: 18px;
  }
  .icp-youtube .container .sec-body .youtube-swiper .swiper-navigation {
    width: 92vw;
  }
  .icp-youtube .container .sec-body .youtube-swiper .swiper-navigation div {
    width: 44px;
    height: 44px;
  }
  .icp-youtube .container .sec-body > a {
    width: 220px;
    height: 60px;
  }
  .index-location .container {
    gap: 32px;
  }
  .index-location .container .sec-body {
    padding: 36px 0;
  }
  .index-location .container .sec-body .inner {
    gap: 20px;
  }
  .index-location .container .sec-body .inner .map-box {
    height: 300px;
  }
  .index-location .container .sec-body .inner .addr-box {
    flex-direction: column; /* 주소 / 카카오맵 버튼 세로 */
  }
  .index-location .container .sec-body .inner .addr-box .left {
    padding: 24px 20px;
    gap: 16px 24px;
  }
  .index-location .container .sec-body .inner .addr-box .left .dir-wrap > div > span {
    font-size: 26px;
  }
  .index-location .container .sec-body .inner .addr-box .left .dir-wrap > div b {
    font-size: 18px;
  }
  .index-location .container .sec-body .inner .addr-box .left .dir-wrap > span {
    font-size: 16px;
  }
  .index-location .container .sec-body .inner .addr-box .goto-map {
    flex: 1 1 auto;
    width: 100%;
    padding: 20px;
    flex-direction: row;
    gap: 12px;
  }
  .index-location .container .sec-body .inner .addr-box .goto-map img {
    height: 32px;
  }
}
/* ---------- 480px 이하 (작은 모바일) ---------- */
@media (max-width: 480px) {
  .index-hero .container article h1 {
    font-size: 28px;
  }
  .index-hero .container article h1 br {
    display: none;
  }
  .section-title-wrap h1 {
    font-size: 22px;
  }
  .news-notice .container .sec-body .notice-box .right .news-latest .row > a .latest-titles h4 {
    font-size: 16px;
  }
  .index-prd-list .container .sec-body .prd-tabs {
    gap: 8px 14px;
  }
  .index-prd-list .container .sec-body .prd-tabs .tab {
    font-size: 14px;
  }
  .icp-youtube .container .sec-body .youtube-swiper .swiper-wrapper .swiper-slide {
    width: 88vw;
  }
  .icp-youtube .container .sec-body .youtube-swiper .swiper-navigation {
    width: 96vw;
  }
}/*# sourceMappingURL=main.css.map */