/* ±âº»Àº ¼û±è */
.mobile-text {
  display: none;
}

/* ¸ð¹ÙÀÏ Àü¿ë */
@media screen and (max-width: 768px) {
  .mobile-text {
    display: block;
    text-align: center;   /* °¡¿îµ¥ Á¤·Ä */
    margin-bottom: 10px;  /* ¾Æ·¡ ¿©¹é */
    font-size: 13px;      /* ÇÊ¿ä½Ã ±ÛÀÚ Å©±â Á¶Á¤ */
    color: #333;          /* ÇÊ¿ä½Ã »ö»ó Á¶Á¤ */
  }
}


/* ÀÏ¹Ý ÅÂºí¸´ ¹× ¼ÒÇü µ¥½ºÅ©Åé */
@media (max-width: 1199px) {
  #s_blank {
    height: 40px;
  }
}

/* ¸ð¹ÙÀÏ ±â±â (½º¸¶Æ®Æù) */
@media (max-width: 767px) {
  #s_blank {
    height: 0px;
  }
}

/* µ¥½ºÅ©Åé */
@media (min-width: 1200px) {
  #s_blank {
    height: 40px;
  }
}




/* »ó´Ü¼Ò°³ */
.wrapper3 {
  width: 100%;
  background: #fff;
  padding: 0 10px;
  box-sizing: border-box;
}
.container3 {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  text-align: center;
  padding: 0; /* ÆÐµù Á¦°Å */
}

/* ±¸ºÐ¼± */
.divider {
  margin: 100px 0;
  border-top: 1px solid #c2c2c2;
}

/* ÀÌ¹ÌÁö ±×·ì */
.img-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.img-group img {
  width: 100%;
  aspect-ratio: 1 / 1;   /* Á¤»ç°¢Çü À¯Áö */
  object-fit: cover;
  display: block;
}

/* ÅØ½ºÆ® ºí·Ï */
.text-block {
  margin-top: 50px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.text-block h2 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
	  font-family:'NanumSquareNeoBold', sans-serif;
}
.text-block p {
  font-size: 13px;
  line-height: 1.6;
  margin: 5px 0;
	  font-family:'NanumSquareNeoBold', sans-serif;
}

/* ¹ÝÀÀÇü */
@media (max-width: 768px) {
  .wrapper3 {
    padding: 0 10px;
  }
  .img-group {
    grid-template-columns: 1fr; /* ¼¼·Î ¹èÄ¡ */
    max-width: 100%;            /* 820px Á¦ÇÑ ÇØÁ¦ */
    margin: 0;                  /* ÀÚµ¿ ¿©¹é Á¦°Å */
  }

  .text-block h2 {
    font-size: 14px;
  }
  .text-block p {
    font-size: 12px;
  }
}



/* ÇÏ´Ü Ç¥ */
.wrapper2 {
  width: 100%;
  background: #fff;
  padding: 0 10px; /* Ç×»ó ÁÂ¿ì ¿©¹é 10px */
  box-sizing: border-box;
}

.container2 {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
}

/* ±¸ºÐ¼± */
.divider {
  margin: 100px 0;
  border-top: 1px solid #c2c2c2;
}

.table-wrap {
  overflow-x: auto; /* ¸ð¹ÙÀÏ ÁÂ¿ì ½ºÅ©·Ñ */
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  color: #333;
  min-width: 800px; /* ¸ð¹ÙÀÏ¿¡¼­ ÁÂ¿ì ½ºÅ©·Ñ */
 font-family:'NanumSquareNeoBold', sans-serif;
}

.price-table th, 
.price-table td {
  border: 1px solid #eee;
  padding: 13px;
  vertical-align: top;
  text-align: left;
}

.price-table th {
  background: #f9f9f9;
  font-weight: bold;
  text-align: center;
}

.price-table .section {
  background: #fafafa;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
}

.price-table tr:hover td {
  background: #fefefe;
}

.price-table em {
  font-size: 12px;
  color: #888;
}


/* ¸ð¹ÙÀÏ / ÅÂºí¸´ ¹ÝÀÀÇü ±ÛÀÚ Å©±â Á¶Á¤ */
@media (max-width: 1200px) {
  .wrapper2 {
    padding: 0 10px;
  }

  .price-table {
    font-size: 13px; /* ±âº»º¸´Ù »ìÂ¦ ÀÛ°Ô */
  }

  .price-table em {
    font-size: 12px;
  }
}