

/* ¿ä±ÝÁ¦ Ä«µå¿µ¿ª */
.plan-wrap{
  max-width: 1100px;
  margin: 40px auto;
  display: flex;
  gap: 24px;
  justify-content: center;
  font-family: "Pretendard","Noto Sans KR",sans-serif;
}

/* Ä«µå ½ºÅ¸ÀÏ */
.plan-card{
  flex: 1 1 0;
  background: #ffffff;
  border: 2px solid #6F47FF; /* ´õ ¼±¸íÇÑ º¸¶ó */
  border-radius: 22px;
  padding: 28px 24px 32px;
  text-align: center;
  box-sizing: border-box;

  /* ±âº» ±×¸²ÀÚ */
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  transition: all .28s ease;
}

/* hover ½Ã ¾÷±×·¹ÀÌµå È¿°ú */
.plan-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  border-color: #5a32ff;
}

/* Á¦¸ñ */
.plan-title{
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #1F1F1F;
}

/* ¼­ºê Å¸ÀÌÆ² */
.plan-sub{
  font-size: 24px;
  font-weight: 700;
  color: #3A3A3A;
  margin-bottom: 20px;
}

/* ¾ÆÀÌÄÜ (Å«¹öÀü) */
.plan-icon{
  width: 80px;
  height: 60px;
  margin: 0 auto 24px;
  border-radius: 14px;
  border: 2px solid #111;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ¾ÆÀÌÄÜ ±×·ì (3°³Â¥¸®) */
.plan-icon-row{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 12px 0 24px;
}

.plan-icon-sm{
  min-width: 70px;
  height: 56px;
  border-radius: 14px;
  border: 2px solid #111;
  background: #fafafa;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* °¡°Ý */
.plan-price{
  font-size: 32px;
  font-weight: 900;
  color: #E60012; /* ´õ ¼±¸íÇÑ »¡°­ */
  margin-bottom: 6px;
}

.plan-price span{
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-right: 4px;
}

/* ÀÛÀº ¼³¸í */
.plan-small{
  font-size: 13px;
  color: #575757;
  margin-bottom: 6px;
}

/* ¼³¸í */
.plan-desc{
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}

/* ¹ÝÀÀÇü */
@media (max-width: 900px){
  .plan-wrap{
    flex-direction: column;
    max-width: 420px;
  }
}
.desc-red {
  color: #E60012;   /* ¼±¸íÇÑ »¡°£»ö */
  font-weight: 800; /* °­Á¶ */
  font-size: 14px;  /* »ìÂ¦ Å©°í º¸±âÁÁ°Ô */
}


/* ¿ä±ÝÁ¦ Ä«µå¿µ¿ª ³¡ */


/* ÇÏ´Ü »ó´ã¹Ù */

/* ÇÏ´Ü ¹Ù°¡ ³»¿ë °¡¸®Áö ¾Êµµ·Ï ¿©À¯ */
  body { padding-bottom: 70px; }

  #fixed-consult-bar {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #2563eb; /* ÆÄ¶õ ¹Ù */
    z-index: 999999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
    font-family: "Pretendard","Noto Sans KR",sans-serif;
  }

  #fixed-consult-bar .fixed-consult-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  /* ¿ÞÂÊ ¾ÆÀÌÄÜ/ÀüÈ­ */
  .fc-left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 190px;
  }

  .fc-icon {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  .fc-text .fc-label {
    font-size: 25px;
    color: #dbeafe;
  }

  .fc-text .fc-tel {
    font-size: 30px;
    font-weight: 700;
    color: #ffeb3b;
    line-height: 1.1;
  }

  /* Æû ÇÑ ÁÙ ·¹ÀÌ¾Æ¿ô */
  .fc-form {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
  }

  .fc-form input[type="text"],
  .fc-form input[type="tel"] {
    flex: 1;
    height: 40px;
    border-radius: 6px;
    border: none;
    padding: 0 12px;
    font-size: 14px;
    box-sizing: border-box;
  }

  .fc-form input::placeholder {
    color: #9ca3af;
  }

  .fc-agree {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #e5e7eb;
    white-space: nowrap;
  }

  .fc-agree input {
    margin-right: 4px;
  }

  .fc-form button {
    height: 40px;
    padding: 0 22px;
    border: none;
    border-radius: 6px;
    background: #0f172a; /* ÁøÇÑ ³²»ö ¹öÆ° */
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
  }

  .fc-form button:hover {
    opacity: 0.95;
  }

  /* ¸ð¹ÙÀÏ¿¡¼­ »ìÂ¦ Á¶Á¤ */
  @media (max-width: 768px) {
    #fixed-consult-bar .fixed-consult-inner {
      flex-direction: column;
      align-items: stretch;
      gap: 8px;
    }
    .fc-left {
      justify-content: center;
    }
    .fc-form {
      flex-wrap: wrap;
      justify-content: center;
    }
    .fc-form input[type="text"],
    .fc-form input[type="tel"] {
      flex: 1 1 45%;
      min-width: 120px;
    }
    .fc-agree {
      flex: 1 1 100%;
      justify-content: center;
    }
  }

  /* ÇÏ´Ü »ó´ã¹Ù ³¡ */

    /* ¿ä±ÝÇ¥ Æû ½ÃÀÛ  */
	.tv-title1{
  font-size: 30px;      /* Á¦¸ñ Å©°Ô */
  font-weight: 900;
  margin-bottom: 18px;
  color: #111827;
}

.tv-section{
  max-width: 1050px;
  margin: 50px auto;
  font-family: "Pretendard","Noto Sans KR",sans-serif;
}

.tv-title{
  font-size: 30px;      /* Á¦¸ñ Å©°Ô */
  font-weight: 900;
  margin-bottom: 18px;
  color: #111827;
  text-align: left;
}

/* Å×ÀÌºí ¹Ú½º */
.tv-table-wrap{
  border: 2px solid #2563eb;
  border-radius: 6px;
  overflow: hidden;
}

/* Å×ÀÌºí */
.tv-table{
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #ffffff;
}

.tv-table th,
.tv-table td{
  padding: 18px 12px;        /* Çà °£°Ý Å°¿ò */
  font-size: 20px;           /* ÀüÃ¼ ±ÛÀÚ Å©°Ô */
  text-align: center;
   font-weight: 450;   /* ±âº» µÎ²² */
}

/* Çì´õ */
.tv-table thead th{
  background: #2563eb;
  color: #ffffff;
  font-weight: 450;
  font-size: 25px;           /* Çì´õ ±ÛÀÚ Å©±â Å°¿ò */
  border-bottom: 1px solid #2563eb;
}

/* Çà ±¸ºÐ¼± */
.tv-table tbody td{
  border-top: 1px solid #e5e7eb;
 
}

/* »óÇ°¸í */
.tv-table tbody td:first-child{
  font-weight: 450;
  font-size: 20px;           /* »óÇ°¸í ´õ ¼±¸íÇÏ°Ô */
  color: #111827;
   
}

/* ¿ä±Ý */
.tv-price{
  color: #e60012;
  font-weight: 450;
  font-size: 30px;           /* ¿ä±Ý Å©°Ô */
}

/* ÇýÅÃ ¿µ¿ª */
.tv-benefit{
  line-height: 1.6;
  font-size: 16px;
}

.merge-col {
  text-align: center;        /* °¡·Î °¡¿îµ¥ */
  vertical-align: middle;    /* ¼¼·Î °¡¿îµ¥ */
  font-weight: 450;
  line-height: 1.5;
}
.price {
  color: #e60012;
  font-weight: 450;
  font-size: 18px;
}


.benefit-red{
  color: #e60012;
  font-weight: 450;
  font-size: 16px;
}

.benefit-blue{
  color: #2563eb;
  font-weight: 450;
  font-size: 16px;
}

.benefit-black{
  color: #000000;
  font-weight: 450;
  font-size: 16px;
}

/* ¾Æ·¡ Ãß°¡ ¾È³» */
.tv-note-wrap{
  margin-top: 14px;
  font-size: 15px;     /* ¾È³»¹®µµ Å©°Ô */
  color: #374151;
   text-align: left;
}

.tv-note{
  margin: 0 0 6px 0;
  font-size: 15px;
}

.tv-note-right{
  margin: 0;
  text-align: right;
  color: #4b5563;
  font-size: 14px;
}

.tv-img,
.tv-section{
  width: 70%;
  margin: 0 auto;
}

.tv-img{
  display: block;
  margin-bottom: 20px;   /* ÀÌ¹ÌÁö ¾Æ·¡ ¿©¹é */
}

/* ºÎ¸ð ¹Ú½º (Æø ÅëÀÏ) */
.tv-wrapper{
  max-width: 1500px;      /* ¡Ú ¿øÇÏ´Â Æø: 800~1100px ¾Æ¹«°Å³ª °¡´É */
  width: 100%;
  margin: 0 auto;         /* °¡¿îµ¥ Á¤·Ä */
}

/* ÀÌ¹ÌÁö Æø ¿ÏÀü ÅëÀÏ */
.tv-img{
  width: 85%;            /* ºÎ¸ð ¹Ú½º 900px ±âÁØ */
  display: block;
  margin-bottom: 20px;
}

/* Ç¥ ÀüÃ¼ Æø ¿ÏÀü ÅëÀÏ */
.tv-section{
  width: 100%;            /* ºÎ¸ð ¹Ú½º ±âÁØ */
}

/* Ç¥ ¾ÈÂÊ ¿ä¼ÒµéÀº ±âÁ¸ ½ºÅ¸ÀÏ ±×´ë·Î À¯ÁöÇØµµ OK */
  /* ¿ä±ÝÇ¥ Æû ³¡  */

