@charset "utf-8";
/************************************************************************************************************
                                          법률상담 - 방문상담안내
************************************************************************************************************/
.committee-wrapper {
  max-width: 1320px;
  margin: 0 auto;
}
.top-info {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 30px 20px 40px;
  border-bottom: 4px solid #0b4f8a;
}
.icon-area img {
  width: 150px;
}
.info-text {
  flex: 1;
}
.info-text p {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
}
.blue {
  color: #005bac;
  font-weight: 700;
}
.yellow {
  background: #000;
  color: #ffe600;
  padding: 2px 6px;
  font-weight: 700;
}
.notice {
  margin-top: 15px;
  color: #ff1684;
  font-size: 20px !important;
  font-weight: 500;
}
/* 하단 컨텐츠 */
.content-wrap {
  display: flex;
  gap: 30px;
  padding: 15px 20px;
}
.left-content {
  flex: 1;
}
.section-title {
  font-size: 28px;
  color: #0b4f8a;
  font-weight: 700;
  /*margin-bottom:25px;*/
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
.info-table {
  width: 100%;
}
.info-row {
  display: flex;
  border-bottom: 1px solid #eee;
}
.label {
  width: 180px;
  padding: 15px 15px;
  color: #0b4f8a;
  font-size: 22px;
  font-weight: 700;
  border-right: 1px solid #ccc;
}
.value {
  flex: 1;
  padding: 15px 25px;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 500;
}
.reserve-link {
  color: #f26522;
  text-decoration: none;
  font-weight: 700;
}
.reserve-link:hover {
  color: #005bac;
}
.right-image {
  width: 40%;
  padding-top: 55px;
}
.right-image img {
  width: 100%;
  display: block;
  border: 1px solid #ddd;
}
/* 모바일 */
@media (max-width:1024px) {
  .content-wrap {
    flex-direction: column;
  }
  .right-image {
    width: 100%;
  }
}
@media (max-width:768px) {
  .top-info {
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 20px;
  }
  .icon-area {
    text-align: center;
  }
  .icon-area img {
    width: 110px;
  }
  .info-text p {
    font-size: 16px;
    line-height: 1.7;
  }
  .section-title {
    font-size: 28px;
  }
  .info-row {
    flex-direction: column;
  }
  .label {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding: 15px;
    font-size: 18px;
  }
  .value {
    padding: 18px 15px;
    font-size: 16px;
  }
  .notice {
    font-size: 13px !important;
  }
  .right-image {
    padding-top: 5px;
  }
}