/* 1. wrapper1 ¼öÁ¤: background-image Á¦°Å, relative ¼³Á¤ */
.wrapper1 {
    width: 100%;
    position: relative; /* ÀÚ½Ä ¿ä¼ÒÀÇ absolute ±âÁØ */
    /* background-image ¼Ó¼º Á¦°Å */
    /* background-size, background-position ¼Ó¼º Á¦°Å */
    overflow: hidden; /* ÀÌ¹ÌÁö°¡ È®´ëµÉ ¶§ ¿µ¿ª ¹ÛÀ¸·Î ³ª°¡´Â °ÍÀ» ¼û±è */
}

/* 2. ÀÌ¹ÌÁö ¾Ö´Ï¸ÞÀÌ¼ÇÀ» À§ÇÑ ±âº» ½ºÅ¸ÀÏ ¼³Á¤ */
.background-image-animate {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* ÀÌ¹ÌÁö°¡ wrapper1À» ²Ë Ã¤¿ìµµ·Ï ¼³Á¤ (±âÁ¸ background-size: cover ¿ªÇÒ) */
    z-index: 0; /* ´Ù¸¥ ¿ä¼Òµé(overlay, banner)º¸´Ù µÚ¿¡ À§Ä¡ */
    
    /* ¾Ö´Ï¸ÞÀÌ¼Ç Àû¿ë */
    animation: zoomOut 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; 
}


/* 3. Transform ¾Ö´Ï¸ÞÀÌ¼Ç Å°ÇÁ·¹ÀÓ Á¤ÀÇ */
@keyframes zoomOut {
    0% {
        /* ½ÃÀÛ ½ÃÁ¡: 1.05¹è È®´ëµÈ »óÅÂ */
        transform: scale(1.25); 
    }
    100% {
        /* Á¾·á ½ÃÁ¡: ¿ø·¡ Å©±â (1¹è) */
        transform: scale(1); 
    }
}
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); /* ¾îµÎ¿î ¹ÝÅõ¸í ¿À¹ö·¹ÀÌ */
    z-index: 1;
  }

  .banner {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    z-index: 2;
  }

  .banner-text h1 {
    font-size: 40px;
    color: white;
    margin-bottom: 10px;	  
    font-family:'NanumSquareNeoBold', sans-serif;
  }

  .banner-text p {
    font-size: 20px;
    color: white;
    font-family:'NanumSquareNeoBold', sans-serif;
  }

  @media (max-width: 1024px) {
    .banner {
      height: 200px;
      padding: 20px;
    }

    .banner-text h1 {
      font-size: 28px;
    }

    .banner-text p {
      font-size: 15px;
    }
  }

  /* ====== ABOUT ¹Ù ¿µ¿ª ====== */
.top-bar {
  width: 100%;
  height: 80px; /* PC¿¡¼­ ³ôÀÌ 80px */
  background-color: #4a5aa5;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.top-container {
  width: 1400px;
  max-width: 95%;
  margin: 0 auto;
  padding-left: 10px;
}

.top-content {
  display: flex;
  flex-direction: column; /* ¼¼·Î Á¤·Ä */
  align-items: flex-start; /* ÁÂÃø Á¤·Ä */
  opacity: 0;
  transform: translateX(100px);
  animation: slideIn 1s ease forwards;
  animation-delay: 0.3s;
}

.top-line {
  width: 40px;
  height: 1px;
  background: #fff;
  margin-bottom: 5px; /* ¼±°ú ±ÛÀÚ °£°Ý */
}

.top-text {
  font-size: 30px;
  color: #fff;
  font-family: 'NanumSquareNeoBold', sans-serif;
}

  /* ====== ¾Ö´Ï¸ÞÀÌ¼Ç ====== */
  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* ====== ¸ð¹ÙÀÏ ´ëÀÀ ====== */
  @media (max-width: 1024px) {
    .top-bar {
      height: 50px;
    }

    .top-line {
      width: 25px;
    }

    .top-text {
      font-size: 20px;
    }

    .top-content {
      transform: translateX(50px);
      animation: slideIn 1s ease forwards;
      animation-delay: 0.2s;
    }
  }




   /* contact Áöµµ ºÎºÐ */
  .wrapper4 {
    width: 100%;
    background: #fff;
    padding: 0px 0;
  }

  /* container */
  .container4 {
    width: 1400px;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    padding: 0 10px;
  }

  /* Áöµµ ¿µ¿ª */
  .map-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 4px rgba(0,0,0,0.1);
    line-height: 0; /* ÇÏ´Ü ¿©¹é Á¦°Å */
  }

  .map-wrap iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 16px;
  }


 /* Áöµµ ¾Æ·¡ ¹öÆ° ¿µ¿ª */
  .map-button-wrap {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
  }

  .map-action-btn {
    display: inline-block;
    width: 300px;
    text-align: center;
    background: #4a5aa5;
    color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px 0;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  }

  .map-action-btn:visited,
  .map-action-btn:active,
  .map-action-btn:focus {
  color: #fff;
  text-decoration: none;   /* ¹ØÁÙ Á¦°Å */
  outline: none;           /* Å¬¸¯ ½Ã ÆÄ¶õ ¿Ü°û¼± Á¦°Å */
}

  .map-action-btn:hover {
    background: #f5f5f5;
    color: #222;
    box-shadow: 0 5px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
  }

  /* Á¤º¸ Å×ÀÌºí */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
  border: 1px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.info-table tr {
  border-bottom: 1px solid #ddd;
}
.info-table tr:last-child {
  border-bottom: none;
}
.info-table th, .info-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 16px;
}
.info-table th {
  width: 150px;
  background: #f9f9f9;
  font-weight: 600;
  color: #333;
}
.info-table td {
  color: #555;
}

  /* ¼Ò¼È ¹öÆ° */
  .social-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
    flex-wrap: wrap;
  }
  .social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fafafa;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    color: #222;
    transition: all 0.3s ease;
  }

  .social-btn:visited,
  .social-btn:active,
  .social-btn:focus {
  color: #222;
  text-decoration: none;   /* ¹ØÁÙ Á¦°Å */
  outline: none;           /* Å¬¸¯ ½Ã ÆÄ¶õ ¿Ü°û¼± Á¦°Å */
}

  .social-btn img {
    width: 28px;
    height: 28px;
    object-fit: contain;
  }
  .social-btn:hover {
    background: #4a5aa5;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }

  /* ¸ÞÀÎ °­Á¶ ¹öÆ° */
  .main-action {
    display: block;
    width: 100%;
    margin-top: 40px;
    background: #4a5aa5;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    border: none;
    border-radius: 14px;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  }

  .main-action:visited,
  .main-action:active,
  .main-action:focus {
  color: #fff;
  text-decoration: none;   /* ¹ØÁÙ Á¦°Å */
  outline: none;           /* Å¬¸¯ ½Ã ÆÄ¶õ ¿Ü°û¼± Á¦°Å */
}

  .main-action:hover {
    background: #192d8a;
    color: #fff;
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
    transform: translateY(-2px);
  }

  /* ¹ÝÀÀÇü */
  @media (max-width: 1024px) {
    .container4 {
      width: 100%;
      padding: 0 20px;
    }
  }

  @media (max-width: 768px) {

    /* Áöµµ ¾Æ·¡ ¹öÆ° ÀüÃ¼ ³Êºñ */
    .map-button-wrap {
      justify-content: center;
    }
    .map-action-btn {
      width: 100%;
    }

  .info-table {
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  }
  .info-table tr {
    display: block;
    border: none;
    border-bottom: 1px solid #ddd;
    margin: 0;
  }
  .info-table tr:last-child {
    border-bottom: none;
  }
  .info-table th, .info-table td {
    display: block;
    width: 100%;
    font-size: 15px;
    padding: 12px 16px;
  }
  .info-table th {
    background: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 700;
  }
  .info-table td {
    background: #fff;
  }

    .social-buttons {
      flex-direction: column;
    }
    .social-btn {
      width: 100%;
    }
    .info-table th, .info-table td {
      font-size: 15px;
      padding: 14px 16px;
    }
    .main-action {
      font-size: 18px;
      padding: 35px 0;
    }
  }


  a {
  text-decoration-line: none;
/*   text-decoration-line: underline; */
/*   text-decoration-line: overline; */
/*   text-decoration-line: line-through; */
/*   text-decoration-line: underline line-through overline; */
}

div a:hover {
  text-decoration: none;
}