@charset "UTF-8";
/* index certificate 무한 루프 */
/* 원본용 */
/*
@keyframes slide01 {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
  }
  50.01% {
    transform: translateX(-200%);
  }
  100% {
    transform: translateX(-100%);
  }
}
*/
/* 복제용 */
/*
@keyframes slide02 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
*/
/* 원본용 */
@keyframes slide01 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100%);
  }
  50.01% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
/* 복제용 */
@keyframes slide02 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
/* 버튼 hover용 */
@keyframes pulse_kakao {
  0% {
    box-shadow: 0 0 0 0 #ffba33;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #7d573d;
  }
}
@keyframes pulse_green {
  0% {
    box-shadow: 0 0 0 0 #82a006;
  }
}
@keyframes pulse_red {
  0% {
    box-shadow: 0 0 0 0 #d65047;
  }
}
@keyframes pulse_yellow {
  0% {
    box-shadow: 0 0 0 0 #eeab00;
  }
}
/* --------------------- sec top start --------------------- */
.sec_top {
  background-image: url(../img/online_consultation_bg.jpg);
}

.top .consultation_btn {
  margin-left: 1.04vw;
  font-size: clamp(17px, 0.94vw, 18px);
  line-height: 1.22; /* 22px */
  font-weight: 600;
  background: #77513b;
  color: #ffffff;
  padding: clamp(15px, 0.99vw, 19px) 2.08vw;
}
.top .consultation_btn span {
  padding-left: 28px;
  position: relative;
}
.top .consultation_btn span::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../img/wirte_white_icon.png);
}
.top .consultation_btn:hover {
  box-shadow: 0 0 0 0.4em transparent;
  animation: pulse 1s;
}

/* --------------------- sec 1 start --------------------- */
.sec_1 .container .wrapper .consultation_list .list_item:first-child {
  border-top: 2px solid #444;
}
.sec_1 .container .wrapper .consultation_list .list_item .list_link {
  background: #f5f5f5;
  border-bottom: 1px solid #b8b8b8;
  grid-template-columns: 1fr 7fr 1fr 1.2fr 1.2fr;
  padding: clamp(22px, 1.46vw, 28px) 0;
  transition: 0.3s;
}
.sec_1 .container .wrapper .consultation_list .list_item .list_link p {
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: 1.2; /* 24px */
  font-weight: 400;
}
.sec_1 .container .wrapper .consultation_list .list_item .list_link .subject {
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-break: break-all;
}
.sec_1 .container .wrapper .consultation_list .list_item .list_link .state {
  font-weight: 600;
}
.sec_1 .container .wrapper .consultation_list .list_item .list_link .state.complete {
  color: #77513b;
}
.sec_1 .container .wrapper .consultation_list .list_item .list_link .state.wait {
  color: #999;
}
.sec_1 .container .wrapper .consultation_list .list_item .list_link:hover {
  background: #f0f0f0;
}

/* --------------------- RWD --------------------- */
@media (max-width: 1024px) {
  .sec_1 .container .wrapper .consultation_list .list_item .list_link {
    padding-left: 20px;
    padding-right: 20px;
    gap: 17px;
  }
}
@media (max-width: 720px) {
  .top .consultation_btn {
    margin-left: 0;
    width: 100%;
    font-size: clamp(15px, 3.89vw, 28px);
    line-height: 1.18; /* 33px */
    padding: clamp(15px, 4.17vw, 30px);
    text-align: center;
  }
  .top .consultation_btn span {
    padding-left: clamp(28px, 6.67vw, 48px);
  }
  .top .consultation_btn span::before {
    width: clamp(18px, 3.89vw, 28px);
    height: clamp(18px, 3.89vw, 28px);
    background-image: url(../img/wirte_white_icon_mo.png);
  }
  .sec_1 .container .wrapper .consultation_list .list_item {
    border-top: clamp(3px, 0.56vw, 4px) solid #444;
    border-bottom-width: 2px;
    margin-top: clamp(20px, 4.17vw, 30px);
  }
  .sec_1 .container .wrapper .consultation_list .list_item:first-child {
    border-top: clamp(3px, 0.56vw, 4px) solid #444;
    margin-top: 0;
  }
  .sec_1 .container .wrapper .consultation_list .list_item .list_link {
    padding: clamp(20px, 5.56vw, 40px);
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }
  .sec_1 .container .wrapper .consultation_list .list_item .list_link p {
    font-size: clamp(14px, 3.89vw, 28px);
    line-height: 1.18; /* 33px */
  }
  .sec_1 .container .wrapper .consultation_list .list_item .list_link .num {
    display: none;
  }
  .sec_1 .container .wrapper .consultation_list .list_item .list_link .subject {
    font-size: clamp(17px, 4.44vw, 32px);
    line-height: 1.19; /* 38px */
    margin-bottom: clamp(10px, 2.78vw, 20px);
    width: 100%;
  }
  .sec_1 .container .wrapper .consultation_list .list_item .list_link .name,
  .sec_1 .container .wrapper .consultation_list .list_item .list_link .date {
    position: relative;
    padding-right: clamp(16px, 5.56vw, 40px);
  }
  .sec_1 .container .wrapper .consultation_list .list_item .list_link .name::after,
  .sec_1 .container .wrapper .consultation_list .list_item .list_link .date::after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: clamp(8px, 2.78vw, 20px);
    width: 2px;
    height: clamp(14px, 3.89vw, 28px);
    content: "";
    background: #d9d9d9;
  }
  .sec_1 .container .wrapper .consultation_list .list_item .list_link:hover {
    background: #f5f5f5;
  }
}