@charset "UTF-8";
/* 리뉴얼 css */
.blind {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

.is-mobile {
  display: none !important;
}

.only-mobile {
  display: none;
}

.device-type-mobile .only-pc {
  display: none;
}

.device-type-mobile .only-mobile {
  display: block;
}

@media screen and (max-width: 1120px) {
  .is-mobile {
    display: block !important;
  }
  .is-pc {
    display: none !important;
  }
}
/* :hover underline animate */
a.underline > span {
  position: relative;
}

a.underline > span:before {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #222;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  content: "";
}

a.underline:hover > span:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* font color */
.fc-red {
  color: #f82514 !important;
}

.fc-purple {
  color: #6c31cd !important;
}

.fc-black {
  color: #000 !important;
}

.fc-dark {
  color: #333 !important;
}

.fc-gray {
  color: #999 !important;
}

.fc-gray50 {
  color: #666 !important;
}

.fc-silver {
  color: #bcc0ca !important;
}

.fc-white {
  color: #fff !important;
}

.fc-sky {
  color: #f5f5fb !important;
}

/* font size */
.fs13 {
  font-size: 13px !important;
}

.fs14 {
  font-size: 14px !important;
}

.fs15 {
  font-size: 15px !important;
}

.fs18 {
  font-size: 18px !important;
}

.fs24 {
  font-size: 24px !important;
}

/* font weight */
.fw-thin {
  font-weight: 100 !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-regular {
  font-weight: 400 !important;
}

.fw-mideum {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-black {
  font-weight: 900 !important;
}

/* margin pakage */
.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

@media screen and (max-width: 1120px) {
  .m-mt80 {
    margin-top: 40px !important;
  }
}
/* padding pakage */
.pl25 {
  padding-left: 25px !important;
}

/* text align */
.txt-lt {
  text-align: left;
}

.txt-rt {
  text-align: right;
}

.txt-cnt {
  text-align: center;
}

/* underline */
.underline {
  position: relative;
}

.underline:after {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background-color: #000;
  content: "";
}

/* 타이틀 */
.page-title {
  padding-bottom: 15px;
  border-bottom: 3px #000 solid;
}
.page-title.btn-with {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.page-title.btn-with .fc-silver {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.page-title.btn-with .fc-silver .btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.page-title.border-none {
  border-bottom: 0;
  padding-bottom: 0;
}
.page-title .btn-more {
  font-size: 14px;
}
.page-title .btn-more a {
  text-decoration: underline;
  font-weight: bold;
  font-size: 14px;
}
.page-title .h3-title {
  font-weight: 800;
  font-size: 40px;
}

@media (max-width: 1120px) {
  .page-title .h3-title {
    font-size: 28px;
  }
}
.page-title.no-line {
  border-bottom: 0;
}

.page-title .desc {
  display: inline-block;
  margin-left: 5px;
  font-size: 13px;
  color: #999;
  font-weight: 300;
}

.page-title .desc.big {
  display: block;
  margin-left: 0;
  font-size: 24px;
  color: #000;
}

.h1-title {
  display: inline-block;
  font-size: 28px;
  font-weight: 300;
}

.h2-title {
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
}

.h3-title {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
}

.h4-title {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
}

/* 태그 정렬 */
.align-area {
  overflow: hidden;
  margin-top: 80px;
}

.align-area .right-area {
  float: right;
}

.align-area .left-area {
  float: left;
}

.align-area .center-area {
  text-align: center;
}

@media screen and (max-width: 1120px) {
  .align-area {
    margin-top: 40px;
  }
}
/* text indent */
.txt-int10 {
  padding-left: 10px;
  text-indent: -10px;
}

.txt-int15 {
  padding-left: 15px;
  text-indent: -15px;
}

.txt-int20 {
  padding-left: 20px;
  text-indent: -20px;
}

.txt-big {
  margin-top: 50px;
  text-align: center;
  color: #f82514;
  font-size: 18px;
  font-weight: 500;
}

/* 버튼 */
.btn {
  display: inline-block;
  text-align: center;
  border-style: solid;
  border-width: 1px;
  color: #fff;
  border-radius: 2px;
}

.btn + .btn {
  margin-left: 5px;
}

@media screen and (max-width: 1120px) {
  .btn + .btn {
    margin-left: 0px;
    margin-top: 5px;
  }
}
.btn.full {
  display: block;
}

.btn.full + .btn.full {
  margin-left: 0;
  margin-top: 5px;
}

.btn.line {
  background-color: #fff !important;
}

.btn.nr {
  border-radius: 0;
}

.btn.xxxlg {
  min-width: 200px;
  height: 80px;
  line-height: 80px;
  padding: 0 40px;
  font-size: 20px;
}

.btn.xxlg {
  min-width: 160px;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  font-size: 18px;
}

.btn.xlg {
  min-width: 115px;
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  font-size: 14px;
}

.btn.lg {
  min-width: 95px;
  height: 37px;
  line-height: 37px;
  padding: 0 15px;
  font-size: 13px;
}

.btn.sm {
  height: 24px;
  line-height: 24px;
  padding: 0 10px;
  font-size: 13px;
}

.btn.wide {
  width: 40%;
}

.btn.red {
  background-color: #f82514;
  border-color: #f82514;
}

.btn.black {
  background-color: #000;
  border-color: #000;
}

.btn.gray90 {
  background-color: #333;
  border-color: #333;
}

.btn.gray70 {
  background-color: #5c5c5c;
  border-color: #5c5c5c;
}

.btn.gray50 {
  background-color: #848484;
  border-color: #848484;
}

.btn.gray30 {
  background-color: #b9b9b9;
  border-color: #b9b9b9;
}

.btn.gray10 {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
}

.btn.red90 {
  background-color: #ee2a24;
  border-color: #ee2a24;
}

.btn.red:hover {
  background-color: #f82514;
  border-color: #f82514;
}

.btn.white:hover {
  background-color: #f82514;
  border-color: #f82514;
}

.btn.black:hover {
  background-color: #000;
  border-color: #000;
}

.btn.gray90:hover {
  background-color: #333;
  border-color: #333;
}

.btn.gray70:hover {
  background-color: #5c5c5c;
  border-color: #5c5c5c;
}

.btn.gray50:hover {
  background-color: #f82514;
  border-color: #f82514;
}

.btn.gray30:hover {
  background-color: #b9b9b9;
  border-color: #b9b9b9;
}

.btn.gray10:hover {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
}

.btn.red.line {
  color: #f82514;
  border-color: #f82514;
}

.btn.black.line {
  color: #000;
  border-color: #000;
}

.btn.gray90.line {
  color: #333;
  border-color: #333;
}

.btn.gray70.line {
  color: #5c5c5c;
  border-color: #5c5c5c;
}

.btn.gray50.line {
  color: #848484;
  border-color: #848484;
}

.btn.gray30.line {
  color: #b9b9b9;
  border-color: #b9b9b9;
}

.btn.gray10.line {
  color: #e0e0e0;
  border-color: #e0e0e0;
}

.btn i.ico {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}

.btn i.ico.download {
  width: 13px;
  height: 13px;
  background-image: url("../images/ico_download.png");
}

.btn i.ico.alr {
  width: 28px;
  height: 5px;
  background-image: url("../images/bul_arrow_lr.png");
}

.badge {
  text-align: center;
  display: inline-block !important;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  padding: 2px 5px;
  border-radius: 10px;
}

.badge.top {
  display: block !important;
  margin: 5px 10px;
}

.badge.purple {
  background-color: #5c32cf;
}

.badge.red {
  background-color: #e74d58;
}

.badge.gray30 {
  background-color: #b9b9b9;
  border-color: #b9b9b9;
}

@media screen and (max-width: 1120px) {
  .badge.top {
    width: 40%;
    margin: 5px auto 20px;
  }
}
/* tooltip */
.tooltip {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  width: 175px;
  height: 30px;
  line-height: 30px;
  font-size: 13px;
  color: #333;
  cursor: pointer;
}

.tooltip:after {
  position: absolute;
  top: 7px;
  right: 0;
  width: 15px;
  height: 15px;
  background: #adadad url("../images/bul_arrow_sr.png") no-repeat 50% 50%;
  border-radius: 99em;
  content: "";
}

.tooltip.active {
  color: #fff;
  background: #333;
}

.tooltip.active:after {
  top: 30px;
  width: 0;
  height: 0;
  border-top: 5px #333 solid;
  border-left: 7px transparent solid;
  background: 0;
  border-radius: 0;
}

.tooltip-layer {
  display: none;
  position: absolute;
  top: 35px;
  right: 0;
  z-index: 10;
  width: 370px;
  height: 90px;
  padding: 16px 20px 20px;
  color: #666;
  font-size: 13px;
  font-weight: 300;
  background-color: #f5f5fa;
  border: 1px #e7e7e7 solid;
}

.tooltip.active .tooltip-layer {
  display: block;
}

/* Layout */
#container {
  position: relative;
  width: 100%;
  min-width: 1120px;
} /* joy0526 수정 */
#content {
  max-width: 1320px;
  margin: 24px auto 0;
  padding: 0 20px;
}

#content:after {
  overflow: hidden;
  display: block;
  clear: both;
  content: "";
}

.content-inner-inner {
  padding: 0 160px;
}

@media screen and (max-width: 1120px) {
  #container {
    min-width: auto;
  }
  #content {
    width: auto;
    margin: 25px 16px 0;
    padding: 0;
  }
  #content.full-layout {
    margin-left: 0;
    margin-right: 0;
  }
  .content-inner {
    padding: 0;
  }
  .content-inner-inner {
    padding: 0;
  }
}
/* mouse enter / hover - zoom effect */
.thumb img.crop {
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
}

a:hover .thumb img.crop {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

/* 게시판 상세 */
.view-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding-bottom: 16px;
  text-align: center;
  border-bottom: 1px #d1d1d1 solid;
}

.view-top .ctg dt,
.view-top .ctg dd {
  display: inline-block;
  vertical-align: middle;
}

.view-top .title {
  line-height: 1.25;
  font-weight: 800;
  font-size: 40px;
}

.view-top .share-button {
  position: absolute;
  bottom: 20px;
  right: 0;
}

.view-top .share-button button,
.view-top .share-list a {
  border: 1px #e0e0e0 solid;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.view-top .share-button button.active,
.view-top .share-button a:hover {
  background-color: #e0e0e0;
}

.view-top .share-button button {
  width: 40px;
  height: 40px;
  background-image: url("../images/ico_share.png");
}

.view-top .share-button button.active {
  background-image: url("../images/ico_share_on.png");
}

.view-top .share-button button.active + .share-list {
  display: block;
}

.view-top .share-list {
  display: none;
  position: absolute;
  right: 35px;
  top: 0;
  width: 200px;
}

.view-top .share-list a {
  float: left;
  width: 38px;
  height: 38px;
}

.view-top .share-list a + a {
  margin-left: -1px;
}

.view-top .share-list a.nb {
  background-image: url("../images/ico_share_nb.png");
}

.view-top .share-list a.kk {
  background-image: url("../images/ico_share_kk.png");
}

.view-top .share-list a.fb {
  background-image: url("../images/ico_share_fb.png");
}

.view-top .share-list a.tw {
  background-image: url("../images/ico_share_tw.png");
}

.view-top .share-list a.url {
  background-image: url("../images/ico_share_url.png");
}

.view-top .division-line {
  margin: 0 0.5rem;
}

.view-top .read-count {
  background-image: url("../images/icon_view.png");
  padding-left: 1.5rem;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto 0.8rem;
}

.view-top .bookmark {
  position: absolute;
  bottom: 20px;
  right: 50px;
  text-align: right;
}

.view-top .bookmark button {
  width: 40px;
  height: 40px;
  background-image: url("../images/ico_fa.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.view-top .bookmark button.active {
  background-image: url("../images/ico_fa_over.png");
}

.view-top .bookmark .toolbar {
  display: inline-block;
  background-color: #ef312a;
  color: #fff;
  vertical-align: bottom;
  padding: 3px 15px;
  margin-right: 10px;
  font-size: 11px;
  border-radius: 5px;
}

.view-top .bookmark .toolbar:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0px 0 10px 10px;
  border-color: transparent #ef312a;
  display: block;
  width: 0;
  z-index: 1;
  right: 47px;
  top: 8px;
}

.view-middle {
  padding: 56px 0 80px;
  color: #000;
}
.view-middle .view-section-inner {
  max-width: 1032px;
  margin: 0 auto;
  padding: 0 16px;
}
.view-middle .view-middle-title {
  margin-bottom: 32px;
  text-align: center;
}
.view-middle .view-middle-title .title {
  font-weight: 800;
  font-size: 32px;
}
.view-middle .view-middle-title .date-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 12px;
}
.view-middle .view-middle-title .date-area span {
  display: block;
  position: relative;
  font-size: 13px;
  color: #999;
}
.view-middle .view-middle-title .date-area .date {
  padding-right: 12px;
  margin-right: 12px;
}
.view-middle .view-middle-title .date-area .date:before {
  display: block;
  content: "";
  width: 1px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #ddd;
}
.view-middle .view-middle-title .date-area .read-count {
  padding-left: 20px;
  background: url("../images/icon_view.png") no-repeat left center;
  background-size: auto 11px;
}
.view-middle .view-detail-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
  margin-bottom: 77px;
}
.view-middle .view-detail-container * {
  word-break: keep-all;
}
.view-middle .view-detail-container .pdf-box {
  width: 720px;
  height: 524px;
  border: 1px solid #ddd;
}
.view-middle .view-detail-container .pdf-box iframe {
  width: 100%;
  height: 100%;
}
.view-middle .view-detail-container .info-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.view-middle .view-detail-container .info-header .color-category {
  line-height: 1.25;
  font-weight: 500;
  font-size: 16px;
}
.view-middle .view-detail-container .info-header .title {
  margin-top: 16px;
  line-height: 1.4;
  font-weight: 700;
  font-size: 28px;
}
.view-middle .view-detail-container .info-header .etc-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 16px;
}
.view-middle .view-detail-container .info-header .date {
  line-height: 1.23;
  font-weight: 700;
  font-size: 13px;
  color: #b2b2b2;
}
.view-middle .view-detail-container .info-header .count {
  padding-left: 24px;
  line-height: 1.23;
  font-weight: 700;
  font-size: 13px;
  background: url("../images/renewal_2024/icon/icon-view-gy-20x20.png") no-repeat 0 0;
  background-size: 20px 20px;
  background-position: 0 50%;
  color: #b2b2b2;
}
.view-middle .view-detail-container .info-type-list {
  padding: 16px 0;
  margin-top: 24px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}
.view-middle .view-detail-container .info-type-list .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
.view-middle .view-detail-container .info-type-list .list-item + .list-item {
  margin-top: 6px;
}
.view-middle .view-detail-container .info-type-list .list-item .type {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1.4;
  font-weight: 700;
  min-width: 70px;
  font-size: 16px;
}
.view-middle .view-detail-container .info-type-list .list-item .value {
  font-weight: 700;
  line-height: 1.4;
  font-size: 16px;
}
.view-middle .view-detail-container .info-type-list .list-item .origin {
  font-weight: 500;
  line-height: 1.4;
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
}
.view-middle .view-detail-container .info-type-list .list-item .sale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.view-middle .view-detail-container .info-type-list .list-item .sale .price {
  font-weight: 800;
}
.view-middle .view-detail-container .info-type-list .list-item .percent {
  font-weight: 700;
  line-height: 1.4;
  font-size: 16px;
  color: #ee2a24;
}
.view-middle .view-detail-container .info-type-list .list-item .price {
  font-size: 16px;
  line-height: 1.4;
}
.view-middle .view-detail-container .info-guide {
  margin-top: 16px;
}
.view-middle .view-detail-container .info-guide li {
  position: relative;
  padding-left: 12px;
  line-height: 1.4;
  font-weight: 500;
  font-size: 13px;
  color: #999;
}
.view-middle .view-detail-container .info-guide li a {
  text-decoration: underline;
  font-weight: 500;
  font-size: 13px;
  color: #999;
}
.view-middle .view-detail-container .info-guide li:before {
  display: block;
  content: "";
  width: 3px;
  height: 3px;
  position: absolute;
  top: 7px;
  left: 0;
  border-radius: 50%;
  background-color: #999;
}
.view-middle .view-detail-container .btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}
.view-middle .view-detail-container .btn-group .btn-wrap.half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.view-middle .view-detail-container .btn-group .btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 58px;
  border-radius: 4px;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  border: 1px solid transparent;
  color: #fff;
}
.view-middle .view-detail-container .btn-group .btn + .btn {
  margin-left: 0;
}
.view-middle .view-detail-container .btn-group .btn.btn-cart {
  color: #ee2a24;
  border-color: #ee2a24;
}
.view-middle .view-detail-container .btn-group .btn.btn-order {
  background-color: #ee2a24;
}
.view-middle .view-detail-container .btn-group .btn.btn-sign {
  background-color: #353535;
}
.view-middle .view-detail-container .btn-group .icon-tooltip {
  display: block;
  text-indent: -9999px;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  background: url("../images/renewal_2024/icon/icon-help-red-20x20.png") no-repeat 0 0;
  background-size: cover;
  border: 0;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1490196078);
}
.view-middle .view-detail-container .btn-group .icon-tooltip:hover + .sign-tooltip {
  display: block;
}
.view-middle .view-detail-container .btn-group .sign-tooltip {
  display: none;
  position: absolute;
  top: 52px;
  left: 50%;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  padding: 10px 16px;
  border-radius: 0 4px 4px 4px;
  border: 1px solid #dadada;
  background-color: #ebebeb;
  line-height: 1.4;
  font-weight: 600;
  font-size: 13px;
  color: #929292;
  white-space: nowrap;
  text-align: left;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1490196078);
}
.view-middle .view-detail-container .btn-group .sign-tooltip:before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  bottom: calc(100% - 14px);
  left: -1px;
  z-index: -1;
  border-bottom: 12px solid #ebebeb;
  border-top: 12px solid transparent;
  border-left: 12px solid #ebebeb;
  border-right: 12px solid transparent;
}
.view-middle .view-detail-container .pdf-guide-text {
  width: 100%;
  margin-top: 17px;
}
.view-middle .view-detail-container .pdf-guide-text .text {
  line-height: 1.4;
  font-weight: 300;
  font-size: 13px;
  color: #999;
}
.view-middle .view-detail-container .pdf-guide-text .full-mode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #666;
}
.view-middle .view-detail-container .pdf-guide-text .full-mode .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 22px;
  height: 15px;
  background: url("../images/renewal_2024/icon/icon-full-mode-22x15.png") no-repeat 0 0;
  background-size: cover;
}
.view-middle.hide .view-more-container {
  display: block;
}
.view-middle .view-container {
  overflow: hidden;
  position: relative;
}
.view-middle .view-more-container {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.view-middle .view-more-container:before {
  display: block;
  content: "";
  width: 100%;
  height: 380px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(22.43%, rgba(255, 255, 255, 0)), color-stop(84.35%, #ffffff));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 22.43%, #ffffff 84.35%);
}
.view-middle .view-more-container .text-area {
  background-color: #fff;
}
.view-middle .view-more-container .text {
  text-align: center;
  font-size: 22px;
}
.view-middle .view-more-container .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 456px;
  height: 80px;
  margin: 32px auto 0;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  border-radius: 4px;
  background-color: #ee2a24;
}

.view-middle p {
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
}

.view-middle .figure .figcaption {
  margin-top: 15px;
  text-align: center;
  color: #999;
  font-weight: 300;
}

.view-middle .figure-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 40px;
  padding: 40px;
  margin-top: 80px;
  background-color: #fbfbfd;
  border-top: 1px solid #e6e6e6;
}
.view-middle .figure-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: 50%;
}
.view-middle .figure-group .type {
  display: block;
  line-height: 1.24;
  font-weight: 800;
  font-size: 17px;
}
.view-middle .figure-group .value {
  display: block;
  line-height: 1.75;
  margin-top: 8px;
  font-size: 15px;
  color: #888;
}
.view-middle .figure-group .hash-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}
.view-middle .figure-group .hash-area .hash {
  border-radius: 2px;
  border: 1px solid #e0e0e0;
  padding: 4px 8px;
  line-height: 1.248;
  font-weight: 300;
  font-size: 14px;
}

.view-middle .hashtag {
  overflow: hidden;
  margin-top: 75px;
  margin-left: -5px;
}

.view-middle .hashtag a {
  float: left;
  margin-top: 2px;
  margin-bottom: 2px;
  margin-left: 4px;
  padding: 0 10px;
  height: 25px;
  line-height: 25px;
  border: 1px #e0e0e0 solid;
  border-radius: 2px;
  font-size: 13px;
}

.view-middle .hashtag a:before {
  display: inline-block;
  margin-right: 5px;
  content: "#";
}

.view-bottom {
  padding: 20px 80px;
  border-bottom: 1px #e7e7e7 solid;
}

.view-bottom .other-list {
  position: relative;
  padding-left: 140px;
}

.view-bottom .other-list h4 {
  position: absolute;
  top: 0;
  left: 0;
}

.view-bottom .other-list ul {
  overflow: hidden;
}

.view-bottom .other-list ul li {
  float: left;
  margin-left: 80px;
}

.view-bottom .other-list ul li .month,
.view-bottom .other-list ul li .date {
  display: block;
}

.view-bottom .other-list ul li .month {
  font-size: 20px;
  font-weight: 500;
}

.view-bottom .other-list ul li .month:after {
  display: inline-block;
  margin-left: 20px;
  width: 15px;
  height: 15px;
  background: #000 url("../images/bul_arrow_sr.png") no-repeat 50% 50%;
  border-radius: 99em;
  content: "";
}

.view-bottom .other-list ul li .date {
  font-size: 13px;
  color: #c5c5c5;
}

@media screen and (max-width: 1120px) {
  .view-top .title {
    font-size: 28px;
  }
  .view-top .share-button {
    bottom: 10px;
  }
  .view-top .share-button button {
    width: 30px;
    height: 30px;
    background-size: 80%;
  }
  .view-top .share-list {
    width: 160px;
    right: 30px;
  }
  .view-top .share-list a {
    width: 30px;
    height: 30px;
  }
  .view-top .bookmark {
    bottom: 10px;
    right: 35px;
  }
  .view-top .bookmark button {
    width: 30px;
    height: 30px;
    background-size: 80%;
  }
  .view-top .bookmark .toolbar {
    display: none;
  }
  .view-middle {
    padding: 35px 0 50px;
  }
  .view-middle .view-section-inner {
    padding: 0;
  }
  .view-middle .view-middle-title {
    margin-bottom: 24px;
  }
  .view-middle .view-middle-title .title {
    font-size: 24px;
  }
  .view-middle .view-middle-title .date-area {
    margin-top: 8px;
  }
  .view-middle .view-middle-title .date-area span {
    font-size: 12px;
  }
  .view-middle .view-detail-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
    margin-bottom: 42px;
  }
  .view-middle .view-detail-container .pdf-wrapper .text-area {
    margin-top: 12px;
  }
  .view-middle .view-detail-container .pdf-wrapper .text-area .text {
    font-size: 12px;
  }
  .view-middle .view-detail-container .pdf-wrapper .text-area .full-mode {
    gap: 6px;
    font-size: 12px;
  }
  .view-middle .view-detail-container .pdf-box {
    width: 100%;
    height: 600px;
  }
  .view-middle .view-detail-container .info-header .color-category {
    font-size: 16px;
  }
  .view-middle .view-detail-container .info-header .title {
    margin-top: 12px;
    font-size: 22px;
  }
  .view-middle .view-detail-container .info-header .etc-area {
    margin-top: 12px;
  }
  .view-middle .view-detail-container .info-header .date {
    font-size: 12px;
  }
  .view-middle .view-detail-container .info-type-list {
    padding: 16px 0;
    margin-top: 16px;
  }
  .view-middle .view-detail-container .info-type-list .list-item {
    gap: 12px;
  }
  .view-middle .view-detail-container .info-type-list .list-item + .list-item {
    margin-top: 6px;
  }
  .view-middle .view-detail-container .info-type-list .list-item .type,
  .view-middle .view-detail-container .info-type-list .list-item .value {
    font-size: 14px;
  }
  .view-middle .view-detail-container .info-type-list .list-item .type {
    min-width: 80px;
  }
  .view-middle .view-detail-container .info-guide {
    margin-top: 12px;
  }
  .view-middle .view-detail-container .info-guide li {
    font-size: 12px;
  }
  .view-middle .view-detail-container .info-guide li a {
    font-size: 12px;
  }
  .view-middle .view-detail-container .info-guide li:before {
    top: 6px;
  }
  .view-middle .view-detail-container .btn-group {
    gap: 12px;
    margin-top: 20px;
  }
  .view-middle .view-detail-container .btn-group .btn-wrap.half {
    gap: 12px;
  }
  .view-middle .view-detail-container .btn-group .btn {
    height: 42px;
    font-size: 14px;
  }
  .view-middle .view-detail-container .btn-group .btn + .btn {
    margin-top: 0;
  }
  .view-middle .view-detail-container .btn-group .icon-tooltip:hover + .sign-tooltip {
    display: block;
  }
  .view-middle .view-detail-container .btn-group .sign-tooltip {
    top: 42px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 10px 16px;
    font-size: 12px;
  }
  .view-middle .view-detail-container .btn-group .sign-tooltip:before {
    display: block;
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: calc(100% - 14px);
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    border-bottom: 12px solid #ebebeb;
    border-top: 12px solid transparent;
    border-left: 12px solid #ebebeb;
    border-right: 12px solid transparent;
  }
  .view-middle.hide .view-more-container {
    display: block;
  }
  .view-middle .view-more-container:before {
    height: 300px;
  }
  .view-middle .view-more-container .text {
    font-size: 18px;
  }
  .view-middle .view-more-container .btn {
    width: 100%;
    max-width: 300px;
    height: 60px;
    margin: 20px auto 0;
    font-size: 16px;
  }
  .view-middle .figure-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    padding: 20px;
    margin-top: 60px;
  }
  .view-middle .figure-group {
    gap: 24px;
    width: 100%;
  }
  .view-middle .figure-group .type {
    display: block;
    line-height: 1.24;
    font-weight: 800;
    font-size: 17px;
  }
  .view-middle .figure-group .value {
    display: block;
    line-height: 1.4;
    margin-top: 8px;
    font-size: 15px;
    color: #888;
  }
  .view-middle p {
    font-size: 15px;
  }
  .view-bottom {
    padding: 10px 15px;
  }
  .view-bottom .other-list {
    padding-left: 70px;
  }
  .view-bottom .other-list ul li {
    margin-left: 40px;
  }
}
/* 상세페이지 - 구매 */
.purchase-go {
  padding: 15px 0;
  text-align: center;
  color: #666;
  font-weight: 300;
  border-bottom: 1px #e7e7e7 solid;
}

.purchase-go strong {
  color: #000;
  font-weight: 700;
}

.purchase-go button {
  margin-left: 15px;
  width: 70px;
  height: 70px;
  color: #fff;
  background-color: #ee2a24;
  border-radius: 99em;
  border: 0;
}

.purchase-info {
  position: relative;
  padding: 50px 80px;
  border-top: 2px #000 solid;
  border-bottom: 1px #e7e7e7 solid;
  background-color: #f5f5fb;
}

.purchase-price,
.purchase-price strong {
  font-family: "Montserrat";
  font-size: 26px;
}

.purchase-price {
  font-weight: 400;
}

.purchase-notice {
  margin-top: 40px;
}

.purchase-notice ul li {
  position: relative;
  padding: 0 190px 0 70px;
}

.purchase-notice ul li + li {
  margin-top: 30px;
}

.purchase-notice ul li strong {
  position: absolute;
  top: 3px;
  left: 0;
  padding-top: 7px;
  width: 53px;
  height: 53px;
  text-align: center;
  line-height: 1.4;
  color: #333;
  font-weight: 300;
  border: 1px #d7d7da solid;
}

.purchase-notice ul li p {
  color: #666;
  font-weight: 300;
}

.purchase-notice .btn {
  margin-left: 5px;
}

.purchase-button {
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.purchase-button .btn {
  margin-bottom: 5px;
}

@media screen and (max-width: 1120px) {
  .purchase-go button {
    display: block;
    margin: 15px auto 0;
  }
  .purchase-info {
    padding: 25px 15px;
  }
  .purchase-notice {
    margin-top: 20px;
  }
  .purchase-notice ul li {
    padding: 0 0 0 70px;
  }
  .purchase-notice ul li + li {
    margin-top: 15px;
  }
  .purchase-notice .btn {
    margin-left: 5px;
  }
  .purchase-button {
    margin-top: 30px;
    text-align: center;
    position: static;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
  }
  .purchase-button br {
    display: none;
  }
  .purchase-button .btn {
    margin-bottom: 5px;
  }
}
/* form */
fieldset {
  border: 0;
}

input,
textarea {
  border: #dedede 1px solid;
}

input[type=text],
input[type=tel],
input[type=submit],
input[type=password],
input[type=file] {
  line-height: 60px;
  height: 60px;
  text-indent: 20px;
  padding: 0;
  margin: 0;
  vertical-align: middle;
  background: #f8f8fc;
  border-radius: 2px;
  border: #dedede 1px solid;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  ime-mode: inactive;
  font-size: 14px;
}

input:-moz-read-only {
  background-color: #f9f9f9;
}

input:read-only {
  background-color: #f9f9f9;
}

input[type=image] {
  border: none;
  background: none;
}

input.date {
  margin-right: 5px;
}

textarea {
  padding: 12px 20px;
  border-radius: 2px;
  margin: 0;
  font-size: 14px;
}

.label {
  display: inline-block;
  position: relative;
  padding-left: 25px;
}

.label .checkbox,
.label .radio {
  position: absolute;
  top: 0;
  left: 0;
  margin-right: 4px;
  margin-top: 0px;
  vertical-align: middle;
}

.checkbox,
.radio {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

.checkbox input,
.radio input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.checkbox input:checked,
.radio input:checked,
.checkbox input:focus,
.radio input:focus {
  outline: none !important;
}

.checkbox i:before,
.radio i:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #b6b6b6;
  border-radius: 100%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
}

.checkbox input + i:after,
.radio input + i:after {
  content: "";
  display: inline-block;
  position: absolute;
}

.checkbox input + i:after {
  width: 8px;
  height: 6px;
  top: 6px;
  left: 6px;
  border: 2px solid #fff;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.radio input + i:after {
  width: 8px;
  height: 8px;
  top: 6px;
  left: 6px;
  border-radius: 100%;
  background: #fff;
}

.checkbox input:checked + i:before,
.radio input:checked + i:before {
  background: #000;
}

.checkbox input:checked + i:after {
  border-color: #fff;
}

.radio input:checked + i:after {
  background: #fff;
}

.checkbox input:disabled + i:before,
.radio input:disabled + i:before,
.checkbox input[disabled] + i:before,
.radio input[disabled] + i:before,
.checkbox input.disabled + i:before,
.radio input.disabled + i:before {
  border-color: #dbdbdb;
  background: #dbdbdb;
}

.checkbox input:disabled + i:after,
.radio input:disabled + i:after,
.checkbox input[disabled] + i:after,
.radio input[disabled] + i:after,
.checkbox input.disabled + i:after,
.radio input.disabled + i:after {
  /*opacity:0.5;*/
}

.label.hover input + i:before,
label.hover input + i:before {
  border-color: #777;
}

.label:hover .checkbox input + i:before,
.label:hover .radio input + i:before {
  border-color: #aaa;
}

.checkbox input:focus + i:before,
.radio input:focus + i:before {
  border-color: #777 !important;
}

input.block,
textarea.block,
select.block {
  width: 100%;
}

/* 카테고리 컬러 - pakage */
/* 연구자료 */
.ctg.ctg-lab {
  color: #8ac0d5;
}

.ctg.ctg-lab-a {
  color: #04a387;
}

.ctg.ctg-lab-b {
  color: #57b43e;
}

.ctg.ctg-lab-c {
  color: #3395a9;
}

/* 칼럼 */
.ctg.ctg-col {
  color: #ce9b43;
}

.ctg.ctg-col-a {
  color: #923701;
}

.ctg.ctg-col-b {
  color: #8e8323;
}

.ctg.ctg-col-c {
  color: #ff6c00;
}

/* 아카이브 */
.ctg.ctg-arc {
  color: #8071b1;
}

.ctg.ctg-arc-a {
  color: #718db1;
}

.ctg.ctg-arc-b {
  color: #5459b0;
}

/* 공지사항 등 기타 */
.ctg.ctg-etc {
  color: #b688d4;
}

.ctg-lab .item .ctg {
  color: #8ac0d5;
}

.ctg-lab-a .item .ctg {
  color: #04a387;
}

.ctg-lab-b .item .ctg {
  color: #57b43e;
}

.ctg-lab-c .item .ctg {
  color: #3395a9;
}

.ctg-col .item .ctg {
  color: #ce9b43;
}

.ctg-col-a .item .ctg {
  color: #923701;
}

.ctg-col-b .item .ctg {
  color: #8e8323;
}

.ctg-col-c .item .ctg {
  color: #ff6c00;
}

.ctg-arc .item .ctg {
  color: #8071b1;
}

.ctg-arc-a .item .ctg {
  color: #718db1;
}

.ctg-arc-b .item .ctg {
  color: #5459b0;
}

.ctg-etc .item .ctg {
  color: #b688d4;
}

.ctg-lab .headline .item .ctg {
  background: #8ac0d5;
}

.ctg-lab-a .headline .item .ctg {
  background: #04a387;
}

.ctg-lab-b .headline .item .ctg {
  background: #57b43e;
}

.ctg-lab-c .headline .item .ctg {
  background: #3395a9;
}

.ctg-col .headline .item .ctg {
  background: #ce9b43;
}

.ctg-col-a .headline .item .ctg {
  background: #923701;
}

.ctg-col-b .headline .item .ctg {
  background: #8e8323;
}

.ctg-col-c .headline .item .ctg {
  background: #ff6c00;
}

.ctg-arc .headline .item .ctg {
  background: #8071b1;
}

.ctg-arc-a .headline .item .ctg {
  background: #718db1;
}

.ctg-arc-b .headline .item .ctg {
  background: #5459b0;
}

.ctg-etc .headline .item .ctg {
  background: #b688d4;
}

.ctg-lab .card .item > a:hover {
  background: #8ac0d5;
}

.ctg-lab-a .card .item > a:hover {
  background: #04a387;
}

.ctg-lab-b .card .item > a:hover {
  background: #57b43e;
}

.ctg-lab-c .card .item > a:hover {
  background: #3395a9;
}

.ctg-col .card .item > a:hover {
  background: #ce9b43;
}

.ctg-col-a .card .item > a:hover {
  background: #923701;
}

.ctg-col-b .card .item > a:hover {
  background: #8e8323;
}

.ctg-col-c .card .item > a:hover {
  background: #ff6c00;
}

.ctg-arc .card .item > a:hover {
  background: #8071b1;
}

.ctg-arc-a .card .item > a:hover {
  background: #718db1;
}

.ctg-arc-b .card .item > a:hover {
  background: #5459b0;
}

.ctg-etc .card .item > a:hover {
  background: #b688d4;
}

.my-list .item.ctg-lab .ctg {
  background: #8ac0d5;
}

.my-list .item.ctg-lab-a .ctg {
  background: #04a387;
}

.my-list .item.ctg-lab-b .ctg {
  background: #57b43e;
}

.my-list .item.ctg-lab-c .ctg {
  background: #3395a9;
}

.my-list .item.ctg-col .ctg {
  background: #ce9b43;
}

.my-list .item.ctg-col-a .ctg {
  background: #923701;
}

.my-list .item.ctg-col-b .ctg {
  background: #8e8323;
}

.my-list .item.ctg-col-c .ctg {
  background: #ff6c00;
}

.my-list .item.ctg-arc .ctg {
  background: #8071b1;
}

.my-list .item.ctg-arc-a .ctg {
  background: #718db1;
}

.my-list .item.ctg-arc-b .ctg {
  background: #5459b0;
}

.my-list .item.ctg-etc .ctg {
  background: #b688d4;
}

.main-key-visual .ctg.ctg-lab {
  background: #8ac0d5;
}

.main-key-visual .ctg.ctg-lab-a {
  background: #04a387;
}

.main-key-visual .ctg.ctg-lab-b {
  background: #57b43e;
}

.main-key-visual .ctg.ctg-lab-c {
  background: #3395a9;
}

.main-key-visual .ctg.ctg-col {
  background: #ce9b43;
}

.main-key-visual .ctg.ctg-col-a {
  background: #923701;
}

.main-key-visual .ctg.ctg-col-b {
  background: #8e8323;
}

.main-key-visual .ctg.ctg-col-c {
  background: #ff6c00;
}

.main-key-visual .ctg.ctg-arc {
  background: #8071b1;
}

.main-key-visual .ctg.ctg-arc-a {
  background: #718db1;
}

.main-key-visual .ctg.ctg-arc-b {
  background: #5459b0;
}

.main-key-visual .ctg.ctg-etc {
  background: #b688d4;
}

/* 메인 */
.main-search {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: -90px;
  height: 90px;
  background: rgba(0, 0, 0, 0.5);
}

.main-search .main-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-search .main-inner > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-search .main-inner > div + div {
  margin-left: 30px;
}

.main-search .main-inner > div:last-child {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}

.main-search .sort {
  position: relative;
}

.main-search .sort:before {
  position: absolute;
  top: 35px;
  left: 0;
  width: 33px;
  height: 22px;
  background: url("../images/ico_select_white.png") no-repeat 100% 50%;
  content: "";
}

.main-search .sort select {
  min-width: 185px;
  padding: 0 55px;
  height: 45px;
  font-size: 17px;
  color: #c0c0c0;
  border: 0;
  background: url("../images/bul_select_white.png") no-repeat 100% 50%;
}

.main-search .form {
  position: relative;
}

.main-search .form input {
  width: 100%;
  height: 45px;
  padding-right: 50px;
  border: 0;
  border-bottom: 2px #fff solid;
  background-color: transparent;
  font-size: 16px;
  color: #fff;
  line-height: 45px;
}

.main-search .form button {
  position: absolute;
  top: 22px;
  right: 0;
  width: 40px;
  height: 45px;
  border: 0;
  background: url("../images/ico_search_white_big.png") no-repeat 50% 50%;
}

@media screen and (max-width: 576px) {
  .main-search .form input {
    text-align: center;
  }
}
.main-news .list-lnb {
  margin-bottom: -15px;
  padding: 0;
  border: 0;
}

.main-news .list.img .item > a {
  padding-bottom: 0;
}

.main-news .list.img .item .thumb:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 10%, rgba(0, 0, 0, 0));
  content: "";
}

.main-news .list.img .item .ctg {
  position: absolute;
  top: 20px;
  left: 20px;
  margin-top: 0;
  font-size: 15px;
  font-weight: 700;
  color: #fff !important;
}

.main-news .list.img .item .date {
  display: none;
}

.main-news .hot-keyword {
  overflow: hidden;
  padding: 252px 0 0;
}

.main-news .hot-keyword .inner {
  overflow: hidden;
  position: absolute;
  top: 25px;
  bottom: 25px;
  left: 25px;
  right: 25px;
  padding: 0;
}

.main-news .hot-keyword strong {
  font-size: 15px;
  font-weight: 700;
}

.main-news .hot-keyword strong b {
  font-weight: 700;
}

.main-news .hot-keyword .hashtag {
  padding: 0;
  margin-top: 35px;
}

.main-recommend {
  margin-top: 80px;
}

.main-recommend ul {
  display: table;
  width: 100%;
  margin-top: 5px;
  padding-top: 20px;
  border-top: 2px #000 solid;
}

.main-recommend ul li {
  display: table-cell;
  width: 50%;
  padding: 0 40px;
  border-left: 1px #ccc solid;
}

.main-recommend ul li:first-child {
  padding-left: 0;
  border: 0;
}

.main-recommend ul li:right-child {
  padding-right: 0;
}

.main-recommend ul li a {
  display: block;
}

/* .main-recommend dl { padding-right: 180px; background-repeat: no-repeat; background-position: 100% 50%; }
.main-recommend ul li:first-child dl { background-image: url("../images/ico_data.png"); }
.main-recommend ul li:last-child dl { background-image: url("../images/ico_paper.png"); }

.main-recommend dl dt,
.main-recommend dl dd{ overflow: hidden; text-overflow: ellipsis; display: box; display: -webkit-box; display: -moz-box; display: -ms-box; box-orient: vertical; -webkit-box-orient: vertical; -moz-box-orient: vertical; -ms-box-orient: vertical; word-wrap: break-word; }
.main-recommend dl dt { font-size: 18px; font-weight: 700; height: 54px; line-clamp: 2; -webkit-line-clamp: 2; -moz-line-clamp: 2; -ms-line-clamp: 2; }
.main-recommend dl dd { margin-top: 10px; font-weight: 300; color: #666; height: 85px; line-clamp: 4; -webkit-line-clamp: 4; -moz-line-clamp: 4; -ms-line-clamp: 4; } */
.main-recommend .list.headline .item .thumb {
  width: 240px;
}

.main-recommend .list.headline .item .info {
  padding-left: 30px;
  width: calc(100% - 240px);
}

.main-recommend .list.headline .info .title,
.main-recommend .list.headline .info .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  -ms-box-orient: vertical;
  word-wrap: break-word;
}

.main-recommend .list.headline .info .title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  height: 54px;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
  -ms-line-clamp: 2;
}

.main-recommend .list.headline .info .desc {
  margin-top: 24px;
  font-weight: 300;
  color: #666;
  height: 65px;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -moz-line-clamp: 3;
  -ms-line-clamp: 3;
}

.main-partner {
  margin-top: 70px;
  padding: 50px 0;
  background-color: #fafafd;
}

.main-partner h3,
.main-partner .main-partner-list {
  display: inline-block;
  vertical-align: middle;
}

.main-partner h3 {
  width: 210px;
  font-size: 17px;
}

.main-partner h3 strong {
  font-weight: 400;
  font-size: 22px;
}

.main-partner .main-partner-list {
  width: 880px;
  padding: 0 45px;
}

.main-partner .main-partner-list a {
  cursor: auto;
}

.main-partner .main-partner-list img {
  width: 72px;
  height: 72px;
  max-width: 72px;
  max-height: 72px;
  border: 1px #f1f1f1 solid;
  vertical-align: top;
}

.main-partner .main-partner-list .owl-nav span {
  display: none;
}

.main-partner .main-partner-list .owl-nav button {
  position: absolute;
  top: 0;
  width: 35px;
  height: 72px;
  background-repeat: no-repeat;
  background-color: #fafafd;
}

.main-partner .main-partner-list .owl-nav .owl-prev {
  left: 0;
  background-image: url("../images/ico_prev.png");
  background-position: 0 50%;
}

.main-partner .main-partner-list .owl-nav .owl-next {
  right: 0;
  background-image: url("../images/ico_next.png");
  background-position: 100% 50%;
}

.main-partner .main-partner-list .owl-dots {
  display: none;
}

.main-banner {
  margin-top: 80px;
}

@media screen and (max-width: 1120px) {
  .main-inner {
    width: auto;
    padding: 0 15px;
  }
  .main-visual {
    height: auto;
  }
  .main-visual .item > a {
    display: block;
    width: 100%;
    height: 280px;
    padding: 40px 0;
    overflow: hidden;
  }
  .main-visual h3 {
    width: 100%;
    margin-top: 15px;
    font-size: 18px;
  }
  .main-visual h3 strong {
    font-size: 28px;
  }
  .main-visual p {
    width: 100%;
    margin-top: 25px;
    font-size: 13px;
  }
  .main-visual a .summary br {
    content: " ";
  }
  .main-visual a .summary br:after {
    content: " ";
  }
  .main-visual .hashtag {
    overflow: hidden;
    width: 100%;
    margin-top: 12px;
  }
  .main-visual .hashtag span {
    font-size: 14px;
  }
  .main-visual .owl-dots {
    position: static;
    width: auto;
    margin-top: 10px;
    margin-left: 0;
    text-align: center;
  }
  .main-visual .owl-dots .owl-dot {
    background-color: #cfcfcf;
  }
  .main-visual .owl-dots .owl-dot.active {
    background-color: #000;
  }
  .main-search {
    margin-top: 40px;
    height: auto;
    background: 0;
  }
  .main-search .main-inner {
    width: 100%;
  }
  .main-search .main-inner > div + div {
    margin-left: 0;
  }
  .main-search .sort {
    display: none !important;
  }
  .main-search .form input {
    border-bottom: 2px #333 solid;
    color: #000;
  }
  .main-search .form button {
    top: 0;
    width: 45px;
    background: #333 url("../images/ico_search_white.png") no-repeat 50% 50%;
  }
  .main-news .hot-keyword {
    position: relative;
    padding: 20px;
  }
  .main-news .hot-keyword .inner {
    position: static;
  }
  .main-news .hot-keyword .hashtag {
    margin-top: 0px;
  }
  .main-recommend {
    margin-top: 40px;
  }
  .main-recommend ul {
    display: block;
  }
  .main-recommend ul li {
    display: block;
    width: 100%;
    padding: 0 !important;
    border-left: 0 !important;
  }
  .main-recommend ul li + li {
    padding-top: 15px !important;
    margin-top: 15px;
    border-top: 1px #ccc solid;
  }
  .main-recommend .list.headline .item .thumb {
    float: left;
  }
  .main-recommend .list.headline .item .info {
    float: right;
  }
  /* .main-recommend dl { padding-right: 90px; } */
  .main-partner {
    margin-top: 35px;
    padding: 25px 0;
  }
  .main-partner h3,
  .main-partner .main-partner-list {
    display: block;
  }
  .main-partner h3 {
    width: auto;
  }
  .main-partner h3 strong {
    font-size: 17px;
  }
  .main-partner h3 br {
    display: none;
  }
  .main-partner .main-partner-list {
    width: auto;
    margin-top: 15px;
  }
  .main-partner .main-partner-list img {
    width: 65px;
    height: 65px;
    max-width: 65px;
    max-height: 65px;
  }
  .main-banner {
    margin-top: 40px;
  }
}
@media screen and (max-width: 576px) {
  .main-recommend .list.headline .item .thumb,
  .main-recommend .list.headline .item .info {
    float: none;
    width: 100%;
  }
  .main-recommend .list.headline .item .info {
    padding-top: 15px;
    padding-left: 0;
  }
  .main-recommend .list.headline .info .desc {
    margin-top: 10px;
  }
}
/* 탭 메뉴 */
.tab-menu {
  overflow: auto;
}

.tab-menu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-top: 40px;
}

.tab-menu > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 88px;
}

.tab-menu > ul > li + li {
  margin-left: -1px;
}

.tab-menu > ul > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  width: 100%;
  height: 60px;
  text-align: center;
  color: #adadad;
  font-size: 15px;
  font-weight: 300;
  border-style: solid;
  border-width: 1px;
  border-color: #e5e5e5 #e5e5e5 #000;
}
.tab-menu > ul > li > a .count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 10px;
  color: #fff;
  font-weight: 800;
  border-radius: 50%;
  background-color: #ee2a24;
}
@media (max-width: 1120px) {
  .tab-menu > ul > li > a {
    font-size: 13px;
  }
}

.tab-menu > ul > li.active > a {
  position: relative;
  font-weight: 400;
  color: #333;
  border-color: #000;
}

.tab-multi-menu {
  position: relative;
}

.tab-multi-menu .tab-multi-menu-multi-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tab-multi-menu .tab-multi-menu-multi-inner:before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  content: "";
}

.tab-multi-menu .tab-multi-menu-multi-inner:after {
  position: absolute;
  z-index: 99;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(204, 204, 204, 0)), to(rgb(204, 204, 204)));
  background-image: linear-gradient(to top, rgba(204, 204, 204, 0), rgb(204, 204, 204));
  opacity: 0.8;
  content: "";
}

.tab-multi-menu .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(33.33% + 1px);
  margin-right: -1px;
  margin-top: -1px;
}

.tab-multi-menu .item > a {
  display: block;
  width: 100%;
  height: 100px;
  line-height: 130px;
  text-align: center;
  color: #000;
  font-size: 16px;
  border: 1px #ccc solid;
}

.tab-multi-menu .item > a > span {
  display: inline-block;
}

.tab-multi-menu .item.active > a {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  border-color: #4c4c4c;
  background-color: #4c4c4c;
}

.tab-multi-content {
  display: none;
  padding: 70px;
  background-color: #f5f5fb;
}

.tab-multi-content.active {
  display: block;
}

@media screen and (max-width: 1120px) {
  .tab-multi-menu .item > a {
    position: relative;
    height: 80px;
    line-height: 100px;
    font-size: 13px;
  }
  .tab-multi-menu .item.active > a {
    font-size: 13px;
  }
  .tab-multi-menu .item > a > span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90%;
  }
  .tab-multi-content {
    padding: 35px 25px;
  }
}
/* 페이지 내 검색 영역 */
.sort-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
  padding: 25px 30px;
  background-color: #f9f9fb;
}

.sort-search > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sort-search > div + div {
  margin-left: 30px;
}

.sort-search > div:last-child {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}

.sort-search .sort {
  position: relative;
}

.sort-search .sort:before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 33px;
  height: 22px;
  background: url("../images/ico_select.png") no-repeat 100% 50%;
  content: "";
}

.sort-search .sort select {
  min-width: 225px;
  max-width: 225px;
  padding: 0 55px;
  height: 45px;
  font-size: 17px;
  color: #888;
  border: 0;
  border-bottom: 2px #dcdce1 solid;
  background: url("../images/bul_select.png") no-repeat 100% 50%;
}

.sort-search .form {
  position: relative;
}

.sort-search .form input {
  width: 100%;
  height: 40px;
  padding-right: 50px;
  line-height: 40px;
  border: 0;
  border-bottom: 2px #000 solid;
  background-color: transparent;
  outline: none;
}

.sort-search .form button {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: url("../images/ico_search_black.png") no-repeat 50% 50%;
}

@media screen and (max-width: 1120px) {
  .sort-search {
    margin-top: 40px;
    padding: 5px 15px 12px;
  }
  .sort-search > div + div {
    margin-left: 0;
  }
  .sort-search .sort {
    display: none;
  }
  .sort-search .form input {
    text-align: center;
  }
}
/* 리스트 */
.list-wrap .sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 4px;
}
.list-wrap .sub-title .text {
  font-size: 13px;
}
.list-wrap .sub-title .btn {
  margin-left: 12px;
}

.list-wrap .h4-title {
  margin-top: 50px;
}

.list-lnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin-top: 50px;
  padding: 20px 0;
  border-bottom: 1px #e7e7e7 solid;
}
.list-lnb .option-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.list-lnb .option-wrapper .sort + .option {
  margin-left: 20px;
}

.list-lnb .search-result {
  font-size: 14px;
  font-weight: 500;
}

.list-lnb .search-result strong {
  font-weight: 800;
  color: #ee2a24;
}

.list-lnb .sort select {
  min-width: 185px;
  padding: 0 55px 0 20px;
  height: 45px;
  font-size: 17px;
  border: 0;
  border-bottom: 2px #7f7f7f solid;
  background: url("../images/bul_select.gif") no-repeat center right 0;
  outline: none;
}

.list-lnb .option > button {
  float: left;
  width: 40px;
  height: 40px;
  border: 1px #e0e0e0 solid;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.list-lnb .option > button + button {
  margin-left: -1px;
}

.list-lnb .option button.opt-img {
  background-image: url("../images/ico_list_img_off.png");
}

.list-lnb .option button.opt-txt {
  background-image: url("../images/ico_list_txt_off.png");
}

.list-lnb .option button.opt-img.active {
  background-image: url("../images/ico_list_img_on.png");
}

.list-lnb .option button.opt-txt.active {
  background-image: url("../images/ico_list_txt_on.png");
}

.list {
  overflow: hidden;
}

.list .item {
  position: relative;
}

.list .item > a {
  position: relative;
  overflow: hidden;
  display: block;
}

.list .item .color-category {
  line-height: 1.24;
  font-size: 13px;
  font-weight: 500;
}

.list .item .date {
  line-height: 1.24;
  font-weight: 600;
  font-size: 13px;
  color: #c5c5c5;
}

.list .item .title,
.list .item .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  -ms-box-orient: vertical;
  word-wrap: break-word;
}

.list .item .thumb {
  position: relative;
  overflow: hidden;
}

.list .item .thumb img {
  width: 100%;
}

/*.list .item .thumb img { position: absolute; margin: auto; min-height: 100%; width: 100%; left: -100%; right: -100%; top: -100%; bottom: -100%;  }*/
.list .item .title {
  margin-top: 12px;
  line-height: 1.24;
  font-weight: 600;
  font-size: 22px;
}

.list .item .desc {
  margin-top: 8px;
  color: #666;
  line-height: 1.25;
  font-size: 15px;
  font-weight: 300;
}

.list .item .read-count {
  float: right;
  background: url("../images/icon_view.png") no-repeat left center;
  background-size: auto 0.8rem;
  padding-left: 1.5rem;
  font-size: 13px;
  font-family: "Montserrat";
  font-weight: 500;
  color: #c5c5c5;
}

.list .item .price-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-top: 12px;
}
.list .item .price-wrap .price {
  line-height: 1.24;
  font-weight: 800;
  font-size: 20px;
}

.list .item .hashtag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  overflow: hidden;
}

.list .item .hashtag a {
  display: block;
  padding: 0 10px;
  height: 23px;
  line-height: 23px;
  border: 1px #e0e0e0 solid;
  border-radius: 2px;
  font-size: 13px;
}

.list .item .hashtag a:before {
  display: inline-block;
  margin-right: 5px;
  content: "#";
}

.list.headline .item .thumb {
  float: left;
  width: 460px; /*height: 273px;*/
}

.list.headline .item .info {
  float: right;
  width: 630px;
}

.list.headline .item .ctg {
  display: inline-block;
  padding: 0 15px;
  height: 27px;
  line-height: 27px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  border-radius: 99em;
}

.list.headline .item .date {
  display: none;
}

.list.headline .item .title {
  font-size: 28px;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -moz-line-clamp: 1;
  -ms-line-clamp: 1;
}

.list.headline .item .desc {
  margin-top: 15px;
  height: 130px;
  display: -ms-box;
  line-clamp: 6;
  -webkit-line-clamp: 6;
  -moz-line-clamp: 6;
  -ms-line-clamp: 6;
}

.list.headline .item .hashtag {
  display: block;
  bottom: 0;
  width: 635px;
}

.list.headline .item .hashtag a {
  font-size: 14px;
}

.list.txt .item {
  position: relative;
  padding: 32px 0;
  border-bottom: 1px #e7e7e7 solid;
}
.list.txt .item .item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 60px;
}

.list.txt .item .thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 260px;
  height: 186px;
  border-radius: 8px;
}
.list.txt .item .thumb a {
  display: block;
}
.list.txt .item .thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.list.txt .item .info {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.list.txt .item .color-category {
  display: inline-block;
}

.list.txt .item .title {
  margin-top: 10px;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -moz-line-clamp: 1;
  -ms-line-clamp: 1;
}

.list.txt .item .desc {
  max-height: 42px;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
  -ms-line-clamp: 2;
}

.list.txt .item .date {
  display: block;
  margin-top: 18px;
}

.list.img {
  margin-left: -29px;
}

.list.img .item {
  float: left;
  margin-top: 30px;
  margin-left: 29px;
  width: 354px;
}

.list.img .item > a {
  padding-bottom: 30px;
}

.list.img .item .thumb {
  width: 354px; /*height: 210px;*/
}

.list.img .item .ctg,
.list.img .item .read-count {
  display: inline-block;
  margin-top: 15px;
  margin-bottom: -5px;
  margin-right: 0px;
}

.list.img .item .title {
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -moz-line-clamp: 1;
  -ms-line-clamp: 1;
}

.list.img .item .desc {
  height: 42px;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
  -ms-line-clamp: 2;
}

.list.img .item .desc .point,
.list.txt .item .desc .point {
  font-weight: bold;
  color: #e74d58;
}

.list.related {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
}

.list.related .item {
  width: calc(25% - 24px);
}
.list.related .item .thumb {
  position: relative;
  border-radius: 8px;
}
.list.related .item .thumb .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  text-align: center;
  line-height: 1.18;
  font-weight: 700;
  font-size: 11px;
  color: #fff;
  background-color: #f82514;
}
.list.related .item .thumb a {
  display: block;
}
.list.related .item .thumb .image {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  padding-bottom: 71.81%;
}
.list.related .item .info-wrapper {
  padding-top: 16px;
  min-height: 75px;
}
.list.related .item .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.list.related .item .title {
  margin-top: 5px;
  line-height: 1.25;
  font-weight: 600;
  font-size: 16px;
  display: block;
  display: -webkit-box;
  max-height: 2.8em;
  text-overflow: ellipsis;
  line-height: 1.4em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
}
.list.related .item .etc-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 24px;
}
.list.related .item .btn-cart {
  width: 40px;
  height: 40px;
  background: url("../images/renewal_2024/icon/icon-related-cart.png");
  background-size: cover;
  border: 0;
  text-indent: -9999px;
}

@media (max-width: 1120px) {
  .list.related {
    gap: 24px;
  }
  .list.related .item {
    width: calc(50% - 12px);
  }
  .list.related .item .info-wrapper {
    padding-top: 12px;
  }
  .list.related .item .title {
    font-size: 14px;
  }
  .list.related .item .etc-area {
    margin-top: 16px;
  }
}
.list.card {
  margin-left: -20px;
}

.list.card .item {
  float: left;
  margin-top: 30px;
  margin-left: 20px;
  width: 265px;
}

.list.card .item > a {
  padding: 30px 30px 50px;
  background: #f9f9fb;
}

.list.card .item .thumb {
  display: none;
}

.list.card .item .ctg {
  font-size: 15px;
}

.list.card .item .date {
  position: absolute;
  bottom: 20px;
  left: 30px;
}

.list.card .item .title {
  margin-top: 10px;
  height: 55px;
  font-size: 20px;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -moz-line-clamp: 2;
  -ms-line-clamp: 2;
}

.list.card .item .desc {
  display: none;
}

.list.card .item > a:hover .ctg,
.list.card .item > a:hover .title {
  color: #fff;
}

.list.table {
  margin-top: 20px;
  display: table;
  width: 100%;
  border-width: 2px 0 1px;
  border-color: #000;
  border-style: solid;
}

.list.table.qna {
  overflow: auto;
  width: 100%;
  min-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.list.table .row {
  display: table-row;
}

.list.table .row .cell {
  display: table-cell;
  padding: 24px 5px;
  font-size: 15px;
  font-weight: 600;
  vertical-align: middle;
  text-align: center;
}

.list.table .row.th .cell {
  border-bottom: 1px #000 solid;
}

.list.table .row.td .cell {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 14px;
  color: #999;
  border-bottom: 1px #e9e9e9 solid;
}

.list.table .row.td:last-child .cell {
  border: none;
}

.list.table .row.td .cell .coupon-number.bk {
  font-weight: bold;
  color: #000;
}

.list.table .row.td .cell.title {
  width: 65%;
  text-align: left;
}

.list.table .row.td .cell.title a {
  font-size: 15px;
  color: #000;
}

.list.notice {
  border-top-width: 4px;
}
.list.notice .row.fixed {
  background-color: #f4f4f4;
}
.list.notice .row.td .title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 600;
}
.list.notice .row.td .title .fix-badge {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 20px;
  border-radius: 100px;
  background-color: #ee2a24;
  color: #fff;
  font-size: 12px;
}

.tab-coupon-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
}
.tab-coupon-type .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  height: 48px;
  border: 1px solid #c0c0c0;
  background-color: #ededed;
  font-weight: 500;
  font-size: 14px;
}
.tab-coupon-type .item.active {
  background-color: #666666;
  border-color: #666;
  color: #fff;
}
.tab-coupon-type .item:last-child {
  border-left: 0;
}

@media screen and (max-width: 1120px) {
  .list-lnb {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .list-lnb .option-wrapper {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 6px;
  }
  .list-lnb .sort select {
    padding: 0 45px 0 10px;
    min-width: 130px;
    font-size: 15px;
  }
  .list-wrap .h4-title {
    margin-top: 25px;
  }
  .list .item .ctg {
    /*display:block !important*/
  }
  .list .item .title {
    font-size: 17px;
  }
  .list .item .desc {
    font-size: 14px;
  }
  .list .item .hashtag {
    width: auto;
    margin-left: -5px;
  }
  .list.headline .item .thumb {
    float: none;
    width: 100%; /*height: auto;padding-top: 59.35%;*/
  }
  .list.headline .item .info {
    float: none;
    width: auto;
  }
  .list.headline .item .ctg {
    margin-top: 20px;
    display: inline-block !important;
  }
  .list.headline .item .hashtag {
    position: static;
    display: block;
    width: auto;
    margin-top: 15px;
  }
  .list.txt .item {
    padding: 15px 0;
  }
  .list.txt .item .item-wrapper {
    gap: 16px;
  }
  .list.txt .item .title {
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }
  .list.txt .item .thumb {
    width: 128px;
    height: 92px;
  }
  .list.txt .item .info {
    width: calc(100% - 150px);
  }
  .list.txt .item .date {
    display: block !important;
  }
  .list.txt .item .read-count {
    padding-right: 10px;
    margin-right: 0px;
  }
  .list .item .price-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px;
  }
  .list .item .price-wrap .price {
    font-size: 16px;
  }
  .list.img {
    margin-left: 0;
  }
  .list.img .item {
    float: none;
    margin-left: 0;
    width: 100%;
  }
  .list.img .item .thumb {
    width: 100%; /*height: auto;padding-top: 59.35%;*/
  }
  .list.card {
    margin-left: -2%;
  }
  .list.card .item {
    float: none;
    margin-left: 0;
    width: 100%; /* margin-left: 2%; width: 48%; */
  }
  .qnaLists {
    overflow: auto;
  }
  .list.table .row.th,
  .list.table .row.td .cell:last-child {
    display: none;
  }
  .list.table.qna .row.td .cell:last-child {
    display: table-cell;
  }
  .list.table.qna .row.th {
    display: table-row;
  }
  .list.table.qna .row.th .cell {
    min-width: 5rem;
  }
  .list.table.qna .row.td .cell {
    min-width: 5rem;
  }
  .list.table .row.td .cell.title {
    width: 65%;
    text-align: left;
  }
  .pagnination a:first-child,
  .pagnination a:last-child {
    display: inline-block;
  }
}
@media (max-width: 600px) {
  .list.related {
    margin-left: 0;
  }
  .list.related .item {
    float: none;
    width: 100%;
    margin-left: 0;
  }
  .list.related .item + .item {
    margin-top: 20px;
  }
}
/* 장바구니 */
.cart-wrap.cart-page-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
}
.cart-wrap .align-area {
  margin-top: 32px;
}
.cart-wrap .align-area .btn {
  font-weight: 500;
  font-size: 16px;
  border-radius: 4px;
}

.cart-wrap > .left-area {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.cart-wrap > .right-area {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: sticky;
  top: 94px;
  width: 352px;
  max-height: calc(100vh - 110px);
  overflow: auto;
}
.cart-wrap > .right-area .btn-group .btn + .btn {
  margin-top: 8px;
}

.cart-list.membership ul li {
  border-top: 0 !important;
  border-bottom: 0 !important;
  padding: 0;
}

.cart-list.empty + .cart-package-list {
  border-top: 0;
}
.cart-list + .cart-package-list {
  border-top: 3px solid #000;
}
.cart-list li:last-child {
  border-bottom: 0;
}
.cart-list .empty-text {
  padding: 150px 0;
  text-align: center;
  font-size: 22px;
}
.cart-list.col-1 {
  border-top: 3px solid #000;
}

.cart-list ul li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 40px;
  width: 100%;
  border-bottom: 1px #f3f3f3 solid;
}

.cart-list ul li > span.cell {
  display: table-cell;
  vertical-align: middle;
}

.cart-list ul li > span.cell:first-child {
  width: 40px;
}

.cart-list ul li > span.cell:nth-child(2) {
  width: 490px;
}

.cart-list ul li > span.cell:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  vertical-align: bottom;
  width: 286px;
}

.cart-list ul li > span.button {
  position: absolute;
  top: 30px;
  right: 60px;
}

.cart-list ul li .title {
  font-size: 22px;
  font-weight: 700;
}

.cart-list ul li .title .color-category {
  display: block;
  font-weight: 500;
  font-size: 14px;
}

.cart-list ul li .price {
  display: block;
  font-size: 22px;
  font-weight: 300;
  text-align: right;
}

.cart-list ul li .price strong {
  font-weight: 700;
}

.cart-list ul li .delete {
  display: block;
}

.cart-list ul li .delete button {
  display: block;
  width: 16px;
  height: 18px;
  background: url("../images/ico_delete.png") no-repeat 0 0;
  background-size: cover;
  border: 0;
}

.cart-list ul li .price-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 0;
}

.cart-list ul li .origin {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
  font-weight: 400;
}

@media (max-width: 1120px) {
  .cart-list .empty-text {
    padding: 80px 0;
    font-size: 18px;
  }
  .cart-list ul li .title {
    font-size: 16px;
  }
  .cart-list ul li .price {
    font-size: 16px;
  }
  .cart-list ul li .price-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 0;
  }
}
.cart-list.col-1 ul li > span.cell:first-child {
  width: 70%;
}
@media (max-width: 500px) {
  .cart-list.col-1 ul li > span.cell:first-child {
    width: 56%;
  }
}

.cart-list-container {
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
}

.cart-package-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 30px 40px;
}
.cart-package-list + .cart-package-list {
  border-top: 1px solid #ddd;
}
.cart-package-list .icon-check {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  margin-top: 5px;
}
.cart-package-list .list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 0;
      -ms-flex: 0;
          flex: 0;
}
.cart-package-list .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cart-package-list .list-item + .list-item {
  margin-top: 40px;
}
.cart-package-list .list-item .title {
  width: 490px;
  font-weight: 700;
  font-size: 22px;
}
.cart-package-list .list-item .title .color-category {
  font-weight: 500;
  font-size: 14px;
}
.cart-package-list .list-item .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 185px;
  font-weight: 300;
  font-size: 22px;
}
.cart-package-list .list-item .price strong {
  font-weight: 700;
}
.cart-package-list .list-item .price-box {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 246px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 0;
}
.cart-package-list .list-item .price-box .price {
  width: auto;
}
.cart-package-list .list-item .origin {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.5;
  font-weight: 400;
}
.cart-package-list .icon-delete {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 28px;
  padding-left: 24px;
}
.cart-package-list .icon-delete button {
  display: block;
  width: 16px;
  height: 18px;
  background: url("../images/ico_delete.png") no-repeat 0 0;
  background-size: cover;
  border: 0;
}
@media (max-width: 1120px) {
  .cart-package-list {
    padding: 15px;
  }
  .cart-package-list .icon-check {
    width: 8.5%;
  }
  .cart-package-list .list-wrapper {
    width: 80%;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .cart-package-list .list-item {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cart-package-list .list-item + .list-item {
    margin-top: 20px;
  }
  .cart-package-list .list-item .title {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 58.5%;
    font-size: 16px;
  }
  .cart-package-list .list-item .price {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 40%;
    font-size: 16px;
  }
  .cart-package-list .list-item .price-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 32%;
    gap: 0;
  }
  .cart-package-list .icon-delete {
    min-width: 40px;
    margin-top: 20px;
  }
}

.cart-list + .align-area {
  margin-top: 40px;
}
.cart-list + .align-area .package-text {
  margin-bottom: 8px;
  font-size: 13px;
  text-align: center;
  color: #f82514;
}

.product-info {
  position: relative;
  margin-bottom: -1px;
  padding: 50px 0;
  border-top: 3px #000 solid;
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.3;
}

.product-info strong {
  font-size: 30px;
  font-weight: 400;
}

.payment-kind > dl {
  position: relative;
  padding: 30px 0 30px 100px;
  border-bottom: 1px #000 solid;
}

.payment-kind > dl > dt {
  position: absolute;
  top: 30px;
  left: 0;
  font-size: 16px;
  font-weight: 500;
}

.payment-kind > dl > dd {
  position: relative;
  padding-left: 40px;
  font-size: 16px;
  font-weight: 300;
}

.payment-kind > dl > dd > .radio {
  position: absolute;
  top: 0;
  left: 0;
}

.payment-kind > dl > dd > .alarm {
  margin-top: 15px;
  padding: 20px;
}

.cart-wrap > .right-area .agree {
  position: relative;
  margin: 10px 0 30px;
  padding-left: 25px;
  color: #999;
  font-weight: 300;
}

.cart-wrap > .right-area .agree .checkbox {
  position: absolute;
  top: 0;
  left: 0;
}

.purchase-info-box {
  padding: 32px 40px;
  border-top: 3px solid #000;
  background-color: #f4f4f4;
}
.purchase-info-box .sum {
  text-align: center;
}
.purchase-info-box .sum h4 {
  line-height: 1.4;
  font-weight: 600;
  font-size: 16px;
}
.purchase-info-box .sum .price {
  margin-top: 8px;
  line-height: 1.4;
  font-weight: 900;
  font-size: 40px;
}
.purchase-info-box .benefit-list {
  padding: 24px 18px;
  margin-top: 24px;
  background-color: #fff;
  border-top: 1px solid #ccc;
}
.purchase-info-box .benefit-list .title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
  color: #565656;
}
.purchase-info-box .benefit-list li {
  padding-left: 12px;
  position: relative;
  line-height: 1.4;
  font-size: 13px;
}
.purchase-info-box .benefit-list li:before {
  display: block;
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #565656;
}
.purchase-info-box .benefit-list li a {
  text-decoration: underline;
}
.purchase-info-box .tip {
  margin-top: 16px;
  margin-right: -7px;
  margin-left: -7px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  color: #ee2a24;
}
.purchase-info-box .tip.bold {
  font-weight: 600;
  font-size: 15px;
}
.purchase-info-box .detail-payment .title {
  margin-bottom: 16px;
  line-height: 1.24;
  font-weight: 800;
  font-size: 18px;
}
.purchase-info-box .detail-payment .detail-list {
  padding: 20px 0;
  border-top: 1px solid #b9b9b9;
  border-bottom: 1px solid #b9b9b9;
}
.purchase-info-box .detail-payment .detail-list .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
.purchase-info-box .detail-payment .detail-list .list-item + .list-item {
  margin-top: 12px;
}
.purchase-info-box .detail-payment .detail-list .list-item .type,
.purchase-info-box .detail-payment .detail-list .list-item .value {
  line-height: 1.24;
  font-weight: 600;
  font-size: 14px;
}
.purchase-info-box .detail-payment .detail-list .list-item .type {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.purchase-info-box .detail-payment .total-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.purchase-info-box .detail-payment .total-price .text {
  font-weight: 800;
  font-size: 16px;
}
.purchase-info-box .detail-payment .total-price .value {
  font-weight: 900;
  font-size: 26px;
}

@media (max-width: 1120px) {
  .purchase-info-box {
    padding: 24px;
    border-top: 0;
  }
  .purchase-info-box .sum h4 {
    font-size: 14px;
  }
  .purchase-info-box .sum .price {
    font-size: 32px;
  }
  .purchase-info-box .benefit-list {
    padding: 16px 12px;
    margin-top: 24px;
  }
  .purchase-info-box .benefit-list .title {
    font-size: 14px;
  }
  .purchase-info-box .benefit-list li {
    padding-left: 10px;
    font-size: 12px;
  }
  .purchase-info-box .tip {
    margin-top: 16px;
    margin-right: -7px;
    margin-left: -7px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: #ee2a24;
  }
}
.calc {
  padding: 30px 20px;
}

.calc dt {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}

.calc dd {
  position: relative;
  text-align: right;
}

.calc dd em {
  position: absolute;
  top: 0;
  left: 0;
  color: #666;
  font-weight: 300;
}

.calc dd .price {
  font-size: 16px;
  font-weight: 300;
}

.calc dd .price b {
  font-family: "Montserrat";
  font-weight: 500;
}

.calc dd.last {
  margin-top: 15px;
  padding-top: 15px;
  font-size: 32px;
  border-top: 1px #7f7f7f solid;
}

.calc dd.last strong {
  color: #ee2a24;
  font-family: "Montserrat";
  font-weight: 700;
}

.member-benefit {
  padding: 40px 0;
  border-bottom: 1px #000 solid;
}

.member-benefit dl {
  position: relative; /* padding-left: 185px; */
}

.member-benefit dl dt {
  position: absolute;
  top: 20px;
  left: 0; /* font-size: 18px; */
  font-size: 0;
  font-weight: 300;
}

.member-benefit dl dt strong {
  /*font-size: 22px; */
  font-size: 0;
  font-weight: 400;
}

.member-benefit dl dd {
  position: relative;
  display: table;
  width: 100%;
  padding: 20px 20px 20px 115px;
  min-height: 115px;
  border-bottom: 1px #f3f3f3 solid;
  font-weight: 300;
  font-size: 18px;
}

.member-benefit dl dd:last-child {
  border-bottom: 0;
}

.member-benefit dl dd p {
  display: table-cell;
  vertical-align: middle;
  font-weight: 300;
}

.member-benefit dl dd .ex {
  display: block;
  margin-top: 5px;
  color: #999;
  font-size: 13px;
  font-weight: 300;
  text-indent: -20px;
  padding-left: 20px;
}

@media screen and (max-width: 1120px) {
  .member-benefit dl dd .ex {
    text-indent: 0px;
    padding-left: 0px;
  }
}
.member-benefit dl dd:before {
  position: absolute;
  top: 20px;
  left: 0;
  width: 75px;
  height: 75px;
  background-color: #f8f8fc;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-radius: 99em;
  content: "";
}

.member-benefit dl dd.icoYear:before {
  background-image: url("../images/ico_year.png");
}

.member-benefit dl dd.icoFree:before {
  background-image: url("../images/ico_free.png");
}

.member-benefit dl dd.icoBook:before {
  background-image: url("../images/ico_book.png");
}

.member-benefit dl dd.icoIssue:before {
  background-image: url("../images/ico_issue.png");
}

.member-benefit dl dd.icoDiscount:before {
  background-image: url("../images/ico_discount.png");
}

.member-benefit dl dd.ico01:before {
  background-image: url("../images/ico_01.png");
}

.member-benefit dl dd.ico02:before {
  background-image: url("../images/ico_02.png");
}

.member-benefit dl dd.ico03:before {
  background-image: url("../images/ico_03.png");
}

.member-benefit dl dd.ico04:before {
  background-image: url("../images/ico_04.png");
}

.member-benefit dl dd.ico05:before {
  background-image: url("../images/ico_05.png");
}

.member-benefit dl dd.ico06:before {
  background-image: url("../images/ico_06.png");
}

.member-benefit dl dd.ico07:before {
  background-image: url("../images/ico_07.png");
}

.report-tbl-wrap .tit {
  display: inline-block;
  padding: 5px 10px;
  margin-top: 50px;
  font-size: 16px;
  color: #fff;
  background-color: #6c31cd;
  border-radius: 2px;
}

.report-tbl-wrap .hr {
  margin-top: 50px;
  display: block;
  border-top: 2px dashed #6c31cd;
}

.report-tbl + .report-tbl {
  margin-top: 35px;
}

.report-tbl .w1 {
  width: 21%;
}

.report-tbl .w2 {
  width: 11%;
}

.report-tbl .w3 {
  width: 13%;
}

.report-tbl .w4 {
  width: 45%;
}

.report-tbl .w5 {
  width: 10%;
}

.report-tbl {
  table-layout: fixed;
  width: 100%;
}
.report-tbl.border-none tr {
  border: 0;
}
.report-tbl.border-none td,
.report-tbl.border-none th {
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}
.report-tbl.border-none td.border-none,
.report-tbl.border-none th.border-none {
  border: none;
}
.report-tbl.border-none td.border-right,
.report-tbl.border-none th.border-right {
  border-right: 2px solid #ddd;
}

.report-tbl tr {
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}

.report-tbl th {
  padding: 10px 0;
  font-size: 17px;
  color: #999;
  background-color: #ebebeb;
  border-left: 2px solid #ddd;
  vertical-align: middle;
}
.report-tbl th.bg-none {
  color: #000;
  font-weight: 400;
  background-color: #fff;
  font-size: 15px;
}

.report-tbl td {
  position: relative;
  padding: 10px 15px;
  font-size: 15px;
  border-left: 2px solid #ddd;
  vertical-align: middle;
}
.report-tbl td.border-none {
  border: none;
}

.report-tbl th:first-child,
.report-tbl td:first-child {
  border-left: 0;
}

.report-tbl .em {
  font-size: 20px;
  text-align: center;
  vertical-align: middle;
}

.report-tip-tbl tr:first-child td:first-child {
  border-right: 2px solid #ddd;
}

.report-tbl th.is-border,
.report-tbl td.is-border {
  border-left: 2px solid #ddd;
}

.report-tip-tbl .w1 {
  width: 29%;
}

.report-tip-tbl .w2 {
  width: 35%;
}

.report-tip-tbl .w3 {
  width: 15%;
}

.report-tip-tbl .w4 {
  width: 15%;
}

.report-tip-tbl {
  color: #666;
  background-color: #ebebeb;
}

.report-tip-tbl td {
  font-size: 16px;
}

.report-tip-tbl .em {
  font-size: 17px;
  text-align: left;
  vertical-align: top;
}

.report-tip-tbl .em small {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 15px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.report-txt-box {
  padding-top: 35px;
  color: #6c31cd;
}

.report-txt-box * {
  display: block;
  margin-top: 5px;
}

.report-txt-box strong {
  font-size: 16px;
}

.report-txt-box p {
  padding-left: 10px;
  font-size: 16px;
}

@media screen and (max-width: 1120px) {
  .cart-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
  }
  .cart-wrap > .left-area {
    width: 100%;
  }
  .cart-wrap > .right-area {
    width: 100%;
  }
  .cart-wrap > .right-area .btn-group .btn {
    height: 50px;
    line-height: 50px;
  }
  .cart-wrap > .right-area .mobile-btn {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }
  .cart-wrap > .right-area .mobile-btn .btn {
    margin-top: 0;
  }
  .cart-list ul li {
    padding: 15px;
  }
  .cart-list ul li .delete {
    margin-top: 0px;
  }
  .cart-list ul li > span.cell:first-child {
    width: 8.5%;
  }
  .cart-list ul li > span.cell:nth-child(2) {
    width: 51.5%;
  }
  .cart-list ul li > span.cell:nth-child(3) {
    width: 40%;
    vertical-align: middle;
  }
  .cart-list ul li > span.cell:nth-child(4) {
    width: 12%;
  }
  .cart-list ul li > span.button {
    top: 15px;
    right: 15px;
  }
  .cart-list + .align-area {
    margin-top: 20px;
  }
  .product-info {
    position: relative;
    margin-bottom: -1px;
    padding: 50px 0;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.1;
    border-top: 2px #000 solid;
    text-align: center;
  }
  .product-info strong {
    font-size: 25px;
    font-weight: 400;
  }
  .product-info small {
    font-size: 18px;
  }
  .payment-kind > dl {
    position: relative;
    padding: 15px;
  }
  .payment-kind > dl > dt {
    position: static;
  }
  .payment-kind > dl > dd {
    margin-top: 15px;
  }
  .member-benefit {
    padding: 15px;
  }
  .member-benefit dl {
    padding-left: 0;
  }
  .member-benefit dl dt {
    position: static;
  }
  .member-benefit dl dt strong {
    font-size: 18px;
    font-weight: 400;
  }
  .member-benefit dl dt br {
    display: none;
  }
  .report-tbl-wrap .tit {
    font-size: 14px;
  }
  .report-tbl th.bg-none {
    font-size: 13px;
  }
  .report-tbl th,
  .report-tbl td,
  .report-tbl .em {
    font-size: 13px;
  }
  .report-tbl th,
  .report-tbl td {
    word-break: break-all;
  }
  .report-tbl td {
    padding: 10px;
  }
  .report-tip-tbl .em small {
    padding: 10px;
  }
  .report-txt-box strong {
    font-size: 15px;
  }
  .report-txt-box p {
    font-size: 13px;
  }
}
/* 제공 정보 - 박스 */
.alarm {
  padding: 30px 20px;
  background: #f8f8fc;
}

.alarm dl dt {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 300;
}

.alarm dl dt strong {
  display: inline-block;
  margin-right: 15px;
  padding: 0 10px;
  height: 30px;
  line-height: 28px;
  color: #333;
  font-size: 14px;
  font-weight: 300;
  border: 1px #cccccd solid;
}

.alarm dl dd {
  position: relative;
  margin-top: 5px;
  padding-left: 10px;
  color: #666;
  font-size: 14px;
  font-weight: 300;
}

.alarm dl dd:before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 99em;
  background-color: #666;
  content: "";
}

/* 마이페이지 */
.my-list .inner {
  overflow: hidden;
  margin-left: -53px;
}

.my-list .item {
  float: left;
  width: 200px;
  margin-left: 53px;
  margin-top: 40px;
}

.my-list .item a {
  position: relative;
  display: block;
  padding-top: 97px;
}

.my-list .item .ctg {
  position: absolute;
  top: 0;
  left: 0;
  padding: 25px 30px;
  height: 97px;
  width: 100%;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-align: left;
}

.my-list .item .ctg .ico-download {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 27px;
  height: 27px;
  background: rgba(0, 0, 0, 0.2) url("../images/ico_download.png") no-repeat 50% 50%;
  border-radius: 2px;
}

.my-list .item .info {
  text-align: center;
}

.my-list .item .title {
  margin-top: 5px;
  font-weight: 300;
  color: #333;
}

.my-list .item .date {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 13px;
  color: #c5c5c5;
}

@media (max-width: 1120px) {
  .my-list-ctg-lab .list {
    overflow: visible;
  }
}
.my-list-ctg-lab .util-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-top: 4px;
  margin-left: -16px;
  margin-right: -16px;
  padding: 8px 16px;
  background-color: #f4f4f4;
}
.my-list-ctg-lab .util-area.bookmark {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 12px;
  margin-bottom: 17px;
  background-color: transparent;
}
.my-list-ctg-lab .util-area.bookmark .button {
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.my-list-ctg-lab .util-area.bookmark .empty {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 128px;
}
.my-list-ctg-lab .util-area.bookmark .btn-cancel,
.my-list-ctg-lab .util-area.bookmark .btnDownload {
  min-width: auto !important;
  width: calc(50% - 4px) !important;
  padding: 0 5px !important;
}
.my-list-ctg-lab .util-area .button {
  padding-top: 0 !important;
}
.my-list-ctg-lab .util-area .btnDownload {
  font-size: 14px !important;
}

.my-list-ctg-lab .list.txt .item::after {
  content: "";
  display: block;
  clear: both;
}

.my-list-ctg-lab .list.txt .item:nth-child(even) {
  background-color: #fff;
}

.my-list-ctg-lab .list.txt .item .ctg {
  color: #04a387;
}

.my-list-ctg-lab .list.txt .item .title {
  margin-top: 8px;
}

.my-list-ctg-lab .list.txt .item .info {
  width: 660px;
  position: relative;
}

.my-list-ctg-lab .my-buy-info {
  padding-top: 10px;
}

.my-list-ctg-lab .my-buy-info li {
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 700;
}

.my-list-ctg-lab .my-buy-info .label {
  padding-left: 0;
  width: 70px;
  color: #666;
}

.my-list-ctg-lab .list.txt .button {
  position: absolute;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.my-list-ctg-lab .list.txt .button .btnDownload,
.my-list-ctg-lab .list.txt .button .btn-view,
.my-list-ctg-lab .list.txt .button .btn-cancel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 128px;
  height: 40px;
  margin: 0;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 1120px) {
  .my-list-ctg-lab .list.txt .button .btnDownload,
  .my-list-ctg-lab .list.txt .button .btn-view,
  .my-list-ctg-lab .list.txt .button .btn-cancel {
    height: 38px;
    font-size: 13px;
  }
}
.my-list-ctg-lab .list.txt .button .btnDownload,
.my-list-ctg-lab .list.txt .button .btn-view {
  border-color: #ee2a24;
  background-color: #ee2a24;
}
.my-list-ctg-lab .list.txt .button .btnDownload .download,
.my-list-ctg-lab .list.txt .button .btn-view .download {
  margin-left: 15px;
}
.my-list-ctg-lab .list.txt .button .btnDownload .view,
.my-list-ctg-lab .list.txt .button .btn-view .view {
  width: 20px;
  height: 20px;
  margin-left: 15px;
  background: url("../images/renewal_2024/icon/icon-eye-w-20x20.png") no-repeat 0 0;
  background-size: cover;
}
.my-list-ctg-lab .list.txt .button .btn-cancel {
  border-color: #848484;
  background-color: #848484;
}

@media screen and (max-width: 1120px) {
  .my-list .inner {
    margin-left: -2%;
  }
  .my-list .item {
    width: 48%;
    margin-left: 2%;
  }
  .my-list-ctg-lab .list.txt .item .info {
    width: calc(100% - 150px);
  }
  .my-list-ctg-lab .list.txt .button {
    padding-top: 25px;
    position: static;
  }
  .my-list-ctg-lab .list.txt .button .btn-view {
    gap: 8px;
    width: 120px;
    height: 40px;
    font-size: 14px;
  }
}
/* 마이페이지 - 구매목록 */
.purchase-list {
  margin-top: 50px;
  border-top: 1px #f3f3f3 solid;
}

.purchase-list .row {
  border-bottom: 1px #f3f3f3 solid;
}

.purchase-list .row .top {
  position: relative;
  padding: 20px 60px;
}

.purchase-list .row .top .num,
.purchase-list .row .top .info {
  display: inline-block;
  vertical-align: middle;
}

.purchase-list .row .top .num {
  font-size: 13px;
  font-weight: 300;
}

.purchase-list .row .top .num strong {
  display: block;
  font-size: 16px;
  font-weight: 300;
}

.purchase-list .row .top .info {
  margin-left: 60px;
}

.purchase-list .row .top .info dt {
  font-size: 18px;
  font-weight: 300;
}

.purchase-list .row .top .info dd {
  display: inline-block;
  margin-top: 10px;
  color: #999;
  font-size: 14px;
  font-weight: 300;
}

.purchase-list .row .top .info dt + dd {
  margin-right: 25px;
}

.purchase-list .row .top .info dd + dd {
  margin-right: 25px;
}

.purchase-list .row .top .button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding-left: 12px;
  width: 98px;
  height: 37px;
  color: #fff;
  text-align: left;
  background-color: #b4b4b4;
  border: 0;
  cursor: pointer;
}

.purchase-list .row .top .button:after {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -7px;
  padding: 4px;
  border-style: solid;
  border-color: #fff;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  content: "";
}

.purchase-list .row .top.active .button:after {
  margin-top: -2px;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
}

.purchase-list .row .top.active + .bottom {
  display: block;
}

.purchase-list .row .bottom {
  display: none;
  padding: 0 50px;
  background-color: #fafafc;
  border-top: 1px #f3f3f3 solid;
}

.purchase-list .row .bottom .summary {
  padding: 30px 0;
  border-bottom: 1px #e1e1e2 solid;
}

.purchase-list .row .bottom .summary ul {
  position: relative;
  margin-top: -5px;
  min-height: 60px;
}

.purchase-list .row .bottom .summary ul li {
  position: relative;
  padding-left: 10px;
  margin-top: 5px;
  color: #666;
  font-size: 16px;
  font-weight: 300;
}

.purchase-list .row .bottom .summary ul li:before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: #252526;
  border-radius: 99em;
  content: "";
}

.purchase-list .row .bottom .summary ul li.price {
  position: absolute;
  top: 0;
  right: 0;
  padding-left: 0;
  margin-top: 0;
  color: #000;
  font-size: 13px;
  text-align: right;
}

.purchase-list .row .bottom .summary ul li.price:before {
  display: none;
}

.purchase-list .row .bottom .summary ul li.price strong {
  display: block;
  font-size: 24px;
  font-weight: 600;
  font-family: "Montserrat";
}

.purchase-list .row .bottom .summary ul li.price strong em {
  font-weight: 400;
  font-family: "Noto Sans KR";
}

.purchase-list .row .bottom .notice {
  position: relative;
  min-height: 50px;
  padding: 25px 0 25px 140px;
  color: #ee2a24;
  font-size: 13px;
}

.purchase-list .row .bottom .notice strong {
  position: absolute;
  top: 20px;
  left: 0;
  width: 120px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 1120px) {
  .purchase-list {
    margin-top: 25px;
  }
  .purchase-list .row .top {
    padding: 20px;
  }
  .purchase-list .row .top .num,
  .purchase-list .row .top .info {
    display: block;
  }
  .purchase-list .row .top .num strong {
    display: inline-block;
    margin-left: 5px;
  }
  .purchase-list .row .top .info {
    margin-left: 0;
    margin-top: 10px;
  }
  .purchase-list .row .top .info dt + dd {
    margin-right: 15px;
  }
  .purchase-list .row .top .info dd + dd {
    margin-right: 15px;
  }
  .purchase-list .row .top .button {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 15px;
  }
  .purchase-list .row .bottom {
    padding: 0 20px;
  }
  .purchase-list .row .bottom .summary {
    padding: 20px 0;
  }
  .purchase-list .row .bottom .summary ul li.price {
    position: static;
    text-align: left;
  }
  .purchase-list .row .bottom .notice {
    min-height: 50px;
    padding: 25px 0 25px 0;
  }
  .purchase-list .row .bottom .notice strong {
    position: static;
    display: block;
    margin-bottom: 10px;
    height: 40px;
    line-height: 40px;
  }
}
/* 컨텐츠 레이아웃 - 테이블(분할) */
.sec-table {
  display: table;
  width: 100%;
  margin-top: 20px;
}

.sec-table .cell {
  display: table-cell;
  vertical-align: top;
  border-right: 1px #f8f8fc solid;
}

.sec-table .cell:last-child {
  border-right: 0;
}

.sec-table .cell .agree-box {
  margin-top: 0;
}

.sec-table.col-2 .cell {
  padding: 0 40px;
  width: 50%;
}

.sec-table.col-2 .cell:first-child {
  padding-left: 0;
}

.sec-table.col-2 .cell:last-child {
  padding-right: 0;
}

@media screen and (max-width: 1120px) {
  .sec-table {
    display: block;
    margin-top: 0;
  }
  .sec-table .cell {
    display: block;
    margin-top: 25px;
    width: 100% !important;
    padding: 0 !important;
    border-right: 0;
  }
  .sec-table .cell + .cell {
    padding-top: 25px !important;
    border-top: 1px #f8f8fc solid;
  }
  .sec-table .cell .agree-box {
    margin-top: 0;
  }
}
/* QA 리스트 */
.qa-list .row {
  cursor: pointer;
  border-bottom: 1px #e7e7e7 solid;
}

.qa-list .row .q {
  position: relative;
  padding: 30px;
  font-weight: 300;
  color: #666;
}

.qa-list .row .q:after {
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -5px;
  padding: 3px;
  border-style: solid;
  border-color: #999;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  content: "";
}

.qa-list .row .q strong {
  display: inline-block;
  margin-right: 20px;
  font-family: "Montserrat";
  font-weight: 500;
  color: #999;
}

.qa-list .row .a {
  display: none;
  padding: 30px 60px;
  font-weight: 300;
  color: #666;
  border-top: 1px #eeeef0 solid;
}

.qa-list .row.active {
  background-color: #f4f4f4;
}

.qa-list .row.active .q {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.qa-list .row.active .q:after {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
}

.qa-list .row.active .q strong {
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.qa-list .row.active .a {
  display: block;
}

@media (max-width: 720px) {
  .qa-list .row .q {
    padding: 20px 30px;
  }
  .qa-list .row .q:after {
    right: 20px;
  }
  .qa-list .row .q strong {
    margin-right: 12px;
  }
  .qa-list .row .a {
    padding: 20px 30px;
  }
}
/* 검색 */
.search-result-txt {
  margin-top: 40px;
  text-align: center;
  font-size: 24px;
  font-weight: 300;
}

.search-result-txt strong {
  font-size: 36px;
  font-weight: 700;
}

.search-result-txt em {
  font-family: "Montserrat";
  color: #ee2a24;
  font-weight: 400;
}

.ctg-result ul {
  text-align: center;
}

.ctg-result ul li {
  display: inline;
  font-size: 18px;
  font-weight: 500;
}

.ctg-result ul li + li {
  margin-left: 18px;
}

.ctg-result ul li + li:before {
  display: inline-block;
  margin-right: 20px;
  width: 2px;
  height: 2px;
  background-color: #c6c6c6;
  vertical-align: middle;
  content: "";
}

.ctg-result strong {
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 500;
}

.ctg-result + .option {
  top: 15px;
}

.search-no {
  display: table;
  width: 100%;
  margin-top: 50px;
}

.search-no > div {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
}

.search-no .banner {
  padding: 40px 0;
  text-align: center;
  background: url("../images/banner_search.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.search-no .banner em,
.search-no .banner strong {
  display: block;
  color: #fff;
  font-weight: 400;
}

.search-no .banner em {
  font-size: 15px;
}

.search-no .banner strong {
  font-size: 20px;
}

.search-no .banner .button {
  margin-top: 20px;
}

.search-no .banner .button a {
  margin-top: 10px;
  width: 150px;
}

@media screen and (max-width: 1120px) {
  .ctg-result ul {
    text-align: left;
  }
  .ctg-result ul li {
    font-size: 14px;
  }
  .ctg-result ul li + li {
    margin-left: 3px;
  }
  .ctg-result ul li + li:before {
    margin-right: 5px;
  }
  .ctg-result strong {
    font-size: 14px;
  }
  .ctg-result + .option {
    top: 10px;
  }
  .search-no {
    display: block;
    margin-top: 25px;
  }
  .search-no > div {
    display: block;
    width: 100%;
  }
  .search-no .banner {
    padding: 40px 0;
    text-align: center;
    background: url("../images/banner_search.jpg") no-repeat 50% 50%;
    background-size: cover;
  }
  .search-no .banner em,
  .search-no .banner strong {
    display: block;
    color: #fff;
    font-weight: 400;
  }
  .search-no .banner em {
    font-size: 15px;
  }
  .search-no .banner strong {
    font-size: 20px;
  }
  .search-no .banner br {
    display: none;
  }
  .search-no .banner .button {
    margin: 15px 50px 0;
  }
  .search-no .banner .button a {
    display: block;
    margin-top: 10px;
    width: auto;
  }
  .search-no .banner .button a + a {
    margin-left: 0;
  }
}
/* 배너 */
.full-banner {
  display: table;
  width: 100%;
  height: 130px;
  background: url("../images/banner_1120.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.full-banner em,
.full-banner .button {
  display: table-cell;
  width: 50%;
  padding: 0 60px;
  text-align: right;
  vertical-align: middle;
}

.full-banner em {
  font-weight: 400;
  font-size: 15px;
  color: #fff;
}

.full-banner .button a {
  min-width: 150px;
}

@media screen and (max-width: 1120px) {
  .full-banner {
    display: block;
    width: 100%;
    height: auto;
    padding: 30px;
  }
  .full-banner em,
  .full-banner .button {
    display: block;
    width: auto;
    padding: 0;
    text-align: center;
  }
  .full-banner em {
    font-weight: 400;
    font-size: 15px;
    color: #fff;
  }
  .full-banner .button {
    margin: 15px 15px 0;
  }
  .full-banner .button a {
    display: block;
    margin-top: 10px;
    width: auto;
  }
  .full-banner .button a + a {
    margin-left: 0;
  }
}
/* 핫키워드 */
.hot-keyword {
  padding: 40px 0;
  background-color: #fafafd;
  text-align: center;
}

.hot-keyword em,
.hot-keyword strong {
  display: block;
  font-weight: 400;
}

.hot-keyword em {
  font-size: 15px;
}

.hot-keyword strong {
  font-size: 20px;
}

.hot-keyword strong b {
  font-weight: 500;
  color: #ee2a24;
}

.hot-keyword .hashtag {
  margin-top: 20px;
  margin-left: -5px;
  padding: 0 120px;
}

.hot-keyword .hashtag a {
  display: inline-block;
  margin-top: 10px;
  margin-left: 5px;
  padding: 0 10px;
  height: 27px;
  line-height: 27px;
  border: 1px #b2b2b2 solid;
  border-radius: 2px;
  background-color: #fff;
}

.hot-keyword .hashtag a:before {
  display: inline-block;
  margin-right: 5px;
  color: #ee2a24;
  font-weight: 700;
  content: "#";
}

@media screen and (max-width: 1120px) {
  .hot-keyword .hashtag {
    padding: 0 40px;
  }
}
/* 로그인 */
.sign-form {
  margin: 80px auto 0;
  width: 440px;
  text-align: center;
}
.sign-form.for-popup {
  margin: 0 auto;
  width: 100%;
  max-width: 440px;
}
.sign-form.for-popup .form {
  margin-top: 24px;
}
@media screen and (max-width: 406px) {
  .sign-form.for-popup .center-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 406px) {
  .sign-form.for-popup .btn {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.sign-form .h4-title {
  font-size: 20px;
  font-weight: 300;
}

.sign-form .message {
  font-size: 18px;
  font-weight: 300;
  color: #333;
}

.sign-form .message-box {
  margin-top: 30px;
  padding: 30px;
  font-size: 16px;
  font-weight: 300;
  background: #f8f8fc;
  border-radius: 2px;
  border: #dedede 1px solid;
}

.sign-form .message-box b {
  font-weight: 500;
}

.sign-form .form {
  margin-top: 50px;
}

.sign-form .form input + input {
  margin-top: 10px;
}

.sign-form .form button {
  display: block;
  width: 100%;
  margin-top: 10px;
}

.sign-form .form .sns-sign a {
  display: block;
  height: 58px;
  line-height: 58px;
  border: 1px #c6c6c6 solid;
  border-radius: 2px;
}

.sign-form .form .sns-sign a + a {
  margin-top: 10px;
}

.sign-form .form .sns-sign a span {
  display: inline-block;
  min-width: 200px;
  font-size: 16px;
  font-weight: 300;
  text-align: left;
}

.sign-form .form .sns-sign a span b {
  font-weight: 400;
}

.sign-form .form .sns-sign .ico {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  width: 45px;
  height: 58px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  vertical-align: middle;
}

.sign-form .form .sns-sign .fb .ico {
  background-image: url("../images/ico_fb_color.png");
}

.sign-form .form .sns-sign .nv .ico {
  background-image: url("../images/ico_nv_color.png");
}

.sign-form .form .sns-sign .gg .ico {
  background-image: url("../images/ico_gg_color.png");
}

.sign-form .form .sns-sign .kk .ico {
  background-image: url("../images/ico_kk_color.png");
}

.sign-form .form .sns-sign .ico:after {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 1px;
  height: 15px;
  background-color: #c6c6c6;
  vertical-align: middle;
  content: "";
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.sec-table .cell .sign-form {
  margin: 0;
  width: 100%;
}

.sec-table .cell .sign-form .form {
  margin-top: 30px;
}

.sec-table .cell .sign-form .form button {
  margin-top: 20px;
}

.sec-table .cell .sign-form .align-area {
  margin-top: 20px;
}

@media screen and (max-width: 1120px) {
  .sign-form {
    margin: 40px auto 0;
    width: auto;
  }
}
/* 회원가입 */
.join-step {
  margin-top: 30px;
}

.join-step ul {
  text-align: center;
}

.join-step ul li {
  display: inline-block;
}

.join-step ul li:before {
  display: inline-block;
  margin: 0 30px;
  width: 7px;
  height: 13px;
  background: url("../images/bul_arrow_mr.png") no-repeat 0 0;
  content: "";
}

.join-step ul li:first-child::before {
  display: none;
}

.join-step ul li span {
  display: inline-block;
  width: 98px;
  height: 98px;
  line-height: 98px;
  border: 1px #eaeaea solid;
  border-radius: 99em;
  background-color: #f5f5fa;
  font-size: 15px;
  font-weight: 500;
}

.join-step ul li.current span {
  background-color: #000;
  border-color: #000;
  color: #fff;
}

@media screen and (max-width: 1120px) {
  .join-step ul li:before {
    margin: 0 15px;
  }
}
/* 완료 페이지 - 메시지 */
.complete {
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px #e5e5e5 solid;
}

.complete .message {
  font-size: 30px;
}

.complete .message strong {
  font-weight: 400;
}

.complete .term {
  margin-top: 40px;
}

.complete .term dt {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 15px;
  background-color: #dcdcdc;
  border-radius: 99em;
}

.complete .term dd {
  margin-top: 20px;
  font-size: 15px;
}

.complete .term dd strong {
  font-size: 20px;
}

/* 에러페이지 */
.error {
  margin-top: 40px;
  padding-top: 60px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 50% 0;
}

.error.e404 {
  padding-top: 120px;
  background-image: url("../images/ico_404.png");
}

.error em {
  display: block;
  font-size: 18px;
  font-weight: 400;
}

.error strong {
  display: block;
  font-size: 24px;
  font-weight: 300;
}

.error strong span {
  font-weight: 300;
}

.error p {
  margin-top: 35px;
  color: #666;
  font-weight: 300;
}

/* 입력 폼 페이지 */
.input-form {
  display: table;
  width: 100%;
}

.input-form .row {
  display: table;
  width: 100%;
}

.input-form .row + .row {
  margin-top: 30px;
}

.input-form .th,
.input-form .td {
  display: table-cell;
}

.input-form .th {
  width: 85px;
  vertical-align: top;
}

.input-form .th span {
  display: block;
  font-weight: 500;
  font-size: 13px;
}

.input-form .th .star {
  position: relative;
  padding-left: 10px;
}

.input-form .th .star:before {
  position: absolute;
  top: 0px;
  left: 0;
  font-size: 15px;
  color: #ee2a24;
  content: "*";
}

.input-form .td input[type=text],
.input-form .td input[type=submit],
.input-form .td input[type=password],
.input-form .td input[type=file] {
  background-color: #fff;
  height: 40px;
  line-height: 40px;
}

.input-form .td label {
  font-size: 15px;
  font-weight: 300;
}

.input-form .td label .radio {
  vertical-align: -4px;
}

.input-form .td label + label {
  margin-left: 20px;
}

.input-form select {
  width: 100%;
  line-height: 40px;
  height: 40px;
  padding: 0 40px 0 20px;
  margin: 0;
  vertical-align: middle;
  background: #fff;
  border-radius: 2px;
  border: #dedede 1px solid;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  ime-mode: inactive;
  font-size: 14px;
  background: url("../images/bul_select02.png") no-repeat 100% 50%;
}

.content-inner-inner .input-form {
  margin-top: 80px;
}

.content-inner-inner .input-form .th {
  width: 105px;
}

@media screen and (max-width: 1120px) {
  .input-form .td label + label {
    display: block;
    margin-top: 10px;
    margin-left: 0;
  }
}
/* 동의 항목 체크 */
.agree-box {
  margin-top: 50px;
}

.agree-box label {
  display: block;
  font-size: 15px;
  font-weight: 500;
}

.agree-box label .checkbox {
  vertical-align: -3px;
}

.agree-box .agree-item {
  margin-top: 10px;
  padding: 20px;
  font-size: 13px;
  font-weight: 300;
  color: #999;
  border: 1px #dedede solid;
  border-radius: 2px;
}

.agree-box .agree-item .scroll-y {
  overflow: hidden;
  overflow-y: auto;
  height: 120px;
}

/* sub visual area */
.visual {
  height: 180px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.visual .sub-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  width: 1120px;
  height: 100%;
  margin: 0 auto;
}

.visual .sub-copy h3 {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
}

.visual .sub-copy p {
  margin-top: 10px;
  font-size: 17px;
  font-weight: 300;
  color: #fff;
}

.visual.lab-report {
  background-image: url("../images/bg_visual_lab01.png");
  background-size: cover;
}

.visual.lab-info {
  background-image: url("../images/bg_visual_lab02.png");
  background-size: cover;
}

.visual.archive-data {
  background-image: url("../images/bg_visual_lab03.png");
  background-size: cover;
}

.visual.lab-data {
  background-image: url("../images/bg_visual_lab04.png");
  background-size: cover;
}

.visual.lab-package {
  background-image: url("../images/bg_visual_package.png");
  background-size: cover;
}

.visual.notice {
  background-image: url("../images/bg_visual_notice.png");
  background-size: cover;
}

.visual.archive-newsletter {
  background-image: url("../images/bg_visual_newletter.png");
  background-size: cover;
}

.visual.faq {
  background-image: url("../images/bg_visual_faq.png");
  background-size: cover;
}

.visual.archive-clipping {
  background-image: url("../images/bg_visual_archive01.png");
  background-size: cover;
}

.visual.archive-report {
  background-image: url("../images/bg_visual_archive02.png");
  background-size: cover;
}

.visual.column-index {
  background-image: url("../images/bg_visual_column01.png");
  background-size: cover;
}

.visual.column-insite {
  background-image: url("../images/bg_visual_column_insite.png");
  background-size: cover;
}

.visual.column-sns {
  background-image: url("../images/bg_visual_column01.png");
  background-size: cover;
}

.visual.column-careet {
  background-image: url("../images/bg_visual_column_careet.png");
  background-size: cover;
}

.visual.column-outside {
  background-image: url("../images/bg_visual_column02.png");
  background-size: cover;
}

.visual.archive-magazine {
  background-image: url("../images/bg_visual_magazine.png");
  background-size: cover;
}

@media screen and (max-width: 1120px) {
  .visual {
    height: auto;
  }
  .visual .sub-copy {
    width: auto;
    padding: 30px 15px;
  }
}
/* Pagnination */
.pagnination {
  margin-top: 50px;
  text-align: center;
}

.pagnination .inner {
  overflow: hidden;
  display: inline-block;
}

.pagnination a {
  float: left;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px #e6e6e5 solid;
  color: #c1c1c1;
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  vertical-align: top;
}
@media (max-width: 800px) {
  .pagnination a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}

.pagnination a + a {
  margin-left: -1px;
}

.pagnination a:hover {
  color: #5e5e5e;
}

.pagnination a.active {
  color: #5e5e5e;
  background-color: #eee;
}

.pagnination .btn-page {
  text-indent: -999em;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.pagnination .btn-page:hover {
  background-color: #eee;
}

.pagnination .btn-page.prev {
  background-image: url("../images/ico_double_prev.png");
}

.pagnination .btn-page.next {
  background-image: url("../images/ico_double_next.png");
}

/* banner */
.banner-area {
  margin-top: 70px;
}

@media (max-width: 1120px) {
  .banner-area {
    margin-top: 35px;
  }
}
/* popup */
.bPopup {
  display: none;
  position: relative;
  padding: 60px;
  background-color: #f8f8fc;
  border: 3px #000 solid;
}

.pop-header {
  padding-bottom: 10px;
  border-bottom: 1px #000 solid;
}

.pop-header .pop-title {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
}

.pop-header .bt-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  background: url("../images/ico_close.png") no-repeat 50% 50%;
  border: 0;
  text-indent: -9999px;
  cursor: pointer;
}

.pop-content .align-area {
  margin-top: 30px;
}

.pop-content .confirm-form {
  padding: 30px 0;
  border-bottom: 1px #dfdfe2 solid;
}

.pop-content .confirm-form .row {
  position: relative;
  padding-right: 115px;
}

.pop-content .confirm-form .row + .row {
  margin-top: 10px;
}

.pop-content .confirm-form .row input[type=text] {
  height: 37px;
  line-height: 37px;
  background-color: #fff;
}

.pop-content .confirm-form .row .btn {
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 1120px) {
  .bPopup {
    width: auto !important;
    padding: 15px;
  }
  .pop-header .bt-close {
    top: 15px;
    right: 15px;
  }
  .pop-content .align-area {
    margin-top: 15px;
  }
  .pop-content .confirm-form {
    padding: 15px 0;
  }
}
/* 소개페이지 */
.intro .sec {
  position: relative;
}

.intro .sec + .sec {
  margin-top: 70px;
}

.intro .sec.block {
  padding: 55px 0;
}

.intro .sec.block:after {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  margin-left: -50vw;
  width: 100vw;
  height: 100%;
  background: #f5f5fb;
  content: "";
}

.intro .sec .page-title {
  padding-bottom: 0;
  padding-top: 15px;
  border-bottom: 0;
  border-top: 2px #000 solid;
}

.intro .sec .page-title.no-line {
  padding-top: 0;
  border-top: 0;
}

.intro .sec .page-title .side-button {
  position: absolute;
  top: 15px;
  right: 0;
}

.intro .sec .page-title .chapter,
.intro .sec .page-title .chapter em,
.intro .sec .page-title .chapter strong {
  display: block;
}

.intro .sec .page-title .chapter {
  margin-bottom: 10px;
}

.intro .sec .page-title .chapter em {
  color: #ee2a24;
  font-size: 13px;
  font-weight: 500;
  font-family: "Montserrat";
}

.intro .sec .page-title .chapter em:after {
  display: inline-block;
  margin-left: 5px;
  width: 20px;
  height: 1px;
  background-color: #000;
  vertical-align: middle;
  content: "";
}

.intro .sec .page-title .chapter strong {
  font-size: 13px;
  font-size: 400;
}

.intro .sec .banner {
  padding: 40px 0;
  text-align: center;
  background: url("../images/banner_search.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.intro .sec .banner strong {
  display: block;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}

.intro .sec .banner .button {
  margin-top: 20px;
}

.intro .sec .banner.sm {
  position: absolute;
  top: 0;
  right: 0;
  padding: 22px 0;
  width: 320px;
  height: 100%;
  background-image: url("../images/banner_half.jpg");
}

.intro-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-top: 50px;
}

.intro-company .cell {
  position: relative;
  padding: 30px 30px 20px;
  border-style: solid;
  border-color: #000;
  border-width: 1px 0 1px 1px;
}

.intro-company .cell:last-child {
  border-width: 1px;
}

.intro-company .logo {
  position: absolute;
  top: -25px;
  left: 50%;
  height: 50px;
  line-height: 50px;
  border-radius: 99em;
  background-color: #9ca1aa;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.intro-company .logo.univ20 {
  width: 150px;
  background-image: url("../images/logo_univ20.png");
}

.intro-company .logo.twslab {
  width: 240px;
  background-color: #ee2a24;
  background-image: url("../images/logo_20slab.png");
}

.intro-company .logo.rf {
  width: 150px;
  background-image: url("../images/logo_rf.png");
}

.intro-company dl dt {
  padding: 35px 20px;
  font-size: 15px;
  font-weight: 300;
  text-align: center;
  border-bottom: 1px #e5e5e5 solid;
}

.intro-company dl dd {
  position: relative;
  padding: 20px 20px 20px 30px;
  font-size: 13px;
  font-weight: 300;
  color: #666;
  border-bottom: 1px #e5e5e5 solid;
}

.intro-company dl dd:last-child {
  border-bottom: 0;
}

.intro-company dl dd:before {
  position: absolute;
  top: 26px;
  left: 18px;
  width: 4px;
  height: 4px;
  background-color: #a3a3a5;
  border-radius: 99em;
  content: "";
}

.intro-lab .sec-visual {
  margin-top: 30px;
}

.intro-lab ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.intro-lab ul li {
  width: 50%;
  margin-top: 45px;
  font-weight: 300;
  color: #666;
}

.intro-lab ul li strong {
  display: block;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
}

.intro-target {
  margin-top: 30px;
  border-style: solid;
  border-width: 2px 1px 1px;
  border-color: #000 #e1e1e1 #e1e1e1;
}

.intro-target .img {
  padding: 50px;
  text-align: center;
}

.intro-target .txt {
  display: table;
  width: 100%;
}

.intro-target .txt dl {
  display: table-cell;
  width: 50%;
  padding: 50px 80px;
}

.intro-target .txt dl {
  background-color: #fafafd;
}

.intro-target .txt dl:last-child {
  background-color: #f4f4fb;
}

.intro-target .txt dl dt {
  color: #333;
  font-weight: 500;
}

.intro-target .txt dl dd {
  margin-top: 15px;
  color: #999;
  font-weight: 300;
}

.intro-insigth {
  margin-top: 25px;
  padding-top: 30px;
  border-top: 2px #000 solid;
}

.intro-insigth ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.intro-insigth ul li {
  width: 340px;
}

.intro-insigth ul li > span {
  display: block;
  text-align: center;
}

.intro-insigth ul li .thumb {
  position: relative;
}

.intro-insigth ul li .thumb img {
  vertical-align: top;
}

.intro-insigth ul li .thumb .title {
  position: absolute;
  top: 50%;
  width: 100%;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  font-family: "Montserrat";
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.intro-insigth ul li .desc {
  height: 90px;
  margin-top: 15px;
  font-weight: 300;
  color: #666;
}

.intro-insigth .btn:hover {
  color: #fff !important;
}

.intro-sns {
  margin-right: 380px;
  padding: 25px 100px;
  background-color: #f5f5fb;
}

.intro-sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
}

.intro-sns ul li {
  display: inline-block;
}

.intro-sns ul li > span {
  display: block;
}

.intro-sns ul li .ico {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 99em;
  border: 1px #e1e1e1 solid;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.intro-sns ul li .ico.hm {
  background-image: url("../images/ico_home.png");
}

.intro-sns ul li .ico.fb {
  background-image: url("../images/ico_fb_md.png");
}

.intro-sns ul li .ico.nv {
  background-image: url("../images/ico_nv_md.png");
}

.intro-sns ul li .name {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 500;
}

.intro-sns ul li .url a {
  color: #999;
  font-size: 13px;
  font-weight: 500;
  font-family: "Montserrat";
}

.intro-sns ul li .count {
  margin-top: 10px;
  color: #999;
  font-size: 13px;
  font-weight: 500;
  font-family: "Montserrat";
}

.intro-sns ul li .count:before {
  display: inline-block;
  width: 35px;
  height: 20px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  content: "";
}

.intro-sns ul li .count.ico-view:before {
  background-image: url("../images/ico_view.png");
}

.intro-sns ul li .count.ico-user:before {
  background-image: url("../images/ico_user_sm.png");
}

.intro-research {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin-top: 40px;
}

.intro-research .cell {
  width: 33.33%;
  text-align: center;
  background-color: #f5f5fb;
}

.intro-research .cell:nth-child(even) {
  background-color: #f1f1f9;
}

.intro-research .cell + .cell {
  margin-left: -1px;
}

.intro-research .keyword {
  display: table;
  width: 100%;
  height: 183px;
  background-color: #fff;
  border-width: 2px 1px 0;
  border-color: #000 #ededed;
  border-style: solid;
}

.intro-research .keyword p {
  display: table-cell;
  vertical-align: middle;
}

.intro-research .keyword p span {
  display: block;
  color: #666;
  font-size: 18px;
  font-weight: 400;
  font-family: "NanumMyeongjo";
}

.intro-research .keyword p span + span {
  margin-top: 10px;
}

.intro-research .kind {
  padding: 50px 65px;
}

.intro-research .kind h3 {
  position: relative;
  padding-bottom: 15px;
  font-size: 22px;
  font-weight: 500;
}

.intro-research .kind h3:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 1px;
  background-color: #000;
  vertical-align: middle;
  content: "";
}

.intro-research .kind p {
  margin-top: 15px;
  font-weight: 300;
}

.intro-research dl {
  margin-top: 35px;
}

.intro-research dl dt {
  margin-bottom: 15px;
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  background-color: #fff;
  border: 1px #e1e1e1 solid;
  border-radius: 99em;
}

.intro-research dl dt span {
  font-weight: 500;
}

.intro-research dl dd {
  position: relative;
  padding-left: 10px;
  font-size: 16px;
  font-weight: 300;
  color: #666;
  text-align: left;
}

.intro-research dl dd:before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #666;
  border-radius: 99em;
  content: "";
}

.intro-process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  margin-top: 70px;
}

.intro-process .step {
  position: relative;
  padding: 50px 20px 20px;
  border: 1px #f5f5fb solid;
  border-radius: 4px;
}

.intro-process .step + .step {
  margin-left: 25px;
}

.intro-process .step:after {
  position: absolute;
  top: -5px;
  right: -17px;
  padding: 4px;
  border-style: solid;
  border-color: #7f7f7f;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  content: "";
}

.intro-process .step:last-child::after {
  display: none;
}

.intro-process dl dt {
  position: absolute;
  top: -31px;
  left: 0;
  width: 100%;
  height: 62px;
  line-height: 58px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  background-color: #f5f5fb;
  border-radius: 99em;
}

.intro-process dl dt .txt {
  display: inline-block;
  font-size: 15px;
  vertical-align: middle;
}

.intro-process dl dt .num {
  position: absolute;
  top: -10px;
  left: 50%;
  font-size: 13px;
  font-weight: 700;
  font-family: "Montserrat";
  color: #ee2a24;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.intro-process dl dd {
  position: relative;
  margin-top: 5px;
  padding-left: 10px;
  font-weight: 300;
  color: #666;
}

.intro-process dl dd:before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 4px;
  height: 4px;
  background-color: #666;
  border-radius: 99em;
  content: "";
}

.intro-reference {
  display: table;
  width: 100%;
  margin-top: 40px;
}

.intro-reference .row {
  display: table-row;
}

.intro-reference .cell {
  display: table-cell;
  padding: 15px;
  width: 180px;
  text-align: center;
}

.intro-reference .cell:first-child {
  width: 130px;
}

.intro-reference .cell:last-child {
  width: auto;
}

.intro-reference .row.th .cell {
  font-size: 13px;
  background-color: #f5f5fb;
}

.intro-reference .row.td .cell {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  border-bottom: 1px #e9e9e9 solid;
}

.intro-reference .row.td .cell:last-child {
  font-size: 15px;
  color: #000;
}

.intro-trend {
  margin-top: 40px;
}

.intro-trend .product .info {
  text-align: center;
}

.intro-trend .product .info .name {
  display: block;
  font-size: 24px;
  font-weight: 500;
}

.intro-trend .product .info .desc {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 300;
  color: #666;
}

.intro-trend .product .info .button {
  margin-top: 25px;
}

.intro-trend .product .img {
  margin-top: 70px;
  text-align: center;
}

.intro-trend .product .detail-circle {
  margin-top: 30px;
}

.intro-trend .product .detail-circle ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.intro-trend .product .detail-circle ul li {
  margin: 10px 40px;
  width: 200px;
  height: 200px;
  font-weight: 300;
  color: #666;
  text-align: center;
  background-color: #fff;
  border: 1px #e1e1e1 solid;
  border-radius: 99em;
}

.intro-trend .product .detail-circle ul li strong {
  position: relative;
  display: block;
  margin: 40px 0 15px;
  padding-bottom: 15px;
  font-size: 15px;
  font-weight: 400;
  color: #000;
}

.intro-trend .product .detail-circle ul li strong:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -7px;
  width: 14px;
  height: 1px;
  background-color: #000;
  content: "";
}

.intro-trend .product .img-list {
  margin-top: 40px;
}

.intro-trend .product .img-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.intro-trend .product .img-list ul li {
  margin: 20px 40px;
  text-align: center;
}

.intro-trend .product .img-list ul li .year {
  display: block;
  margin-top: 5px;
  font-family: "Montserrat";
  font-weight: 500;
  color: #666;
}

.intro-trend .product .detail-txt {
  margin-top: 30px;
  text-align: center;
}

.intro-trend .product .detail-txt dl {
  display: inline-block;
  overflow: hidden;
}

.intro-trend .product .detail-txt dl dt,
.intro-trend .product .detail-txt dl dd {
  text-align: left;
  margin-top: 10px;
  min-height: 30px;
}

.intro-trend .product .detail-txt dl dt {
  float: left;
  width: 85px;
  line-height: 28px;
  text-align: center;
  color: #000;
  background-color: #fff;
  border: 1px #e1e1e1 solid;
  border-radius: 99em;
}

.intro-trend .product .detail-txt dl dd,
.intro-trend .product .detail-txt dl dd ul li {
  line-height: 30px;
  font-weight: 300;
  color: #666;
}

.intro-trend .product .detail-txt dl dd {
  padding-left: 95px;
}

.intro-trend .product .detail-txt dl dd ul li {
  position: relative;
  padding-left: 10px;
}

.intro-trend .product .detail-txt dl dd ul li:before {
  position: absolute;
  top: 14px;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: #666;
  line-height: 30px;
  font-weight: 300;
  color: #666;
  content: "";
}

.intro-trend .client {
  display: table;
  width: 100%;
  margin-top: 40px;
}

.intro-trend .client .caption {
  display: table-caption;
  padding-bottom: 10px;
  border-bottom: 2px #000 solid;
}

.intro-trend .client .row {
  display: table-row;
}

.intro-trend .client .cell {
  display: table-cell;
  padding: 15px;
  width: 25%;
  text-align: center;
}

.intro-trend .client .row .cell {
  font-size: 15px;
  font-weight: 300;
  color: #000;
  border-bottom: 1px #fff solid;
}

.intro-trend .product .intro-reference .row.th .cell {
  background-color: #fff;
}

.intro-trend .product .intro-reference .row.td .cell {
  border-color: #fff;
}

@media screen and (max-width: 1120px) {
  .intro .sec + .sec {
    margin-top: 35px;
  }
  .intro .sec.block {
    padding: 30px 0;
  }
  .intro .sec .banner {
    padding: 20px 0;
  }
  .intro .sec .banner.sm {
    position: static;
    margin-top: 35px;
    width: 100%;
    height: auto;
  }
  .intro-company {
    display: block;
    margin-top: 50px;
  }
  .intro-company .cell {
    padding: 15px 15px 45px;
    border-width: 1px;
  }
  .intro-company .cell:last-child {
    padding-bottom: 10px;
  }
  .intro-company .cell + .cell {
    margin-top: -1px;
  }
  .intro-lab .sec-visual {
    position: relative;
    height: 160px;
    margin-top: 15px;
  }
  .intro-lab .sec-visual img {
    position: absolute;
    margin: auto;
    min-height: 100%;
    width: 100%;
    left: -100%;
    right: -100%;
    top: -100%;
    bottom: -100%;
  }
  .intro-lab ul {
    display: block;
  }
  .intro-lab ul li {
    width: 100%;
    margin-top: 30px;
  }
  .intro-lab ul li br {
    display: none;
  }
  .intro-lab ul li strong {
    margin-bottom: 5px;
  }
  .intro-target {
    margin-top: 15px;
  }
  .intro-target .img {
    padding: 25px;
  }
  .intro-target .txt {
    display: block;
  }
  .intro-target .txt dl {
    display: block;
    width: 100%;
    padding: 25px;
  }
  .intro-insigth ul {
    display: block;
  }
  .intro-insigth ul li {
    width: 100%;
  }
  .intro-insigth ul li + li {
    margin-top: 30px;
  }
  .intro-insigth ul li .thumb img {
    width: 100%;
  }
  .intro-insigth ul li .desc {
    height: auto;
  }
  .intro-insigth ul li .button {
    margin-top: 30px;
  }
  .intro-sns {
    margin-right: 0;
    padding: 25px 15px;
  }
  .intro-research {
    display: block;
    margin-top: 20px;
  }
  .intro-research .cell {
    width: 100%;
  }
  .intro-research .cell + .cell {
    margin-left: 0;
  }
  .intro-research .keyword {
    padding: 20px;
    height: auto;
  }
  .intro-research .kind {
    padding: 25px 40px;
  }
  .intro-process {
    display: block;
  }
  .intro-process .step {
    padding: 40px 10px 10px;
  }
  .intro-process .step + .step {
    margin-top: 80px;
    margin-left: 0;
  }
  .intro-process .step:after {
    position: absolute;
    top: auto;
    right: auto;
    bottom: -25px;
    left: 50%;
    margin-left: -9px;
    padding: 6px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
  }
  .intro-process dl dd br {
    display: none;
  }
  .intro-reference {
    display: block;
    border-top: 1px #e9e9e9 solid;
  }
  .intro-reference .row {
    display: block;
    padding: 15px;
    border-bottom: 1px #e9e9e9 solid;
  }
  .intro-reference .row:nth-child(odd) {
    background-color: #f9f9fb;
  }
  .intro-reference .row.mo-bg-white {
    background-color: #fff;
  }
  .intro-reference .cell {
    display: inline-block;
    width: auto;
    text-align: left;
  }
  .intro-reference .cell:first-child {
    width: auto;
  }
  .intro-reference .row.th {
    display: none;
  }
  .intro-reference .row.td .cell {
    padding: 0;
    border-bottom: 0;
  }
  .intro-reference .row.td .cell:before {
    display: inline-block;
    margin: 0 10px 0 8px;
    width: 1px;
    height: 12px;
    background-color: #e9e9e9;
    vertical-align: middle;
    content: "";
  }
  .intro-reference .row.td .cell:first-child::before,
  .intro-reference .row.td .cell:last-child::before {
    display: none;
  }
  .intro-reference .row.td .cell:last-child {
    width: 100%;
    margin-top: 15px;
  }
  .intro-trend {
    margin-top: 20px;
  }
  .intro-trend .client {
    table-layout: fixed;
  }
  .intro-trend .client .row .cell {
    padding: 15px 5px;
    word-break: break-all;
    font-size: 13px;
  }
  .intro-trend .product .img {
    margin-top: 35px;
  }
  .intro-trend .product .info .name {
    font-size: 20px;
  }
  .intro-trend .product .detail-circle {
    margin-top: 30px;
  }
  .intro-trend .product .detail-circle ul {
    display: block;
  }
  .intro-trend .product .detail-circle ul li {
    margin: 10px 0;
    padding: 15px 25px;
    width: 100%;
    height: auto;
  }
  .intro-trend .product .detail-circle ul li br {
    display: none;
  }
  .intro-trend .product .detail-circle ul li strong {
    margin: 0 0 15px;
  }
  .intro-trend .product .img-list {
    margin-top: 20px;
  }
  .intro-trend .product .img-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .intro-trend .product .img-list ul li {
    width: 48%;
    margin: 20px 1%;
  }
  .intro-trend .product .img-list ul li .year {
    display: block;
    margin-top: 5px;
    font-family: "Montserrat";
    font-weight: 500;
    color: #666;
  }
}
.terms-bx {
  margin-top: 20px;
}

.terms-bx div {
  color: #666;
  font-size: 16px;
  font-weight: 300;
}

.terms-bx dl dt {
  margin: 30px 0 10px;
  font-size: 26px;
  font-weight: 700;
  color: #000;
}

.terms-bx dl dd {
  color: #666;
  font-size: 16px;
  font-weight: 300;
}

.terms-bx .hd-txt {
  display: block;
  margin: 25px 0 10px;
  font-size: 18px;
  color: #000;
  font-weight: 500;
}

.terms-bx ul.ul-list01 li + li {
  margin-top: 20px;
}

.terms-bx ul.ul-list01 li {
  text-indent: -28px;
  padding: 0 0 0 28px;
  color: #666;
  font-size: 16px;
  font-weight: 300;
}

.terms-bx .bx-tx01 {
  padding: 30px;
  background-color: #e5e5e5;
}

.terms-bx .bx-tx01 li {
  text-indent: -10px;
  padding: 0 0 0 10px;
}

.terms-bx .bx-tx01 li + li {
  margin-top: 10px;
}

.terms-bx .bx-tx01 li:before {
  content: "";
  width: 3px;
  height: 3px;
  vertical-align: middle;
  margin: 0 5px 0 0;
  display: inline-block;
  background-color: #333;
}

.terms-bx table {
  width: 100%;
  margin-top: 50px;
}

.terms-bx table th {
  padding: 15px 20px;
  background-color: #f5f5fb;
  color: #666;
  font-size: 16px;
  font-weight: 500;
  vertical-align: middle;
}

.terms-bx table th.bg {
  background-color: #ebebf7;
}

.terms-bx table td {
  padding: 15px 40px;
}

.terms-bx table tbody th,
.terms-bx table tbody td {
  border-bottom: 1px #e7e7e7 solid;
}

.terms-bx table tbody td + td {
  border-left: 1px #e7e7e7 solid;
}

.agree-item .terms-bx {
  margin-top: 0;
}

.agree-item .terms-bx div {
  color: #666;
  font-size: 12px;
  font-weight: 300;
}

.agree-item .terms-bx dl dt {
  margin: 15px 0 5px;
  color: #000;
  font-size: 14px;
  font-weight: 700;
}

.agree-item .terms-bx dl dd {
  color: #666;
  font-size: 12px;
  font-weight: 300;
}

.agree-item .terms-bx .hd-txt {
  margin: 12px 0 5px;
  font-size: 12px;
  color: #000;
}

.layer-popup {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.layer-popup.open {
  visibility: visible;
  opacity: 1;
}
.layer-popup .popup-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%;
  max-height: 100%;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.2509803922);
}
.layer-popup .popup-container.large {
  max-width: 928px;
}
.layer-popup .popup-container.medium {
  max-width: 640px;
}
.layer-popup .popup-container.small {
  max-width: 460px;
}
.layer-popup .popup-header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  background-color: #fff;
}
.layer-popup .popup-title {
  text-align: center;
}
.layer-popup .popup-title strong {
  display: block;
  line-height: 1.2;
  font-size: 24px;
}
.layer-popup .popup-title .sub-text {
  margin-top: 12px;
  font-size: 16px;
}
.layer-popup .popup-title .sub-text .color {
  color: #f82514;
}
.layer-popup .popup-title .sub-text.for-link {
  font-size: 12px;
  word-break: keep-all;
}
.layer-popup .popup-title .sub-text.for-link a {
  color: #f82514;
  text-decoration: underline;
}
.layer-popup .popup-title .btn-go-notice {
  margin-top: 12px;
}
.layer-popup .popup-guide--line {
  width: 100%;
  height: 1px;
  background: #000;
  margin: 16px 0;
}
.layer-popup .popup-content {
  height: 100%;
  overflow: auto;
  position: relative;
  background-color: #fff;
}
.layer-popup .popup-content .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 23px 23px;
  background-image: url("../images/ico_close.png");
  border: 0;
}
.layer-popup .popup-inner {
  padding: 48px;
  position: relative;
}
.layer-popup .bottom-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 48px;
  gap: 16px;
}
.layer-popup .bottom-btn-group .btn {
  min-width: 144px;
}
.layer-popup.full-scroll {
  display: block;
  overflow: auto;
  text-align: center;
  font-size: 0;
}
.layer-popup.full-scroll:before {
  display: inline-block;
  content: "";
  height: 100%;
  vertical-align: middle;
}
.layer-popup.full-scroll .popup-container {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 0 auto;
  max-height: none;
  border-radius: 20px;
  font-size: initial;
}
.layer-popup.full-scroll .popup-content {
  height: auto;
  position: relative;
  overflow: visible;
  text-align: left;
}
.layer-popup .popup-form-container {
  margin-top: 24px;
}
.layer-popup .popup-form-container .form-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
}
.layer-popup .popup-form-container .form-item + .form-item {
  margin-top: 12px;
}
.layer-popup .popup-form-container .form-item label {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
}
.layer-popup .popup-form-container .form-item input {
  width: 100%;
  height: 42px;
  line-height: 42px;
  padding-left: 12px;
  text-indent: 0;
  background-color: #fff;
}
.layer-popup .align-area {
  margin-top: 32px;
}

.layer-popup-dim {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  background-color: rgba(0, 0, 0, 0.5);
}
.layer-popup-dim.show {
  -webkit-animation: dimShow 0.3s forwards;
          animation: dimShow 0.3s forwards;
}

@-webkit-keyframes dimShow {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes dimShow {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.download-complete-popup .popup-container {
  max-width: 500px !important;
}
.download-complete-popup .popup-inner {
  padding: 48px 50px 40px;
}
.download-complete-popup .popup-title strong {
  font-weight: 800;
  font-size: 26px;
}
.download-complete-popup .popup-text-area {
  margin-top: 40px;
  text-align: center;
}
.download-complete-popup .popup-text-area strong {
  font-size: 22px;
  letter-spacing: -0.02em;
}
.download-complete-popup .popup-text-area .guide-text {
  margin-top: 16px;
  font-weight: 500;
  font-size: 15px;
  color: #ee2a24;
}
.download-complete-popup .bottom-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-top: 56px;
}
.download-complete-popup .bottom-btn-group .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0;
  width: 100%;
  height: 60px;
  padding: 0;
  margin: 0;
  border-radius: 4px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.download-complete-popup .bottom-btn-group .popup-close {
  max-width: 100px;
  background-color: #666;
}
.download-complete-popup .bottom-btn-group .btn-ok {
  max-width: 220px;
  background-color: #ee2a24;
}

.cart-wrap .order-list-container {
  padding-top: 32px;
  border-top: 3px solid #000;
}
.cart-wrap .order-list-container .list-title {
  line-height: 1.24;
  font-weight: 800;
  font-size: 18px;
}
.cart-wrap .order-list-container .order-list {
  margin-top: 16px;
  border-top: 1px solid #e6e6e6;
}
.cart-wrap .order-list-container .order-list + .order-package-list {
  border-top: 3px solid #000;
}
.cart-wrap .order-list-container .order-list .empty-text {
  padding: 200px 0;
  text-align: center;
  font-size: 22px;
  border-bottom: 3px solid #000;
}
.cart-wrap .order-list-container .order-list .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 18px;
  padding: 32px 0;
}
.cart-wrap .order-list-container .order-list .list-item + .list-item {
  border-top: 1px solid #e6e6e6;
}
.cart-wrap .order-list-container .order-list .item-check {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cart-wrap .order-list-container .order-list .info-field {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}
.cart-wrap .order-list-container .order-list .color-category {
  font-weight: 500;
  font-size: 14px;
}
.cart-wrap .order-list-container .order-list .title {
  line-height: 1.4;
  font-weight: 700;
  font-size: 22px;
}
.cart-wrap .order-list-container .order-list .info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
.cart-wrap .order-list-container .order-list .price-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.cart-wrap .order-list-container .order-list .price {
  font-weight: 700;
  font-size: 22px;
}
.cart-wrap .order-list-container .order-list .btn-delete {
  width: 16px;
  height: 18px;
  background: url("../images/ico_delete.png") no-repeat 0 0;
  background-size: cover;
  text-indent: -9999px;
  border: 0;
}
.cart-wrap .order-list-container .order-package-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
  border-top: 1px solid #e6e6e6;
  gap: 18px;
  padding: 32px 0;
}
.cart-wrap .order-list-container .order-package-list .list-wrapper {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.cart-wrap .order-list-container .order-package-list .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 18px;
}
.cart-wrap .order-list-container .order-package-list .list-item + .list-item {
  margin-top: 40px;
}
.cart-wrap .order-list-container .order-package-list .item-check {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cart-wrap .order-list-container .order-package-list .info-field {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}
.cart-wrap .order-list-container .order-package-list .color-category {
  font-weight: 500;
  font-size: 14px;
}
.cart-wrap .order-list-container .order-package-list .title {
  line-height: 1.4;
  font-weight: 700;
  font-size: 22px;
}
.cart-wrap .order-list-container .order-package-list .info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
.cart-wrap .order-list-container .order-package-list .price-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.cart-wrap .order-list-container .order-package-list .price {
  font-weight: 700;
  font-size: 22px;
}
.cart-wrap .order-list-container .order-package-list .btn-delete {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  height: 18px;
  margin-top: 2px;
  background: url("../images/ico_delete.png") no-repeat 0 0;
  background-size: cover;
  text-indent: -9999px;
  border: 0;
}
.cart-wrap .select-container {
  margin-top: 16px;
}
.cart-wrap .select-container select {
  display: block;
  width: 100%;
  height: 36px;
  padding: 0 24px;
  border-radius: 2px;
  border: 1px solid #cbcbcb;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 50%;
  background-size: 24px 24px;
  background-image: url("../images/renewal_2024/icon/icon-arrow-gy-24x24.png");
  font-size: 14px;
}
.cart-wrap .select-container select option {
  font-size: 14px;
}
.cart-wrap .order-guide-box {
  margin-top: 16px;
  padding: 24px;
  background-color: #f4f4f4;
}
.cart-wrap .order-guide-box li {
  position: relative;
  padding-left: 12px;
  line-height: 1.4;
  font-size: 14px;
  color: #666;
}
.cart-wrap .order-guide-box li:before {
  display: block;
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #666;
}
.cart-wrap .order-form-container {
  margin-top: 40px;
  border-bottom: 3px solid #000;
}
.cart-wrap .order-form-container .order-form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  padding: 40px 0;
  border-top: 1px solid #bfbfbf;
}
.cart-wrap .order-form-container .form-title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 180px;
  font-weight: 800;
  font-size: 18px;
}
.cart-wrap .order-form-container .form-field {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}
.cart-wrap .order-form-container .sale-container .list-item + .list-item {
  margin-top: 40px;
}
.cart-wrap .order-form-container .sale-container .item-label {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 18px;
}
.cart-wrap .order-form-container .input-cover.btn-with {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.cart-wrap .order-form-container .input-cover.btn-with .btn-normal {
  width: 136px;
}
.cart-wrap .order-form-container .input-cover input {
  width: 100%;
  height: 42px;
  padding: 0 24px;
  border-radius: 2px;
  border: 1px solid #cbcbcb;
  background-color: #fff;
  text-indent: 0;
  font-size: 16px;
}
.cart-wrap .order-form-container .btn-normal {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #0f0f0f;
}
.cart-wrap .order-form-container .btn-normal.disabled {
  background-color: #ddd;
  border-color: #ddd;
  color: #999;
  pointer-events: none;
}
.cart-wrap .order-form-container .payment-form .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
.cart-wrap .order-form-container .payment-form .list-item + .list-item {
  margin-top: 16px;
}
.cart-wrap .order-form-container .payment-form .type {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 90px;
  font-weight: 700;
  font-size: 16px;
}
.cart-wrap .order-form-container .payment-form .type .required {
  font-weight: 900;
  font-size: 18px;
  color: #ee2a24;
}
.cart-wrap .order-form-container .payment-form .field {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.cart-wrap .order-form-container .payment-form .select-container {
  margin-top: 0;
}
.cart-wrap .order-form-container .payment-form .select-container select {
  height: 42px;
  font-size: 16px;
}
.cart-wrap .order-form-container .agree-container .text {
  font-weight: 600;
  font-size: 16px;
}
.cart-wrap .order-form-container .agree-container .agree-box {
  margin-top: 24px;
  padding: 24px;
  line-height: 1.4;
  font-size: 14px;
  border: 1px solid #e6e6e6;
  color: #666;
}
.cart-wrap .order-form-container .agree-container .agree-box strong {
  font-weight: 600;
  color: #000;
}
.cart-wrap .order-form-container .agree-container .agree-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 24px;
}
.cart-wrap .order-form-container .agree-container .selector-cover .selector {
  width: 23px;
  height: 23px;
  top: 2px;
  border-color: #ee2a24;
  border-width: 2px;
  letter-spacing: 0;
}
.cart-wrap .order-form-container .agree-container .selector-cover .selector:after {
  width: 12px;
  height: 12px;
}
.cart-wrap .order-form-container .agree-container .selector-cover .label-text {
  padding-left: 34px;
  font-weight: 600;
  font-size: 20px;
}
.cart-wrap .order-form-container .agree-container .selector-cover input:checked + .label-text .selector {
  border-color: #ee2a24;
}
.cart-wrap .order-form-container .agree-container .selector-cover input:checked + .label-text .selector:after {
  background-color: #ee2a24;
}
.cart-wrap .order-form-container .agree-container .btn-membership {
  display: block;
  width: 100%;
  height: 42px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border: 0;
  background-color: #515151;
  border-radius: 4px;
  color: #fff;
  margin-left: 0;
}
.cart-wrap .order-form-container .agree-container .btn-membership.disabled {
  background-color: #ddd;
  color: #999;
  cursor: default;
}
.cart-wrap .order-form-container .date-container .text {
  font-weight: 600;
  font-size: 18px;
}
.cart-wrap .membership-list-container {
  padding-top: 32px;
  border-top: 3px solid #000;
}
.cart-wrap .membership-list-container .list-title {
  line-height: 1.24;
  font-weight: 800;
  font-size: 18px;
}
.cart-wrap .membership-list-container .membership-list {
  margin-top: 40px;
}
.cart-wrap .membership-list-container .membership-list .list-item + .list-item {
  margin-top: 40px;
}
.cart-wrap .membership-list-container .membership-list .selector-cover .label-text {
  padding-left: 36px;
  font-weight: 800;
  font-size: 18px;
}
.cart-wrap .membership-list-container .membership-list .selector-cover .label-text .selector {
  top: 2px;
}
.cart-wrap .membership-list-container .membership-list .order-guide-box {
  margin-left: 36px;
}

@media (max-width: 1120px) {
  .cart-wrap .order-list-container {
    padding-top: 24px;
  }
  .cart-wrap .order-list-container .list-title {
    font-size: 16px;
  }
  .cart-wrap .order-list-container .order-list {
    margin-top: 12px;
  }
  .cart-wrap .order-list-container .order-list .empty-text {
    padding: 80px 0;
    font-size: 18px;
  }
  .cart-wrap .order-list-container .order-list .list-item {
    gap: 12px;
    padding: 24px 0;
  }
  .cart-wrap .order-list-container .order-list .type {
    font-size: 14px;
  }
  .cart-wrap .order-list-container .order-list .title {
    font-size: 16px;
  }
  .cart-wrap .order-list-container .order-list .info-wrapper {
    gap: 16px;
  }
  .cart-wrap .order-list-container .order-list .price-wrap {
    gap: 16px;
  }
  .cart-wrap .order-list-container .order-list .price {
    font-size: 16px;
  }
  .cart-wrap .order-list-container .order-package-list {
    margin-top: 12px;
  }
  .cart-wrap .order-list-container .order-package-list .list-item {
    gap: 12px;
  }
  .cart-wrap .order-list-container .order-package-list .list-item + .list-item {
    margin-top: 24px;
  }
  .cart-wrap .order-list-container .order-package-list .type {
    font-size: 14px;
  }
  .cart-wrap .order-list-container .order-package-list .title {
    font-size: 16px;
  }
  .cart-wrap .order-list-container .order-package-list .info-wrapper {
    gap: 16px;
  }
  .cart-wrap .order-list-container .order-package-list .price-wrap {
    gap: 16px;
  }
  .cart-wrap .order-list-container .order-package-list .price {
    font-size: 16px;
  }
  .cart-wrap .select-container {
    margin-top: 12px;
  }
  .cart-wrap .select-container select {
    padding: 0 16px;
    font-size: 12px;
    background-position: calc(100% - 12px) 50%;
  }
  .cart-wrap .select-container select option {
    font-size: 12px;
  }
  .cart-wrap .order-guide-box {
    margin-top: 12px;
    padding: 16px;
  }
  .cart-wrap .order-guide-box li {
    padding-left: 10px;
    font-size: 12px;
  }
  .cart-wrap .order-guide-box li:before {
    top: 5px;
  }
  .cart-wrap .order-form-container {
    margin-top: 32px;
  }
  .cart-wrap .order-form-container .order-form-item {
    gap: 16px;
    padding: 32px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cart-wrap .order-form-container .form-title {
    min-width: auto;
    font-size: 18px;
  }
  .cart-wrap .order-form-container .sale-container .list-item + .list-item {
    margin-top: 32px;
  }
  .cart-wrap .order-form-container .sale-container .item-label {
    margin-bottom: 12px;
    font-size: 16px;
  }
  .cart-wrap .order-form-container .input-cover.btn-with {
    gap: 6px;
  }
  .cart-wrap .order-form-container .input-cover.btn-with .btn-normal {
    width: 120px;
  }
  .cart-wrap .order-form-container .input-cover input {
    height: 36px;
    padding: 0 16px;
    font-size: 14px;
  }
  .cart-wrap .order-form-container .btn-normal {
    height: 36px;
    font-size: 14px;
  }
  .cart-wrap .order-form-container .payment-form .list-item {
    gap: 12px;
  }
  .cart-wrap .order-form-container .payment-form .list-item + .list-item {
    margin-top: 12px;
  }
  .cart-wrap .order-form-container .payment-form .type {
    min-width: 80px;
    font-size: 14px;
  }
  .cart-wrap .order-form-container .payment-form .type .required {
    font-size: 14px;
  }
  .cart-wrap .order-form-container .payment-form .select-container select {
    height: 36px;
    font-size: 14px;
  }
  .cart-wrap .order-form-container .agree-container .text {
    font-size: 14px;
  }
  .cart-wrap .order-form-container .agree-container .agree-box {
    padding: 20px;
    font-size: 13px;
  }
  .cart-wrap .order-form-container .agree-container .agree-check {
    margin-top: 20px;
  }
  .cart-wrap .order-form-container .agree-container .selector-cover .selector {
    width: 20px;
    height: 20px;
    top: 0;
  }
  .cart-wrap .order-form-container .agree-container .selector-cover .selector:after {
    width: 10px;
    height: 10px;
  }
  .cart-wrap .order-form-container .agree-container .selector-cover .label-text {
    padding-left: 28px;
    font-size: 16px;
  }
  .cart-wrap .order-form-container .agree-container .btn-membership {
    height: 36px;
    font-size: 14px;
  }
  .cart-wrap .order-form-container .date-container .text {
    font-size: 14px;
  }
  .cart-wrap .membership-list-container {
    padding-top: 26px;
  }
  .cart-wrap .membership-list-container .list-title {
    font-size: 16px;
  }
  .cart-wrap .membership-list-container .membership-list {
    margin-top: 32px;
  }
  .cart-wrap .membership-list-container .membership-list .list-item + .list-item {
    margin-top: 32px;
  }
  .cart-wrap .membership-list-container .membership-list .selector-cover .label-text {
    padding-left: 30px;
  }
  .cart-wrap .membership-list-container .membership-list .order-guide-box {
    margin-left: 30px;
  }
}
.selector-wrapper .selector-cover + .selector-cover {
  margin-top: 10px;
}
.selector-wrapper.horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 8px;
}
.selector-wrapper.horizontal .selector-cover + .selector-cover {
  margin-top: 0;
}

.selector-cover {
  width: auto;
  height: auto;
  line-height: 1.3;
  font-size: 0;
}
.selector-cover input {
  position: absolute;
  position: absolute !important;
  display: block;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}
.selector-cover input.focusable:active, .selector-cover input.focusable:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}
.selector-cover .label {
  cursor: pointer;
  padding-left: 0;
}
.selector-cover .label-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.3;
  padding-left: 28px;
  font-weight: 500;
  font-size: 16px;
}
.selector-cover .selector {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #e0e0e3;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.selector-cover .selector:after {
  display: block;
  content: "";
  position: absolute;
}
.selector-cover.checkbox.square input:checked + .label-text .selector {
  background-color: transparent;
  border-color: transparent;
  background-image: url("../images/renewal_2024/icon/icon-checkbox-on.png");
}
.selector-cover.checkbox.square .selector {
  width: 16px;
  height: 16px;
  top: 0;
  border-radius: 0;
  background-image: url("../images/renewal_2024/icon/icon-checkbox-off.png");
  background-size: cover;
  border: 0;
}
.selector-cover.checkbox.square .selector:after {
  display: none;
}
@media (max-width: 1120px) {
  .selector-cover.checkbox.square .selector {
    top: 0;
  }
}
.selector-cover.checkbox.square .label-text {
  min-height: 16px;
  padding-left: 24px;
  line-height: 1.248;
  font-weight: 600;
  font-size: 14px;
}
@media (max-width: 1120px) {
  .selector-cover.checkbox.square .label-text {
    font-size: 13px;
  }
}
.selector-cover.checkbox input:checked + .label-text .selector {
  background-color: #fff;
  border-color: #000;
}
.selector-cover.checkbox input:checked + .label-text .selector:after {
  background-color: #000;
}
.selector-cover.checkbox .label-text {
  min-height: 20px;
}
.selector-cover.checkbox .selector {
  height: 20px;
  width: 20px;
  border-radius: 50%;
}
.selector-cover.checkbox .selector:after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
}
.selector-cover.checkbox.solo .label-text {
  padding-left: 20px;
}
.selector-cover.radio.square input:checked + .label-text .selector {
  background-color: transparent;
  border-color: transparent;
  background-image: url("../images/renewal_2024/icon/icon-checkbox-on.png");
}
.selector-cover.radio.square .selector {
  width: 16px;
  height: 16px;
  top: 0;
  border-radius: 0;
  background-image: url("../images/renewal_2024/icon/icon-checkbox-off.png");
  background-size: cover;
  border: 0;
}
.selector-cover.radio.square .selector:after {
  display: none;
}
@media (max-width: 1120px) {
  .selector-cover.radio.square .selector {
    top: 0;
  }
}
.selector-cover.radio.square .label-text {
  min-height: 16px;
  padding-left: 24px;
  line-height: 1.248;
  font-weight: 600;
  font-size: 14px;
}
@media (max-width: 1120px) {
  .selector-cover.radio.square .label-text {
    font-size: 13px;
  }
}
.selector-cover.radio input:checked + .label-text .selector {
  background-color: #fff;
  border-color: #000;
}
.selector-cover.radio input:checked + .label-text .selector:after {
  background-color: #000;
}
.selector-cover.radio .label-text {
  min-height: 20px;
}
.selector-cover.radio .selector {
  height: 20px;
  width: 20px;
  border-radius: 50%;
}
.selector-cover.radio .selector:after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
}
.selector-cover.radio.solo .label-text {
  padding-left: 20px;
}

.security-protocol-popup .popup-container {
  border-radius: 8px !important;
}
.security-protocol-popup .agree-text-box {
  padding: 26px 32px;
  margin-top: 40px;
  border-top: 3px solid #000;
  background-color: #f4f4f4;
  line-height: 1.6;
  font-weight: 500;
  font-size: 15px;
}
.security-protocol-popup .agree-list {
  margin-top: 40px;
}
.security-protocol-popup .agree-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.security-protocol-popup .agree-list li label {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  cursor: pointer;
}
.security-protocol-popup .agree-list li .selector {
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 16px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: url("../images/renewal_2024/icon/icon-check-bk-24x24-off.png");
  background-size: cover;
}
.security-protocol-popup .agree-list li input {
  position: absolute !important;
  display: block;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  cursor: pointer;
}
.security-protocol-popup .agree-list li input.focusable:active, .security-protocol-popup .agree-list li input.focusable:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}
.security-protocol-popup .agree-list li input:checked + .selector {
  background-image: url("../images/renewal_2024/icon/icon-check-bk-24x24-on.png");
}
.security-protocol-popup .agree-list li .number {
  margin-right: 4px;
  line-height: 1.4;
  font-weight: 500;
  font-size: 16px;
}
.security-protocol-popup .agree-list li .text {
  line-height: 1.4;
  font-weight: 500;
  font-size: 16px;
}
.security-protocol-popup .agree-list li strong {
  font-weight: 600;
  color: #ee2a24;
}
.security-protocol-popup .agree-list li + li {
  margin-top: 24px;
}
.security-protocol-popup .agree-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 3px solid #000;
}
.security-protocol-popup .selector-cover.checkbox input:checked + .label-text .selector {
  background-image: url("../images/renewal_2024/icon/icon-check-red-24x24-on.png");
}
.security-protocol-popup .selector-cover.checkbox .selector {
  top: 2px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  background-image: url("../images/renewal_2024/icon/icon-check-bk-24x24-off.png");
  border: 0;
}
.security-protocol-popup .selector-cover.checkbox .selector:after {
  display: none;
}
.security-protocol-popup .selector-cover.checkbox .label-text {
  padding-left: 32px;
  font-weight: 700;
  font-size: 22px;
}
.security-protocol-popup .agree-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 48px;
}
.security-protocol-popup .agree-info .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: right;
}
.security-protocol-popup .agree-info .list-item + .list-item {
  margin-top: 4px;
}
.security-protocol-popup .agree-info .list-item .type {
  font-weight: 600;
  font-size: 14px;
}
.security-protocol-popup .agree-info .list-item .value {
  margin-left: 4px;
  font-weight: 800;
  font-size: 14px;
}
.security-protocol-popup .agree-info .list-item .value input {
  width: 100px;
  height: 32px;
  line-height: 32px;
  padding: 0 12px;
  text-align: right;
  text-indent: 0;
  background-color: #fff;
}
.security-protocol-popup .btb-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 64px;
}
.security-protocol-popup .btb-group .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 352px;
  height: 70px;
  font-weight: 600;
  font-size: 22px;
  border-radius: 4px;
  color: #fff;
  background-color: #ee2a24;
}

@media (max-width: 1120px) {
  .security-protocol-popup .popup-inner {
    padding: 48px 24px;
  }
  .security-protocol-popup .popup-title strong {
    font-size: 22px;
  }
  .security-protocol-popup .agree-text-box {
    padding: 16px 24px;
    margin-top: 32px;
    font-size: 14px;
  }
  .security-protocol-popup .agree-list {
    margin-top: 32px;
  }
  .security-protocol-popup .agree-list li label {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
  .security-protocol-popup .agree-list li .selector {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }
  .security-protocol-popup .agree-list li .number {
    font-size: 14px;
  }
  .security-protocol-popup .agree-list li .text {
    font-size: 14px;
  }
  .security-protocol-popup .agree-list li + li {
    margin-top: 20px;
  }
  .security-protocol-popup .agree-check {
    margin-top: 32px;
    padding-top: 32px;
  }
  .security-protocol-popup .selector-cover.checkbox .label-text {
    font-size: 20px;
  }
  .security-protocol-popup .agree-info {
    margin-top: 32px;
  }
  .security-protocol-popup .agree-info .list-item .type {
    font-size: 13px;
  }
  .security-protocol-popup .agree-info .list-item .value {
    font-size: 13px;
  }
  .security-protocol-popup .btb-group {
    margin-top: 48px;
  }
  .security-protocol-popup .btb-group .btn {
    width: 320px;
    height: 60px;
    font-size: 20px;
  }
}
.no-cursor {
  cursor: default;
}

em {
  font-style: normal;
}

#form1 {
  min-height: calc(100% - 70px);
}

#Lists.qnaLists .table {
  display: block;
  overflow: visible;
  border: 0;
}
#Lists.qnaLists .table .btn-more-trigger {
  cursor: pointer;
}
#Lists.qnaLists .table .btn-more-trigger.active .cell {
  font-weight: 700;
}
#Lists.qnaLists .table .th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#Lists.qnaLists .table .th .cell {
  border-bottom: 0;
  background-color: #f8f8f8;
}
#Lists.qnaLists .table .td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#Lists.qnaLists .table .td .cell {
  color: #000;
}
#Lists.qnaLists .table .cell {
  -webkit-box-flex: 1;
      -ms-flex: 1 14%;
          flex: 1 14%;
  font-family: inherit;
  -webkit-transition: none;
  transition: none;
}
#Lists.qnaLists .table .cell.number {
  -webkit-box-flex: 1;
      -ms-flex: 1 8%;
          flex: 1 8%;
}
#Lists.qnaLists .table .cell.staus, #Lists.qnaLists .table .cell.date {
  -webkit-box-flex: 1;
      -ms-flex: 1 11%;
          flex: 1 11%;
}
@media (max-width: 1120px) {
  #Lists.qnaLists .table .cell {
    padding-top: 21px;
    padding-bottom: 21px;
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 29.33% !important;
            flex: 1 29.33% !important;
    min-width: auto;
  }
  #Lists.qnaLists .table .cell.number {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 12% !important;
            flex: 1 12% !important;
  }
  #Lists.qnaLists .table .cell.type, #Lists.qnaLists .table .cell.group, #Lists.qnaLists .table .cell.phone, #Lists.qnaLists .table .cell.email {
    display: none;
  }
}

.more-table-container {
  -webkit-transition: none;
  transition: none;
  display: none;
  padding: 40px 160px;
  border: 1px solid #000;
  border-top-width: 2px;
}
.more-table-container .more-table-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
}
.more-table-container .more-table-item + .more-table-item {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid #ddd;
}
.more-table-container .more-table-type {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  line-height: 1;
  font-weight: 900;
  font-size: 30px;
}
.more-table-container .more-field {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.more-table-container .field-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 16px 0;
}
.more-table-container .field-item + .field-item {
  border-top: 1px solid #e7e7e7;
}
.more-table-container .field-item:first-child {
  padding-top: 0;
}
.more-table-container .field-item:last-child {
  padding-bottom: 0;
}
.more-table-container .field-asset {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.more-table-container .field-asset.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
.more-table-container .field-asset.column .field-value {
  line-height: 1.6;
  font-size: 16px;
}
.more-table-container .field-type {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  height: 36px;
  border-radius: 100px;
  background-color: #f8f8f8;
  text-align: center;
  line-height: 1.2;
  font-size: 15px;
}
.more-table-container .field-value {
  line-height: 1.4;
  font-weight: 600;
  font-size: 15px;
  word-break: break-all;
}
.more-table-container .anwser-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  word-break: break-all;
}

@media (max-width: 1120px) {
  .more-table-container {
    padding: 16px;
  }
  .more-table-container .more-table-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .more-table-container .more-table-item + .more-table-item {
    padding-top: 24px;
    margin-top: 24px;
  }
  .more-table-container .more-field {
    width: 100%;
  }
  .more-table-container .field-item {
    gap: 0;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .more-table-container .field-item + .field-item {
    border: 0;
  }
  .more-table-container .field-item:first-child .field-asset:first-child {
    padding-top: 0;
    border-top: 0;
  }
  .more-table-container .field-item:last-child .field-asset:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .more-table-container .field-asset {
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #e7e7e7;
  }
  .more-table-container .field-asset.column .field-value {
    color: #000;
    font-size: 15px;
  }
  .more-table-container .field-type {
    width: 100px;
    height: 40px;
    font-size: 13px;
  }
  .more-table-container .field-value {
    font-size: 15px;
    color: #666;
  }
  .more-table-container .anwser-text {
    font-size: 15px;
  }
}
html,
body {
  -webkit-overflow-scrolling: touch;
}
html.scroll-disable,
body.scroll-disable {
  overflow: hidden !important;
}
html.scroll-disable.scroll-visible,
body.scroll-disable.scroll-visible {
  overflow-y: scroll !important;
  height: auto;
}

#container {
  padding-top: 130px;
  height: auto;
  min-height: calc(100% - 70px);
  padding-bottom: 210px;
}

#header {
  -webkit-transition: 0.25s;
  transition: 0.25s;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  margin: 0 auto;
  height: 130px;
  z-index: 103;
  background-color: #fff;
}
#header.scroll, #header.sticky {
  height: 80px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1490196078);
}
#header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  height: 100%;
  padding: 0 80px;
}
#header .header-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
#header .mobile-btn-all-menu {
  display: none;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 24px;
  height: 16px;
  background: url("../images/renewal_2024/icon/icon-all-menu.png") no-repeat 0 0;
  background-size: cover;
  text-indent: -9999px;
  border: 0;
}
#header .header-logo {
  max-width: 148px;
}
#header .header-logo a,
#header .header-logo img {
  display: block;
}
#header .header-gnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
#header .header-gnb-item a {
  display: block;
  font-weight: 700;
  font-size: 18px;
}
#header .header-gnb-item .btn-all-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border: 0;
  overflow: hidden;
  font-weight: 700;
  font-size: 18px;
}
#header .header-gnb-item .btn-all-menu.active .icon {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
#header .header-gnb-item .btn-all-menu .icon {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/renewal_2024/icon/icon-arrow-bk-20x20.png") no-repeat 0 0;
  background-size: cover;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#header .header-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  width: 33.33%;
  min-width: 360px;
  height: 50px;
  padding: 0 40px;
  border-radius: 100px;
  border: 0;
  background-color: #f4f4f4;
}
#header .header-search .icon-search {
  display: block;
  width: 18px;
  height: 18px;
  background: url("../images/renewal_2024/icon/icon-search-bk-25x25.png") no-repeat 0 0;
  background-size: cover;
}
#header .header-search .text {
  font-weight: 300;
  font-size: 18px;
}
#header .header-util {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
#header .btn-login {
  display: inline-block;
  padding: 3px 7px;
  border: 1px solid #000;
  border-radius: 2px;
  line-height: 1.24;
  font-weight: 700;
  font-size: 13px;
}
#header .user-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 0;
  position: relative;
}
#header .user-info .label {
  display: inline-block;
  padding: 3px 8px;
  line-height: 1.25;
  font-weight: 700;
  font-size: 10px;
  border-radius: 100px;
  border: 1px solid #000;
  color: #000;
}
#header .user-info .label.primeum {
  background-color: #735cce;
  border-color: #735cce;
  color: #fff;
}
#header .user-info .label.lite {
  background-color: #e74d58;
  border-color: #e74d58;
  color: #fff;
}
#header .user-info .text {
  position: relative;
  font-size: 14px;
}
#header .user-info .text .btn-my-box {
  max-width: 160px;
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-weight: 700;
  text-decoration: underline;
  border: 0;
}
#header .user-info .new-coupon {
  -webkit-animation: couponShowHide 1.5s both;
          animation: couponShowHide 1.5s both;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: calc(100% + 4px);
  width: 114px;
  height: 24px;
  border-radius: 4px;
  background-color: #ee2a24;
  text-align: center;
  font-weight: 700;
  font-size: 10px;
  color: #fff;
}
#header .user-info .new-coupon::after {
  display: block;
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-bottom: 4px solid transparent;
  border-top: 4px solid #ee2a24;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}
@-webkit-keyframes couponShowHide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes couponShowHide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#header .header-my-box {
  display: none;
  position: absolute;
  top: calc(100% + 24px);
  right: -49px;
  padding: 24px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1490196078);
          box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 8px;
}
#header .header-my-box.active {
  display: block;
}
#header .header-my-box:before {
  display: block;
  content: "";
  position: absolute;
  bottom: calc(100% - 6px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-bottom: 15px solid #fff;
  border-top: 15px solid transparent;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}
#header .header-my-box .my-box-menu {
  padding: 16px 0;
}
#header .header-my-box .my-box-menu + .my-box-menu {
  border-top: 1px solid #d3d6d9;
}
#header .header-my-box .my-box-menu:first-child {
  padding-top: 0;
}
#header .header-my-box .my-box-menu:last-child {
  padding-bottom: 0;
}
#header .header-my-box .my-box-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
#header .header-my-box .my-box-menu a .count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
  height: 16px;
  color: #fff;
  border-radius: 50%;
  background-color: #ee2a24;
  font-size: 10px;
}
#header .header-my-box .my-box-menu a:hover {
  color: #ee2a24;
}
#header .header-my-box .my-box-menu a + a {
  margin-top: 12px;
}
#header .btn-apply {
  display: block;
  width: 27px;
  height: 26px;
  border: 0;
  background: url("../images/renewal_2024/icon/icon-apply-bk-27x26.png") no-repeat 0 0;
  background-size: cover;
}
#header .btn-util {
  display: block;
  width: 26px;
  height: 26px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}
#header .btn-util.cart {
  background-image: url("../images/renewal_2024/icon/icon-cart-bk-26x26.png");
}
#header .btn-util.cart .count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -2px;
  right: -2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 10px;
  background-color: #ee2a24;
  color: #fff;
}
#header .btn-mobile-util {
  display: none;
}

.all-menu-container {
  -webkit-transition: none;
  transition: none;
  display: none;
  position: fixed;
  top: 130px;
  z-index: 102;
  width: 100%;
  background-color: #f4f4f4;
}
.all-menu-container.scroll, .all-menu-container.sticky {
  top: 80px;
}
.all-menu-container .menu-inner {
  padding: 0 20px;
  width: 100%;
  max-width: 1320px;
  position: relative;
  margin: 0 auto;
}
.all-menu-container .btn-menu-close {
  display: none;
}
.all-menu-container .mobile-search-area {
  display: none;
}
.all-menu-container .menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.all-menu-container .menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 120px;
  width: 100%;
  padding: 64px 0;
}
.all-menu-container .menu-item-title {
  display: inline-block;
  font-weight: 800;
  font-size: 16px;
}
.all-menu-container .menu-item-title.active {
  color: #ee2a24;
}
.all-menu-container .sub-menu {
  margin-top: 40px;
}
.all-menu-container .sub-menu-item + .sub-menu-item {
  margin-top: 16px;
}
.all-menu-container .sub-menu-item a {
  -webkit-transition: none;
  transition: none;
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
}
.all-menu-container .sub-menu-item a:hover {
  font-weight: 800;
  color: #ee2a24;
}
.all-menu-container .sub-menu-item.active a {
  font-weight: 800;
  color: #ee2a24;
}
.all-menu-container .banner-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 455px;
  height: 336px;
  position: relative;
}
.all-menu-container .banner-img a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.all-menu-container .mobile-etc-menu {
  display: none;
}

.header-dim {
  display: none;
  position: fixed;
  top: 130px;
  left: 0;
  z-index: 101;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.search-popup-container {
  -webkit-transition: none;
  transition: none;
  display: none;
  position: fixed;
  top: 0;
  z-index: 103;
  width: 100%;
  max-height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}
.search-popup-container .btn-search-close {
  position: absolute;
  top: 40px;
  left: 50%;
  margin-left: 560px;
  width: 33px;
  height: 33px;
  border: 0;
  background: url("../images/renewal_2024/icon/icon-close-bk-33x33.png") no-repeat 0 0;
  background-size: cover;
  text-indent: -9999px;
}
@media (max-width: 1220px) {
  .search-popup-container .btn-search-close {
    left: auto;
    right: 20px;
    margin-left: 0;
  }
}

.search-total-container {
  background-color: #fcfcfe;
}
.search-total-container .search-inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 145px 20px 80px;
}
.search-total-container .search-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 40px;
}
.search-total-container .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 640px;
  height: 50px;
  margin: 0 auto;
  position: relative;
  padding: 0 30px;
  border-radius: 100px;
  border: 1px solid #c6c6c6;
  background-color: #f4f4f4;
}
.search-total-container .search-form input {
  display: block;
  width: 100%;
  height: 30px;
  font-weight: 700;
  font-size: 22px;
  border: 0;
  color: #000;
  text-indent: 0;
  background-color: transparent;
}
.search-total-container .search-form input::-webkit-input-placeholder {
  font-weight: 300;
}
.search-total-container .search-form input::-moz-placeholder {
  font-weight: 300;
}
.search-total-container .search-form input::-ms-input-placeholder {
  font-weight: 300;
}
.search-total-container .search-form input::placeholder {
  font-weight: 300;
}
.search-total-container .search-form input:focus-visible {
  outline: none;
}
.search-total-container .search-form .icon-search {
  display: block;
  width: 19px;
  height: 20px;
  text-indent: -9999px;
  border: 0;
  background: url("../images/renewal_2024/icon/icon-search-bk-19x20.png") no-repeat 0 0;
  background-size: cover;
}
.search-total-container .search-popular {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}
.search-total-container .search-popular .item {
  margin: 0 8px 8px 0;
  padding: 8px 12px;
  font-size: 14px;
  color: #666;
  border-radius: 8px;
  background-color: #ededed;
}
.search-total-container .search-popular .item:hover {
  background-color: #666;
  color: #fff;
}
.search-total-container .search-item {
  position: relative;
  padding: 24px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.search-total-container .search-item:nth-last-of-type(1) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 16px;
}
.search-total-container .search-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 855px;
  margin: 0 auto;
}
.search-total-container .search-type {
  min-width: 60px;
  font-weight: 700;
  font-size: 14px;
}
.search-total-container .search-type.space {
  margin-top: 8px;
}
.search-total-container .search-detail {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 60px;
}
.search-total-container .search-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.search-total-container .search-category .item {
  margin-right: 12px;
  margin-bottom: 12px;
}
.search-total-container .search-category .item input {
  position: absolute !important;
  display: block;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}
.search-total-container .search-category .item input.focusable:active, .search-total-container .search-category .item input.focusable:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}
.search-total-container .search-category .item input:checked + label {
  color: #fff;
  background-color: #5c5c5c;
  border-color: #5c5c5c;
}
.search-total-container .search-category .item label {
  display: block;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #a4a4a4;
  color: #000;
}
.search-total-container .search-date-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-total-container .search-date-wrapper .selector-item {
  margin-bottom: 0;
}
.search-total-container .selector-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.search-total-container .selector-item {
  margin-right: 24px;
  margin-bottom: 8px;
}
.search-total-container .selector-item input {
  position: absolute !important;
  display: block;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}
.search-total-container .selector-item input.focusable:active, .search-total-container .selector-item input.focusable:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}
.search-total-container .selector-item input:checked + label .icon {
  background-image: url("../images/renewal_2024/icon/icon-checkbox-on.png");
}
.search-total-container .selector-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.search-total-container .selector-item .icon {
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: url("../images/renewal_2024/icon/icon-checkbox-off.png");
  background-size: cover;
}
.search-total-container .selector-item .text {
  display: block;
  padding-left: 8px;
  font-size: 14px;
}
.search-total-container .btn-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 254px;
  height: 60px;
  margin: 40px auto 0;
  border-radius: 100px;
  font-weight: 500;
  font-size: 24px;
  color: #fff;
  background-color: #ee2a24;
  border-color: #ee2a24;
}
.search-total-container .more-container {
  -webkit-transition: none;
  transition: none;
  display: none;
  padding: 24px 0;
  background-color: #fff;
}
.search-total-container .more-item + .more-item {
  margin-top: 24px;
}
.search-total-container .more-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 855px;
  margin: 0 auto;
}
.search-total-container .more-item-space {
  min-width: 60px;
}
.search-total-container .more-item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 60px;
}
.search-total-container .btn-detail-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 32px;
  right: 0;
  border: 0;
  font-weight: 700;
  font-size: 14px;
}
.search-total-container .btn-detail-toggle.active .icon {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.search-total-container .btn-detail-toggle .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  background: url("../images/renewal_2024/icon/icon-arrow-bk-20x20.png") no-repeat 0 0;
  background-size: cover;
}

@media (max-width: 1600px) {
  #header .header-gnb-item:not(.all-menu) {
    display: none;
  }
}
@media (max-width: 1120px) {
  #header {
    height: 56px;
    z-index: 101;
  }
  #header.scroll {
    height: 56px;
  }
  #header .header-inner {
    padding: 0 16px;
  }
  #header .mobile-btn-all-menu {
    display: block;
  }
  #header .header-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    max-width: 150px;
  }
  #header .header-gnb {
    display: none;
  }
  #header .header-gnb-item a {
    display: block;
    font-weight: 700;
    font-size: 18px;
  }
  #header .header-gnb-item .btn-all-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    border: 0;
    overflow: hidden;
    font-weight: 700;
    font-size: 18px;
  }
  #header .header-gnb-item .btn-all-menu .icon {
    display: block;
    width: 20px;
    height: 20px;
    background: url("../images/renewal_2024/icon/icon-arrow-bk-20x20.png") no-repeat 0 0;
    background-size: cover;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  #header .header-search {
    display: none;
  }
  #header .header-util {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 24px;
  }
  #header .btn-login,
  #header .user-info,
  #header .header-my-box,
  #header .btn-apply,
  #header .btn-util {
    display: none;
  }
  #header .btn-mobile-util {
    display: block;
    position: relative;
  }
  #header .btn-mobile-util.after .icon-user:before {
    display: block;
    content: "";
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: url("../images/renewal_2024/icon/icon-check-red-12x12.png") no-repeat 0 0;
    background-size: cover;
  }
  #header .btn-mobile-util .icon-user {
    display: block;
    width: 24px;
    height: 24px;
    text-indent: -9999px;
    background: url("../images/renewal_2024/icon/icon-user-bk-24x24.png") no-repeat 0 0;
    background-size: cover;
  }
  #header .mobile-user-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 120px;
    padding: 16px;
    border-radius: 4px;
    background-color: #f6f6f6;
    border: 1px solid #dbdee2;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1019607843);
            box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1019607843);
  }
  #header .mobile-user-menu.open {
    display: block;
  }
  #header .mobile-user-menu .mobile-user-info {
    text-align: center;
    margin-bottom: 12px;
  }
  #header .mobile-user-menu .mobile-user-info .label {
    display: inline-block;
    padding: 3px 8px;
    line-height: 1;
    font-weight: 700;
    font-size: 10px;
    border-radius: 4px;
    border: 1px solid #000;
    color: #000;
  }
  #header .mobile-user-menu .mobile-user-info .label.primeum {
    background-color: #735cce;
    border-color: #735cce;
    color: #fff;
  }
  #header .mobile-user-menu .mobile-user-info .label.lite {
    background-color: #e74d58;
    border-color: #e74d58;
    color: #fff;
  }
  #header .mobile-user-menu .user-name {
    margin-top: 4px;
    text-align: center;
    font-size: 14px;
  }
  #header .mobile-user-menu .user-name span {
    word-break: break-all;
    font-weight: 800;
    border-bottom: 1px solid #000;
  }
  #header .mobile-user-menu .menu-list-item {
    padding: 12px 0;
    border-top: 1px solid #d3d6d9;
    text-align: center;
  }
  #header .mobile-user-menu .menu-list-item:last-child {
    padding-bottom: 0;
  }
  #header .mobile-user-menu .menu-list-item a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 4px;
    font-weight: 700;
    font-size: 14px;
  }
  #header .mobile-user-menu .menu-list-item .count {
    padding: 2px 5px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 10px;
    color: #fff;
    background-color: #ee2a24;
  }
  .all-menu-container {
    max-width: 360px;
    width: 100%;
    height: 100%;
    overflow: auto;
    top: 0;
  }
  .all-menu-container.scroll {
    top: 0;
  }
  .all-menu-container .menu-inner {
    padding: 68px 16px 38px;
  }
  .all-menu-container .btn-menu-close {
    display: block;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 44px;
    height: 44px;
    border: 0;
    text-indent: -9999px;
    background: url("../images/renewal_2024/icon/icon-close-gy-44x44.png") no-repeat 0 0;
    background-size: cover;
  }
  .all-menu-container .mobile-search-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border-radius: 8px;
    background-color: #fff;
    border: 0;
  }
  .all-menu-container .mobile-search-area .icon-search {
    display: block;
    width: 18px;
    height: 18px;
    background: url("../images/renewal_2024/icon/icon-search-bk-25x25.png") no-repeat 0 0;
    background-size: cover;
  }
  .all-menu-container .mobile-search-area .text {
    font-weight: 500;
    font-size: 14px;
    color: #999;
  }
  .all-menu-container .menu-wrapper {
    display: block;
  }
  .all-menu-container .menu-list {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 26px;
    gap: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .all-menu-container .menu-item {
    width: 100%;
    border-right: 0;
    text-align: left;
    padding-left: 0;
  }
  .all-menu-container .menu-item:first-child {
    border-left: 0;
  }
  .all-menu-container .menu-item-title {
    display: block;
    margin-bottom: 12px;
    font-weight: 800;
    font-size: 18px;
  }
  .all-menu-container .sub-menu {
    padding: 16px;
    margin-top: 0;
    border-top: 2px solid #000;
    background-color: #fff;
  }
  .all-menu-container .sub-menu-item + .sub-menu-item {
    margin-top: 12px;
  }
  .all-menu-container .sub-menu-item a {
    font-size: 14px;
  }
  .all-menu-container .banner-img {
    display: none;
  }
  .header-dim {
    top: 0;
  }
  .search-popup-container .btn-search-close {
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
  }
  .search-total-container .search-inner {
    padding: 60px 16px;
  }
  .search-total-container .search-primary {
    padding-bottom: 24px;
  }
  .search-total-container .search-form {
    height: 42px;
  }
  .search-total-container .search-form input {
    height: 40px;
    font-size: 16px;
  }
  .search-total-container .search-popular {
    margin-top: 24px;
  }
  .search-total-container .search-popular .item {
    font-size: 12px;
  }
  .search-total-container .search-item {
    padding: 16px 0;
  }
  .search-total-container .search-item-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .search-total-container .search-type {
    min-width: none;
    font-size: 14px;
  }
  .search-total-container .search-type.space {
    margin-top: 0;
  }
  .search-total-container .search-detail {
    margin-left: 0;
    margin-top: 12px;
  }
  .search-total-container .search-category .item {
    margin-right: 6px;
    margin-bottom: 6px;
  }
  .search-total-container .search-category .item label {
    padding: 6px 8px;
    font-size: 12px;
  }
  .search-total-container .search-date-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .search-total-container .search-date-wrapper .selector-item {
    margin-bottom: 0;
  }
  .search-total-container .datepicker-container {
    margin-top: 12px;
  }
  .search-total-container .selector-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .search-total-container .selector-item {
    margin-right: 12px;
    margin-bottom: 8px;
  }
  .search-total-container .selector-item .text {
    font-size: 12px;
  }
  .search-total-container .btn-submit {
    width: 100%;
    max-width: 260px;
    height: 40px;
    margin: 20px auto 0;
    font-size: 16px;
  }
}
.float-top-btn {
  position: fixed;
  bottom: 60px;
  right: 40px;
  z-index: 2;
}
.float-top-btn button {
  display: block;
  width: 54px;
  height: 54px;
  border: 0;
  text-indent: -9999px;
  border-radius: 50%;
  background-image: url("../images/renewal_2024/icon/icon-btn-top.png");
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: 50% 50%;
  background-color: #000;
}

#footer {
  height: 210px;
  position: relative;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  margin-top: 70px;
  background-color: #212128;
}
#footer.main {
  margin-top: 0;
}
#footer .footer-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
#footer .footer-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  padding: 32px 0 24px;
}
#footer .footer-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
#footer .footer-sns a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #bcbcbe;
}
#footer .footer-sns .icon {
  display: block;
  width: 38px;
  height: 38px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}
#footer .footer-sns .icon.insta {
  background-image: url("../images/renewal_2024/icon/icon-insta-bk-38x38.png");
}
#footer .footer-sns .icon.facebook {
  background-image: url("../images/renewal_2024/icon/icon-facebook-bk-38x38.png");
}
#footer .footer-sns .icon.blog {
  background-image: url("../images/renewal_2024/icon/icon-blog-bk-38x38.png");
}
#footer .footer-sns .icon.post {
  background-image: url("../images/renewal_2024/icon/icon-post-bk-38x38.png");
}
#footer .family-site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
#footer .family-site .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 15px;
  color: #bcbcbe;
}
#footer .family-site .item .icon {
  display: block;
  width: 20px;
  height: 20px;
  background: url("../images/renewal_2024/icon/icon-footer-arrow-gy-20x20.png") no-repeat 0 0;
  background-size: cover;
}
#footer .footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
#footer .footer-info .policy-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer .footer-info .policy-menu li {
  position: relative;
}
#footer .footer-info .policy-menu li + li {
  margin-left: 16px;
  padding-left: 16px;
}
#footer .footer-info .policy-menu li + li:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 8px;
  background-color: #555;
}
#footer .footer-info .policy-menu a {
  display: block;
  font-weight: 800;
  font-size: 14px;
  color: #bcbcbe;
}
#footer .footer-info .info-text {
  text-align: right;
  line-height: 1.4;
  font-weight: 600;
  font-size: 14px;
  color: #646468;
}

@media (max-width: 1120px) {
  #container {
    min-height: auto;
    padding-bottom: 0;
    padding-top: 60px;
  }
  .float-top-btn {
    bottom: 60px;
    right: 20px;
  }
  .float-top-btn button {
    width: 40px;
    height: 40px;
    background-size: 20px 20px;
  }
  #footer {
    height: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: 42px;
  }
  #footer .footer-primary {
    gap: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0;
  }
  #footer .footer-sns {
    gap: 24px;
  }
  #footer .footer-sns a {
    font-size: 12px;
  }
  #footer .footer-sns .icon {
    width: 34px;
    height: 34px;
  }
  #footer .family-site {
    gap: 24px;
  }
  #footer .family-site .item a {
    gap: 6px;
    font-size: 12px;
  }
  #footer .footer-info {
    gap: 16px;
    padding-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #footer .footer-info .policy-menu a {
    font-size: 12px;
  }
  #footer .footer-info .info-text {
    font-size: 12px;
    text-align: center;
  }
}
.datepicker-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.datepicker-container .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 163px;
  height: 38px;
  padding-left: 24px;
  position: relative;
  background-color: #ededed;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 8px;
}
.datepicker-container .item.select::after {
  display: none;
}
.datepicker-container .item::after {
  display: block;
  content: "";
  width: 20px;
  height: 22px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 24px;
  z-index: 0;
  background: url("../images/renewal_2024/icon/icon-calendar.png") no-repeat 0 0;
  background-size: cover;
  border: 0;
}
@media (max-width: 1120px) {
  .datepicker-container .item::after {
    width: 16px;
    height: 17.5px;
    right: 12px;
  }
}
.datepicker-container .item input {
  display: block;
  width: 100%;
  height: 21px;
  font-size: 14px;
  text-indent: 0;
  background-color: transparent;
  border: 0;
  position: relative;
  z-index: 2;
}
.datepicker-container .item input:focus-visible {
  outline: none;
}
.datepicker-container .item button {
  display: block;
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 22px;
  background: url("../images/renewal_2024/icon/icon-calendar.png") no-repeat 0 0;
  background-size: cover;
  border: 0;
}
.datepicker-container .wave {
  display: block;
  margin: 0 12px;
  font-size: 14px;
}

@media (max-width: 800px) {
  .datepicker-container .item {
    width: 120px;
    height: 38px;
    padding-left: 12px;
  }
  .datepicker-container .item input {
    width: 100%;
    height: 21px;
    font-size: 12px;
  }
  .datepicker-container .item button {
    right: 12px;
    width: 20px;
    height: 22px;
  }
  .datepicker-container .wave {
    margin: 0 8px;
    font-size: 12px;
  }
}
.ui-datepicker {
  -webkit-transition: none;
  transition: none;
  width: 18em !important;
  padding: 10px !important;
}
@media (max-width: 1120px) {
  .ui-datepicker.year {
    width: 200px !important;
  }
}
.ui-datepicker.ui-widget.ui-widget-content {
  margin-top: 10px;
  z-index: 120 !important;
}
.ui-datepicker .ui-datepicker-close {
  float: none !important;
  text-align: center !important;
  width: 100% !important;
  margin-bottom: 0 !important;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  -webkit-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
  top: 50% !important;
}
.ui-datepicker .ui-datepicker-prev .ui-icon,
.ui-datepicker .ui-datepicker-next .ui-icon {
  width: 16px;
  height: 16px;
  background-repeat: no-repeat !important;
  background-position: 0 0 !important;
  background-size: cover !important;
}
.ui-datepicker .ui-datepicker-prev .ui-icon {
  background-image: url("../images/renewal_2024/icon/icon-arrow-prev-bk-32x32.png") !important;
}
.ui-datepicker .ui-datepicker-next .ui-icon {
  background-image: url("../images/renewal_2024/icon/icon-arrow-next-bk-32x32.png") !important;
}
.ui-datepicker .ui-widget-header {
  background-color: #fff;
  border: 0;
}
.ui-datepicker .ui-datepicker-title {
  font-size: 12px;
}
.ui-datepicker .ui-datepicker-title select {
  -webkit-appearance: auto;
  width: calc(45% - 10px) !important;
  min-width: 70px;
  margin: 0 5px !important;
  padding: 5px 5px !important;
  border: 1px solid #ddd !important;
  font-size: 14px !important;
}
.ui-datepicker .ui-state-default {
  border: 0 !important;
  background-color: #fff !important;
  text-align: center !important;
  font-size: 16px;
}
.ui-datepicker .ui-state-default.ui-state-active {
  background-color: #ee2a24 !important;
  border-color: transparent !important;
  color: #fff !important;
}
.ui-datepicker .ui-state-highlight,
.ui-datepicker .ui-widget-content .ui-state-highlight,
.ui-datepicker .ui-widget-header .ui-state-highlight {
  background-color: #f1f1f1 !important;
  color: #999 !important;
}

.skyscraper {
  position: absolute;
  z-index: 10;
  top: 290px;
  right: 40px;
  -webkit-transition: all 0s ease;
  transition: all 0s ease;
}
@media (min-width: 1421px) {
  .skyscraper.fixed {
    position: fixed;
    top: 90px;
  }
}
.skyscraper .item {
  display: block;
  position: relative;
  width: 68px;
}
.skyscraper .item + .item {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
}
.skyscraper .item.project {
  display: none;
}
.skyscraper .item.project .icon {
  background-image: url("../images/renewal_2024/icon/icon-float-menu-inquiry.png");
  background-size: 60px 52px;
}
.skyscraper .item.membership .icon {
  background-image: url("../images/renewal_2024/icon/icon-float-menu-membership.png");
  background-size: 60px 42px;
}
.skyscraper .item.report {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.skyscraper .item.report .icon {
  background-image: url("../images/renewal_2024/icon/icon-float-menu-report.png");
  background-size: 56px 52px;
}
.skyscraper .icon {
  display: block;
  width: 60px;
  height: 52px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.skyscraper .text {
  display: block;
  margin-top: 4px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
}

@media screen and (max-width: 1460px) {
  .skyscraper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-left: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .skyscraper .item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 50px;
    background-color: #000;
  }
  .skyscraper .item.project {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #ee2a24;
  }
  .skyscraper .item + .item {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    border-left: 1px solid #fff;
  }
  .skyscraper .icon {
    display: none;
  }
  .skyscraper .text {
    color: #fff;
  }
  #footer {
    padding-bottom: 80px;
  }
}
#content.main-content {
  width: auto;
  margin: 0 auto;
  max-width: none;
  padding: 0;
}

.main-content .main-keyvisual-container {
  padding-top: 56px;
  position: relative;
}
.main-content .main-keyvisual-container:before {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 340px;
  background-color: #f4f4f4;
}
.main-content .main-keyvisual-container .main-keyvisul-inner {
  width: 100%;
  max-width: 1320px;
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 0 20px;
}
.main-content .main-keyvisual-container .main-keyvisual {
  overflow: hidden;
}
.main-content .main-keyvisual-container .main-keyvisual .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
.main-content .main-keyvisual-container .main-keyvisual .thumbnail-wrapper {
  max-width: 628px;
  width: 100%;
}
.main-content .main-keyvisual-container .main-keyvisual .thumbnail-wrapper .thumbnail {
  border-radius: 8px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  padding-bottom: 51.2738%;
}
.main-content .main-keyvisual-container .main-keyvisual .text-area .color-category {
  font-weight: 700;
  font-size: 14px;
}
.main-content .main-keyvisual-container .main-keyvisual .text-area h3 {
  margin-top: 24px;
  line-height: 1.4;
  font-weight: 900;
  font-size: 36px;
}
.main-content .main-keyvisual-container .main-keyvisual .text-area p {
  margin-top: 16px;
  line-height: 1.4;
  font-weight: 500;
  font-size: 16px;
}
.main-content .main-keyvisual-container .main-visual-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 148px;
  height: 22px;
  position: absolute;
  bottom: 0;
  right: 20px;
  z-index: 2;
  overflow: hidden;
}
.main-content .main-keyvisual-container .main-visual-control .swiper-button-next,
.main-content .main-keyvisual-container .main-visual-control .swiper-button-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 0;
  z-index: 3;
  text-indent: -9999px;
  width: auto;
  height: auto;
  margin-top: 0;
}
.main-content .main-keyvisual-container .main-visual-control .swiper-button-next:after,
.main-content .main-keyvisual-container .main-visual-control .swiper-button-prev:after {
  display: block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  background-image: url("../images/renewal_2024/icon/icon-arrow-bk-16x16.png");
}
.main-content .main-keyvisual-container .main-visual-control .swiper-button-prev {
  left: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.main-content .main-keyvisual-container .main-visual-control .swiper-button-next {
  right: 0;
}
.main-content .main-keyvisual-container .swiper-pagination {
  position: relative;
  top: auto;
  left: auto;
  bottom: auto;
  z-index: 2;
  font-weight: 700;
  font-size: 16px;
}
.main-content .search-section {
  padding-top: 40px;
}
.main-content .search-form-container {
  position: relative;
  height: 68px;
  border-radius: 8px;
  padding: 0 97px;
  background-color: #f4f4f4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.main-content .search-form-container form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.main-content .search-form-container input {
  width: 100%;
  height: 40px;
  border: 0;
  text-indent: 0;
  font-weight: 300;
  font-size: 24px;
  background-color: transparent;
}
.main-content .search-form-container input::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.main-content .search-form-container input::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.main-content .search-form-container input:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.main-content .search-form-container input:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.main-content .search-form-container input:placeholder {
  color: #999;
  opacity: 1;
}
.main-content .search-form-container input:focus-visible {
  outline: none;
}
.main-content .search-form-container .btn-search {
  position: absolute;
  top: 50%;
  left: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  height: 26px;
  background: url("../images/renewal_2024/icon/icon-search-bk-25x25.png") no-repeat 0 0;
  background-size: cover;
  text-indent: -9999px;
  border: 0;
}
.main-content .report-section {
  margin-top: 80px;
}
.main-content .report-list-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 40px;
}
.main-content .report-list-container .list-item {
  width: calc(25% - 18px);
}
.main-content .report-list-container .list-item:hover .thumbnail {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.main-content .report-list-container .list-item a {
  display: block;
}
.main-content .report-list-container .thumbnail-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}
.main-content .report-list-container .thumbnail-wrap .type {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-weight: 900;
  font-size: 14px;
  color: #fff;
}
.main-content .report-list-container .thumbnail {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  padding-bottom: 71.52%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.main-content .report-list-container .thumbnail:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(68.33%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.2)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 68.33%, rgba(0, 0, 0, 0.2) 100%, rgba(0, 0, 0, 0.2) 100%);
}
.main-content .report-list-container .info-area .color-category {
  margin-top: 24px;
  font-weight: 900;
  font-size: 15px;
}
.main-content .report-list-container .info-area .title {
  margin-top: 16px;
  display: block;
  display: -webkit-box;
  height: 2.8em;
  max-height: 2.8em;
  text-overflow: ellipsis;
  line-height: 1.4em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
  font-weight: 600;
  font-size: 20px;
}
.main-content .rolling-banner-section {
  margin-top: 64px;
}
.main-content .rolling-banner-section .item {
  border-radius: 8px;
  overflow: hidden;
}
.main-content .popular-section {
  margin-top: 64px;
}
.main-content .popular-list-container .popular-list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
  row-gap: 40px;
}
.main-content .popular-list-container .popular-list-group:before {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #f1f1f1;
}
.main-content .popular-list-container .list-item {
  width: calc(50% - 40px);
  position: relative;
}
.main-content .popular-list-container .list-item:hover .thumbnail {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.main-content .popular-list-container .list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.main-content .popular-list-container .list-item .number {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  font-weight: 900;
  font-size: 24px;
  color: #7c7c7c;
}
.main-content .popular-list-container .thumbnail-wrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 162px;
  margin-left: 24px;
  overflow: hidden;
  border-radius: 8px;
}
.main-content .popular-list-container .thumbnail {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  padding-bottom: 71.6%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.main-content .popular-list-container .info-area {
  margin-left: 16px;
}
.main-content .popular-list-container .info-area .color-category {
  font-weight: 800;
  font-size: 15px;
}
.main-content .popular-list-container .info-area .title {
  margin-top: 12px;
  font-weight: 400;
  font-size: 20px;
  display: block;
  display: -webkit-box;
  height: 2.8em;
  max-height: 2.8em;
  text-overflow: ellipsis;
  line-height: 1.4em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
}
.main-content .relevant-section {
  margin-top: 64px;
  padding: 64px 0;
  background-color: #f4f4f4;
}
.main-content .banner-section a {
  display: block;
  padding: 45px 0;
  background-color: #00a5ff;
}
.main-content .banner-section .section-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
.main-content .banner-section .logo-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.main-content .banner-section .logo-area .logo {
  max-width: 180px;
}
.main-content .banner-section .logo-area .text {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}
.main-content .banner-section .btn-area {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 180px;
  height: 56px;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
}
.main-content .banner-section .btn-area .icon {
  display: block;
  width: 14.5px;
  height: 8px;
  background: url("../images/renewal_2024/icon/icon-arrow-w-14x8.png") no-repeat 0 0;
  background-size: cover;
}
@media (max-width: 1120px) {
  .main-content .main-keyvisual-container {
    padding-top: 24px;
  }
  .main-content .main-keyvisual-container .main-keyvisul-inner {
    padding: 0 15px;
    padding-bottom: 40px;
  }
  .main-content .main-keyvisual-container .main-keyvisual .item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .main-content .main-keyvisual-container .main-keyvisual .thumbnail-wrapper {
    max-width: 100%;
  }
  .main-content .main-keyvisual-container .main-keyvisual .text-area .color-category {
    font-size: 12px;
  }
  .main-content .main-keyvisual-container .main-keyvisual .text-area h3 {
    margin-top: 12px;
    line-height: 1.25;
    font-size: 28px;
  }
  .main-content .main-keyvisual-container .main-keyvisual .text-area p {
    margin-top: 12px;
    font-size: 14px;
  }
  .main-content .main-keyvisual-container .main-visual-control {
    margin-top: 16px;
    right: 15px;
  }
  .main-content .search-section {
    padding-top: 40px;
  }
  .main-content .search-form-container {
    height: 50px;
    padding: 0 30px 0 50px;
  }
  .main-content .search-form-container input {
    height: 20px;
    font-size: 15px;
  }
  .main-content .search-form-container .btn-search {
    left: 18px;
    width: 20px;
    height: 21px;
  }
  .main-content .report-section {
    margin-top: 40px;
  }
  .main-content .report-list-container {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    row-gap: 24px;
  }
  .main-content .report-list-container .list-item {
    width: calc(50% - 6px);
  }
  .main-content .report-list-container .thumbnail-wrap .type {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 12px;
  }
  .main-content .report-list-container .info-area .type {
    margin-top: 12px;
    font-size: 14px;
  }
  .main-content .report-list-container .info-area .title {
    margin-top: 8px;
    font-size: 16px;
  }
  .main-content .popular-section {
    margin-top: 40px;
  }
  .main-content .popular-list-container .popular-list-group {
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
    row-gap: 24px;
  }
  .main-content .popular-list-container .list-item {
    width: calc(50% - 16px);
  }
  .main-content .popular-list-container .list-item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-content .popular-list-container .list-item .number {
    font-size: 20px;
  }
  .main-content .popular-list-container .thumbnail-wrap {
    max-width: 100%;
    margin-left: 0px;
    margin-top: 8px;
  }
  .main-content .popular-list-container .info-area {
    margin-left: 0;
    margin-top: 12px;
  }
  .main-content .popular-list-container .info-area .color-category {
    font-size: 14px;
  }
  .main-content .popular-list-container .info-area .title {
    margin-top: 8px;
    font-size: 16px;
  }
  .main-content .relevant-section {
    margin-top: 40px;
    padding: 32px 0;
  }
  .main-content .banner-section a {
    padding: 24px 0;
  }
  .main-content .banner-section .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .main-content .banner-section .logo-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
  .main-content .banner-section .logo-area .logo {
    max-width: 148px;
    margin: 0 auto;
  }
  .main-content .banner-section .logo-area .text {
    font-size: 13px;
  }
  .main-content .banner-section .btn-area {
    gap: 10px;
    width: 108px;
    height: 34px;
    font-size: 12px;
    border: 0;
    background-color: rgba(33, 33, 40, 0.2);
  }
}

.main-section .section-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
.main-section .section-title {
  margin-bottom: 24px;
  font-weight: 800;
  font-size: 28px;
}
@media (max-width: 1120px) {
  .main-section .section-inner {
    padding: 0 15px;
  }
  .main-section .section-title {
    margin-bottom: 20px;
    font-size: 20px;
  }
}

/* 카테고리별 클래스 */
.color-category.pink {
  color: #bd4d90;
}
.color-category.green {
  color: #248d74;
}
.color-category.purple {
  color: #6c55cc;
}
.color-category.blue {
  color: #1b65af;
}
.color-category.violet {
  color: #b688d4;
}
.color-category.mint {
  color: #3ca6c8;
}
.color-category.brown {
  color: #a88324;
}

#content.full-layout {
  max-width: 100%;
  padding: 0;
}
#content.sub-search-content {
  margin-top: 80px;
}

.section-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.sub-common-title .breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.sub-common-title .breadcrumb .home {
  width: 20px;
  height: 20px;
  background: url("../images/renewal_2024/icon/icon-home-gy-20x20.png") no-repeat 0 0;
  background-size: cover;
}
.sub-common-title .breadcrumb .text {
  font-size: 14px;
  color: #9c9c9c;
}
.sub-common-title .breadcrumb .icon-arrow {
  width: 16px;
  height: 16px;
  background: url("../images/renewal_2024/icon/icon-arrow-gy-16x16.png") no-repeat 0 0;
  background-size: cover;
}
.sub-common-title .breadcrumb .page-dropdown select {
  padding: 4.5px 32px 4.5px 12px;
  border-radius: 4px;
  border: 0;
  line-height: 1;
  font-weight: 700;
  font-size: 14px;
  background-image: url("../images/renewal_2024/icon/icon-arrow-down-bk-16x16.png");
  background-size: 16px 16px;
  background-position: calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.sub-common-title .breadcrumb .page-dropdown select:focus-visible {
  outline: none;
}
.sub-common-title .title-area h3 {
  line-height: 1.25;
  font-weight: 800;
  font-size: 40px;
}
.sub-common-title .title-area .btn-area {
  display: none;
}

.sub-visual-package {
  background-color: #333;
}
.sub-visual-package .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  max-width: 1120px;
  height: 60px;
  margin: 0 auto;
}
.sub-visual-package .text {
  margin-right: 32px;
  font-weight: 300;
  font-size: 14px;
  color: #fff;
}
.sub-visual-package .btn-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 253px;
  height: 100%;
  background-color: #ee2a24;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}
.sub-visual-package .btn-more:hover .icon {
  -webkit-transform: translateX(7px);
          transform: translateX(7px);
}
.sub-visual-package .btn-more .icon {
  display: block;
  width: 34px;
  height: 9px;
  margin-left: 12px;
  background: url("../images/renewal_2024/icon/icon-arrow-w-48x8.png") no-repeat 0 0;
  background-size: cover;
}

.research-select-container {
  padding: 40px 130px 40px 40px;
  border-radius: 8px;
  position: relative;
  background-color: #f4f4f4;
}
.research-select-container .research-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 92px;
     -moz-column-gap: 92px;
          column-gap: 92px;
}
.research-select-container .research-item + .research-item {
  margin-top: 40px;
}
.research-select-container .research-item .title {
  min-width: 100px;
  margin-top: 4px;
  line-height: 1.25;
  font-weight: 700;
  font-size: 20px;
}
.research-select-container .select-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.research-select-container .list-item input {
  position: absolute !important;
  display: block;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: -1px !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}
.research-select-container .list-item input.focusable:active, .research-select-container .list-item input.focusable:focus {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
  clip: auto;
  overflow: visible;
}
.research-select-container .list-item input:checked + .label {
  border-color: #ee2a24;
  background-color: #ee2a24;
  color: #fff;
}
.research-select-container .list-item .label {
  display: block;
  padding: 8px 11px;
  border: 1px solid #a4a4a4;
  border-radius: 2px;
  line-height: 1.25;
  font-size: 14px;
  cursor: pointer;
}
.research-select-container .btn-reset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  position: absolute;
  bottom: 40px;
  right: 26px;
  width: 96px;
  height: 32px;
  border-radius: 100px;
  background-color: #fff;
  font-weight: 700;
  font-size: 13px;
  color: #525252;
  border: 0;
}
.research-select-container .btn-reset .icon {
  display: block;
  width: 21px;
  height: 16px;
  background: url("../images/renewal_2024/icon/icon-refresh-gy-21x16.png") no-repeat 0 0;
  background-size: cover;
}

.membership-banner {
  margin-top: 80px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background-image: url("../images/renewal_2024/img-membership-banner-bg.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.membership-banner a {
  display: block;
  width: 100%;
  height: 100%;
}
.membership-banner .object {
  position: absolute;
  bottom: 0;
  left: 116px;
  width: 88px;
  height: 111px;
  background: url("../images/renewal_2024/icon-membership-object.png") no-repeat 0 0;
  background-size: cover;
}
.membership-banner .banner-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 120px;
  padding-left: 265px;
  padding-right: 64px;
}
.membership-banner .text-area .title {
  line-height: 1.6;
  font-weight: 800;
  font-size: 24px;
}
.membership-banner .text-area .sub-text {
  line-height: 1.6;
  font-weight: 500;
  font-size: 18px;
}
.membership-banner .btn-sign {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  height: 60px;
  padding: 0 42px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  background-color: #2c2c2c;
}
.membership-banner .btn-sign .icon {
  display: block;
  width: 34px;
  height: 9px;
  background: url("../images/renewal_2024/icon/icon-arrow-w-48x8.png") no-repeat 0 0;
  background-size: cover;
}

.package-list-container {
  margin-top: 32px;
}
.package-list-container .package-list-box {
  padding: 32px 40px;
  border-radius: 8px;
  background-color: #f4f4f4;
}
.package-list-container .package-list-box + .package-list-box {
  margin-top: 32px;
}
.package-list-container .list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.package-list-container .list-item {
  width: calc(50% - 16px);
  margin-right: 32px;
  margin-bottom: 24px;
}
.package-list-container .list-item:nth-child(2n) {
  margin-right: 0;
}
.package-list-container .list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.package-list-container .list-item .thumbnail {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 259px;
}
.package-list-container .list-item .image {
  padding-bottom: 71.81%;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.package-list-container .list-item .info-area {
  position: relative;
  margin-left: 24px;
}
.package-list-container .list-item .info-area .color-category {
  font-weight: 500;
  font-size: 13px;
}
.package-list-container .list-item .info-area .title {
  margin-top: 4px;
  font-weight: 500;
  font-size: 20px;
  word-break: break-all;
  display: block;
  display: -webkit-box;
  max-height: 3em;
  text-overflow: ellipsis;
  line-height: 1.5em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
}
.package-list-container .list-item .info-area .date {
  margin-top: 8px;
  font-family: "Montserrat";
  font-size: 13px;
  color: #c5c5c5;
}
.package-list-container .list-item .info-area .price-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
}
.package-list-container .list-item .info-area .price-area .text {
  font-weight: 500;
  font-size: 15px;
}
.package-list-container .list-item .info-area .price-area .price {
  font-family: "Montserrat";
  font-weight: 700;
  margin-top: 1px;
  margin-left: 12px;
}
.package-list-container .total-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 16px;
  padding: 16px 0;
  border-top: 2px solid #000;
  border-bottom: 1px solid #000;
}
.package-list-container .total-price .text {
  font-size: 24px;
}
.package-list-container .total-price .text strong {
  line-height: 1.21;
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 36px;
  color: #f82514;
}
.package-list-container .total-price .price-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 40px;
  padding-left: 40px;
  border-left: 1px solid #c1c1c1;
}
.package-list-container .total-price .origin {
  text-decoration: line-through;
  font-weight: 500;
  font-size: 15px;
  color: #888;
}
.package-list-container .total-price .origin strong {
  font-family: "Montserrat";
  font-weight: 700;
}
.package-list-container .total-price .sale {
  margin-left: 16px;
  font-weight: 700;
  font-size: 24px;
}
.package-list-container .total-price .sale strong {
  line-height: 1.21;
  font-family: "Montserrat";
  font-size: 32px;
}
.package-list-container .btn-cart {
  margin-left: 40px;
  width: 40px;
  height: 40px;
  background: url("../images/renewal_2024/icon/icon-related-cart.png") no-repeat 0 0;
  background-size: cover;
  text-indent: -9999px;
  border: 0;
}

@media (max-width: 1120px) {
  #content.sub-search-content {
    margin-top: 40px;
  }
  .sub-common-title .breadcrumb {
    display: none;
  }
  .sub-common-title .section-inner {
    padding: 0 16px;
  }
  .sub-common-title .title-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .sub-common-title .title-area h3 {
    font-size: 28px;
  }
  .sub-common-title .title-area .btn-area {
    display: block;
  }
  .sub-common-title .title-area .btn-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 140px;
    height: 36px;
    border-radius: 4px;
    background-color: #ee2a24;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
  }
  .sub-common-title .title-area .btn-more .icon {
    display: block;
    width: 18px;
    height: 5px;
    margin-left: 8px;
    background: url("../images/renewal_2024/icon/icon-arrow-w-48x8.png") no-repeat 0 0;
    background-size: cover;
  }
  .sub-visual-package .inner {
    padding: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
  .sub-visual-package .text {
    margin-right: 16px;
    font-size: 12px;
  }
  .sub-visual-package .btn-more {
    width: 190px;
    height: 30px;
    margin-top: 8px;
    font-size: 12px;
  }
  .sub-visual-package .btn-more .icon {
    width: 37px;
    height: 10px;
    margin-left: 6px;
  }
  .research-select-container {
    padding: 20px;
  }
  .research-select-container .research-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }
  .research-select-container .research-item + .research-item {
    margin-top: 24px;
  }
  .research-select-container .research-item .title {
    min-width: auto;
    margin-top: 0px;
    font-size: 16px;
  }
  .research-select-container .select-list {
    gap: 6px;
  }
  .research-select-container .list-item .label {
    padding: 6px 8px;
    font-size: 12px;
  }
  .research-select-container .btn-reset {
    gap: 4px;
    position: static;
    width: 96px;
    height: 32px;
    margin: 16px auto 0;
    font-size: 14px;
  }
  .package-list-container {
    margin-top: 20px;
  }
  .package-list-container .package-list-box {
    padding: 20px;
  }
  .package-list-container .package-list-box + .package-list-box {
    margin-top: 20px;
  }
  .package-list-container .list-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .package-list-container .list-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .package-list-container .list-item .thumbnail {
    width: 130px;
  }
  .package-list-container .list-item .info-area {
    margin-left: 12px;
  }
  .package-list-container .list-item .info-area .color-category {
    font-size: 11px;
  }
  .package-list-container .list-item .info-area .title {
    margin-top: 2px;
    font-size: 16px;
  }
  .package-list-container .list-item .info-area .date {
    margin-top: 4px;
    font-size: 12px;
  }
  .package-list-container .list-item .info-area .price-area {
    position: static;
    margin-top: 4px;
  }
  .package-list-container .list-item .info-area .price-area .text {
    font-size: 13px;
  }
  .package-list-container .list-item .info-area .price-area .price {
    margin-left: 6px;
  }
  .package-list-container .total-price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: 8px;
    padding-top: 8px;
  }
  .package-list-container .total-price .text {
    font-size: 16px;
  }
  .package-list-container .total-price .text strong {
    font-size: 18px;
  }
  .package-list-container .total-price .price-area {
    margin-left: 0;
    padding-left: 0;
    margin-top: 4px;
    border-left: 0;
  }
  .package-list-container .total-price .origin {
    font-size: 14px;
  }
  .package-list-container .total-price .sale {
    margin-left: 12px;
    font-size: 18px;
  }
  .package-list-container .total-price .sale strong {
    font-size: 22px;
  }
  .package-list-container .btn-cart {
    margin-left: 0;
    margin-top: 4px;
    width: 40px;
    height: 40px;
  }
  .membership-banner {
    max-width: 600px;
    height: auto;
    margin: 40px auto 0;
  }
  .membership-banner .object {
    position: absolute;
    bottom: 0;
    left: 24px;
    z-index: 1;
    width: 60px;
    height: 90px;
  }
  .membership-banner .banner-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    position: relative;
    z-index: 2;
  }
  .membership-banner .text-area {
    text-align: center;
  }
  .membership-banner .text-area .title {
    font-size: 20px;
  }
  .membership-banner .text-area .sub-text {
    font-size: 16px;
  }
  .membership-banner .btn-sign {
    gap: 12px;
    height: 40px;
    padding: 0 24px;
    margin-top: 12px;
    font-size: 14px;
  }
  .membership-banner .btn-sign .icon {
    width: 37px;
    height: 10px;
    margin-left: 0;
  }
}
.intro-renewal-content .download-section {
  margin-top: 80px;
  text-align: center;
}
.intro-renewal-content .download-section .text {
  font-weight: 300;
  font-size: 28px;
}
.intro-renewal-content .download-section .text strong {
  font-weight: 700;
}
.intro-renewal-content .download-section .btn-download {
  display: block;
  max-width: 244px;
  margin: 24px auto 0;
}
.intro-renewal-content .partner-section {
  margin-top: 80px;
}
.intro-renewal-content .partner-section .partner-box {
  padding: 40px 110px;
  background-color: #f5f1fb;
  border-radius: 8px;
}
.intro-renewal-content .partner-section .box-title {
  text-align: center;
  font-weight: 800;
  font-size: 20px;
  color: #8d4dd4;
}
.intro-renewal-content .partner-section .partner-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-top: 24px;
}
.intro-renewal-content .partner-section .partner-list-item {
  width: 222px;
}
.intro-renewal-content .partner-section .partner-list-item.large {
  width: 298px;
}
.intro-renewal-content .partner-section .partner-list-item.large .partner-head {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-width: 2px;
}
.intro-renewal-content .partner-section .partner-list-item.large .partner-head .partner-row-item {
  border: none;
}
.intro-renewal-content .partner-section .partner-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 64px;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #b192de;
}
.intro-renewal-content .partner-section .partner-head .logo-20s {
  width: 150px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-image: url("../images/renewal_2024/intro/logo/logo-partner-20.png");
  background-size: cover;
}
.intro-renewal-content .partner-section .partner-head .normal-name {
  font-weight: 700;
  font-size: 18px;
  color: #8d4dd4;
}
.intro-renewal-content .partner-section .partner-body {
  margin-top: 24px;
}
.intro-renewal-content .partner-section .partner-row-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  height: 46px;
  background-color: #fff;
  border: 1px solid #dad7dd;
  border-radius: 8px;
  padding: 0 12px 0 24px;
}
.intro-renewal-content .partner-section .partner-row-item + .partner-row-item {
  margin-top: 8px;
}
.intro-renewal-content .partner-section .partner-row-item .logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 106px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: 0 50%;
  text-indent: -9999px;
}
.intro-renewal-content .partner-section .partner-row-item .logo.ew {
  background-size: 76px 25px;
  background-image: url("../images/renewal_2024/intro/logo/logo-partner-ew.png");
}
.intro-renewal-content .partner-section .partner-row-item .logo.nhr {
  background-size: 52px 16px;
  background-image: url("../images/renewal_2024/intro/logo/logo-partner-nhr.png");
}
.intro-renewal-content .partner-section .partner-row-item .logo.percent51 {
  background-size: 94px 16px;
  background-image: url("../images/renewal_2024/intro/logo/logo-partner-51.png");
}
.intro-renewal-content .partner-section .partner-row-item .logo.oob {
  background-size: 42px 22px;
  background-image: url("../images/renewal_2024/intro/logo/logo-partner-oob.png");
}
.intro-renewal-content .partner-section .partner-row-item .logo.positive {
  background-size: 62px 30px;
  background-image: url("../images/renewal_2024/intro/logo/logo-partner-positive.png");
}
.intro-renewal-content .partner-section .partner-row-item .logo.webetter {
  background-size: 103px 12px;
  background-image: url("../images/renewal_2024/intro/logo/logo-partner-webetter.png");
}
.intro-renewal-content .partner-section .partner-row-item .logo.today {
  background-size: 77px 22px;
  background-image: url("../images/renewal_2024/intro/logo/logo-partner-today.png");
}
.intro-renewal-content .partner-section .partner-row-item .name {
  letter-spacing: -0.03em;
  font-weight: 500;
  font-size: 14px;
}
.intro-renewal-content .partner-section .partner-text-item {
  text-align: center;
  font-weight: 500;
  font-size: 15px;
}
.intro-renewal-content .partner-section .partner-text-item + .partner-text-item {
  margin-top: 20px;
}
.intro-renewal-content .partner-section .partner-text-item > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
.intro-renewal-content .partner-section .partner-text-item > a::after {
  display: block;
  content: "";
  width: 18px;
  height: 18px;
  background: url("../images/renewal_2024/icon/icon-link-new-bk-18x18.png") no-repeat 0 0;
  background-size: cover;
}
.intro-renewal-content .year-section {
  padding: 120px 0;
}
.intro-renewal-content .year-section .text {
  text-align: center;
  font-weight: 300;
  line-height: 1.4;
  font-size: 28px;
}
.intro-renewal-content .year-section .text strong {
  font-weight: 700;
}
.intro-renewal-content .year-section .chart-title {
  text-align: center;
  margin-top: 48px;
  font-size: 0;
}
.intro-renewal-content .year-section .chart-title strong {
  display: inline-block;
  border-bottom: 1px solid #8d4dd4;
  line-height: 1.4;
  font-weight: 800;
  font-size: 22px;
  color: #8d4dd4;
}
.intro-renewal-content .year-section .img {
  max-width: 988px;
  margin: 32px auto 0;
}
.intro-renewal-content .year-section .guide-text {
  max-width: 988px;
  margin: 16px auto 0;
  font-size: 14px;
  color: #575757;
}
.intro-renewal-content .trend-section {
  padding: 120px 0;
  background-color: #f6f1fc;
}
.intro-renewal-content .trend-section .section-title {
  text-align: center;
}
.intro-renewal-content .trend-section .section-title .title {
  font-weight: 700;
  font-size: 36px;
}
.intro-renewal-content .trend-section .section-title .sub-text {
  margin-top: 24px;
  font-weight: 300;
  font-size: 28px;
}
.intro-renewal-content .trend-section .report-list {
  margin-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 76px;
     -moz-column-gap: 76px;
          column-gap: 76px;
}
.intro-renewal-content .trend-section .report-list .list-item {
  position: relative;
  padding-bottom: 197px;
}
.intro-renewal-content .trend-section .report-list .list-wrapper.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 88px;
     -moz-column-gap: 88px;
          column-gap: 88px;
}
.intro-renewal-content .trend-section .report-list .info-area {
  position: relative;
}
.intro-renewal-content .trend-section .report-list .info-area .count {
  position: relative;
  font-weight: 800;
  font-size: 32px;
  color: #8d4dd4;
}
.intro-renewal-content .trend-section .report-list .info-area .count:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  background-color: #8d4dd4;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.intro-renewal-content .trend-section .report-list .info-area .text {
  font-size: 14px;
  color: #575757;
}
.intro-renewal-content .trend-section .report-list .line {
  position: absolute;
  bottom: 50px;
  left: 50%;
  z-index: 1;
  width: 2px;
  height: 140px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  background-image: url("../images/renewal_2024/intro/img-report-line-single.png");
}
.intro-renewal-content .trend-section .report-list .line.double {
  width: 206px;
  height: 152px;
  bottom: 40px;
  background-image: url("../images/renewal_2024/intro/img-report-line-double.png");
}
.intro-renewal-content .trend-section .report-list .thumbnail {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
.intro-renewal-content .trend-section .report-list .thumbnail.date {
  bottom: -24px;
}
.intro-renewal-content .trend-section .report-list .thumbnail img {
  max-width: 206px;
}
.intro-renewal-content .trend-section .report-list .thumbnail .text {
  text-align: right;
  font-size: 14px;
  color: #575757;
}
.intro-renewal-content .trend-section .insight-container {
  margin-top: 80px;
}
.intro-renewal-content .trend-section .insight-container .content-title {
  text-align: center;
  font-weight: 300;
  font-size: 28px;
}
.intro-renewal-content .trend-section .insight-container .insight-img {
  margin-top: 56px;
}
.intro-renewal-content .research-section {
  padding: 120px 0;
}
.intro-renewal-content .research-section .section-title {
  text-align: center;
}
.intro-renewal-content .research-section .section-title .title {
  font-weight: 700;
  font-size: 36px;
}
.intro-renewal-content .research-section .section-title .sub-text {
  line-height: 1.4;
  margin-top: 24px;
  font-weight: 300;
  font-size: 28px;
}
.intro-renewal-content .research-section .research-box {
  margin-top: 56px;
  padding: 80px 120px;
  border-radius: 8px;
  background-color: #f6f1fc;
}
.intro-renewal-content .research-section .research-img {
  max-width: 598.5px;
  margin: 0 auto;
}
.intro-renewal-content .research-section .research-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  margin-top: 40px;
}
.intro-renewal-content .research-section .research-list-item {
  width: 242px;
  height: 238px;
  padding-top: 24px;
  border-radius: 12px;
  border: 2px solid #8d4dd4;
  background-color: #fff;
  text-align: center;
}
.intro-renewal-content .research-section .research-list-item .number {
  line-height: 1.4;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 20px;
  color: #8d4dd4;
}
.intro-renewal-content .research-section .research-list-item .title {
  font-weight: 800;
  font-size: 20px;
  color: #8d4dd4;
}
.intro-renewal-content .research-section .research-list-item .title::before {
  display: block;
  content: "";
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background-color: #8d4dd4;
}
.intro-renewal-content .research-section .research-list-item .sub-text {
  margin-top: 20px;
  line-height: 1.4;
  font-size: 16px;
}
.intro-renewal-content .history-section {
  padding: 120px 0;
  background-color: #f6f1fc;
}
.intro-renewal-content .history-section .section-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 124px;
}
.intro-renewal-content .history-section .section-title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 200px;
  font-weight: 700;
  font-size: 36px;
}
.intro-renewal-content .history-section .history-container {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  overflow: hidden;
}
.intro-renewal-content .history-section .accordion-list {
  border-top: 1px solid #000;
}
.intro-renewal-content .history-section .accordion-list.active .accordion-header .year {
  font-weight: 700;
  color: #8d4dd4;
}
.intro-renewal-content .history-section .accordion-list.active .accordion-header .btn-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.intro-renewal-content .history-section .accordion-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  padding: 16px 0;
}
.intro-renewal-content .history-section .accordion-header .year {
  font-weight: 600;
  font-size: 28px;
}
.intro-renewal-content .history-section .accordion-header .btn-arrow {
  width: 28px;
  height: 28px;
  background: url("../images/renewal_2024/icon/icon-arrow-down-bk-28x28.png") no-repeat 0 0;
  background-size: cover;
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.intro-renewal-content .history-section .accordion-body {
  display: none;
  -webkit-transition: none;
  transition: none;
  padding: 32px 40px;
  border-top: 1px solid #e5d1ec;
}
.intro-renewal-content .history-section .accordion-body .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
.intro-renewal-content .history-section .accordion-body .list-item + .list-item {
  margin-top: 16px;
}
.intro-renewal-content .history-section .accordion-body .list-item .date {
  min-width: 68px;
  font-weight: 600;
  font-size: 16px;
}
.intro-renewal-content .history-section .accordion-body .list-item .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
}
.intro-renewal-content .history-section .accordion-body .list-item .icon-link {
  width: 18px;
  height: 18px;
  background: url("../images/renewal_2024/icon/icon-link-new-bk-18x18.png") no-repeat 0 0;
  background-size: cover;
}
.intro-renewal-content .history-section .accordion-body .list-item .text {
  font-size: 16px;
}
.intro-renewal-content .interview-section {
  padding: 120px 0 80px;
}
.intro-renewal-content .interview-section .section-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 124px;
}
.intro-renewal-content .interview-section .section-title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 200px;
  font-weight: 700;
  font-size: 36px;
}
.intro-renewal-content .interview-section .interview-list {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.intro-renewal-content .interview-section .interview-list-item {
  width: calc(33.333% - 11px);
}
.intro-renewal-content .interview-section .interview-list-item .image img {
  width: 100%;
}
.intro-renewal-content .interview-section .interview-list-item .text {
  margin-top: 16px;
  font-weight: 600;
  font-size: 18px;
}

@media (max-width: 1120px) {
  .intro-renewal-content .section-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
  .intro-renewal-content .download-section {
    margin-top: 60px;
  }
  .intro-renewal-content .download-section .text {
    font-size: 18px;
  }
  .intro-renewal-content .download-section .btn-download {
    max-width: 200px;
  }
  .intro-renewal-content .partner-section {
    margin-top: 60px;
  }
  .intro-renewal-content .partner-section .partner-box {
    padding: 24px 16px;
  }
  .intro-renewal-content .partner-section .box-title {
    font-size: 16px;
  }
  .intro-renewal-content .partner-section .partner-list {
    gap: 24px;
    margin-top: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .intro-renewal-content .partner-section .partner-list-item {
    width: 100%;
    position: relative;
  }
  .intro-renewal-content .partner-section .partner-list-item:last-child::before {
    height: calc(100% - 54px);
  }
  .intro-renewal-content .partner-section .partner-list-item::before {
    display: block;
    content: "";
    position: absolute;
    top: 54px;
    left: 16px;
    width: 1px;
    height: 100%;
    background-color: #b192de;
  }
  .intro-renewal-content .partner-section .partner-list-item.large {
    width: 100%;
  }
  .intro-renewal-content .partner-section .partner-list-item.large .partner-head {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .intro-renewal-content .partner-section .partner-head {
    height: 54px;
  }
  .intro-renewal-content .partner-section .partner-head .partner-row-item {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    gap: 4px;
  }
  .intro-renewal-content .partner-section .partner-head .partner-row-item .logo {
    width: 76px;
    height: 25px;
  }
  .intro-renewal-content .partner-section .partner-head .partner-row-item .name {
    font-size: 12px;
  }
  .intro-renewal-content .partner-section .partner-head .logo-20s {
    width: 110px;
    height: 18px;
  }
  .intro-renewal-content .partner-section .partner-head .normal-name {
    font-size: 14px;
  }
  .intro-renewal-content .partner-section .partner-body {
    margin-top: 16px;
  }
  .intro-renewal-content .partner-section .partner-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
    padding-left: 32px;
  }
  .intro-renewal-content .partner-section .partner-row-item {
    width: calc(50% - 4px);
    gap: 2px;
    height: 54px;
    padding: 0 12px 0 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .intro-renewal-content .partner-section .partner-row-item + .partner-row-item {
    margin-top: 0;
  }
  .intro-renewal-content .partner-section .partner-row-item .logo {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 90px;
    height: 21px;
    background-repeat: no-repeat;
    background-position: 0 50%;
    text-indent: -9999px;
  }
  .intro-renewal-content .partner-section .partner-row-item .logo.ew {
    background-size: 59px 16px;
    background-image: url("../images/renewal_2024/intro/logo/logo-partner-ew.png");
  }
  .intro-renewal-content .partner-section .partner-row-item .logo.nhr {
    background-size: 36px 11px;
    background-image: url("../images/renewal_2024/intro/logo/logo-partner-nhr.png");
  }
  .intro-renewal-content .partner-section .partner-row-item .logo.percent51 {
    background-size: 66px 11px;
    background-image: url("../images/renewal_2024/intro/logo/logo-partner-51.png");
  }
  .intro-renewal-content .partner-section .partner-row-item .logo.oob {
    background-size: 29px 15px;
    background-image: url("../images/renewal_2024/intro/logo/logo-partner-oob.png");
  }
  .intro-renewal-content .partner-section .partner-row-item .logo.positive {
    background-size: 43px 21px;
    background-image: url("../images/renewal_2024/intro/logo/logo-partner-positive.png");
  }
  .intro-renewal-content .partner-section .partner-row-item .logo.webetter {
    background-size: 90px 10px;
    background-image: url("../images/renewal_2024/intro/logo/logo-partner-webetter.png");
  }
  .intro-renewal-content .partner-section .partner-row-item .logo.today {
    background-size: 54px 15px;
    background-image: url("../images/renewal_2024/intro/logo/logo-partner-today.png");
  }
  .intro-renewal-content .partner-section .partner-row-item .name {
    font-size: 10px;
  }
  .intro-renewal-content .partner-section .partner-text-row {
    padding-left: 32px;
  }
  .intro-renewal-content .partner-section .partner-text-item {
    text-align: left;
    font-size: 12px;
  }
  .intro-renewal-content .partner-section .partner-text-item + .partner-text-item {
    margin-top: 8px;
  }
  .intro-renewal-content .partner-section .partner-text-item > a::after {
    width: 14px;
    height: 14px;
  }
  .intro-renewal-content .year-section {
    margin-top: 0;
    padding: 80px 0;
  }
  .intro-renewal-content .year-section .text {
    word-break: keep-all;
    font-size: 18px;
  }
  .intro-renewal-content .year-section .img {
    margin: 24px auto 0;
  }
  .intro-renewal-content .year-section .chart-title {
    margin-top: 40px;
  }
  .intro-renewal-content .year-section .chart-title strong {
    font-size: 16px;
  }
  .intro-renewal-content .year-section .guide-text {
    margin: 12px auto 0;
    font-size: 12px;
  }
  .intro-renewal-content .trend-section {
    padding: 80px 0;
  }
  .intro-renewal-content .trend-section .section-title .title {
    font-size: 22px;
  }
  .intro-renewal-content .trend-section .section-title .sub-text {
    margin-top: 16px;
    font-size: 18px;
  }
  .intro-renewal-content .trend-section .report-list {
    max-width: 365px;
    margin: 42px auto 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    row-gap: 24px;
    padding: 0 10px;
  }
  .intro-renewal-content .trend-section .report-list .list-item {
    width: calc(50% - 12px);
    padding-bottom: 140px;
  }
  .intro-renewal-content .trend-section .report-list .list-item:nth-child(3) {
    width: calc(60% - 12px);
  }
  .intro-renewal-content .trend-section .report-list .list-item:nth-child(4) {
    width: calc(40% - 12px);
  }
  .intro-renewal-content .trend-section .report-list .list-wrapper.column {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .intro-renewal-content .trend-section .report-list .info-area {
    position: relative;
  }
  .intro-renewal-content .trend-section .report-list .info-area .count {
    font-size: 24px;
  }
  .intro-renewal-content .trend-section .report-list .info-area .text {
    font-size: 12px;
  }
  .intro-renewal-content .trend-section .report-list .line {
    bottom: 20px;
    height: 110px;
  }
  .intro-renewal-content .trend-section .report-list .line.double {
    width: 120px;
    height: 83px;
    bottom: 48px;
    background-image: url("../images/renewal_2024/intro/img-report-line-double.png");
  }
  .intro-renewal-content .trend-section .report-list .thumbnail.date {
    bottom: -24px;
  }
  .intro-renewal-content .trend-section .report-list .thumbnail img {
    max-width: 140px;
  }
  .intro-renewal-content .trend-section .report-list .thumbnail .text {
    text-align: right;
    font-size: 12px;
    color: #575757;
  }
  .intro-renewal-content .trend-section .insight-container {
    margin-top: 60px;
  }
  .intro-renewal-content .trend-section .insight-container .content-title {
    font-size: 18px;
  }
  .intro-renewal-content .trend-section .insight-container .insight-img {
    max-width: 420px;
    margin: 56px auto 0;
  }
  .intro-renewal-content .research-section {
    padding: 80px 0;
  }
  .intro-renewal-content .research-section .section-title .title {
    font-weight: 700;
    font-size: 22px;
  }
  .intro-renewal-content .research-section .section-title .sub-text {
    margin-top: 16px;
    font-size: 18px;
  }
  .intro-renewal-content .research-section .research-box {
    margin-top: 40px;
    padding: 56px 16px;
  }
  .intro-renewal-content .research-section .research-img {
    max-width: 360px;
  }
  .intro-renewal-content .research-section .research-list {
    gap: 16px;
    margin-top: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .intro-renewal-content .research-section .research-list-item {
    width: 296px;
    height: 206px;
    margin: 0 auto;
    padding-top: 32px;
  }
  .intro-renewal-content .research-section .research-list-item .number {
    font-size: 18px;
  }
  .intro-renewal-content .research-section .research-list-item .title {
    font-size: 18px;
  }
  .intro-renewal-content .research-section .research-list-item .sub-text {
    margin-top: 16px;
    font-size: 16px;
  }
  .intro-renewal-content .history-section {
    padding: 80px 0;
  }
  .intro-renewal-content .history-section .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .intro-renewal-content .history-section .section-title {
    font-size: 22px;
  }
  .intro-renewal-content .history-section .history-container {
    width: 100%;
  }
  .intro-renewal-content .history-section .accordion-header {
    padding: 18px 0;
  }
  .intro-renewal-content .history-section .accordion-header .year {
    font-size: 18px;
  }
  .intro-renewal-content .history-section .accordion-body {
    padding: 24px 0;
  }
  .intro-renewal-content .history-section .accordion-body .list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  .intro-renewal-content .history-section .accordion-body .list-item + .list-item {
    margin-top: 16px;
  }
  .intro-renewal-content .history-section .accordion-body .list-item .date {
    min-width: 68px;
    font-size: 16px;
  }
  .intro-renewal-content .history-section .accordion-body .list-item .link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
  }
  .intro-renewal-content .history-section .accordion-body .list-item .icon-link {
    width: 16px;
    height: 16px;
  }
  .intro-renewal-content .history-section .accordion-body .list-item .text {
    font-size: 14px;
  }
  .intro-renewal-content .interview-section {
    padding: 80px 0;
  }
  .intro-renewal-content .interview-section .section-inner {
    gap: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .intro-renewal-content .interview-section .section-title {
    font-size: 22px;
  }
  .intro-renewal-content .interview-section .interview-list {
    gap: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .intro-renewal-content .interview-section .interview-list-item {
    width: 100%;
  }
  .intro-renewal-content .interview-section .interview-list-item .text {
    margin-top: 16px;
    font-size: 18px;
  }
}
.ui-tab-content {
  display: none;
}
.ui-tab-content:first-child {
  display: block;
}

.relevant-list-container .title-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.relevant-list-container .title-area .title {
  line-height: 1.24;
  font-weight: 800;
  font-size: 28px;
}
.relevant-list-container .title-area .sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.relevant-list-container .title-area .sub-title .text {
  font-size: 14px;
}
.relevant-list-container .title-area .sub-title .text .red {
  font-weight: 600;
  border-bottom: 1px solid #f82514;
  color: #f82514;
}
.relevant-list-container .title-area .sub-title .text .bk {
  font-weight: 600;
  border-bottom: 1px solid #000;
}
.relevant-list-container .title-area .sub-title .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 42px;
  padding: 0 24px;
  border-radius: 4px;
  background-color: #ee2a24;
}
.relevant-list-container .title-area .sub-title .btn .icon {
  display: block;
  width: 34px;
  height: 9px;
  margin-left: 8px;
  background: url("../images/renewal_2024/icon/icon-arrow-w-48x8.png") no-repeat 0 0;
  background-size: cover;
}

@media (max-width: 1120px) {
  .relevant-list-container .title-area {
    gap: 16px;
    margin-bottom: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .relevant-list-container .title-area .title {
    font-size: 22px;
  }
  .relevant-list-container .title-area .sub-title {
    gap: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .relevant-list-container .title-area .sub-title .text {
    font-size: 14px;
  }
  .relevant-list-container .title-area .sub-title .btn .icon {
    width: 36px;
    height: 7px;
  }
}
.sub-common-layout-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
}
.sub-common-layout-inner .mobile-filter-title {
  display: none;
}
.sub-common-layout-inner .sub-fixed-lnb {
  position: sticky;
  top: 90px;
  left: 0;
  width: 100%;
  max-width: 308px;
}
.sub-common-layout-inner .sub-fixed-lnb .btn-group {
  margin-top: 16px;
}
.sub-common-layout-inner .sub-fixed-lnb .btn-group .btn-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 60px;
  border-radius: 4px;
  background-color: #ee2a24;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}
.sub-common-layout-inner .sub-fixed-lnb .btn-group .btn-more .icon {
  display: block;
  width: 35.5px;
  height: 9.5px;
  margin-left: 15px;
  background: url("../images/renewal_2024/icon/icon-arrow-w-48x8.png") no-repeat 0 0;
  background-size: cover;
}
.sub-common-layout-inner .sub-lnb-wrapper {
  max-height: calc(100vh - 110px);
  overflow: auto;
  padding-right: 4px;
  margin-right: -4px;
}
.sub-common-layout-inner .sub-lnb-wrapper::-webkit-scrollbar {
  width: 6px;
}
.sub-common-layout-inner .sub-lnb-wrapper::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #8b8b8b; /*스크롤바의 색상*/
}
.sub-common-layout-inner .sub-lnb-wrapper::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #ddd; /*스크롤바 트랙 색상*/
}
.sub-common-layout-inner .sub-lnb-container {
  padding: 32px 40px;
  border-radius: 8px;
  background-color: #f4f4f4;
}
.sub-common-layout-inner .sub-lnb-container .count-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2px;
  margin-bottom: 32px;
}
.sub-common-layout-inner .sub-lnb-container .count-text {
  line-height: 1.248;
  font-weight: 500;
  font-size: 14px;
}
.sub-common-layout-inner .sub-lnb-container .count-text strong {
  font-weight: 800;
  color: #ee2a24;
}
.sub-common-layout-inner .sub-lnb-container .mobile-title {
  display: none;
}
.sub-common-layout-inner .sub-lnb-container .control-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 32px;
}
.sub-common-layout-inner .sub-lnb-container .control-btn .btn-submit,
.sub-common-layout-inner .sub-lnb-container .control-btn .btn-reset {
  display: none;
}
.sub-common-layout-inner .sub-lnb-container .btn-reset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  width: 74px;
  height: 32px;
  border-radius: 100px;
  background-color: #fff;
  font-weight: 700;
  font-size: 13px;
  color: #525252;
  border: 0;
}
.sub-common-layout-inner .sub-lnb-container .btn-reset .icon {
  display: block;
  width: 21px;
  height: 16px;
  background: url("../images/renewal_2024/icon/icon-refresh-gy-21x16.png") no-repeat 0 0;
  background-size: cover;
}
.sub-common-layout-inner .sub-lnb-container .selector-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}
.sub-common-layout-inner .sub-lnb-container .selector-cover {
  width: 100%;
}
.sub-common-layout-inner .sub-lnb-container .select-box {
  margin-top: 12px;
}
.sub-common-layout-inner .sub-lnb-container .select-box select {
  width: 100%;
  height: 40px;
  padding: 0 16px;
  font-weight: 600;
  font-size: 14px;
  color: #666;
  border-radius: 4px;
  background-color: #fff;
  border: 0;
  background-image: url("../images/renewal_2024/icon/icon-arrow-down-gy-18x18.png");
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) 50%;
}
.sub-common-layout-inner .sub-lnb-container .datepicker-container {
  gap: 8px;
  margin-top: 12px;
}
.sub-common-layout-inner .sub-lnb-container .datepicker-container .wave {
  margin: 0;
}
.sub-common-layout-inner .sub-lnb-container .datepicker-container .item {
  width: 100px;
  border-radius: 4px;
  padding-left: 14px;
  background-color: #fff;
}
.sub-common-layout-inner .sub-lnb-container .datepicker-container .item.select::after {
  display: none;
}
.sub-common-layout-inner .sub-lnb-container .datepicker-container .item::after {
  width: 18px;
  height: 20px;
  right: 8px;
}
.sub-common-layout-inner .sub-lnb-container .datepicker-container .ui-datepicker-trigger {
  right: 8px;
  width: 18px;
  height: 20px;
}
.sub-common-layout-inner .filter-tab-list {
  overflow: hidden;
}
.sub-common-layout-inner .filter-tab-list + .filter-tab-list {
  margin-top: 32px;
}
.sub-common-layout-inner .filter-tab-list.active .filter-tab-header .icon-arrow {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}
.sub-common-layout-inner .filter-tab-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #999;
  cursor: pointer;
}
.sub-common-layout-inner .filter-tab-header .text {
  line-height: 1.248;
  font-weight: 800;
  font-size: 18px;
}
.sub-common-layout-inner .filter-tab-header .icon-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 22px;
  height: 22px;
  background: url("../images/renewal_2024/icon/icon-arrow-up-bk-22x22.png") no-repeat 0 0;
  background-size: cover;
}
.sub-common-layout-inner .filter-tab-body {
  display: none;
  -webkit-transition: none;
  transition: none;
  margin-top: 16px;
}
.sub-common-layout-inner .sub-right-layout {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  min-width: 0;
}

@media (max-width: 1120px) {
  .sub-common-layout-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .sub-common-layout-inner .mobile-filter-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .sub-common-layout-inner .mobile-filter-title .count-text {
    line-height: 1.248;
    font-weight: 500;
    font-size: 14px;
  }
  .sub-common-layout-inner .mobile-filter-title .count-text strong {
    font-weight: 800;
    color: #ee2a24;
  }
  .sub-common-layout-inner .mobile-filter-title .btn-mobile-filter {
    display: block;
    width: 40px;
    height: 40px;
    background: url("../images/renewal_2024/icon/icon-filter-red-20x20.png") no-repeat 0 0;
    background-size: cover;
    text-indent: -9999px;
    border: 0;
  }
  .sub-common-layout-inner .sub-fixed-lnb {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    position: fixed;
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    z-index: 102;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .sub-common-layout-inner .sub-fixed-lnb .btn-group {
    display: none;
  }
  .sub-common-layout-inner .sub-fixed-lnb.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sub-common-layout-inner .sub-lnb-wrapper {
    padding-right: 0;
    margin-right: 0;
    max-height: none;
    overflow: visible;
  }
  .sub-common-layout-inner .sub-lnb-container {
    padding: 32px 24px 40px;
    max-height: calc(100vh - 20px);
    overflow: auto;
    border-radius: 8px 8px 0 0;
    background-color: #f4f4f4;
  }
  .sub-common-layout-inner .sub-lnb-container .count-area {
    margin-bottom: 0;
  }
  .sub-common-layout-inner .sub-lnb-container .count-area .btn-reset {
    display: none;
  }
  .sub-common-layout-inner .sub-lnb-container .count-text {
    display: none;
  }
  .sub-common-layout-inner .sub-lnb-container .mobile-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 40px;
  }
  .sub-common-layout-inner .sub-lnb-container .mobile-title .title {
    line-height: 1.248;
    font-weight: 800;
    font-size: 18px;
  }
  .sub-common-layout-inner .sub-lnb-container .mobile-title .btn-filter-close {
    display: block;
    width: 22px;
    height: 22px;
    background: url("../images/renewal_2024/icon/icon-close-gy-22x22.png") no-repeat 0 0;
    background-size: cover;
    text-indent: -9999px;
    border: 0;
    cursor: pointer;
  }
  .sub-common-layout-inner .sub-lnb-container .control-btn {
    margin-top: 40px;
    gap: 8px;
  }
  .sub-common-layout-inner .sub-lnb-container .control-btn .btn {
    height: 46px;
    border-radius: 4px;
  }
  .sub-common-layout-inner .sub-lnb-container .control-btn .btn-reset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 101px;
    background-color: #fff;
    border: 1px solid #2f2f2f;
    font-size: 13px;
  }
  .sub-common-layout-inner .sub-lnb-container .control-btn .btn-submit {
    display: block;
    margin-top: 0;
    width: 100%;
    background-color: #ee2a24;
  }
  .sub-common-layout-inner .sub-lnb-container .selector-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    row-gap: 14px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
  .sub-common-layout-inner .sub-lnb-container .selector-cover {
    width: calc(50% - 8px);
  }
  .sub-common-layout-inner .sub-lnb-container .select-box {
    margin-top: 24px;
  }
  .sub-common-layout-inner .sub-lnb-container .datepicker-container .item {
    width: 50%;
  }
  .sub-common-layout-inner .filter-tab-container {
    position: relative;
    padding-top: 32px;
  }
  .sub-common-layout-inner .filter-tab-container.column-03 .filter-tab-header {
    width: 33.333%;
  }
  .sub-common-layout-inner .filter-tab-container.column-03 .filter-tab-list:nth-child(1) .filter-tab-header {
    left: 0;
  }
  .sub-common-layout-inner .filter-tab-container.column-03 .filter-tab-list:nth-child(2) .filter-tab-header {
    left: 33.333%;
  }
  .sub-common-layout-inner .filter-tab-container.column-03 .filter-tab-list:nth-child(3) .filter-tab-header {
    right: 0;
  }
  .sub-common-layout-inner .filter-tab-container.full .filter-tab-header {
    width: 100%;
  }
  .sub-common-layout-inner .filter-tab-list + .filter-tab-list {
    margin-top: 0;
  }
  .sub-common-layout-inner .filter-tab-list:nth-child(1) .filter-tab-header {
    left: 0;
  }
  .sub-common-layout-inner .filter-tab-list:nth-child(2) .filter-tab-header {
    right: 0;
  }
  .sub-common-layout-inner .filter-tab-list.active .filter-tab-header {
    border-bottom-color: #000;
  }
  .sub-common-layout-inner .filter-tab-list.active .filter-tab-header .text {
    font-weight: 800;
    color: #000;
  }
  .sub-common-layout-inner .filter-tab-header {
    position: absolute;
    top: 0;
    width: 50%;
    display: block;
    text-align: center;
    border-bottom: 3px solid #d1d1d1;
  }
  .sub-common-layout-inner .filter-tab-header .text {
    font-weight: 500;
    font-size: 16px;
    color: #666;
  }
  .sub-common-layout-inner .filter-tab-header .icon-arrow {
    display: none;
  }
  .sub-common-layout-inner .filter-tab-body {
    max-height: 258px;
    overflow: auto;
    margin-top: 24px;
  }
}
.common-data-list-container.space-small .item-wrapper {
  gap: 32px;
}
.common-data-list-container .list-item {
  position: relative;
  padding: 32px 0;
  border-bottom: 1px #e7e7e7 solid;
}
.common-data-list-container .list-item:first-child {
  padding-top: 0;
}
.common-data-list-container .item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 60px;
}
.common-data-list-container .thumbnail {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 270px;
  height: 194px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.common-data-list-container .thumbnail a {
  display: block;
}
.common-data-list-container .thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.common-data-list-container .info-area {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 0;
}
.common-data-list-container .info-area .color-category {
  display: inline-block;
  line-height: 1;
  font-size: 13px;
  font-weight: 700;
}
.common-data-list-container .info-area .read-count {
  float: right;
  background: url("../images/icon_view.png") no-repeat left center;
  background-size: auto 0.8rem;
  padding-left: 1.5rem;
  font-size: 13px;
  font-family: "Montserrat";
  font-weight: 500;
  color: #c5c5c5;
}
.common-data-list-container .info-area .title {
  margin-top: 10px;
  line-height: 1.24;
  font-weight: 600;
  font-size: 22px;
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.common-data-list-container .info-area .desc {
  margin-top: 8px;
  color: #666;
  font-size: 15px;
  font-weight: 300;
  display: block;
  display: -webkit-box;
  max-height: 2.5em;
  text-overflow: ellipsis;
  line-height: 1.25em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
}
.common-data-list-container .info-area .desc .point {
  font-weight: bold;
  color: #e74d58;
}
.common-data-list-container .info-area .date {
  margin-top: 18px;
  line-height: 1.24;
  font-weight: 600;
  font-size: 13px;
  color: #c5c5c5;
}
.common-data-list-container .info-area .hashtag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  overflow: hidden;
}
.common-data-list-container .info-area .hashtag a {
  display: block;
  padding: 0 10px;
  height: 23px;
  line-height: 23px;
  border: 1px #e0e0e0 solid;
  border-radius: 2px;
  font-size: 13px;
}
.common-data-list-container .info-area .hashtag a::before {
  display: inline-block;
  margin-right: 5px;
  content: "#";
}
.common-data-list-container .info-area .price-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-top: 12px;
}
.common-data-list-container .info-area .price-wrap .price {
  line-height: 1.24;
  font-weight: 800;
  font-size: 20px;
}

@media (max-width: 1120px) {
  .common-data-list-container .list-item {
    padding: 20px 0;
  }
  .common-data-list-container .list-item:first-child {
    padding-top: 20px;
    border-top: 1px solid #e7e7e7;
  }
  .common-data-list-container .item-wrapper {
    gap: 24px;
  }
  .common-data-list-container .thumbnail {
    width: 135px;
    height: 97px;
  }
  .common-data-list-container .info-area {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .common-data-list-container .info-area .title {
    font-size: 17px;
    display: block;
    display: -webkit-box;
    max-height: 2.496em;
    text-overflow: ellipsis;
    line-height: 1.248em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    overflow: hidden;
    white-space: inherit;
  }
  .common-data-list-container .info-area .desc {
    font-size: 14px;
  }
  .common-data-list-container .info-area .hashtag {
    display: none;
    margin-left: -5px;
  }
  .common-data-list-container .info-area .price-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px;
  }
  .common-data-list-container .info-area .price-wrap .price {
    font-size: 20px;
  }
}
.reading-full-view-container {
  max-width: 1000px;
  margin: 0 auto;
}

.column-hub-container {
  margin-top: 72px;
}
.column-hub-container .section-title {
  border-bottom: 4px solid #000;
  padding-bottom: 16px;
}
.column-hub-container .section-title h2 {
  line-height: 1.248;
  font-weight: 800;
  font-size: 40px;
}
.column-hub-container .hub-list-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.column-hub-container .hub-list-item {
  width: 50%;
  padding: 56px 40px;
}
.column-hub-container .hub-list-item.bg-color {
  background-color: #f4f4f4;
}
.column-hub-container .hub-list-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.column-hub-container .hub-list-title .title {
  line-height: 1.248;
  font-weight: 800;
  font-size: 26px;
}
.column-hub-container .hub-list-title .btn-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 14px;
  color: #666;
}
.column-hub-container .hub-list-title .btn-more .icon {
  width: 16px;
  height: 16px;
  background: url("../images/renewal_2024/icon/icon-arrow-gy-16x16.png") no-repeat 0 0;
  background-size: cover;
}
.column-hub-container .hub-list-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.column-hub-container .hub-list-wrapper .thumbnail-item {
  width: calc(50% - 20px);
}
.column-hub-container .hub-list-wrapper .thumbnail-item a {
  display: block;
}
.column-hub-container .hub-list-wrapper .thumbnail {
  position: relative;
  padding-bottom: 71.92%;
  border-radius: 8px;
  overflow: hidden;
}
.column-hub-container .hub-list-wrapper .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.column-hub-container .hub-list-wrapper .title-area {
  margin-top: 16px;
}
.column-hub-container .hub-list-wrapper .title-area .title {
  display: block;
  display: -webkit-box;
  height: 4.2em;
  max-height: 4.2em;
  text-overflow: ellipsis;
  line-height: 1.4em;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
  font-weight: 600;
  font-size: 18px;
}

@media (max-width: 1120px) {
  .column-hub-container {
    margin-top: 40px;
  }
  .column-hub-container .section-title {
    padding-bottom: 16px;
  }
  .column-hub-container .section-title h2 {
    font-size: 28px;
  }
  .column-hub-container .hub-list-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column-hub-container .hub-list-item {
    width: 100%;
    padding: 40px 0;
  }
  .column-hub-container .hub-list-item.bg-color {
    background-color: #fff;
  }
  .column-hub-container .hub-list-item + .hub-list-item {
    border-top: 1px solid #d1d1d1;
  }
  .column-hub-container .hub-list-title {
    margin-bottom: 32px;
  }
  .column-hub-container .hub-list-title .title {
    font-size: 18px;
  }
  .column-hub-container .hub-list-title .btn-more {
    gap: 4px;
    font-size: 14px;
  }
  .column-hub-container .hub-list-wrapper {
    gap: 16px;
  }
  .column-hub-container .hub-list-wrapper .thumbnail-item {
    width: calc(50% - 8px);
  }
  .column-hub-container .hub-list-wrapper .title-area {
    margin-top: 16px;
  }
  .column-hub-container .hub-list-wrapper .title-area .title {
    height: auto;
    font-size: 15px;
  }
}
.common-thumbnail-list-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.common-thumbnail-list-container .list-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  width: 100%;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #ddd;
}
.common-thumbnail-list-container .list-row:last-child {
  margin-bottom: 0;
}
.common-thumbnail-list-container .list-item {
  width: calc(33.333% - 26.7px);
}
.common-thumbnail-list-container .list-item a {
  display: block;
}
.common-thumbnail-list-container .thumbnail {
  position: relative;
  padding-bottom: 71.83%;
  border-radius: 8px;
  overflow: hidden;
}
.common-thumbnail-list-container .thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.common-thumbnail-list-container .info-wrapper {
  margin-top: 16px;
}
.common-thumbnail-list-container .info-wrapper .type {
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1;
  font-size: 15px;
}
.common-thumbnail-list-container .info-wrapper .type.pink {
  color: #bd4d90;
}
.common-thumbnail-list-container .info-wrapper .type.green {
  color: #248d74;
}
.common-thumbnail-list-container .info-wrapper .type.purple {
  color: #a88324;
}
.common-thumbnail-list-container .info-wrapper .type.blue {
  color: #1b65af;
}
.common-thumbnail-list-container .info-wrapper .type.violet {
  color: #b688d4;
}
.common-thumbnail-list-container .info-wrapper .type.mint {
  color: #3ca6c8;
}
.common-thumbnail-list-container .info-wrapper .type.brown {
  color: #a88324;
}
.common-thumbnail-list-container .info-wrapper .title {
  display: block;
  display: -webkit-box;
  height: 2.8em;
  max-height: 2.8em;
  text-overflow: ellipsis;
  line-height: 1.4em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  overflow: hidden;
  font-weight: 600;
  font-size: 18px;
}
.common-thumbnail-list-container .info-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 8px;
}
.common-thumbnail-list-container .info-area .date {
  line-height: 1;
  font-weight: 600;
  font-size: 13px;
  color: #999;
}
.common-thumbnail-list-container .info-area .read-count {
  background: url("../images/icon_view.png") no-repeat left center;
  background-size: auto 0.8rem;
  padding-left: 1.5rem;
  font-size: 13px;
  font-family: "Montserrat";
  font-weight: 500;
  color: #c5c5c5;
}

@media (max-width: 1120px) {
  .common-thumbnail-list-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .common-thumbnail-list-container .list-row {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: 0;
  }
  .common-thumbnail-list-container .list-row:last-child .list-item:last-child {
    margin-bottom: 0;
  }
  .common-thumbnail-list-container .list-item {
    width: 100%;
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #ddd;
  }
  .common-thumbnail-list-container .info-wrapper {
    margin-top: 16px;
  }
  .common-thumbnail-list-container .info-wrapper .title {
    display: block;
    display: -webkit-box;
    height: 2.8em;
    max-height: 2.8em;
    text-overflow: ellipsis;
    line-height: 1.4em;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    overflow: hidden;
    font-size: 18px;
  }
  .common-thumbnail-list-container .info-area {
    margin-top: 16px;
  }
  .common-thumbnail-list-container .info-area .date {
    font-size: 13px;
  }
  .common-thumbnail-list-container .info-area .read-count {
    font-size: 13px;
  }
}
.search-result-headline-container {
  padding: 56px 0;
  background-color: #f4f4f4;
}
.search-result-headline-container .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  max-width: 844px;
  height: 80px;
  margin: 0 auto;
  padding: 0 40px;
  border: 2px solid #ee2a24;
  border-radius: 100px;
  background-color: #fff;
}
.search-result-headline-container .search-form input {
  width: 100%;
  height: 40px;
  border: 0;
  padding: 0;
  font-size: 32px;
  font-weight: 700;
  text-indent: 0;
  background-color: #fff;
}
.search-result-headline-container .search-form input:focus-visible {
  outline: none;
}
.search-result-headline-container .search-form input::-webkit-input-placeholder {
  font-weight: 300;
  color: #ddd;
}
.search-result-headline-container .search-form input::-moz-placeholder {
  font-weight: 300;
  color: #ddd;
}
.search-result-headline-container .search-form input::-ms-input-placeholder {
  font-weight: 300;
  color: #ddd;
}
.search-result-headline-container .search-form input::placeholder {
  font-weight: 300;
  color: #ddd;
}
.search-result-headline-container .search-form .btn-search {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 27.5px;
  height: 23px;
  background: url("../images/renewal_2024/icon/icon-arrow-red-27x23.png") no-repeat 0 0;
  background-size: cover;
  border: 0;
  text-indent: -9999px;
}

@media (max-width: 1120px) {
  .search-result-headline-container {
    padding: 40px 16px;
  }
  .search-result-headline-container .search-form {
    gap: 20px;
    height: 60px;
    padding: 0 24px;
  }
  .search-result-headline-container .search-form input {
    font-size: 18px;
  }
  .search-result-headline-container .search-form .btn-search {
    width: 23.5px;
    height: 19px;
  }
}
#ui-datepicker-div.year .ui-datepicker-calendar,
#ui-datepicker-div.year .ui-datepicker-month,
#ui-datepicker-div.year .ui-datepicker-prev,
#ui-datepicker-div.year .ui-datepicker-next,
#ui-datepicker-div.year .ui-datepicker-current {
  display: none;
}

.common-result-tab-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
.common-result-tab-container .tab-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  padding-bottom: 16px;
  text-align: center;
  border-bottom: 2px solid #dbdce1;
}
.common-result-tab-container .tab-item.active {
  border-bottom-color: #000;
}
.common-result-tab-container .tab-item.active .text {
  color: #000;
}
.common-result-tab-container .tab-item.active .count {
  background-color: #ee2a24;
}
.common-result-tab-container .tab-item .text {
  line-height: 1.248;
  font-weight: 700;
  font-size: 24px;
  color: #a3a3a3;
}
.common-result-tab-container .tab-item .count {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  line-height: 1.248;
  font-weight: 900;
  font-size: 14px;
  color: #fff;
  background-color: #a2a2a2;
}

@media (max-width: 1120px) {
  .common-result-tab-container {
    margin-bottom: 32px;
  }
  .common-result-tab-container .tab-item {
    gap: 8px;
    padding-bottom: 12px;
  }
  .common-result-tab-container .tab-item .text {
    font-size: 12px;
  }
  .common-result-tab-container .tab-item .count {
    padding: 2px 8px;
    font-size: 10px;
  }
}
.common-result-empty-container {
  margin: 120px 0;
  padding: 0 20px;
}
.common-result-empty-container .result-empty-item {
  text-align: center;
}
.common-result-empty-container .result-empty-item + .result-empty-item {
  margin-top: 40px;
}
.common-result-empty-container .result-text {
  font-weight: 500;
  font-size: 32px;
}
.common-result-empty-container .result-text + .hash-text {
  margin-top: 32px;
}
.common-result-empty-container .result-text strong {
  font-weight: 800;
}
.common-result-empty-container .result-text .text {
  color: #ee2a24;
}
.common-result-empty-container .hash-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.common-result-empty-container .hash-text .hash-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.common-result-empty-container .hash-text .hash {
  display: inline-block;
  padding: 8px 24px;
  font-weight: 700;
  font-size: 20px;
  border-radius: 8px;
  border: 1px solid #d3d3d3;
}
.common-result-empty-container .hash-text .text {
  font-weight: 500;
  font-size: 24px;
}
.common-result-empty-container .info-wrapper {
  margin-top: 27px;
}
.common-result-empty-container .info-text {
  font-weight: 600;
  font-size: 25px;
  color: #666;
}
.common-result-empty-container .info-text + .info-text {
  margin-top: 12px;
}
.common-result-empty-container .info-text .mark {
  line-height: 1.4;
  font-size: 40px;
  color: #666;
}
.common-result-empty-container .info-text .text {
  position: relative;
  z-index: 1;
  line-height: 1.4;
  font-size: 25px;
  color: #000;
}
.common-result-empty-container .info-text .text::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 8px;
  background-color: rgba(238, 42, 36, 0.1);
}

.membership-info-content {
  margin-top: 50px;
}
.membership-info-content img {
  display: block;
  margin: 0 auto;
}

.view-inner {
  font-weight: 300;
}
.view-inner .fr-view {
  font-size: 17px;
  font-weight: 300;
}
.view-inner .fr-view table td,
.view-inner .fr-view table th {
  border-color: transparent;
}
.view-inner .fr-view img {
  margin: 0 auto;
}
.view-inner .fr-view img.fr-dib {
  margin: 0 auto;
}
.view-inner .fr-view img.fr-dii {
  margin-left: 0;
  margin-right: 0;
}

.fr-view {
  font-size: 17px;
  font-weight: 300;
}
.fr-view table td,
.fr-view table th {
  border-color: transparent;
}
.fr-view img {
  margin: 0 auto;
}
.fr-view img.fr-dib {
  margin: 0 auto !important;
}
.fr-view img.fr-dii {
  margin-left: 0;
  margin-right: 0;
}