/* BASIC css start */
@charset "UTF-8";

.footer-text 
{
  color: #6d6d6f;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.footer-highlight 
{
  color: #1d1d1f;
  font-weight: 500;
}

.footer-divider 
{
  color: #6d6d6f;
  opacity: 0.3;
}

footer 
{
  background-color: #fafafa;
}

/* ¸Þ´º ¸µÅ© */
.footer-menu 
{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li a 
{
  font-size: 14px;
  color: #6d6d6f;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-menu li a:hover 
{
  color: #1d1d1f;
}

.footer-menu li:not(:last-child)::after 
{
  content: "|";
  margin-left: 12px;
  opacity: 0.3;
}

@media (max-width: 640px) 
{
    .footer-menu li:nth-of-type(4)::after 
    {
        content: none;
    }    
}

/* °í°´¼¾ÅÍ Á¤º¸ ½ºÅ¸ÀÏ */
.footer-service-info 
{
  text-align: center;
}

.footer-service-number 
{
  display: block;
  color: #1A1B1D;
  font-size: 18px;
  font-weight: 600;
}

.footer-service-time 
{
  display: block;
  color: #707a89;
  font-size: 13px;
}

/* ¼Ò¼È ¾ÆÀÌÄÜ2 FOOTER */
.social-icon2 
{
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d9d9d9;
  color: #4a4a4a;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  filter: grayscale(100%);
}

/* YouTube - »ç°¢Çü ¹è°æ */
.social-icon2.youtube-icon 
{
  border-radius: 8px;
}

/* Facebook - ÆÄ¶õ»ö */
.social-icon2[data-icon="facebook"]:hover 
{
  background-color: #1877f2;
  color: white;
  filter: grayscale(0%);
  transform: scale(1.025);
}

/* ³×ÀÌ¹ö */
.social-icon2[data-icon="naver"] 
{
  color: #555; /* ±âº» N ÄÃ·¯ */
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hover */
.social-icon2[data-icon="naver"]:hover 
{
  background-color: #00c73c;
  color: white;
  transform: scale(1.025);
  filter: grayscale(0%);
}

/* YouTube ¾ÆÀÌÄÜ */
.social-icon2[data-icon="youtube"]:hover 
{
  background-color: #ff0000;
  color: white;
  filter: grayscale(0%);
  transform: scale(1.025);
}

/* Instagram - ±×¶óµ¥ÀÌ¼Ç */
.social-icon2[data-icon="instagram"]:hover 
{
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  filter: grayscale(0%);
  transform: scale(1.025);
}

/* 768px ¹Ì¸¸ ¸ð¹ÙÀÏ¿¡¼­ ±¸ºÐ¼± ¼û±è */
.footer-divider 
{
  /* ¸ð¹ÙÀÏ¿¡¼­ ±¸ºÐ¼± | ¼û±â±â */
  display: none;
}

/* 768px (md) ÀÌ»ó¿¡¼­ ´Ù½Ã º¸ÀÌµµ·Ï ¼³Á¤ */
@media (min-width: 768px) 
{
  .footer-divider 
  {
    display: inline;
  }
}
/* BASIC css end */

