main section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  main section {
    padding: 60px 0;
  }
}

.main_con_header {
  padding: 0 0 50px;
  text-align: center;
}

.main_con_header h2 {
  padding: 0 0 20px;
  font-size: 40px;
  font-weight: 700;
  color: #333;
}

.products .main_con_header h2 {
  color: #fff;
}

.main_con_header p {
  word-break: keep-all;
  line-height: 1.4;
}

.products .main_con_header p {
  color: #fff;
}

@media (max-width: 768px) {
  .main_con_header {
    padding: 0 0 40px;
  }
  .main_con_header h2 {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .main_con_header h2 {
    font-size: 32px;
  }
}

.about__con ul {
  gap: 30px;
}

.about__con ul li {
  flex: 1;
}

.about__con ul li a {
  overflow: hidden;
  display: block;
  position: relative;
  width: 100%;
  height: 370px;
  border: 1px solid #bbbbbb;
  background: no-repeat center / cover;
}

.about__con ul li a .box {
  position: absolute;
  left: 0;
  bottom: -73px;
  padding: 20px 30px;
  width: 100%;
  height: 163px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  transition: 0.3s;
}

.about__con ul li a .box .tit {
  line-height: 1;
}

.about__con ul li a .box .tit h3 {
  font-size: 25px;
  font-weight: 500;
}

.about__con ul li a .box .tit p {
  padding: 10px 0 30px;
  font-size: 15px;
}

.about__con ul li a .box .tail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.about__con ul li a .box .tail span {
  flex: 1;
  font-size: 15px;
  line-height: 1.4;
}

.about__con ul li a .box .tail i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: #0e4fa1;
  border-radius: 50%;
}

.about__con ul li a:hover .box {
  bottom: 0;
}

.about__con ul li:nth-of-type(1) a {
  background-image: url(/img/yg/m_about1.png);
}

.about__con ul li:nth-of-type(2) a {
  background-image: url(/img/yg/m_about2.png);
}

.about__con ul li:nth-of-type(3) a {
  background-image: url(/img/yg/m_about3.png);
}

@media (max-width: 991px) {
  .about__con ul {
    gap: 10px;
  }
  .about__con ul li a .box {
    bottom: 0;
    height: auto;
  }
  .about__con ul li a .box .tit p {
    padding-bottom: 0;
  }
  .about__con ul li a .box .tail {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .about__con ul li a {
    height: 300px;
  }
  .about__con ul li a .box {
    padding: 24px 20px;
  }
  .about__con ul li a .box .tit h3 {
    font-size: 22px;
  }
  .about__con ul li a .box .tit p {
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .about__con ul {
    gap: 5px;
  }
  .about__con ul li a {
    height: 270px;
  }
  .about__con ul li a .box {
    padding: 24px 10px;
  }
  .about__con ul li a .box .tit {
    text-align: center;
  }
  .about__con ul li a .box .tit h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .about__con ul {
    flex-direction: column;
    gap: 10px;
  }
  .about__con ul li a {
    height: 220px;
  }
  .about__con ul li a .box {
    padding: 25px 10px;
  }
}

/* =========================
   PRODUCTS (교체용 풀코드)
   ========================= */

.products {
  background: url("/img/yg/m_product_bg.png") no-repeat center/cover;
}

.products__con ul {
  padding-top: 50px;
}

/* li 기본 */
.products__con ul li {
  position: relative;
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.products__con ul li:last-of-type {
  border-right: 0;
}

/* ✅ 링크 대신 버튼 */
.products__con .prod_item{
  appearance: none;
  border: 0;
  background-color: transparent;

  display: block;
  width: 100%;
  height: 100%;
  padding: 110px 0 25px;

  font-size: 18px;
  text-align: center;
  font-weight: 600;
  color: #fff;

  background: no-repeat center top 22px;

  cursor: pointer;
  position: relative;

  transform: translateZ(0);
  transition: transform .25s ease, filter .25s ease;
}

/* 아이콘 링 */
/* .products__con ul li::before{
  content:"";
  position:absolute;
  left:50%;
  top: 36px;
  transform: translateX(-50%);
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(2px);
  transition: transform .25s ease, opacity .25s ease;
  opacity: .85;
} */

/* 광택 */
.products__con ul li::after{
  content:"";
  position:absolute;
  inset: 10px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0) 45%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

/* Hover */
.products__con ul li:hover .prod_item{
  transform: translateY(-6px);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.25));
}
.products__con ul li:hover::before{
  transform: translateX(-50%) scale(1.06);
  opacity: 1;
}
.products__con ul li:hover::after{
  opacity: 1;
  transform: translateY(0);
}

/* Active */
.products__con ul li:active .prod_item{
  transform: translateY(-2px) scale(.98);
}

/* 포커스 */
.products__con .prod_item:focus-visible{
  outline: 2px solid rgba(255,255,255,.85);
  outline-offset: -2px;
  border-radius: 14px;
}

/* 자동 부유 */
@media (prefers-reduced-motion: no-preference){
  .products__con ul li:nth-of-type(odd) .prod_item{
    animation: prodFloat 3.6s ease-in-out infinite;
  }
  .products__con ul li:nth-of-type(even) .prod_item{
    animation: prodFloat 4.2s ease-in-out infinite;
    animation-delay: .4s;
  }
  @keyframes prodFloat{
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-4px); }
  }
}

/* ✅ 아이콘 매핑 (a -> .prod_item) */
.products__con ul li:nth-of-type(1) .prod_item { background-image: url(/img/yg/ico_main_product1.png); }
.products__con ul li:nth-of-type(2) .prod_item { background-image: url(/img/yg/ico_main_product2.png); }
.products__con ul li:nth-of-type(3) .prod_item { background-image: url(/img/yg/ico_main_product3.png); }
.products__con ul li:nth-of-type(4) .prod_item { background-image: url(/img/yg/ico_main_product4.png); }
.products__con ul li:nth-of-type(5) .prod_item { background-image: url(/img/yg/ico_main_product5.png); }
.products__con ul li:nth-of-type(6) .prod_item { background-image: url(/img/yg/ico_main_product6.png); }

/* 반응형 */
@media (max-width: 991px) {
  .products__con ul {
    padding-top: 30px;
  }
  .products__con .prod_item {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .products__con ul {
    flex-wrap: wrap;
  }
  .products__con ul li {
    flex: auto;
    width: calc(100% / 3);
  }
  .products__con ul li:nth-of-type(3n) {
    border-right: 0;
  }
  .products__con ul li:nth-of-type(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  /* 모바일에서 과한 hover 방지 */
  .products__con ul li:hover .prod_item{ transform: none; filter: none; }
  .products__con ul li::after{ display:none; }
}

@media (max-width: 576px) {
  .products__con ul {
    margin-top: 20px;
  }
  .products__con .prod_item {
    font-size: 13px;
  }
}

/* view more 버튼 (기존 유지) */
.products__con .products__more {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px auto 0;
  width: 180px;
  height: 45px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  border-radius: 23px;
  border: 1px solid #fff;
  text-decoration: none;
}

@media (max-width: 576px) {
  .products__con .products__more {
    width: 150px;
    height: 42px;
    font-size: 15px;
    border-radius: 21px;
  }
}


.contact__con .contact__map {
  flex: 1;
}

.contact__con .contact__info {
  padding: 80px 0 0 50px;
  width: 550px;
  height: 475px;
  background: #f9f9f9 url(/img/yg/bg_location.png) no-repeat right bottom;
}

.contact__con .contact__info ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: left;
  padding-left: 64px;
  height: 50px;
  font-size: 25px;
  font-weight: 700;
  background: no-repeat center left / contain;
}

.contact__con .contact__info ul li:nth-of-type(1) {
  color: #0e4fa1;
  background-image: url(/img/yg/ico_tel.png);
}

.contact__con .contact__info ul li:nth-of-type(2) {
  color: #555;
  background-image: url(/img/yg/ico_fax.png);
}
.contact__con .contact__info ul li:nth-of-type(3) {
  color: #555;
  background-image: url(/img/yg/ico_phone.png);
}
.contact__con .contact__info ul li + li {
  margin-top: 18px;
}

.contact__con .contact__info p {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  line-height: 1.2;
}

.contact__con .contact__info p:first-of-type {
  padding: 35px 0 25px;
}

@media (max-width: 991px) {
  .contact__con .contact__info {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .contact__con .flex {
    flex-direction: column;
  }
  .contact__con .contact__map {
    overflow: hidden;
    flex: auto;
    position: relative;
    height: 250px;
  }
  .contact__con .contact__map .root_daum_roughmap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .contact__con .contact__info {
    background-size: 180px auto;
    padding: 50px 20px;
    width: 100%;
    height: auto;
  }
  .contact__con .contact__info ul li {
    padding-left: 60px;
    height: 42px;
    font-size: 30px;
  }
  .contact__con .contact__info p {
    font-size: 18px;
  }
  .contact__con .contact__info p:first-of-type {
    padding: 30px 0 20px;
  }
}

@media (max-width: 576px) {
  .contact__con .contact__info {
    background-size: 100px auto;
    padding: 40px 20px;
    width: 100%;
    height: auto;
  }
  .contact__con .contact__info ul li {
    padding-left: 52px;
    height: 36px;
    font-size: 26px;
  }
  .contact__con .contact__info ul li + li {
    margin-top: 15px;
  }
  .contact__con .contact__info p {
    font-size: 15px;
  }
  .contact__con .contact__info p:first-of-type {
    padding: 20px 0 10px;
  }
}

.map_border {
  display: none;
}
/*# sourceMappingURL=main.css.map */