/* BASIC css start */
/* ÃÊ±âÈ­ */
html, body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  box-sizing: border-box;
}

/* »ó´Ü ¸Þ´º ÄÁÅ×ÀÌ³Ê */
#topMenuContainer {
  /* È­¸é »ó´Ü¿¡ °íÁ¤ */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  
  /* °¡·Î¹èÄ¡, ÁÙ¹Ù²Þ °¡´É */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  /* µðÀÚÀÎ */
  background-color: #f5f5f5;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  z-index: 100; /* ´Ù¸¥ ¿ä¼Òµéº¸´Ù À§¿¡ ¿Àµµ·Ï */
}

#topMenuContainer .topMenuList {
  /* ¸Þ´º Ç×¸ñ °¡·Î ¹èÄ¡ */
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px; /* ¸Þ´º°£ °£°Ý */
}

#topMenuContainer .topMenuList li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

/* Áß¾Ó ¿µ¿ª */
#middleContainer {
  /* »ó´Ü/ÇÏ´Ü ¸Þ´º ³ôÀÌ¸¦ »©°í, ³²Àº ¿µ¿ª ÀüÃ¼¸¦ Áß¾Ó Á¤·Ä ¿µ¿ªÀ¸·Î »ç¿ë */
  /* ¿¹: »ó´Ü ¸Þ´º ³ôÀÌ(70px) + ÇÏ´Ü ¸Þ´º ³ôÀÌ(100px) = 170px */
  min-height: calc(100vh - 170px);

  /* ¼öÁ÷/¼öÆò Áß¾Ó Á¤·Ä */
  display: flex;
  flex-direction: column;       /* À§¾Æ·¡·Î ¿ä¼Ò¸¦ ½×½À´Ï´Ù */
  justify-content: center;      /* ¼öÁ÷ Áß¾Ó Á¤·Ä */
  align-items: center;          /* ¼öÆò Áß¾Ó Á¤·Ä */

  /* ±âÁ¸¿¡ ÀÖ´ø margin-top, margin-bottomÀº Á¦°Å */
  margin: 0;
  padding: 0;

  /* ½Ã°¢ÀûÀ¸·Î ±¸ºÐÇÏ±â À§ÇÑ ½ºÅ¸ÀÏ (¼±ÅÃ) */
  /* background-color: #fafafa; */
}


.tlogo img {
  display: block;
  margin: 0 auto;
  /* È¤Àº ÇÊ¿ä ½Ã max-width: XXpx; µîÀ¸·Î Á¶Á¤ */
}

#middleContainer .searchArea {
  margin-top: 20px;
}

#middleContainer .search input {
  width: 200px;
  padding: 8px;
  font-size: 14px;
}

/* ÇÏ´Ü Á¤º¸ ÄÁÅ×ÀÌ³Ê */
/* ±âÁ¸ ÃÊ±âÈ­/±âº» ½ºÅ¸ÀÏÀº »ý·«, ÇÏ´Ü ÄÁÅ×ÀÌ³Ê Áß½ÉÀ¸·Î º¸¿©µå¸³´Ï´Ù */

/* ÇÏ´Ü Á¤º¸ ÄÁÅ×ÀÌ³Ê */
#bottomInfoContainer {
  /* È­¸é ÇÏ´Ü °íÁ¤ */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  
  /* µðÀÚÀÎ */
  background-color: #fff;
  padding: 10px 0;
  border-top: 1px solid #ddd;
  z-index: 100;
  
  /* ¼¼·Î ½ºÅ©·ÑÀº ÇÊ¿ä ¾ø°í, °¡·Î ½ºÅ©·ÑÀ» Çã¿ëÇÏ±â À§ÇØ overflow-x »ç¿ë °¡´É */
  /* ÇÏÁö¸¸ ½ÇÁ¦ ½ºÅ©·Ñ ¹Ú½º´Â ÀÚ½Ä .bottomInfoScroll¿¡ ÁÙ ¼öµµ ÀÖ½À´Ï´Ù. */
  /* overflow-x: auto; */
}

/* ½ÇÁ¦ ½ºÅ©·Ñ ¿µ¿ª: °¡·Î·Î Âß ³ª¿­ÇÏµÇ ³ÑÄ¡¸é ¼öÆò ½ºÅ©·Ñ */
.bottomInfoScroll {
  /* ¼öÆò ½ºÅ©·Ñ */
  white-space: nowrap;   /* ÁÙ¹Ù²Þ ¾øÀÌ ÇÑ ÁÙ·Î ³ª¿­ */
  overflow-x: auto;      /* ³ÑÄ¡¸é °¡·Î ½ºÅ©·Ñ¹Ù »ý¼º (¶Ç´Â ÅÍÄ¡ ½º¿ÍÀÌÇÁ °¡´É) */

  /* ¸ð¹ÙÀÏ¿¡¼­ ºÎµå·¯¿î ½ºÅ©·Ñ È¿°ú */
  -webkit-overflow-scrolling: touch;
  
  /* ¿ÞÂÊ Á¤·Ä */
  text-align: left;

  /* ³ôÀÌ°¡ ´Þ¶óÁöÁö ¾Êµµ·Ï(ÀÌ¹ÌÁö°¡ ³Ê¹« Ä¿µµ ÁÙ¹Ù²ÞÇÏÁö ¾Ê´Â´Ù) */
  display: block; 
}

/* ³»ºÎ ÀÌ¹ÌÁö¸¦ inline-blockÀ¸·Î ÇÏ¿© °¡·Î·Î ¹èÄ¡ */
.bottomInfoScroll img {
  display: inline-block;
  max-width: none;  /* °¡·Î ½ºÅ©·ÑÀÌ¹Ç·Î, ³Êºñ Á¦ÇÑÀÌ ÇÊ¿ä ¾ø´Ù¸é none */
  //height: 40px;     /* ÇÊ¿ä ½Ã ³ôÀÌ °íÁ¤(¶Ç´Â auto) */
  margin-right: 10px; /* ÀÌ¹ÌÁö °£°Ý */
}

/* ½ºÅ©·Ñ¹Ù¸¦ ¼û±â°í ½Í´Ù¸é(¸ð¹ÙÀÏ ÅÍÄ¡ ½ºÅ©·Ñ Àü¿ë) - ¼±ÅÃ»çÇ× */
.bottomInfoScroll::-webkit-scrollbar {
  display: none; /* »çÆÄ¸®/Å©·Ò µî À¥Å¶ ºê¶ó¿ìÀú¿¡¼­ ½ºÅ©·Ñ¹Ù ¼û±è */
}


a img {
  border: none;
}

/* ¸µÅ© È¤Àº a ÅÂ±× ¾ÈÀÇ ÀÌ¹ÌÁö¸¦ ÅÇÇßÀ» ¶§ ÇÏÀÌ¶óÀÌÆ®¸¦ ¾ø¾Ú */
a, a img {
  -webkit-tap-highlight-color: transparent; /* ¶Ç´Â rgba(0, 0, 0, 0) */
}
/* BASIC css end */

