
/* ********** 기업군별 비교분석 ********** */
.corporate-wrap { position: relative; display: flex; }
.corporate-wrap .step-wrap { flex-basis: 55%; }
.corporate-wrap .result-wrap { flex-basis: 45%; border: 1px solid var(--line-color); }

.step-wrap.pc { display: flex; }
.step-wrap.pc .box { flex-basis: inherit; }
.step-wrap.pc .box .title { background: #000; padding: 8px 0; color: #fff; text-align: center; font-size: 1.4rem; }
.step-wrap.pc .box .title:not(:last-child) { border-right: 1px solid rgba(255, 255, 255, .50); }
.step-wrap.pc .box .list { border: 1px solid var(--line-color); border-right: 0; height: 500px; overflow-y: auto; }
.step-wrap.pc .box .list ul { padding: 5px 0; }
.step-wrap.pc .box .list ul li { padding: 3px 8px; }
.step-wrap.pc .box .list ul li .txt { color: #777; display: inline-block; cursor: pointer; padding: 5px 0; word-break: break-all; font-size: 1.3rem; }
.step-wrap.pc .box .list ul li .txt:hover { color: #000; }
.step-wrap.pc .box .list ul li.on .txt { color: #000; font-weight: 600; }
.step-wrap.pc .box .list ul li.on .txt { position: relative; }
.step-wrap.pc .box .list ul li.on .txt:after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; background: var(--theme-color); }

.step-wrap.mo { display: none; margin-bottom: 15px;}
.step-wrap.mo .row { display: block;/*  flex-wrap: wrap; align-items: center;  */}
.step-wrap.mo .row:not(:last-child) { margin-bottom: 10px; }
.step-wrap.mo .row .title { margin-bottom: 8px; font-weight: 600; font-size: 1.4rem; }
.step-wrap.mo .row .selectbox { width: 100%; }

.result-wrap { padding: 20px; }
.result-wrap .filter-wrap .selectbox { width: 25%; }
.result-wrap .filter-wrap .selectbox:not(:last-child) { margin-right: 5px; }
.result-wrap .toolbar { display: flex; justify-content: space-between; padding: 30px 0 15px; }
.result-wrap .toolbar .total { font-size: 1.3rem; font-weight: 300; }
.result-wrap .toolbar .total .num { font-weight: 600; }
.result-wrap .board-table { height: 401px; overflow-y: auto; }

@media (max-width: 1024px) {
  .corporate-wrap { display: block; }
  .step-wrap.pc .box .list { border-bottom: 0;}
  .step-wrap.pc .box .list:last-child { border-right: 1px solid var(--line-color); }
}

@media (max-width: 675px) {
  .step-wrap.pc { display: none; }
  .step-wrap.mo { display: block; }

  .result-wrap { background: #f5f5f5; border: 0; border-top: 4px solid var(--line-color); }
  .result-wrap .board-table { height: auto; overflow-x: auto;}
  .result-wrap .board-table table { min-width: 600px; }
  .result-wrap .board-table table td { background: #fff; }
  .result-wrap .filter-wrap .selectbox { width: 100%; }
  .result-wrap .filter-wrap .selectbox:not(:last-child) { margin-bottom: 10px; }
}