@charset "UTF-8";
/* line chart sample */
.chart-line-sample {
  overflow: hidden;
  height: 8px;
  background: #f9fafc;
  border-radius: 8px;
}

.chart-line-sample .chart-area {
  height: 8px;
  font-size: 0;
  background: #ffcc00;
  border-radius: 8px;
}

/* line bar chart */
.chart-line {
  margin: 0 auto;
}

.chart-line .chart-area {
  display: flex;
  overflow: hidden;
  width: 99.99999%;
  font-size: 0;
  border-radius: 8px;
}

.chart-line .chart-area span {
  display: block;
  height: 8px;
  margin-right: 1px;
}

.chart-line .chart-area span:last-child {
  margin-right: 0px;
}

.chart-aside {
  padding-top: 16px;
}

.chart-aside .chart-infor {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-aside .chart-infor__txt, .chart-aside .chart-infor__percent {
  font-size: 1.5rem;
}

.chart-aside .chart-infor__txt {
  display: flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.47);
}

.chart-aside .chart-infor__txt:before {
  content: '';
  display: flex;
  width: 8px;
  height: 8px;
  margin: 0 8px 3px 0;
  background: #72bdab;
  border-radius: 8px;
}

.chart-aside .chart-infor__txt.col1:before {
  background: #7c7ae1;
}

.chart-aside .chart-infor__txt.col2:before {
  background: #72bdab;
}

.chart-aside .chart-infor__txt.col3:before {
  background: #ffa900;
}

.chart-aside .chart-infor__txt.col4:before {
  background: #996500;
}

.chart-aside .chart-infor__txt.col5:before {
  background: #5cbbd8;
}

.chart-aside .chart-infor__txt.col6:before {
  background: #2787a5;
}

.chart-aside .chart-infor__txt.col7:before {
  background: #222;
}

.chart-aside .chart-infor__txt.col8:before {
  background: #fc7590;
}

.chart-aside .chart-infor__txt.col9:before {
  background: #ff0000;
}

.chart-aside .chart-infor + .chart-infor {
  margin-top: 8px;
}

/* pin chart */
.chart-pin-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 28px 48px;
  border-radius: 9px;
  border: 1px solid rgba(0, 0, 0, 0.24);
}

.chart-pin-box .chart-pin {
  position: relative;
  width: 160px;
  height: 160px;
}

.chart-pin-box .chart-pin .chart-area {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  margin: -80px 0 0 -80px;
}

.chart-pin-box .txt-unit {
  position: absolute;
  top: 16px;
  right: 24px;
  display: block;
  font-size: 1.3rem;
}

.chart-pin-box .list-count {
  margin-left: 88px;
  width: 253px;
  font-size: 1.3rem;
}

.chart-pin-box .list-count li:first-child .tit:before {
  background: #7ae1de;
}

.chart-pin-box .list-count li:last-child .tit:before {
  background: #0048d0;
}

.chart-pin-box .list-count .tit {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.87);
}

.chart-pin-box .list-count .tit:before {
  content: '';
  display: inline-block;
  vertical-align: top;
  margin: 4px 8px 0 0;
  flex-basis: 8px;
  width: 8px;
  height: 8px;
  border-radius: 8px;
}

.chart-pin-box .list-count .tit.col1:before {
  background: #878ff7;
}

.chart-pin-box .list-count .tit.col2:before {
  background: #5194e3;
}

.chart-pin-box .list-count .tit.col3:before {
  background: #a4bcd8;
}

.chart-pin-box .list-count .tit.col4:before {
  background: #ffce7c;
}

.chart-pin-box .list-count .tit.col5:before {
  background: #878ff7;
}

.chart-pin-box .list-count .tit.col6:before {
  background: #72bdab;
}

.chart-tip {
  position: absolute;
  z-index: 3;
  min-width: 30px;
  max-width: 300px;
  padding: 5px 15px;
  border-radius: 1px;
  background: rgba(0, 0, 0, 0.87);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.06em;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.chart-tip::after {
  position: absolute;
  left: 50%;
  bottom: -5px;
  content: "";
  height: 0;
  margin: 0 0 0 -6px;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.87);
  line-height: 0;
}

.chart-summary {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  cursor: default;
}

.chart-summary-title {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -27%;
  padding-top: 5px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

.doughnutSummaryTitle {
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -27%;
  padding-top: 5px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
}

/* circle chart  */
.chart-circle {
  position: relative;
  width: 136px;
  height: 136px;
}

.chart-circle .chart-area {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  margin: -68px 0 0 -68px;
}

.chart-circle .chart-area svg {
  position: relative;
  z-index: 1;
}

.chart-circle .list-dot {
  display: flex;
  padding: 17px 0 0 9px;
}

.chart-circle .list-dot li {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.3rem;
}

.chart-circle .img0 {
  background-image: url("https://img1.kbcard.com/home_re/pc/arr/16/arr-1-down.png");
}

.chart-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 430px;
  margin: 30px auto;
}

.chart-box .chart-infor {
  width: 221px;
}

.chart-box .chart-aside {
  padding-top: 13px;
}

.chart-box .chart-aside .list-dot {
  display: flex;
  padding: 17px 0 0 9px;
}

.chart-box .chart-aside .list-dot li {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.3rem;
}

.chart-box .chart-infor__txt, .chart-box .chart-infor__percent {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
}

.chart-box .chart-infor__txt {
  color: rgba(0, 0, 0, 0.87);
}

.chart-box .chart-infor__txt:before {
  width: 12px;
  height: 12px;
  margin: 0 8px 4px 0;
  background: #966bf5;
  border-radius: 12px;
}

.chart-box .chart-infor__txt + .chart-infor__txt {
  margin-top: 16px;
}

.chart-box .chart-infor:first-child .chart-infor__txt:before {
  background: #fe9508;
}

.chart-box .chart-infor:nth-child(3) .chart-infor__txt:before {
  background: #4ad6ff;
}

/* chart info */
.chart-infor + .chart-infor {
  margin-top: 16px;
}

/* chart-half */
.chart-half {
  display: flex;
  justify-content: center;
  position: relative;
  top: 32px;
  width: 200px;
  height: 98px;
  margin: 0 auto;
}

.chart-half svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  stroke-width: 64;
  fill: none;
}

.chart-half path {
  transition: all 1.5s;
}

.chart-half__bg {
  stroke: #eee;
}

.chart-half .chart-tip {
  position: absolute;
  z-index: 3;
  min-width: 30px;
  max-width: 300px;
  padding: 5px 15px;
  border-radius: 1px;
  background: rgba(0, 0, 0, 0.87);
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.06em;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.chart-half__tooltip {
  position: absolute;
  left: 50%;
  z-index: 10;
  display: none;
  align-items: center;
  margin-top: 9px;
  min-width: 30px;
  max-width: 300px;
  padding: 5px 15px;
  font-size: 1.2rem;
  white-space: nowrap;
  background: #222;
  border-radius: 4px;
  border-bottom-left-radius: 0;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.2);
}

.chart-half__tooltip:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -7px;
  display: block;
  border-left: 8px solid none;
  border-right: 8px solid #222;
  border-top: 6px solid transparent;
  border-bottom: 0 solid transparent;
}

.chart-half__tooltip .number {
  font-weight: 600;
  padding-right: 5px;
}

.chart-half__tooltip span {
  color: #fff;
}

.chart-half .linear--color-from {
  stop-color: #ffcc00;
  stop-opacity: 1;
}

.chart-half .linear--color-to {
  stop-color: #f46600;
  stop-opacity: 1;
}

.chart-half__infor {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.chart-half__infor .infor-txt {
  font-size: 1.3rem;
  font-weight: 600;
}

.chart-half__infor .infor-pay {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 600;
}

.chart-half__infor .infor-pay em {
  font-size: 2.8rem;
}

.chart-half__infor .infor-usd {
  font-size: 1.3rem;
}

.chart-half--type2 {
  width: 268px;
  height: 147px;
}

.chart-half--type2 svg {
  stroke-width: 24;
}

.chart-half--type2 .chart-half__bg {
  stroke: #ffcc00;
}

.chart-half--type2 .chart-half__item {
  stroke: #6865f7;
}

.chart-half--type3 {
  width: 268px;
  height: 147px;
}

.chart-half--type3 svg {
  stroke-width: 24;
}

.chart-half--type3 .chart-half__bg {
  stroke: #46ccac;
}

.chart-half--type3 .chart-half__item {
  stroke: #26b2fe;
}

.chart-row-bar {
  padding: 24px 30px 18px 24px;
  border-radius: 9px;
  border: 1px solid rgba(0, 0, 0, 0.24);
}

.chart-row-bar__cont li {
  position: relative;
  overflow: hidden;
}

.chart-row-bar__cont li:after {
  content: "";
  display: block;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

.chart-row-bar__cont li:after {
  content: '';
  position: absolute;
  top: 0;
  left: 130px;
  display: block;
  width: 1px;
  height: 100%;
  visibility: visible;
  background: rgba(0, 0, 0, 0.08);
}

.chart-row-bar__cont li + li {
  padding-top: 8px;
}

.chart-row-bar__cont li strong {
  position: relative;
  display: block;
  float: left;
  width: 130px;
  line-height: 22px;
  padding-right: 25px;
  text-align: right;
  font-weight: 400;
  font-size: 1.3rem;
}

.chart-row-bar__cont li .chart-area {
  margin-top: 7px;
  height: 8px;
  padding-left: 130px;
}

.chart-row-bar__cont li .chart-area > div {
  font-size: 0;
  height: 100%;
  background: #7c7ae1;
}

.chart-row-bar__pay {
  display: flex;
  justify-content: space-between;
  padding-left: 130px;
  margin-top: 6px;
  font-size: 1.3rem;
}

.chart-row-bar.row3 .chart-row-bar__cont li + li {
  padding-top: 32px;
}

.chart-bar {
  position: relative;
  margin: 0 auto;
  height: 98px;
  padding: 48px 17px 0;
}

.chart-bar__var {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 2px;
  background: #d8d8d8;
  border-radius: 2px;
}

.chart-bar__obj {
  position: relative;
}

.chart-bar__obj:first-child {
  position: absolute;
  width: 8px;
}

.chart-bar__obj:first-child .chart-bar__txt {
  left: -22px;
  right: auto;
  width: 44px;
}

.chart-bar__obj.on .chart-bar__txt {
  margin-top: 31px;
  background: #ffcc00;
  border-radius: 4px;
}

.chart-bar__obj.on .chart-bar__txt:before {
  opacity: 1;
}

.chart-bar__obj.on .chart-bar__txt:after {
  top: -31px;
  background: #ffcc00;
}

.chart-bar__txt {
  position: absolute;
  top: 0;
  right: -20px;
  display: inline-block;
  text-align: center;
  height: 26px;
  line-height: 26px;
  padding: 0 4px;
  margin-top: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  z-index: 2;
  transition: all 1s;
  white-space: nowrap;
}

.chart-bar__txt:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  margin: -8px 0 0 -4px;
  opacity: 0;
  border-top: 8px solid none;
  border-bottom: 8px solid #ffcc00;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  transition: all 1s;
}

.chart-bar__txt:after {
  content: '';
  display: block;
  position: absolute;
  top: -14px;
  left: 50%;
  width: 12px;
  height: 12px;
  margin: -5px 0 0 -5px;
  border-radius: 8px;
  background: #d8d8d8;
  border: 3px solid rgba(255, 255, 255, 0);
  transition: all 1s;
  box-sizing: border-box;
}

.chart-bar__per {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  height: 2px;
  text-indent: -999999em;
  background: #ffcc00;
}

.chart-bar__ico {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.chart-bar .last-result {
  position: absolute;
  top: 0;
  left: 178px;
  font-size: 1.4rem;
}

.chart-bar .last-result:after {
  content: '';
  display: block;
  width: 0;
  height: 8px;
  margin: 0 0 0 25px;
  border-bottom: 8px solid none;
  border-top: 8px solid rgba(0, 0, 0, 0.6);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

.chart-panel {
  position: relative;
  margin-top: 16px;
}

.chart-panel__radio {
  position: absolute;
  top: -41px;
  right: 0;
}

.bar-graph__list {
  display: flex;
  text-align: center;
}

.bar-graph__list > li + li {
  margin-left: 24px;
}

.bar-graph__grh {
  position: relative;
  width: 36px;
  height: 100px;
  left: 50%;
  transform: translateX(-50%);
}

.bar-graph__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  font-size: 0;
  text-indent: -99999rem;
  line-height: 0;
  background-size: 200px auto;
}

.bar-graph__bar--blue {
  background: #86baf3 url(https://img1.kbcard.com/home_re/pc/img/common/img-grh-pattern1.png) repeat 0 0;
}

.bar-graph__bar--purple {
  background: #966bf5 url(https://img1.kbcard.com/home_re/pc/img/common/img-grh-pattern2.png) repeat 0 0;
}

.bar-graph__bar--yellow {
  background: #ffcc00 url(https://img1.kbcard.com/home_re/pc/img/common/img-grh-pattern4.png) repeat 0 0;
}

.bar-graph__label {
  margin-top: 8px;
  font-size: 14px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.87);
}

.bar-graph--horizontal .bar-graph__list {
  display: block;
}

.bar-graph--horizontal .bar-graph__list > li + li {
  margin-left: 0;
  margin-top: 24px;
}

.bar-graph--horizontal .bar-graph__grh {
  width: 100px;
  height: 24px;
  left: 0;
  transform: translate(0);
  white-space: nowrap;
  text-align: left;
}

.bar-graph--horizontal .bar-graph__bar {
  position: relative;
  display: inline-block;
  bottom: auto;
  width: auto;
  height: 24px;
  vertical-align: top;
}

.bar-graph--horizontal .bar-graph__label {
  display: inline-block;
  margin-top: 0;
  vertical-align: top;
}

.bar-graph--flex .bar-graph__list > li {
  display: flex;
  text-align: left;
  align-items: center;
}

.bar-graph--flex .bar-graph__list > li + li {
  margin-top: 16px;
}

.bar-graph--flex .bar-graph__list > li > * {
  flex: 0 0 auto;
}

.bar-graph--flex .bar-graph__grp {
  width: 100px;
  height: 20px;
}

.bar-graph--flex .bar-graph__bar--yellow {
  background: #ffcc00 url(https://img1.kbcard.com/home_re/pc/img/common/img-grh-pattern7.png) repeat 0 0;
}

.bar-graph--flex .bar-graph__info {
  display: flex;
  align-items: center;
  width: calc( 100% - 116px);
  margin-left: 16px;
}

.bar-graph--flex .bar-graph__percent {
  margin-right: 8px;
  font-size: 14px;
  line-height: 20px;
}

.bar-graph--flex .bar-graph__txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* circle graph */
/* circle graph */
.circle-box {
  text-align: center;
}

.circle-box--flex {
  display: flex;
  position: relative;
  align-items: center;
}

.circle-box--flex > * {
  flex: 0 0 auto;
}

.circle-box--flex .circle-svg {
  width: 13.2rem;
  height: 13.2rem;
  margin: 0 1.6rem;
}

.circle-box--flex .circle-info {
  margin-top: 0;
  width: calc( 100% - 11rem);
  margin-left: 50px;
}

.circle-box--flex .circle-info > li {
  display: inline-flex;
  width: 60%;
  /* 2022.01.10 개발 제갈석 수정요청 */
  margin-right: 10%;
  padding: 0 0 0 1.6rem;
  background-color: #fff;
  font-size: 1.6rem;
}

.circle-box--flex .circle-info > li + li {
  margin-top: 0;
}

.circle-box--flex .circle-info__pct {
  display: block;
  margin-right: 0.8rem;
  font-size: 1.3rem;
  line-height: 2.2rem;
}

.circle-box--flex .circle-info__mpct {
  display: block;
  float: left;
  margin-right: 0.8rem;
  font-size: 1.3rem;
  line-height: 2.2rem;
}

.circle-box--flex .circle-info__tit {
  display: block;
  overflow: hidden;
  width: 150px;
  text-align: left;
  font-size: 1.3rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.circle-box--flex .circle-noflex li {
  width: 50%;
}

.circle-box---line {
  padding: 28px 48px 28px 28px;
  border-radius: 9px;
  border: 1px solid rgba(0, 0, 0, 0.24);
}

.circle-svg-wrap {
  position: relative;
}

.circle-svg-wrap__tit {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 2.2rem;
}

.circle-svg {
  display: block;
  position: relative;
  width: 11rem;
  height: 11rem;
  margin: 0 auto;
}

.circle-info {
  overflow: hidden;
  margin-top: 3.2rem;
}

.circle-info > li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.6rem 0.8rem 2.4rem;
  border-radius: 0.4rem;
  background-color: #f9fafc;
  font-size: 1.4rem;
  line-height: 2rem;
}

.circle-info > li + li {
  margin-top: 0.8rem;
}

.circle-info-basic {
  margin-top: 1.6rem;
}

.circle-info-basic > li {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.6rem 0.8rem 2.4rem;
  background-color: #f9fafc;
  border-top-left-radius: 0.4rem;
  border-bottom-left-radius: 0.4rem;
}

.circle-info-basic > li + li {
  margin-top: 0.8rem;
}

.circle-info-basic > li span[class*='circle-info-basic__p'] {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.8rem;
  height: 100%;
  border-radius: 0;
  background-repeat: repeat;
}

.circle-info-basic__usd {
  display: block;
  margin-top: 0.4rem;
  font-size: 1.4rem;
  line-height: 2.2rem;
}

.circle-head {
  padding: 1.6rem;
  margin-top: 3.2rem;
  box-shadow: 0 0.2rem 0.6rem 0 rgba(0, 0, 0, 0.16);
  border-radius: 0.8rem;
}

.circle-head__sum {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.circle-head__price {
  font-size: 1.8rem;
  line-height: 3.6rem;
}

.circle-head__price > em {
  font-size: 2.8rem;
}

.circle-head__usd {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  line-height: 2.2rem;
  text-align: right;
}

span[class*='circle-info__p'],
span[class*='circle-info-basic__p'] {
  position: absolute;
  top: 0.3rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-repeat: repeat;
}

/* 범례에 패턴 적용은 권장으로 정의 */
.circle-info__p1,
.circle-info-basic__p1 {
  background-color: #6865f7;
}

.circle-info__p2,
.circle-info-basic__p2 {
  background-color: #ffcc00;
}

.circle-info__p3,
.circle-info-basic__p3 {
  background-color: #636382; /* 2022-03-21 파이차트색상(결함DEFC-0000007666) */
}

.circle-info__p4,
.circle-info-basic__p4 {
  background-color: #26b2fe;
}

.circle-info__p5,
.circle-info-basic__p5 {
  background-color: #ee6963;
}

.circle-info__p6,
.circle-info-basic__p6 {
  background-color: #fda2bf;
}

.circle-info__p7,
.circle-info-basic__p7 {
  background-color: #bedf3d;
}

.circle-info__p8,
.circle-info-basic__p8 {
  background-color: #fda501;
}

#main_contents {
  padding: 40px 0 80px;
}

#footer {
  padding: 40px 0 104px;
  background: #f7f7fa;
}

.ars-wrap {
  display: flex;
  padding: 52px 0 54px;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
}

.ars-wrap__item:after {
  content: "";
  display: block;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

.ars-wrap__etc {
  float: left;
  margin-right: 80px;
}

.ars-wrap__etc:last-child {
  margin-right: 72px;
}

.ars-wrap__etc li {
  position: relative;
  padding-left: 10px;
}

.ars-wrap__etc li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.87);
}

.ars-wrap__btn {
  width: 178px;
  padding: 4px 0 4px 40px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.ars-wrap__btn a {
  display: block;
  font-size: 1.5rem;
}

.ars-wrap__btn a + a {
  margin-top: 8px;
}

.aside-cont {
  display: flex;
  justify-content: space-between;
  margin: 48px 0;
}

.aside-cont .aside-box {
  margin-bottom: 48px;
  display: flex;
}

.aside-cont .aside-box.line a {
  border: 1px solid rgba(0, 0, 0, 0.24);
}

.aside-cont .aside-box.gray a {
  background: #eff2f7;
}

.aside-cont .aside-box a {
  display: block;
  width: 170px;
  height: 168px;
  padding-top: 24px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  border-radius: 12px;
}

.aside-cont .aside-box a + a {
  margin-left: 8px;
}

.aside-cont .aside-box a:after {
  content: '';
  display: block;
  width: 100%;
  height: 84px;
  margin-top: 16px;
  background: pink;
}

.aside-cont .list li + li {
  padding-top: 10px;
}

.aside-cont .box-news .list a {
  vertical-align: middle;
  margin-right: 5px;
  max-width: 319px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aside-cont .tabs__body {
  margin-top: 12px;
}

.main .tabs__menu {
  border-bottom: 0;
}

.main .tabs__menu li {
  margin-right: 24px;
}

.main .tabs__menu li a {
  padding: 0;
  font-size: 1.8rem;
}

.main .tabs__body {
  padding-top: 0;
}

.box-bg {
  position: relative;
  padding: 21px 148px 20px 32px;
  border-radius: 12px;
}

.box-bg:after {
  content: '';
  position: absolute;
  top: 24px;
  right: 32px;
  display: block;
  width: 86px;
  height: 78px;
}

.box-bg.green {
  background: #e3f4d3;
}

.box-bg.green:after {
  background: #72bdab;
}

.box-bg.blue {
  background: #e5f0ff;
}

.box-bg.blue:after {
  background: #2dacd9;
}

.box-bg.pink {
  background: #f9e3fb;
}

.box-bg.pink:after {
  background: #fc7590;
}

.box-ico-menu {
  display: flex;
  margin-top: 16px;
}

.box-ico-menu__view {
  display: block;
  height: 112px;
  font-weight: 600;
}

.box-ico-menu__view img {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 8px;
}

.box-ico-menu__view + .box-ico-menu__view {
  margin-left: 70px;
}

.box-ico-menu__etc {
  display: block;
  width: 88px;
  height: 88px;
  margin-left: 64px;
  text-align: center;
  font-size: 1.3rem;
  color: rgba(0, 0, 0, 0.6);
  border: 1px dashed rgba(0, 0, 0, 0.6);
  border-radius: 12px;
}

.box-ico-menu__etc img {
  display: block;
  width: 24px;
  height: 24px;
  margin: 21px auto 4px;
}

.box-black {
  width: 528px;
  background: #202d40;
  padding: 24px 32px 26px;
  border-radius: 12px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16);
}

.box-black:after {
  content: "";
  display: block;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

.box-black .tit-dep4 {
  color: #fff;
}

.box-black .list-view dt {
  color: rgba(255, 255, 255, 0.6);
}

.box-black .list-view dd,
.box-black .list-view dd em {
  color: #ffcc00;
}

.box-black .list-view + .list-view:before {
  background: rgba(255, 255, 255, 0.08);
}

.box-yellow {
  position: relative;
  width: 528px;
  margin-left: 24px;
  background: #ffcc00;
  padding: 24px 32px 26px;
  border-radius: 12px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16);
}

.box-yellow .tit-area {
  align-items: center;
}

.box-yellow .tit-area .btn-txt--arr-r2:after {
  margin-top: -3px;
}

.ico-set:after {
  content: "";
  display: block;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

.ico-set:after {
  content: '';
  visibility: visible;
  display: block;
  position: absolute;
  bottom: 16px;
  right: 24px;
  width: 110px;
  height: 100px;
  background: pink;
}

.list-view {
  position: relative;
  float: left;
}

.list-view + .list-view {
  margin-left: 56px;
  padding-left: 56px;
}

.list-view + .list-view:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 56px;
  margin-top: -28px;
  background: rgba(0, 0, 0, 0.08);
}

.list-view dt,
.list-view dd {
  font-weight: 600;
  font-size: 1.8rem;
}

.list-view dd {
  margin-top: 7px;
}

.list-view dd em {
  font-size: 2.4rem;
  vertical-align: bottom;
  line-height: 1.35;
}

.card-area {
  display: flex;
  flex-grow: 1;
}

.card-area > img {
  width: 120px;
  height: 76px;
  margin: 3px 16px 8px 0;
}

.card-area .txt-area {
  text-align: left;
}

.card-area .txt-area img {
  width: 39px;
  height: 12px;
  background: pink;
}

.category-top {
  height: 200px;
}

.category-top .swiper-slide {
  height: 200px;
  padding-bottom: 55px;
}

.category-top .swiper-dot {
  bottom: 0;
}

.category-top .swiper-dot .swiper-pagination-bullet {
  overflow: hidden;
  width: 5px;
  height: 5px;
  border-radius: 36%;
  background: rgba(0, 0, 0, 0.16);
  opacity: 1;
}

.category-top .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 16px;
  height: 5px;
  background: #000;
}

.bn-main {
  display: inline-block;
  width: 632px;
  margin: 32px 0;
}

.bn-main__cont {
  position: relative;
  height: 262px;
  width: 100%;
}

.bn-main__ani {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 330px;
  height: 170px;
  background: rgba(0, 0, 0, 0.6);
}

.bn-main__txt {
  width: 528px;
  height: 254px;
  padding: 35px 32px;
  text-align: left;
  background: #eccfff;
  border-radius: 12px;
}

.bn-main__txt .txt {
  display: inline-block;
  padding: 0 8px;
  height: 24px;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 24px;
  background: #735b9f;
}

.bn-main__txt .tit {
  display: block;
  margin-top: 16px;
  line-height: 1.25;
  font-size: 3.2rem;
  font-weight: 600;
}

.bn-main__txt .tit br {
  line-height: 1.25;
}

.bn-main .swiper-dot {
  justify-content: flex-start;
  width: 100px;
  bottom: 60px;
  left: 32px;
  z-index: 5;
}

.bn-main .swiper-container .swiper-wrap__btn {
  margin-left: 4px;
  z-index: 10;
  text-indent: 99999999em;
  color: rgba(0, 0, 0, 0);
}

.bn-main .swiper-container .swiper-wrap__btn:before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  display: block;
  margin-left: -4px;
  width: 3px;
  height: 12px;
  background: #000;
}

.bn-main .swiper-container .swiper-wrap__btn:after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  margin-left: 2px;
  display: block;
  width: 3px;
  height: 12px;
  background: #000;
}

.box-login {
  display: inline-block;
  width: 361px;
  margin: 35px 0 35px 82px;
}

.box-login .login-area li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  min-height: 58px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.box-login .login-area li:first-child {
  padding-top: 0;
}

.box-login .user-infor {
  display: flex;
  align-items: center;
}

.box-login .user-infor__photo {
  display: block;
  overflow: hidden;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #ccc;
}

.box-login .user-infor__name {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 8px;
}

.box-login .user-infor__rating {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 32px;
  height: 32px;
  color: #fff;
  font-weight: 600;
  border-radius: 32px;
  background: #000;
}

.box-login .user-infor__obj {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.box-login .user-infor__obj:before {
  content: '';
  display: block;
  margin-right: 16px;
}

.box-login .user-infor__obj.ico1:before {
  font-size: 0;
  width: 24px;
  height: 24px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/24/ico-2-paper.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.box-login .user-infor__obj.ico2:before {
  font-size: 0;
  width: 24px;
  height: 24px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/24/ico-2-alarm.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.box-login .user-aside {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.box-login .user-aside:after {
  content: "";
  display: block;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

.box-login .user-aside img {
  display: block;
  width: 96px;
  height: 64px;
  margin: 0 0 0 auto;
  background: pink;
}

/* index CGH */
.article {
  position: relative;
  width: 1080px;
  margin: 40px auto 0 !important;
}

.article:first-child {
  margin-top: 0 !important;
}

.article:after {
  content: '';
  clear: both;
  display: block;
}

.article.full {
  width: 100%;
  padding: 0 0 40px;
  background: linear-gradient(to bottom, #f9fafc, rgba(239, 242, 247, 0.87) 100%);
}

.article.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 24px;
}

.tit-sec {
  position: relative;
  z-index: 10;
  display: inline-block;
  padding-right: 28px;
  font-size: 20px;
}

.tit-sec a {
  position: relative;
  display: block;
  padding-right: 28px;
}

.tit-sec a:before {
  content: '';
  display: block;
  clear: both;
  z-index: 1;
  position: absolute;
  top: 2px;
  right: 0;
  font-size: 0;
  width: 24px;
  height: 24px;
  background: url("https://img1.kbcard.com/home_re/pc/arr/24/arr-1-right.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.event-slide {
  overflow: hidden;
  float: left;
  width: 672px;
  height: 262px;
  border-radius: 16px;
  /* motion */
}

.event-slide .swiper-slide {
  overflow: hidden;
  flex-direction: column !important;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  height: 262px;
  margin: 0;
  padding: 40px 0 0 56px;
  text-align: left;
}

.event-slide .swiper-button-prev {
  font-size: 0;
  width: 24px;
  height: 24px;
  background: url("https://img1.kbcard.com/home_re/pc/arr/24/arr-1-left.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.event-slide .swiper-button-next {
  font-size: 0;
  width: 24px;
  height: 24px;
  background: url("https://img1.kbcard.com/home_re/pc/arr/24/arr-1-right.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.event-slide .swiper-wrap .swiper-wrap__btn {
  margin-left: 16px;
}

.event-slide h2 {
  font-weight: 600;
  font-size: 15px;
}

.event-slide .bold {
  margin-top: 16px;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
}

.event-slide .bold br {
  line-height: 0;
}

.event-slide .text {
  margin-top: 16px;
  font-size: 15px;
}

.event-slide .motion-area {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  z-index: 5;
}

.event-slide .motion-area__img {
  position: absolute;
  opacity: 0;
  transition: .3s;
}

.event-slide .motion-area__img--1 {
  top: -90px;
  left: 0;
}

.event-slide .motion-area__img--2 {
  right: -125px;
  bottom: 33px;
}

.event-slide .motion-area__img--3 {
  right: -75px;
  bottom: 33px;
}

.event-slide .mov .motion-area__img {
  opacity: 1;
  transition: 1s;
}

.event-slide .mov .motion-area__img--1 {
  top: 73px;
  transition-delay: .8s;
}

.event-slide .mov .motion-area__img--2 {
  right: 140px;
  transition-delay: .3s;
}

.event-slide .mov .motion-area__img--3 {
  right: 65px;
  transition-delay: .6s;
}

.logout-case {
  float: right;
  width: 344px;
  height: 262px;
}

.logout-case .tabs {
  margin: 0;
}

.logout-case .tabs__menu {
  border: 0;
}

.logout-case .tabs__menu li {
  margin: 0 0 0 32px;
}

.logout-case .tabs__menu li:first-child {
  margin-left: 0;
}

.logout-case .tabs__menu li > a {
  padding: 0;
  font-size: 18px;
}

.logout-case .tabs__body {
  padding-top: 0;
}

.logout-case .tabs__panel {
  position: relative;
  height: 230px;
  padding-top: 16px;
}

.logout-case .tabs__panel.pin .pin-input {
  padding-top: 32px;
}

.logout-case .tabs__panel.pin .pin-txt {
  padding-top: 20px;
  font-size: 15px;
  text-align: center;
}

.logout-case .tabs__panel.pay::before {
  content: '';
  display: block;
  margin: 5px auto 0;
  font-size: 0;
  width: 96px;
  height: 96px;
  background: url("https://img1.kbcard.com/home_re/pc/img/main/ico-appcard-48.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.logout-case .tabs__panel.ids .form-field--pw {
  margin-top: 16px;
}
.logout-case .tabs__panel.ids .form-field--pw input {
  opacity:1;
}
.logout-case .tabs__panel.cert::before {
  content: '';
  display: block;
  margin: 5px auto 0;
  font-size: 0;
  width: 96px;
  height: 96px;
  background: url("https://img1.kbcard.com/home_re/pc/img/main/ico-certificate-48.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.logout-case .tabs__panel.browser::before {
  content: '';
  display: block;
  margin: 5px auto 0;
  font-size: 0;
  width: 96px;
  height: 96px;
  background: url("https://img1.kbcard.com/home_re/pc/img/main/ico-browser-48.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.logout-case .form-field .form-field__obj {
  display: block;
  width: 100%;
}

.logout-case .form-field input::placeholder {
  font-weight: 600;
  font-size: 18px;
}

.logout-case .form-field--pw .form-field__cont:after {
  content: '';
  clear: both;
  display: block;
}

.logout-case .form-field--pw .form-field__cont .form-field__obj {
  float: left;
  width: calc(100% - 64px);
}

.pos-area {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.pos-area .btn--primary {
  width: 100%;
  font-weight: 600;
  font-size: 18px;
}

.btn-setup {
  display: inline-block;
  position: relative;
  margin: 16px 20px 0 0;
  padding-right: 20px;
  font-weight: 600;
  font-size: 13px;
  vertical-align: top;
}

.btn-setup:last-child {
  margin-right: 0;
}

.btn-setup::before {
  content: '>';
  display: block;
  clear: both;
  position: absolute;
  top: -3px;
  right: 0;
  width: 16px;
  height: 16px;
  font-weight: 600;
  font-size: 15px;
}

.login-case {
  float: right;
  position: relative;
  width: 344px;
  height: 262px;
}

.login-case__item {
  margin-top: 12px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
  line-height: 22px;
}

.login-case__list {
  width: 100%;
  height: 146px;
  margin: 16px 0 0;
  padding: 24px;
  background: #f9fafc;
  border-radius: 8px;
}

.login-case__list li {
  overflow: hidden;
  padding: 0;
  font-weight: 600;
  font-size: 15px;
}

.login-case__list li > span {
  float: right;
  color: #086cfd;
}

.login-case__list li > a {
  float: right;
  color: #086cfd;
}

.login-case__list li + li {
  margin-top: 16px;
}

.user-info__name {
  display: inline-block;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.87);
  vertical-align: top;
}

.user-info__class {
  display: inline-block;
  height: 24px;
  margin: 4px 0 0 4px;
  padding: 0 13px;
  background: #202d40;
  color: #fff;
  font-size: 15px;
  line-height: 24px;
  border-radius: 16px;
}

.quick-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  width: 1080px;
  margin: 0 auto;
  padding: 40px 0;
}

.quick-menu > a {
  display: block;
  flex: 1;
  padding-top: 58px;
  line-height: 20px;
  letter-spacing: 0;
  font-size: 15px;
  text-align: center;
}

.quick-menu__item01 {
  background: url("https://img1.kbcard.com/home_re/pc/ico/48/ico-write.png") no-repeat center top;
}

.quick-menu__item02 {
  background: url("https://img1.kbcard.com/home_re/pc/ico/48/ico-eshopping.png") no-repeat center top;
}

.quick-menu__item03 {
  background: url("https://img1.kbcard.com/home_re/pc/ico/48/ico-checkpaper.png") no-repeat center top;
}

.quick-menu__item04 {
  background: url("https://img1.kbcard.com/home_re/pc/ico/48/ico-coin-48.png") no-repeat center top;
}

.quick-menu__item05 {
  background: url("https://img1.kbcard.com/home_re/pc/ico/48/ico-call-48.png") no-repeat center top;
}

.quick-menu__item06 {
  background: url("https://img1.kbcard.com/home_re/pc/ico/48/ico-cardregister-48.png") no-repeat center top;
}

.quick-menu__item07 {
  background: url("https://img1.kbcard.com/home_re/pc/ico/48/ico-point-48.png") no-repeat center top;
}

.quick-menu__item08 {
  background: url("https://img1.kbcard.com/home_re/pc/ico/48/ico-certificate-48.png") no-repeat center top;
}

.quick-menu__item09 {
  background: url("https://img1.kbcard.com/home_re/pc/ico/48/ico-card-sos.png") no-repeat center top;
}

/*** 카드 영역 개선 운영 반영 후 삭제_221205 ***/
.recom-card {
  width: 1080px;
  position: relative;
  height: 394px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16);
}

.recom-card .tabs {
  margin: 0;
}

.recom-card .tabs__menu {
  z-index: 1;
  position: absolute;
  top: 24px;
  left: 32px;
  border: 0;
}

.recom-card .tabs__menu > li {
  margin-right: 24px;
  padding: 0;
}

.recom-card .tabs__menu > li > a {
  padding: 4px 0;
  font-size: 18px;
}

.recom-card .tabs__body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 394px;
  padding: 0;
}

.recom-card__box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: flex-end;
  height: 394px;
}

.recom-card__item {
  display: block;
  position: relative;
  width: calc(100% / 3);
  padding: 0 20px 32px;
  text-align: center;
}

.recom-card__item .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 202px;
  height: 202px;
  margin: 0 auto;
}

.recom-card__item .img-box.row img {
  transform: rotate(90deg);
}

.recom-card__item .img-box img {
  max-width: 202px;
  max-height: 202px;
}

.recom-card__item > h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 16px;
  font-weight: 600;
  font-size: 18px;
  min-height: 28px;
}

.recom-card__item > p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 8px;
  font-size: 15px;
  min-height: 24px;
}
/*** 카드 영역 개선 운영 반영 후 삭제_221205 ***/


.finance-menu {
  width: 1080px;
  margin: 24px auto 0;
}

.finance-menu__list {
  overflow: visible;
  position: relative;
  height: 176px;
}

.finance-menu__item {
  float: left;
  position: relative;
  margin-left: 24px;
  background: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16);
  border-radius: 16px;
  width: 160px;
}

.finance-menu__item h2 {
  font-weight: 600;
  font-size: 18px;
}

.finance-menu__item p {
  color: rgba(0, 0, 0, 0.6);
  margin-top: 8px;
  font-size: 15px;
}

.finance-menu__item p strong {
  display: block;
  font-weight: 400;
}

.finance-menu__item:first-child {
  margin: 0;
}

.finance-menu__item.cash, .finance-menu__item.card {
  width: calc(50% - 160px - 36px);
  height: 176px;
  padding: 24px 0 0 32px;
}

.finance-menu__item.credit > a, .finance-menu__item.car > a, .finance-menu__item.forward > a, .finance-menu__item.ollis > a {
  display: table-cell;
  width: 200px;
  height: 80px;
  padding-left: 24px;
  vertical-align: middle;
}

.finance-menu__item.credit > a h2, .finance-menu__item.car > a h2, .finance-menu__item.forward > a h2, .finance-menu__item.ollis > a h2 {
  font-size: 15px;
}

.finance-menu__item.forward, .finance-menu__item.ollis {
  margin-top: 16px;
}

.finance-menu__item::before {
  content: '';
  display: block;
  clear: both;
  position: absolute;
  margin-top: -16px;
}

.finance-menu__item.cash:before {
  font-size: 0;
  width: 48px;
  height: 48px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/48/ico-ca-48.png") 0 0 no-repeat;
  background-size: 100% auto;
  bottom: 16px;
  right: 16px;
}

.finance-menu__item.card:before {
  font-size: 0;
  width: 48px;
  height: 48px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/48/ico-card-1.png") 0 0 no-repeat;
  background-size: 100% auto;
  bottom: 16px;
  right: 16px;
}

.finance-menu__item.credit:before {
  font-size: 0;
  width: 32px;
  height: 32px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/32/ico-personalalarm.png") 0 0 no-repeat;
  background-size: 100% auto;
  top: 50%;
  right: 18px;
}

.finance-menu__item.car:before {
  font-size: 0;
  width: 32px;
  height: 32px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/32/ico-car.png") 0 0 no-repeat;
  background-size: 100% auto;
  top: 50%;
  right: 18px;
}

.finance-menu__item.forward:before {
  font-size: 0;
  width: 32px;
  height: 32px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/32/ico-repaymentloan.png") 0 0 no-repeat;
  background-size: 100% auto;
  top: 50%;
  right: 18px;
}

.finance-menu__item.ollis:before {
  font-size: 0;
  width: 32px;
  height: 32px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/32/ico-delivery.png") 0 0 no-repeat;
  background-size: 100% auto;
  top: 50%;
  right: 18px;
}

.finance-menu__link {
  display: inline-block;
  position: relative;
  margin-top: 22px;
  padding-right: 20px;
  font-size: 13px;
  font-weight: 600;
}

.finance-menu__link::before {
  content: '>';
  display: block;
  clear: both;
  position: absolute;
  top: -3px;
  right: 0;
  width: 16px;
  height: 16px;
  font-size: 15px;
  text-align: center;
}

.microsite-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  height: 64px;
  background: #f9fafc;
  border-radius: 16px;
}

.microsite-list > a {
  display: block;
  position: relative;
  flex: 1;
  text-align: center;
}

.microsite-list > a:before {
  content: '';
  display: block;
  clear: both;
  position: absolute;
  left: 0;
  width: 1px;
  height: 24px;
  background: rgba(0, 0, 0, 0.16);
}

.microsite-list > a:first-child::before {
  display: none;
}

.microsite-list > a > span {
  display: inline-block;
  position: relative;
  padding-left: 40px;
  font-weight: 600;
  font-size: 20px;
}

.microsite-list > a > span:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
}

.microsite-list__staShop > span:before {
  font-size: 0;
  width: 32px;
  height: 32px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/32/ico-1-specialstore.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.microsite-list__goldLife > span:before {
  font-size: 0;
  width: 32px;
  height: 32px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/32/ico-1-happy.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.benefit-area {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 40px;
}

.benefit-list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 0 !important;
  width: 100%;
}

.benefit-list > a {
  position: relative;
  display: block;
  width:calc((100% - (24px*3))/4);
  height: 152px;
  margin-right: 24px;
  padding: 24px 0 0 24px;
  border-radius: 16px;
}

.benefit-list > a:before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.benefit-list__tit {
  display: block;
  font-weight: 600;
  font-size: 18px;
}

.benefit-list__desc {
  padding-top: 8px;
  font-size: 15px;
}

.benefit-list__event {
  background-image: linear-gradient(119deg, #dbecff, #ebf6ff 100%);
}

.benefit-list__event:before {
  right: 8px;
  width: 120px;
  height: 104px;
  background: url("https://img1.kbcard.com/home_re/pc/img/main/img-main-brn-02.png") 0 0 no-repeat;
}

.benefit-list__plan {
  background-image: linear-gradient(119deg, #eaebff, #f1f2ff 100%);
}

.benefit-list__plan:before {
  right: 8px;
  width: 120px;
  height: 104px;
  background: url("https://img1.kbcard.com/home_re/pc/img/main/img-main-brn-03.png") 0 0 no-repeat;
}

.benefit-list__sale {
  background-image: linear-gradient(119deg, #ffdf74, #ffebb2 100%);
}

.benefit-list__sale:before {
  right: 8px;
  width: 120px;
  height: 104px;
  background: url("https://img1.kbcard.com/home_re/pc/img/main/img-main-brn-01.png") 0 0 no-repeat;
}

.service-list {
  width:calc((100% - (24px*3))/4);
  height: 152px;
  padding: 24px 0 0 32px;
  background: #f9fafc;
  border-radius: 16px;
}

.service-list > a {
  display: block;
  position: relative;
  margin-top: 16px;
  padding-left: 40px;
  font-weight: 600;
  font-size: 15px;
}

.service-list > a:first-child {
  margin-top: 0;
}

.service-list > a:before {
  content: '';
  display: block;
  clear: both;
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
}

.service-list__pay:before {
  font-size: 0;
  width: 24px;
  height: 24px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/24/ico-apt-48.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.service-list__foreign:before {
  font-size: 0;
  width: 24px;
  height: 24px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/24/ico-1-airline2.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.service-list__notice:before {
  font-size: 0;
  width: 24px;
  height: 24px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/24/ico-1-alarm.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.notice-area {
  float: left;
  width: calc(50% - 12px);
  position: relative;
}

.notice-area__tit {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}

.notice-area__tit a {
	display: block;
}

.notice-area__list li {
  overflow: hidden;
  margin-top: 8px;
}

.notice-area__list li span {
  float: left;
  width: 100px;
}

.notice-area__list li a {
  overflow: hidden;
  float: left;
  width: calc(100% - 100px);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.guide-area {
  float: right;
  width: calc(50% - 12px);
}

.guide-area .tabs {
  margin: 0;
}

.guide-area .tabs__menu {
  border: 0;
}

.guide-area .tabs__menu li {
  margin-right: 24px;
}

.guide-area .tabs__menu li a {
  padding: 0 0 4px;
  font-size: 18px;
}

.guide-area .tabs__body {
  padding-top: 16px;
}

.guide-area .tabs__body .tabs__panel {
  position: relative;
}

.guide-area .tabs__body .tabs__panel::before {
  content: '';
  display: block;
  clear: both;
  z-index: 1;
  position: absolute;
  top: 22px;
  right: 32px;
  width: 64px;
  height: 64px;
  background-color: #fff;
  border-radius: 50%;
}

.guide-area__link {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 106px;
  padding: 20px 32px;
  background: #f9fafc;
  border-radius: 16px;
}

.guide-area__link:before {
  content: '';
  display: block;
  clear: both;
  z-index: 1;
  position: absolute;
  top: 30px;
  right: 40px;
}

.guide-area__link--consumer:before {
  font-size: 0;
  width: 48px;
  height: 48px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/48/ico-consumer-48.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.guide-area__link--faq:before {
  font-size: 0;
  width: 48px;
  height: 48px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/48/ico-faq-48.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.guide-area__link--foreign:before {
  font-size: 0;
  width: 48px;
  height: 48px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/48/ico-foreign-48.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.guide-area__link h2 {
  font-weight: 600;
  font-size: 18px;
  margin-top: 4px;
}

.guide-area__link p {
  padding-top: 6px;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
}

.lounge-vip {
  position: relative;
  width: 1080px;
  height: 230px;
  margin: auto;
  padding: 26px 32px 32px;
  background: #232342;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16);
  border-radius: 16px;
}

.lounge-vip .tit-sec a {
  color: #fff;
}

.lounge-vip .tit-sec a:before {
  font-size: 0;
  width: 24px;
  height: 24px;
  background: url("https://img1.kbcard.com/home_re/pc/arr/24/arr-1-right-w.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.lounge-vip .tabs {
  margin: 0;
}

.lounge-vip .tabs__menu {
  position: absolute;
  top: 28px;
  right: 32px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  border-bottom: 0;
}

.lounge-vip .tabs__menu li {
  float: none;
  margin: 0 0 0 24px;
}

.lounge-vip .tabs__menu li a {
  padding: 2px 0;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
}

.lounge-vip .tabs__menu li.on a, .lounge-vip .tabs__menu li:hover a {
  padding: 2px 0 0 0;
  border-bottom: 2px solid #fff;
  font-weight: 600;
}

.lounge-vip .tabs__body {
  margin-top: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.lounge-vip .vip-cont {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.lounge-vip .vip-cont__item {
  position: relative;
  width: 25%;
  color: #fff;
  font-weight: 600;
}
.lounge-vip .vip-cont.col4 .vip-cont__item {width:17%;}
.lounge-vip .vip-cont.col4 .vip-cont__item:first-child {width:16%;}
.lounge-vip .vip-cont.col4 .vip-cont__item.vip-cont__item--card {width:50%;}

.lounge-vip .vip-cont__item:before {
  content: '';
  display: block;
  clear: both;
  position: absolute;
  left: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.24);
}

.lounge-vip .vip-cont__item:first-child:before {
  display: none;
}

.lounge-vip .vip-cont__item.vip-cont__item--card {
  width: 50%;
}

.lounge-vip .vip-cont__item .imgs {
  float: left;
  width: 120px;
  height: 76px;
  margin-right: 24px;
}

.lounge-vip .vip-cont__item .vip-cont__link {
  color: #fff;
}

.lounge-vip .vip-cont__item .vip-cont__inner {
  float: left;
  text-align: left;
}

.lounge-vip .vip-cont__item + li {
  padding-left: 32px;
}

.lounge-vip .vip-cont__tit {
  font-size: 15px;
  font-weight: 400;
}

.lounge-vip .vip-cont__num {
  margin-top: 8px;
  font-size: 24px;
}
.lounge-vip .vip-cont__num a {color:#fff}

.lounge-vip .vip-cont__txt {
  margin-top: 24px;
  font-size: 18px;
}

.lounge-vip .vip-cont__date {
  margin-top: 16px;
  font-size: 18px;
}

.lounge-vip .vip-cont__unit {
  display: inline-block;
  margin-left: 1px;
  color: #fff;
  font-size: 20px;
  vertical-align: middle;
}

.lounge-vip .swiper-wrap--vip {
  overflow: hidden;
}

.lounge-vip .swiper-slide {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.lounge-vip .swiper-dot {
  top: 0;
  right: 24px;
  bottom: auto;
  width: 32px;
  font-weight: 600;
  font-size: 13px;
}

.lounge-vip .swiper-dot .swiper-pagination {
  color: #fff;
  letter-spacing: 2px;
}

.lounge-vip .swiper-dot .swiper-pagination span {
  color: #fff;
}

.lounge-vip .swiper-button-prev,
.lounge-vip .swiper-button-next {
  top: 18px;
  left: auto;
}

.lounge-vip .swiper-button-prev {
  right: 65px;
  font-size: 0;
  width: 16px;
  height: 16px;
  background: url("https://img1.kbcard.com/home_re/pc/arr/16/arr-1-left-w.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.lounge-vip .swiper-button-next {
  right: 0;
  left: auto;
  font-size: 0;
  width: 16px;
  height: 16px;
  background: url("https://img1.kbcard.com/home_re/pc/arr/16/arr-1-right-w.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.breakdown-unit {
  width: 1080px;
  height: 243px;
  margin: auto;
  margin-top: 24px;
  padding: 26px 32px 32px;
  background: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16);
  border-radius: 16px;
}

.breakdown-unit .tabs .tabs__menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  border: 0;
}

.breakdown-unit .tabs .tabs__menu li {
  float: none;
  margin: 0 0 0 24px;
}

.breakdown-unit .tabs .tabs__menu li a {
  padding: 2px 0;
  font-weight: 400;
  font-size: 18px;
}

.breakdown-unit .tabs .tabs__menu li.on a, .breakdown-unit .tabs .tabs__menu li:hover a {
  border-bottom: 2px solid #222;
  font-weight: 600;
}

.breakdown-unit__payment > .tabs > .tabs__menu, .breakdown-unit__limit > .tabs > .tabs__menu {
  position: absolute;
  top: 2px;
  right: 0;
}

.breakdown-unit .payment-info {
  position: relative;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.breakdown-unit .payment-info .tabs {
  margin: 0;
}

.breakdown-unit .payment-info .tabs .tabs__menu {
  justify-content: flex-start;
}

.breakdown-unit .payment-info .tabs .tabs__menu li {
  margin: 0 8px 0 0;
}

.breakdown-unit .payment-info .tabs .tabs__menu li a {
  margin: 0;
  padding: 0 16px;
}

.breakdown-unit .payment-info .tabs .tabs__menu li a .payment-day {
  display: block;
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  color: #086cfd;
  font-weight: 600;
  font-size: 11px;
  text-align: center;
}

.breakdown-unit .payment-info .tabs .tabs__menu li.on a, .breakdown-unit .payment-info .tabs .tabs__menu li:hover a {
  background: rgba(0, 0, 0, 0.87);
  box-shadow: none;
  border: 0;
  color: #fff;
}
.breakdown-unit .payment-info .tabs .tabs__menu li.on a:focus, 
.breakdown-unit .payment-info .tabs .tabs__menu li:hover a:focus {
	outline: red solid 1px;
}

.breakdown-unit .payment-info .tabs .tabs__body {
  padding-top: 16px;
}

.breakdown-unit .payment-info__acc, .breakdown-unit .payment-info__tit {
  color: rgba(0, 0, 0, 0.6);
  font-size: 15px;
  font-weight: 600;
}

.breakdown-unit .payment-info__point {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 600;
}

.breakdown-unit .payment-info__unit {
  display: inline-block;
  margin-left: 1px;
  font-size: 20px;
  font-weight: 600;
  vertical-align: middle;
}

.breakdown-unit .payment-info__limit {
  display: inline-block;
  padding: 4px 16px;
  background: #f9fafc;
  border-radius: 16px;
}

.breakdown-unit .payment-info__limit span {
  display: inline-block;
  margin-left: 16px;
  font-weight: 600;
  font-size: 13px;
  line-height: 22px;
  vertical-align: top;
}

.breakdown-unit .payment-info__limit span:first-child {
  margin-left: 0;
}

.breakdown-unit .btn--gray2 {
  position: absolute;
  top: 24px;
  right: 0;
  font-weight: 600;
  font-size: 15px;
}

.breakdown-unit__payment {
  float: left;
  position: relative;
  width: 464px;
}

.breakdown-unit__limit {
  float: right;
  position: relative;
  width: 464px;
}

.breakdown-unit__limit .graph-bar {
  display: inline-block;
  position: relative;
  position: absolute;
  bottom: 13px;
  right: 0;
  width: 232px;
  height: 8px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}

.breakdown-unit__limit .graph-bar__per {
  position: absolute;
  top: -22px;
  left: 0;
  width: auto;
  max-width: 232px;
  height: 30px;
  font-weight: 600;
  font-size: 13px;
  text-align: right;
  white-space: nowrap;
}

.breakdown-unit__limit .graph-bar__per::before {
  background: #fc0;
  content: '';
  display: block;
  clear: both;
  position: absolute;
  top: 22px;
  left: 0;
  width: 100%;
  height: 8px;
  border-radius: 4px;
}

.breakdown-bene {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 1080px;
  height: 352px;
  margin: 24px auto 0;
}

.breakdown-bene .month-benefit {
  position: relative;
  width: 344px;
  padding: 24px 32px 32px;
  background: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16);
  border-radius: 16px;
}

.breakdown-bene .month-benefit .tit-sec {
  display: inline-block;
}

.breakdown-bene .month-benefit__day {
  display: block;
  position: absolute;
  top: 29px;
  right: 32px;
  font-size: 15px;
}

.breakdown-bene .month-benefit__item {
  margin-top: 24px;
}

.breakdown-bene .month-benefit__item > a {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 280px;
  height: 96px;
  padding: 0 16px;
  background: #caf0b9;
  border-radius: 8px;
  font-weight: 600;
}

.breakdown-bene .month-benefit__item .month-benefit__tit {
  position: relative;
  display: block;
  padding-left: 40px;
  font-size: 15px;
}

.breakdown-bene .month-benefit__item .month-benefit__tit:before {
  content: '';
  display: block;
  clear: both;
  position: absolute;
  top: -4px;
  left: 0;
  font-size: 0;
  width: 32px;
  height: 32px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/32/ico-point-24-000.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.breakdown-bene .month-benefit__item .month-benefit__point {
  display: block;
  font-size: 20px;
}

.breakdown-bene .month-benefit__item .month-benefit__point .month-benefit__unit {
  display: inline-block;
  font-size: 15px;
  vertical-align: middle;
}

.breakdown-bene .month-benefit--discount > a {
  background: #ffe789;
}

.breakdown-bene .month-benefit--discount .month-benefit__tit:before {
  font-size: 0;
  width: 32px;
  height: 32px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/32/ico-point-24-000_2.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.breakdown-bene .usage-benefit {
  position: relative;
  width: 712px;
  background: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16);
  border-radius: 16px;
}

.breakdown-bene .usage-benefit:after {
  content: "";
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
}

.breakdown-bene .usage-benefit .tit-sec {
  position: absolute;
  top: 24px;
  lefT: 32px;
  z-index: 10;
}

.breakdown-bene .usage-benefit .swiper-wrap {
  margin-top: 24px;
}

.breakdown-bene .usage-benefit .swiper-container {
  height: 300px;
}

.breakdown-bene .usage-benefit .swiper-slide {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  margin: 56px 0 0;
  padding: 0 32px;
  box-sizing: border-box;
}

.breakdown-bene .usage-benefit .swiper-dot {
  top: 0;
  right: 56px;
  bottom: auto;
  width: 32px;
  font-weight: 600;
}

.breakdown-bene .usage-benefit .swiper-dot .swiper-pagination {
  justify-content: center;
  width: 100%;
}

.breakdown-bene .usage-benefit .swiper-button-prev,
.breakdown-bene .usage-benefit .swiper-button-next {
  top: 20px;
  left: auto;
}

.breakdown-bene .usage-benefit .swiper-button-prev {
  right: 97px;
  font-size: 0;
  width: 16px;
  height: 16px;
  background: url("https://img1.kbcard.com/home_re/pc/arr/24/arr-1-left.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.breakdown-bene .usage-benefit .swiper-button-next {
  right: 32px;
  font-size: 0;
  width: 16px;
  height: 16px;
  background: url("https://img1.kbcard.com/home_re/pc/arr/24/arr-1-right.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.breakdown-bene .usage-benefit .usage-card {
  display: flex;
  align-items: center;
}

.breakdown-bene .usage-benefit .usage-card__img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 82px;
  height: 82px;
}

.breakdown-bene .usage-benefit .usage-card__img img {
  max-width: 82px;
  max-height: 82px;
}

.breakdown-bene .usage-benefit .usage-card__title {
  display: inline-block;
  margin-left: 24px;
  font-size: 18px;
  font-weight: bold;
}

.breakdown-bene .usage-benefit .notice-box {
  margin-top: 15px;
}

.breakdown-bene .usage-benefit .notice-box .badge-noti {
  margin-right: 16px;
  font-size: 15px;
}

.breakdown-bene .usage-benefit .notice-box .badge-noti.type {
  background: #086cfd;
  color: #fff;
}

.breakdown-bene .usage-benefit .notice-box__txt {
  display: inline-block;
  margin-right: 8px;
  font-weight: 600;
  font-size: 15px;
  vertical-align: middle;
}

.breakdown-bene .usage-benefit .notice-box .tooltip-box {
  vertical-align: middle;
}

.breakdown-bene .usage-benefit .notice-box .tooltip-box .tooltip-box__txt {
  font-size: 0;
  line-height: 0;
}

.breakdown-bene .usage-benefit .notice-box .tooltip-box .tooltip__view {
  top: -100px !important;
  lefT: -275px !important;
}

.breakdown-bene .usage-benefit .txt-link {
  margin-top: 16px;
  font-size: 13px;
}

.breakdown-bene .usage-benefit .txt-link > a {
  display: inline-block;
  position: relative;
  margin-left: 24px;
  padding-right: 20px;
  font-weight: 600;
  font-size: 13px;
  vertical-align: middle;
}

.breakdown-bene .usage-benefit .txt-link > a:before {
  content: '';
  display: block;
  position: absolute;
  top: 1px;
  right: 0;
  font-size: 0;
  width: 16px;
  height: 16px;
  background: url("https://img1.kbcard.com/home_re/pc/arr/16/arr-1-right.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.breakdown-bene .usage-benefit .benefits-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 648px;
  min-height: 80px;
  margin-top: 16px;
  padding: 16px 0;
  background: #f9fafc;
  box-sizing: content-box;
  border-radius: 8px;
}

.breakdown-bene .usage-benefit .benefits-list__item {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

.breakdown-bene .usage-benefit .benefits-list__item + li {
  position: relative;
}

.breakdown-bene .usage-benefit .benefits-list__item + li::before {
  content: '';
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 1px;
  height: 64px;
  background: rgba(0, 0, 0, 0.16);
}

.breakdown-bene .usage-benefit .benefits-list__item.type {
  line-height: 80px;
}

.breakdown-bene .usage-benefit .benefits-list__tit {
  min-height: 48px;
  margin-bottom: 8px;
  font-size: 15px;
}

.breakdown-bene .usage-benefit .benefits-list__num {
  color: #086cfd;
  font-weight: 600;
  font-size: 15px;
}

.breakdown-bene .usage-benefit .no-data {
  display: flex;
  flex-direction: column;
  margin: 8px auto 0;
}

.breakdown-bene .usage-benefit .no-data p {
  font-size: 15px;
  line-height: 24px;
}

.breakdown-bene .usage-benefit .no-data p:before {
  content: '';
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  font-size: 0;
  width: 64px;
  height: 64px;
  background: url("https://img1.kbcard.com/home_re/pc/img/main/img-no-data.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.breakdown-bene .usage-benefit .no-data a {
  display: inline-block;
  width: 101px;
  margin: 16px auto 0;
  padding: 8px 24px;
  background: rgba(0, 0, 0, 0.87);
  border-radius: 20px;
  color: #fff;
  font-size: 15px;
}

.breakdown-card {
  width: 1080px;
  min-height: 280px;
  margin: 24px auto 0;
  padding: 24px 32px;
  background: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16);
  border-radius: 16px;
}

.breakdown-card__loans {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
}

.breakdown-card__item {
  flex: 1;
  position: relative;
  margin-left: 80px;
}

.breakdown-card__item:first-child {
  margin-left: 0;
}

.breakdown-card__item > h3 {
  font-weight: 600;
  font-size: 20px;
}

.breakdown-card__item .btn--s {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 600;
}

.breakdown-card__item .badge-noti {
  margin: 20px 0 12px;
  background: #f9fafc;
  font-size: 13px;
}

.breakdown-card__item .badge-noti > a {
  display: inline-block;
  position: relative;
  margin-left: 33px;
  padding-right: 20px;
  vertical-align: middle;
}

.breakdown-card__item .badge-noti > a::before {
  content: '>';
  display: block;
  clear: both;
  position: absolute;
  top: 1px;
  right: 0;
  font-size: 0;
  width: 16px;
  height: 16px;
  background: url("https://img1.kbcard.com/home_re/pc/arr/24/arr-1-right.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.breakdown-card__item .btn-limit {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 4px 0;
  background: #f7f7fa;
  border-radius: 4px;
  text-align: center;
}

.breakdown-card__item .btn-limit > span {
  position: relative;
  display: inline-block;
  padding-right: 20px;
  font-weight: 600;
  font-size: 13px;
  line-height: 22px;
  vertical-align: top;
}

.breakdown-card__item .btn-limit > span::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -8px;
  font-size: 0;
  width: 16px;
  height: 16px;
  background: url("https://img1.kbcard.com/home_re/pc/arr/16/arr-1-right.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.breakdown-card__group {
  display: flex;
  flex-direction: row;
}

.breakdown-card__group li {
  margin-left: 48px;
}

.breakdown-card__group li:first-child {
  margin-left: 0;
}

.breakdown-card__tit {
  margin-top: 16px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 600;
  font-size: 15px;
  line-height: 22px;
}

.breakdown-card__point {
  margin-top: 8px;
  font-weight: 600;
  font-size: 18px;
  line-height: 36px;
}

.breakdown-card__del {
  text-decoration: line-through;
  font-size: 1.5rem;
  vertical-align: middle;
}

.breakdown-card__unit {
  display: inline-block;
  vertical-align: middle;
}

.breakdown-card__desc {
  margin-top: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.6);
}

.breakdown-card--type2 .breakdown-card__group {
  justify-content: space-between;
}

.breakdown-card--type2 .breakdown-card__group li {
  max-width: 50%;
  margin-left: 0;
}

.breakdown-card--type2 .breakdown-card__tit {
  margin-top: 24px;
}

.breakdown-card--type2 .breakdown-card__point {
  font-size: 20px;
}

.breakdown-card--type2 .breakdown-card__point .breakdown-card__unit {
  margin-right: 4px;
  font-size: 15px;
}

.breakdown-card__text {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
}

.breakdown-infor {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  width: 1080px;
  margin: 24px auto 0;
  overflow: visible;
}

.breakdown-infor__box {
  width: calc(50% - 12px);
  padding: 24px 32px;
  background: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16);
  border-radius: 16px;
}

.breakdown-infor__box:nth-child(2) {
  padding: 0;
}

.breakdown-infor .usage-fee {
  position: relative;
}

.breakdown-infor .usage-fee:before {
  content: '';
  display: block;
  position: absolute;
  top: 56px;
  right: 0;
  font-size: 0;
  width: 64px;
  height: 64px;
  background: url("https://img1.kbcard.com/home_re/pc/img/main/img-char-default.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.breakdown-infor .usage-fee__tit {
  margin-top: 24px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
}

.breakdown-infor .usage-fee__point {
  margin-top: 8px;
  font-weight: 600;
  font-size: 24px;
}

.breakdown-infor .usage-fee__unit {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  vertical-align: middle;
}

.breakdown-infor .usage-fee__noting {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
}

.breakdown-infor .usage-report {
  margin: 32px -32px 0;
  padding: 24px 32px 0;
  border-top: 2px solid #f7f7fa;
}

.breakdown-infor .usage-report__tit {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-weight: 600;
  font-size: 15px;
  text-align: left;
  line-height: 24px;
}

.breakdown-infor .usage-report__tit > span {
  display: inline-block;
  margin: 0 8px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  vertical-align: top;
}

.breakdown-infor .usage-report .no-data {
  display: table;
  width: 100%;
  height: 116px;
  margin-top: 40px;
  background: #f9fafc;
  border-radius: 8px;
}

.breakdown-infor .usage-report .no-data p {
  display: table-cell;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.6);
}

.breakdown-infor .usage-report .no-data--full {
  height: 100%;
  margin-top: 0;
}

.breakdown-infor .usage-report .tooltip-box__cont > dl {
  overflow: hidden;
}

.breakdown-infor .usage-report .tooltip-box__cont > dl dt {
  float: left;
}

.breakdown-infor .usage-report .tooltip-box__cont > dl dd {
  float: left;
}

.breakdown-infor .usage-report .circle-box {
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  margin: 48px 0 0;
}

.breakdown-infor .usage-report .circle-box .circle-svg {
  width: 96px;
  height: 96px;
}

.breakdown-infor .usage-report .circle-box .circle-svg .chart-area {
  position: static;
  margin: 0;
}

.breakdown-infor .usage-report .circle-box .circle-svg .chart-area .chart-summary-title {
  display: none;
}

.breakdown-infor .usage-report .circle-box .circle-info {
  margin-left: 24px;
  padding-top: 0;
}

.breakdown-infor .usage-report .circle-box .circle-info > li {
  justify-content: flex-start;
  margin-top: 16px;
}

.breakdown-infor .usage-report .circle-box .circle-info > li:first-child {
  margin-top: 0;
}

.breakdown-infor .usage-report .circle-box .circle-info > li__percent {
  font-weight: 600;
  font-size: 15px;
}

.breakdown-infor .usage-report .circle-box .circle-info > li__txt {
  margin-left: 16px;
  font-weight: 600;
  font-size: 15px;
}

.breakdown-infor .usage-report .circle-box .circle-info > li__txt::before {
  display: none;
}

.breakdown-infor .usage-report .bar-graph {
  width: 100%;
  margin: 48px 0 0;
}

.breakdown-infor .usage-report .swiper-container {
  margin-top: -32px;
  padding-top: 56px;
}

.breakdown-infor .usage-report .swiper-dot {
  top: 3px;
  right: 24px;
  bottom: auto;
  width: 32px;
  font-weight: 600;
}

.breakdown-infor .usage-report .swiper-dot .swiper-pagination {
  justify-content: center;
  bottom: auto;
  width: 100%;
}

.breakdown-infor .usage-report .swiper-button-prev,
.breakdown-infor .usage-report .swiper-button-next {
  top: 24px;
  left: auto;
}

.breakdown-infor .usage-report .swiper-button-prev {
  right: 65px;
  font-size: 0;
  width: 16px;
  height: 16px;
  background: url("https://img1.kbcard.com/home_re/pc/arr/24/arr-1-left.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.breakdown-infor .usage-report .swiper-button-next {
  right: 0;
  left: auto;
  font-size: 0;
  width: 16px;
  height: 16px;
  background: url("https://img1.kbcard.com/home_re/pc/arr/24/arr-1-right.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.breakdown-infor .card-intro {
  position: relative;
  padding: 24px 32px 0;
}

.breakdown-infor .card-intro:nth-child(1) {
  height: 216px;
}

.breakdown-infor .card-intro:nth-child(2) {
  height: 244px;
  padding-top: 24px;
  border-top: 2px solid #f7f7fa;
}

.breakdown-infor .card-intro .tit-sec {
  display: inline-block;
}

.breakdown-infor .card-intro__inner {
  display: flex;
  align-items: center;
  width: 100%;
  font-weight: 600;
}

.breakdown-infor .card-intro__inner.type {
  align-items: flex-start;
}

.breakdown-infor .card-intro__inner.no-data {
  position: relative;
  padding-left: 128px;
}

.breakdown-infor .card-intro__inner.no-data:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 104px;
  height: 104px;
  background: #f9fafc url("https://img1.kbcard.com/home_re/pc/img/main/img-no-card.png") center center no-repeat/64px 64px;
  border-radius: 50%;
}

.breakdown-infor .card-intro__inner.no-data p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 24px;
}

.breakdown-infor .card-intro__inner.over {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.breakdown-infor .card-intro__inner.over .card-intro__img {
  margin-right: 0;
}

.breakdown-infor .card-intro__link {
  display: flex;
  align-items: center;
  width: 100%;
  font-weight: 600;
}

.breakdown-infor .card-intro__img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 24px 0 0;
}

.breakdown-infor .card-intro__img > img {
  max-width: 120px;
  max-height: 120px;
}

.breakdown-infor .card-intro__img.row > img {
  transform: rotate(90deg);
}

.breakdown-infor .card-intro__text {
  text-align: left;
  max-width: 320px;
  /* IE 넘치는거 방지 */
}

.breakdown-infor .card-intro__text .badge-noti {
  margin-bottom: 16px;
  height: 22px;
  line-height: 24px;
  font-size: 13px;
  font-weight: 400;
}

.breakdown-infor .card-intro__text .card-intro__title {
  font-size: 18px;
}

.breakdown-infor .card-intro__text .card-intro__number {
  display: block;
  margin-top: 16px;
  font-size: 15px;
  font-weight: 400;
}

.breakdown-infor .card-intro__text .card-intro__desc {
  display: block;
  margin-top: 4px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
}

.breakdown-infor .swiper-wrap__card {
  margin-top: -24px;
}

.breakdown-infor .swiper-wrap__card .swiper-slide {
  padding-top: 48px;
}

.breakdown-infor .swiper-wrap__card .swiper-dot {
  top: -4px;
  right: 24px;
  bottom: auto;
  width: 32px;
  font-weight: 600;
}

.breakdown-infor .swiper-wrap__card .swiper-dot .swiper-pagination {
  justify-content: center;
  width: 100%;
}

.breakdown-infor .swiper-wrap__card .swiper-button-prev,
.breakdown-infor .swiper-wrap__card .swiper-button-next {
  top: 0;
  margin-top: 0;
  font-size: 13px;
}

.breakdown-infor .swiper-wrap__card .swiper-button-prev,
.breakdown-infor .swiper-wrap__card .swiper-container-rtl .swiper-button-next {
  right: 65px;
  left: auto;
  font-size: 0;
  width: 16px;
  height: 16px;
  background: url("https://img1.kbcard.com/home_re/pc/arr/24/arr-1-left.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.breakdown-infor .swiper-wrap__card .swiper-button-next,
.breakdown-infor .swiper-wrap__card .swiper-container-rtl .swiper-button-prev {
  right: 0;
  font-size: 0;
  width: 16px;
  height: 16px;
  background: url("https://img1.kbcard.com/home_re/pc/arr/24/arr-1-right.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.customer-area {
  overflow: hidden;
}

.customer-area__tit {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
}

.customer-area__list {
  position: relative;
  overflow: hidden;
  float: left;
  width: 828px;
}

.customer-area__list::before {
  content: '';
  display: block;
  clear: both;
  position: absolute;
  top: 8px;
  bottom: 4px;
  right: 0;
  width: 1px;
  height: auto;
  background-color: rgba(0, 0, 0, 0.08);
}

.customer-area__list li {
  float: left;
  margin-top: 8px;
  font-size: 15px;
}

.customer-area__list li span {
  display: inline-block;
}

.customer-area__list li:nth-child(1), .customer-area__list li:nth-child(4) {
  width: 221px;
}

.customer-area__list li:nth-child(1) > span, .customer-area__list li:nth-child(4) > span {
  width: 95px;
}

.customer-area__list li:nth-child(2), .customer-area__list li:nth-child(5) {
  width: 293px;
}

.customer-area__list li:nth-child(2) > span, .customer-area__list li:nth-child(5) > span {
  width: 167px;
}

.customer-area__list li:nth-child(3) > span, .customer-area__list li:nth-child(6) > span {
  width: 140px;
}

.customer-area__list li::before {
  content: '-';
  display: inline-block;
  clear: both;
  margin-right: 5px;
}

.customer-area__counsel {
  overflow: hidden;
  float: right;
  width: 251px;
}

.customer-area__counsel > a {
  float: left;
  position: relative;
  margin: 8px 0 0 40px;
  padding-right: 15px;
  font-weight: 600;
}

.customer-area__counsel > a::before {
  content: '>';
  display: block;
  clear: both;
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 600;
}

.golden_division {
  width: 1080px;
  margin: auto;
}

.golden_division.full {
  width: 100%;
  background: #eff2f7;
}

.golden_division.over {
  overflow: hidden;
}

.golden_division .box-gray {
  width: 1080px;
  margin: auto !important;
  padding: 48px 0;
}

.golden_division .box-gray .btn-area .btn {
  height: 40px;
  font-size: 15px;
  line-height: 1.6;
}

.golden_division .golden_banner {
  float: left;
  margin-top: 48px !important;
}

.golden_division .golden_banner > a {
  display: block;
  width: 344px;
  height: 328px;
  padding: 32px 32px 0;
  background: #fce9e9;
  border-radius: 12px;
}

.golden_division .golden_banner > a span {
  display: block;
}

.golden_division .golden_banner > a span.tit {
  font-weight: 600;
  font-size: 18px;
}

.golden_division .golden_banner > a span.txt_b {
  margin-top: 8px;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
}

.golden_division .golden_banner > a span.txt_b br {
  line-height: 0;
}

.golden_division .golden_banner > a span.txt_s {
  margin-top: 17px;
  font-size: 13px;
}

.golden_division .golden_link {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  float: right;
  width: 712px;
  padding-top: 24px;
}

.golden_division .golden_link [class*="item"] {
  width: 160px;
  height: 152px;
  margin: 24px 24px 0 0;
  padding-top: 40px;
  border-radius: 8px;
  text-align: center;
}

.golden_division .golden_link [class*="item"]:nth-child(4n) {
  margin-right: 0;
}

.golden_division .golden_link [class*="item"]::before {
  content: '';
  display: block;
  clear: both;
  width: 40px;
  height: 40px;
  margin: auto;
}

.golden_division .golden_link [class*="item"]:hover, .golden_division .golden_link [class*="item"]:active, .golden_division .golden_link [class*="item"]:focus {
  background: #f9fafc;
}

.golden_division .golden_link [class*="item"] > span {
  display: inline-block;
  position: relative;
  margin-top: 8px;
  font-size: 15px;
}

.golden_division .golden_link [class*="item"] > span::before {
  content: '';
  display: block;
  clear: both;
  position: absolute;
  top: 50%;
  right: 0;
}

.golden_division .golden_link .item1::before {
  font-size: 0;
  width: 40px;
  height: 40px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/40/ico-2-paymentplan.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.golden_division .golden_link .item2::before {
  font-size: 0;
  width: 40px;
  height: 40px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/40/ico-2-immpay.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.golden_division .golden_link .item3::before {
  font-size: 0;
  width: 40px;
  height: 40px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/40/ico-2-checkpaper.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.golden_division .golden_link .item4::before {
  font-size: 0;
  width: 40px;
  height: 40px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/40/ico-2-cardpayment.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.golden_division .golden_link .item5::before {
  font-size: 0;
  width: 40px;
  height: 40px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/40/ico-2-limit.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.golden_division .golden_link .item6::before {
  font-size: 0;
  width: 40px;
  height: 40px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/40/ico-2-lost.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.golden_division .golden_link .item7::before {
  font-size: 0;
  width: 40px;
  height: 40px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/40/ico-2-checkpaper.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.golden_division .golden_link .item8::before {
  font-size: 0;
  width: 40px;
  height: 40px;
  background: url("https://img1.kbcard.com/home_re/pc/ico/40/ico-2-coinchange.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.integrated-search {
  width: 100%;
  background: #fff;
}

.integrated-search .box-auto {
  width: 100%;
  padding: 48px 0;
  background: #f1f4f8;
}

.integrated-search .search-ranking {
  width: 1080px;
  margin: 0 auto;
  padding: 48px 0 67px;
}

.integrated-search .search-ranking .related-box {
  display: flex;
  flex-direction: row;
}

.integrated-search .search-ranking .related-box > li {
  width: 344px;
}

.integrated-search .search-ranking .related-box > li > h1 {
  font-weight: 600;
  font-size: 18px;
}

.integrated-search .search-ranking .related-box > li + li {
  padding-left: 24px;
}

.integrated-search .search-ranking .related-box > li:nth-child(1) {
  width: 344px;
}

.integrated-search .search-ranking .related-box > li:nth-child(3) .banner {
  background: linear-gradient(113deg, #e0e2ff, #f2f3ff);
}

.integrated-search .search-ranking .related-box > li:nth-child(3) .banner .imgs {
  width: 120px;
  height: 76px;
}

.integrated-search .search-ranking .order > li {
  overflow: hidden;
  position: relative;
  width: 280px;
  margin-top: 16px;
  padding-left: 40px;
  text-overflow: ellipsis;
  font-weight: 400;
  font-size: 15px;
  white-space: nowrap;
}

.integrated-search .search-ranking .order > li::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  padding-top: 3px;
  background: #eee;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.87);
  font-weight: 600;
  font-size: 13px;
  text-align: center;
}

.integrated-search .search-ranking .order > li:nth-child(1)::before {
  content: '1';
}

.integrated-search .search-ranking .order > li:nth-child(2)::before {
  content: '2';
}

.integrated-search .search-ranking .order > li:nth-child(3)::before {
  content: '3';
}

.integrated-search .search-ranking .order > li:nth-child(4)::before {
  content: '4';
}

.integrated-search .search-ranking .order > li:nth-child(5)::before {
  content: '5';
}

.integrated-search .search-ranking .order > li:nth-child(6)::before {
  content: '6';
}

.integrated-search .search-ranking .order > li:nth-child(7)::before {
  content: '7';
}

.integrated-search .search-ranking .order > li:nth-child(8)::before {
  content: '8';
}

.integrated-search .search-ranking .order > li:nth-child(9)::before {
  content: '9';
}

.integrated-search .search-ranking .order > li:nth-child(10)::before {
  content: '10';
}

.integrated-search .search-ranking .banner {
  position: relative;
  height: 144px;
  margin-top: 26px;
  padding: 24px 24px 32px;
  background: linear-gradient(113deg, rgba(255, 201, 193, 0.87), #fff9ec);
  border-radius: 16px;
  opacity: 0.8;
}

.integrated-search .search-ranking .banner .tit {
  font-weight: 600;
  font-size: 18px;
}

.integrated-search .search-ranking .banner .txt {
  margin-top: 8px;
  font-size: 13px;
}

.integrated-search .search-ranking .banner .imgs {
  display: inline-block;
  position: absolute;
  top: 32px;
  right: 24px;
  width: 96px;
  height: 80px;
  background: #f9f9f9;
}

.integrated-search .search-input {
  display: flex;
  flex-direction: row;
  width: 1080px;
  margin: auto;
  padding: 48px 0;
}

.integrated-search .search-input .search-wd {
  width: 302px;
  padding-left: 120px;
}

.integrated-search .search-input .search-wd .relate {
  height: 446px;
  border-right: 2px solid #f7f7fa;
}

.integrated-search .search-input .search-wd .relate > li + li {
  margin-top: 8px;
}

.integrated-search .search-input .search-wd .relate > li > a {
  display: inline-block;
}

.integrated-search .search-input .search-wd .relate > li .marks {
  color: #0066ff;
}

.integrated-search .search-input .search-wd .btns {
  display: inline-block;
  position: relative;
  width: 101px;
  height: 32px;
  padding: 2px 10px 0 0;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  font-weight: 600;
  font-size: 13px;
}

.integrated-search .search-input .search-wd .btns::before {
  content: '';
  display: block;
  position: absolute;
  top: 7px;
  right: 2px;
  font-size: 0;
  width: 16px;
  height: 16px;
  background: url("https://img1.kbcard.com/home_re/pc/arr/16/arr-1-right.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.integrated-search .search-input .search-result {
  padding-left: 47px;
}

.integrated-search .search-input .search-result .tit {
  font-size: 18px;
}

.integrated-search .search-input .search-result .tit > a {
  display: inline-block;
  position: relative;
  padding-right: 28px;
}

.integrated-search .search-input .search-result .tit > a::before {
  content: '';
  display: block;
  position: absolute;
  top: 1px;
  right: 0;
  font-size: 0;
  width: 24px;
  height: 24px;
  background: url("https://img1.kbcard.com/home_re/pc/arr/24/arr-1-right.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.integrated-search .search-input .search-result .tit span {
  display: inline-block;
  color: #0066ff;
  font-weight: 600;
}

.integrated-search .search-input .search-result .list {
  height: 224px;
  margin: 0;
}

.integrated-search .search-input .search-result .list > li {
  position: relative;
  margin-top: 16px;
  padding: 0 0 0 13px;
}

.integrated-search .search-input .search-result .list > li + li {
  margin-top: 8px;
}

.integrated-search .search-input .search-result .list > li::before {
  content: '-';
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  width: 5px;
  height: 2px;
}

.integrated-search .search-input .search-result .list > li .marks {
  color: #0066ff;
}

.integrated-search .search-input .search-result .card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 24px;
}

.integrated-search .search-input .search-result .card > li {
  width: 120px;
  text-align: center;
}

.integrated-search .search-input .search-result .card > li > img {
  width: 120px;
  height: 76px;
}

.integrated-search .search-input .search-result .card > li > p {
  margin-top: 8px;
  font-weight: 600;
}

.integrated-search .search-input .search-result .card > li > p .marks {
  color: #0066ff;
}

.integrated-search .search-input .search-result .card > li .btns {
  display: inline-block;
  width: 78px;
  height: 32px;
  margin-top: 18px;
  padding-top: 7px;
  background: #f1f1f1;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  text-align: center;
}

.integrated-search .search-input .search-result ul.no-data {
  margin-top: 24px;
}

.integrated-search .search-input .search-result ul.no-data > li {
  display: none;
}

.integrated-search .search-input .search-result ul.no-data > li:last-child {
  display: block !important;
  width: auto;
  padding: 0;
  text-align: left;
}

.integrated-search .search-input .search-result ul.no-data > li::before {
  display: none;
}

.integrated-search .search-input .search-result ul.no-data > li .txt-b {
  font-weight: 600;
}

.integrated-search .search-input .search-result ul.no-data > li .txt-s {
  margin-top: 8px;
  font-weight: 400;
}

.chart-stick {
  position: relative;
  width: 100%;
  height: 116px;
}

.chart-stick__rail {
  position: absolute;
  top: 50%;
  right: 10px;
  left: 10px;
  transform: translateY(-50%);
  height: 8px;
  border-radius: 8px;
  background-color: #ebebeb;
}

.chart-stick__bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  border-radius: 8px;
  background-color: #ffcc00;
}

.chart-stick__circle {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-radius: 50%;
  background-color: rgba(255, 202, 0, 0.2);
}

.chart-stick__circle:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 3px solid #ffcc00;
  background-color: #fff;
}

.chart-stick__prev {
  position: absolute;
  top: -45px;
  left: 0;
  transform: translateX(-50%);
  padding-bottom: 15px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 13px;
}

.chart-stick__prev:before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 12px;
  box-sizing: border-box;
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.6) transparent transparent;
}

.chart-stick__prev-ty1 {
  padding-left: 50px;
}

.chart-stick .stick-list {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 10px;
  display: flex;
  transform: translateY(-50%);
}

.chart-stick .stick-list:after {
  content: '';
  display: block;
  clear: both;
}

.chart-stick .stick-list__item {
  float: left;
  position: relative;
  height: 60px;
}

.chart-stick .stick-list__item:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 8px;
  background-color: #ebebeb;
}

.chart-stick .stick-list__item .unit {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateX(-50%);
  color: rgba(0, 0, 0, 0.87);
  font-size: 13px;
  white-space: nowrap;
}

.chart-stick .stick-list__item .unit .txt {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
}

.chart-stick .stick-list__item:first-child:before {
  display: none;
}

.chart-stick .stick-list__item:first-child .unit {
  width: 40px;
  margin-left: 8px;
  transform: translateX(-50%);
}

.chart-stick .stick-list__item:last-child {
  width: 0;
}

.chart-stick .stick-list__item:last-child:before {
  display: none;
}

.chart-stick .stick-list__item:last-child .unit {
  transform: translateX(-64%);
}

.chart-stick .stick-list__item.on:before {
  display: none;
}

.chart-stick .stick-list__item.on:first-child .unit:before {
  left: 18%;
}

.chart-stick .stick-list__item.on:last-child .unit:before {
  left: 80%;
}

/* 모션영역 */
.chart-stick__prev {
  top: -20px;
  left: 8px;
  opacity: 0;
}

.chart-stick.move .chart-stick__prev {
  top: -45px;
  opacity: 1;
  transition: all .4s;
}

.chart-stick.move .stick-list__item.on .unit {
  bottom: -22px;
  height: 26px;
  padding: 0 4px;
  border-radius: 4px;
  background-color: #ffcc00;
  line-height: 26px;
  transition: all .4s;
}

.chart-stick.move .stick-list__item.on .unit:before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  box-sizing: border-box;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent #ffcc00;
  transition: all .4s;
}

.chart-stick.move .stick-list__item.on .unit .txt {
  display: inline-block;
  line-height: 26px;
  transition: all .4s;
}

.goldlife-banner {
  position: relative;
  width: 344px;
  height: 328px;
  padding: 32px;
  background-color: #fce9e9;
  border-radius: 12px;
  text-align: left;
}

.goldlife-banner:after {
  display: block;
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -142px;
  font-size: 0;
  width: 285px;
  height: 120px;
  background: url("https://img1.kbcard.com/home_re/pc/img/main/bg-goldlife.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.goldlife-banner--wide {
  width: 100%;
  height: 204px;
}

.goldlife-banner--wide:after {
  left: auto;
  margin-left: 0;
  right: 0;
  font-size: 0;
  width: 484px;
  height: 204px;
  background: url("https://img1.kbcard.com/home_re/pc/img/main/bg-goldlife2.png") 100% 0 no-repeat;
  background-size: 100% auto;
}

.link-wrap {
  overflow: hidden;
}

.link-wrap__category {
  float: left !important;
  width: calc(100% - 344px);
}

.link-wrap__category li {
  float: left;
  width: 160px;
  height: 152px;
  margin-left: 24px;
}

.link-wrap__icon {
  display: block;
  width: 160px;
  height: 152px;
  padding: 40px 0;
}

.link-wrap__icon strong {
  display: block;
  margin-top: 8px;
}

.link-wrap__icon strong:after {
  display: inline-block;
  content: '';
  font-size: 0;
  width: 16px;
  height: 16px;
  background: url("https://img1.kbcard.com/home_re/pc/arr/16/arr-1-right.png") 0 3px no-repeat;
  background-size: 100% auto;
}

.link-wrap__icon:hover {
  background-color: #f9fafc;
  border-radius: 8px;
}

.info-box {
  display: flex;
  flex-wrap: wrap;
}

.info-box > a {
  display: block;
  position: relative;
  width: calc(50% - 16px);
  min-height: 148px;
  padding: 32px 146px 32px 24px;
  margin: 24px 24px 0 0;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.24);
}

.info-box > a:after {
  display: inline-block;
  content: '';
  position: absolute;
  right: 32px;
  top: 34px;
}

.info-box > a:nth-child(2n) {
  margin-right: 0;
}

.info-box__item1:after {
  font-size: 0;
  width: 80px;
  height: 80px;
  background: url("https://img1.kbcard.com/home_re/pc/logo/80/logo-kumhoresort.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.info-box__item2:after {
  font-size: 0;
  width: 80px;
  height: 80px;
  background: url("https://img1.kbcard.com/home_re/pc/logo/80/logo-movie.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.info-box__item3:after {
  font-size: 0;
  width: 80px;
  height: 80px;
  background: url("https://img1.kbcard.com/home_re/pc/logo/80/logo-aladin.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.info-box__item4:after {
  font-size: 0;
  width: 80px;
  height: 80px;
  background: url("https://img1.kbcard.com/home_re/pc/logo/80/logo-wise.png") 0 0 no-repeat;
  background-size: 100% auto;
}

.info-box__tit {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 28px;
  display: block;
}

.info-box__tit + .list-dash {
  margin-top: 8px;
}

.info-box__desc {
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 22px;
  display: block;
  margin-top: 8px;
}

.pop-box-line {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.24);
  width: 100%;
  margin-top: 25px;
}

.pop-box-line__item {
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 12px 12px 0 0;
  padding: 15px 0;
  text-align: center;
  height: 59px;
  background-color: #eff2f7;
}

.pop-box-line__item span {
  color: #f46600;
}

.pop-box-line__img {
  width: 100%;
  text-align: center;
}

.pageTop {
  display: none !important;
}

.event-slide .swiper-dot {
  z-index: 10;
}

/* 메인 - 이용대금명세서 탭 추가 */
.breakdown-infor .tabs > .tabs__menu {
  position: absolute;
  top: 2px;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  border: 0;
}

.breakdown-infor .tabs > .tabs__menu li {
  float: none;
  margin: 0 0 0 24px;
}

.breakdown-infor .tabs > .tabs__menu li a {
  position: relative;
  display: block;
  text-align: center;
  line-height: 1.45;
  padding: 2px 0;
  font-size: 18px;
}

.breakdown-infor .tabs > .tabs__menu li.on a {
  border-bottom: 2px solid #222;
  font-weight: 600;
}

.breakdown-infor .tabs > .tabs__menu li:hover a {
  border-bottom: 2px solid #222;
  font-weight: 600;
}

.breakdown-infor .tabs__body {
  position: relative;
  min-height: 90px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* 카드 영역 개선_221205 */
.recomnew-card {
  width: 1080px;
  position: relative;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.16);
}

.recomnew-card .tabs {
  margin: 0;
}

.recomnew-card .tabs__menu {
  z-index: 1;
  position: absolute;
  top: 24px;
  left: 32px;
  border: 0;
}

.recomnew-card .tabs__menu > li {
  margin-right: 8px;
  padding: 0;
}

.recomnew-card .tabs__menu > li > a {
  padding: 4px 16px; 
  font-size: 15px;
  color: rgba(0, 0, 0, 0.24);
  background: #eee;
  border-radius: 3rem;
  min-width: 80px;
  border: 0;
  line-height: 2.1;
  font-weight: bold;
}

.recomnew-card .tabs__menu > li > a:hover,
.recomnew-card .tabs__menu > li.on > a {
  color: #fff;
  background: rgba(0, 0, 0, 0.87);
}

.recomnew-card .tabs__body {
  width: 100%;
  padding-top: 96px;
}

.recomnew-card__box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  padding: 0 20px;
  /* height: 394px; */
}

.recomnew-card__item {
  display: block;
  position: relative;
  width: 256px;
  padding-bottom: 32px;
  text-align: center;
}

.recomnew-card__item .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 203px;
  height: 203px;
  margin: 0 auto;
}

.recomnew-card__item .img-box.row img {
  transform: rotate(90deg);
}

.recomnew-card__item .img-box img {
  max-width: 203px;
  max-height: 203px;
}

.recomnew-card__item > h3 {
  margin-top: 16px;
  font-weight: 600;
  font-size: 18px;
  min-height: 28px;
}

.recomnew-card__item > p {
  width:100%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp : 2;
  -webkit-box-orient: vertical;
  margin-top: 8px;
  font-size: 15px;
  min-height: 24px;
  max-height: 50px;
}

.recomnew-card .swiper-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
}

.recomnew-card .swiper-container {
  position: inherit;
  margin: 0 30px;
  box-sizing: border-box;
}

.recomnew-card .swiper-button-prev, 
.recomnew-card .swiper-button-next {
  width:24px;
  height:24px;
  margin-top:0;
  top: 30%;
  background-size: 24px 24px;
}

.new-card {
  position: relative;
  width: 1080px;
}

.new-card .recomnew-card__item {
  width: 224px;
  margin: 0 auto;
  text-align: center;
  padding: 0 0 32px 0;
}

.new-card .recomnew-card__box {
  justify-content: space-between;
  height: inherit;
  padding: 0;
}

/*23.12.22:[카드] 점자카드 발급 안내 문안 추가*/
.braille-card {position: absolute;  left: 32px; right: 32px; bottom: 24px; padding: 16px 32px; background: #f9fafc; border-radius: 4px; }
.braille-card__list {overflow:hidden; margin-top:4px;}
.braille-card__list li {float:left; width:50%; font-size:14px; color:rgba(0,0,0,0.47); position:relative; padding-left:11px;}
.braille-card__list li:before {position:absolute; left:0; content: '-'; top:0;}
.braille-card__list:after {content:''; clear:both; display:block;}

/* 메인 소비리포트 개선 */
.tit-sec--flex {display:inline-flex; align-items:center;}
.tit-sec__txt {margin-right:8px;}
.tit-sec__sub {margin-left:8px; font-size:15px; font-weight:bold; color:rgba(0, 0, 0, 0.6);}
.usage-report__chart {width:100%;}
.list-ranking {display:flex; flex-wrap:wrap; align-content:center; width:100%; height:100%; padding:0 16px; background:#f9fafc; text-align:left;}
.list-ranking__item {display:flex; align-items:center; width:100%; margin-top:0;}
.list-ranking__item + .list-ranking__item {margin-top:16px;}
.list-ranking__item--top {font-weight:bold;}
.list-ranking__badge {display:inline-block; width:38px; margin-right:16px; border-radius:11px; font-weight:bold; text-align:center; line-height:22px;}
.list-ranking__badge--orange {background:#f76900; color:#fff;}
.list-ranking__badge--purple {background:#6d6bdd; color:#fff;}