@charset 'utf-8';

.inner,
.utility-bar {
  width: 100%;
  max-width: var(--layout);
  margin: 0 auto;
}

.site-header {
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.main_visual {
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}


.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

}

.swiper-slide img {
  transform: scale(2) !important;
  transition: transform 1s ease;
}


.swiper-slide-active img {
  transform: scale(1) !important;
  transition: transform 1s ease;
}

.main_visual .swiper {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;

}

.visual_container {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 12px;
  z-index: 999 !important;
  user-select: none;
  padding: 5px !important;
  box-sizing: border-box !important;
}


.visual_container .swiper-pagination-bullet {
  white-space: nowrap !important;
  padding: 10px 22px;
  width: 10%;
  max-width: 200px;
  height: auto;
  background: transparent !important;
  border: none;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
  color: #ffffff !important;
  cursor: pointer;
  opacity: 0.7 !important;
  transition: all ease;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}


.visual_container .swiper-pagination-bullet-active {
  font-weight: 800;
  opacity: 1 !important;
}

.visual_menu ul {
  display: flex;
  justify-content: left;
  align-items: center;
  list-style: none;
  padding: 0.5em 8em;
  gap: 4rem;
}

.visual_menu li {
  font-size: 2rem;
  text-align: center;
}

.visual_menu li a {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  text-decoration: none;
  color: #fff;
}

.visual_list ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 1em 12em;
}

.visual_list li a {
  font-weight: bold;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  text-decoration: none;
  color: #fff;
}

.swiper-slide {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swiper-slide h1 {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 6.5rem);
  font-weight: 600;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  z-index: 10;
  line-height: 130%;
  word-break: keep-all;
  word-wrap: break-word;
  white-space: nowrap;
  max-width: 90vw;
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
  padding: 0 5%;
  color: #fff;
}

.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--swiper-theme-color);
}

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.content-left {
  flex: 1;
  max-width: 500px;
}

.content-left h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-left p {
  font-size: 1.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.content-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.quick-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.menu-item {
  color: #fff;
  text-decoration: none;
  font-size: 3.2rem;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.utility-bar {
  font-size: 1.8rem;
  position: relative;
  z-index: 10;
}

.utility-bar::after {
  width: 300vw;
  content: '';
  position: absolute;
  bottom: 0;
  left: -100%;
  right: 0;
  height: 1px;
  background: #ddd;
  z-index: 10;
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--layout);
  margin: 0 auto;
}

.utility-left {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.utility-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flag-icon {
  width: 20px;
  height: 14px;
}


.language-selector ul {
  display: flex;
  gap: 0.5em;
  list-style: none;
  margin: 0;
  padding: 0;
}

.language-selector a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
}

.language-selector a.active {
  font-weight: bold;
  color: #0055a5;
}

.main-bar {
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 10;
}

.main-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--layout);
  margin: 0 auto;
  padding: 0.7em 1em;
}

.container {
  list-style-type: none;
}



a>img {
  width: 130px;
}

.deb1 {
  list-style-type: none;
  text-decoration: none;
  display: flex;
  gap: 2em;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dep1 a {
  text-decoration: none;
  color: #fff;
}

.dep2 {
  list-style-type: none;
  color: #171717;
  font-size: 3.2rem;
  font-weight: 500;
  padding: 0.3em 0.5em;
}

.dep2 a {
  color: #171717;
}



.header-actions {
  display: flex;
  align-items: center;
  gap: 1em;
}

.search-btn,
.menu-btn {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: #222;
  height: 60px;
}

.main-nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 12px;
}

.lang-sns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang a {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  margin: 0 2px;
}

.sns-icons a {
  margin-left: 8px;
  color: #fff;
  font-size: 18px;
}

.menu-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  margin-left: 16px;
}

main {
  background: #fff;
}

main>.section {
  width: 100%;
  max-width: var(--layout);
  margin: 0 auto;
  flex-shrink: 0;
  /* 기존 .section 스타일 유지 + 하단 여백 추가 */
  margin-bottom: 64px;
  /* 섹션 하단 여백 */
}

.section-title {
  margin-top: 50px;
  display: flex;
  align-items: center;
  /* 세로(수직) 가운데 정렬 */
  gap: 1.5rem;
  color: #222;
  font-family: "Noto Sans";
  font-size: 1.8906rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.8rem;
  margin-bottom: 30px;
}

.section-title::after {
  content: '';
  display: inline-block;
  width: 19rem;
  /* 선의 길이 */
  height: 2px;
  /* 선의 두께 */
  background: #444;
  /* 선 색상 */
  border-radius: 1px;
}

.heading2 {
  display: inline-flex;
  padding: 0.3rem 16.403rem 0.36rem 0;
  flex-direction: column;
  color: #787878;
  font-family: "Noto Sans";
  font-size: 4.1594rem;
  font-style: normal;
  font-weight: 600;
  line-height: 6.16rem;
  letter-spacing: -2px;
}

strong {
  color: #222;
  font-family: "Noto Sans";
  font-size: 4.1422rem;
  font-style: normal;
  font-weight: 700;
}

/* 알림마당 좌우 배치 레이아웃 */
.news-flex {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.news-info {
  flex: 0 0 260px;
  min-width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}

.news-info .section-title,
.news-info .heading2 {
  width: 100%;
  word-break: keep-all;
  white-space: normal;
  text-align: left;
}

.news-grid {
  flex: 1;
}

/* 카드뉴스 */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 32px;
}

/* 뉴스카드 헤더 flex 정렬 */

.news-card {
  width: 470px;
  height: 285px;
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}

.news-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.news-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.news-card__category {
  background: #e74c3c;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 1.6rem;
  font-weight: 500;
}

.news-card__action {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
  margin-left: 0;
  width: auto;
}

.news-card__action:hover {
  background-color: #f5f5f5;
}

.news-card__title {
  font-size: 2.4rem;
  font-weight: 600;
  color: #222;
  line-height: 1.4;
  margin: 0 0 12px 0;
  flex-grow: 1;
}

.news-card__summary {
  color: #666;
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 0 0 16px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-card__date {
  color: #999;
  font-size: 1.6rem;
  margin-top: auto;
}








.section2 {
  background: #fafafa;
  /* 원하는 배경색 */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-top: 10px;
  padding-bottom: 60px;
  /* 또는 padding: 48px 0; */
  /* 기존 .business 스타일 유지 + 상단 여백 추가 */
  margin-top: 64px;
  /* 섹션 상단 여백 */
}

.section2>.inner {
  max-width: var(--layout);
  margin: 0 auto;
}

.business-main {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  align-items: flex-start;
}

.business-main-img {
  position: relative;
  flex: 2;
}

.business-main-img img {
  width: 100%;
  border-radius: 12px;
}

.business-link {
  position: absolute;
  bottom: 32px;
  left: 16px;
  background: #ba3632;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.6rem;
}

.business-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 16px;
}

.business-list a {
  display: block;
  background: #222;
  color: #fff;
  padding: 12px 0;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 4px;
  transition: background 0.2s;
}

.business-list a:hover {
  background: #ba3632;
}

.about {
  background: #fff;
  padding: 48px 5% 32px 5%;
}

.about h2 {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 8px;
}

.about-main {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-top: 24px;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.about-cards {
  display: flex;
  gap: 24px;
}

.about-card {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 24px;
  min-width: 220px;
  max-width: 320px;
  flex: 1;
}

.about-card h3 {
  font-size: 3.2rem;
  color: #ba3632;
  margin-bottom: 8px;
}

.about-card p {
  font-size: 1.8rem;
  color: #444;
  margin-bottom: 12px;
}

.about-card a {
  display: inline-block;
  margin-right: 8px;
  color: #222;
  text-decoration: underline;
  font-size: 1.8rem;
}

main>.section {
  width: 100%;
  max-width: var(--layout);
  margin: 0 auto;
  flex-shrink: 0;
}

.heading2 {
  display: inline-flex;
  flex-direction: column;
  color: #787878;
  font-family: "Noto Sans";
  font-size: 4.1594rem;
  font-style: normal;
  font-weight: 600;
  line-height: 6.16rem;
}

strong {
  color: #222;
  font-family: "Noto Sans";
  font-size: 4.1422rem;
  font-style: normal;
  font-weight: 700;
}

/* //main 영역 */

.site-footer {
  background: #222;
  color: #fff;
  padding: 32px 5% 16px 5%;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-bottom: 1px solid #444;
  padding-bottom: 16px;
}

.footer-logo img {
  height: 40px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
}

.footer-family select {
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.footer-info {
  margin-top: 16px;
  font-size: 1.8rem;
  color: #ccc;
}

.footer-info address {
  font-style: normal;
  margin-bottom: 8px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.popup {
  position: fixed;
  width: 420px;
  height: 250px;
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  font-size: 24px;
  z-index: 999999;
  left: 50%;
  transform: translateX(-50%);
  top: 100px;
  box-shadow: 8px 8px 16px rgba(0, 0, 0, .5);
  line-height: 1.75;

  button {
    display: block;
    border-radius: 8px;
  }
}


/* 퀵메뉴 */

.dot {
  position: absolute;
  width: 70px;
  height: 70px;
  position: fixed;
  transform: none;
  background: black;
  top: auto;
  bottom: 8%;
  left: auto;
  right: 5%;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: all 0.5ms;
}

.dot::before {
  content: '↑';
  position: absolute;
  color: white;
  font-size: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}