@charset 'utf-8';

/* 웹 시작 */
@media screen and (min-width: 1024px) {

.m-only {
display: none !important;
}
.w-only {
display: flex !important;
}

/* Layout */
body > .wrapper {
  overflow: hidden;
}
header {
  z-index: 1;
  position: fixed;
  width: 100%;
  height: 48px;
  border-bottom: 1px solid var(--Divider-Secondary, rgba(30, 34, 41, 0.08));
  background: var(--Background, #fff);
}
header > .inner-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* 좁은 레이아웃 페이지 헤더 */
body.narrow-layout header > .inner-wrap {
  max-width: 500px;
  margin: 0 auto;
}
header .right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .open-drawer-menu {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: url(/assets/image/mobile/icon_menu.png) no-repeat center center;
  background-size: 28px;
}
header .logo {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 48px;
  display: none;
}
header .logo img {
  width: 100%;
  height: 100%;
}
header .page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 229px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--Text-Primary, #1e2229);
  text-align: center;
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px; /* 118.75% */
  letter-spacing: -0.048px;
}
header .header-wrap {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .back {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(/assets/image/mobile/icon_arrow_left.png) center center no-repeat;
  background-size: 28px;
}

/*notification*/
header .notification {
  position: relative;
  display: none;
  width: 40px;
  height: 40px;
  background: url(/assets/image/mobile/icon_notification.png) no-repeat center center;
  background-size: 28px;
  margin: 0;
}
header .notification.new:after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  display: flex;
  width: 5px;
  height: 5px;
  padding: 2px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--Red, #fe6060);
}

/* notification-set */
header .notification-set {
  position: relative;
  display: none;
}
header .notification-set > button {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(/assets/image/mobile/icon_more_horizontal.png) no-repeat center center;
  background-size: 28px;
  cursor: pointer;
}
header .notification-set > ul {
  display: none;
  position: absolute;
  top: 36px;
  right: 16px;
  width: 160px;
  border-radius: 12px;
  background: var(--light-semantic-background-elevated-primary, #fff);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.08);
}
header .notification-set.active > ul {
  display: block;
}
header .notification-set > ul > li {
  color: var(--Text-Secondary, #353c46);
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.042px;
}
header .notification-set > ul > li + li {
  border-top: 1px solid #e7eaee;
}
header .notification-set .tit {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  color: #8f95a1;
}
header .notification-set .tit:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(/assets/image/mobile/icon_check.png) no-repeat center center;
  background-size: contain;
  margin: 0 8px 0 0;
}
header .notification-set input {
  display: none;
}
header .notification-set label {
  display: flex;
  padding: 10px 16px;
  width: 100%;
  cursor: pointer;
}

/* 활성화 */
body.active-notification header .notification,
body.active-logo header .logo,
body.active-notification-set .notification-set {
  display: inline-block;
}

body.active-logo footer {
  display: block;
}

/* 비활성화 */
body.inactive-back header .back {
  display: none;
}

/* drawer-menu */
aside.drawer-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  width: 288px;
  height: 100%;
  overflow-y: scroll;
  padding-bottom: 120px;
  background: var(--Background, #fff);
}
.wrapper.dim:after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
aside.drawer-menu::scrollbar {
  display: none;
}
aside.drawer-menu::-webkit-scrollbar {
  display: none;
}
aside.drawer-menu.active {
  display: block;
}
aside.drawer-menu > .inner-wrap {
  width: 100%;
  height: 100%;
}
aside.drawer-menu > .inner-wrap > .gnb-header {
  position: relative;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
}
aside.drawer-menu > .inner-wrap > .gnb-header .logo {
  width: 180px;
  height: 48px;
  margin: 0 0 0 12px;
}
aside.drawer-menu > .inner-wrap > .gnb-header .logo img {
  width: 100%;
  height: 100%;
}
aside.drawer-menu > .inner-wrap > .gnb-header > .open-drawer-menu {
  cursor: pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(/assets/image/mobile/icon_close_prohibited.png) no-repeat center center;
  background-size: 28px;
}
aside.drawer-menu .copyright {
  position: fixed;
  border: 60px;
  right: 0;
  width: 288px;
  color: var(--Text-Sub-Tertiary, #bac1cb);
  text-align: center;
  font-family: Pretendard;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 13px; /* 130% */
  letter-spacing: -0.03px;
}

main {
  width: 100%;
  height: 100%;
  padding: 48px 0 0;
}
main > section.container {
  width: 100%;
  height: 100%;
}
main > section.container > section.content {
  width: 100%;
  height: 100%;
}
main > section.container > section.content > .inner-wrap {
  position: relative;
  max-width: 500px;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}

/* footer */
footer {
  display: none;
  width: calc(100% - 120px);
  margin: 60px;
}
footer .toggle-btn-fnb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 0 16px;
  padding: 24px 0 0;
}
footer .toggle-btn {
  display: block;
  color: var(--Text-Sub-Primary, #686e7b);
  font-family: Pretendard;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 133.333% */
  letter-spacing: -0.036px;
}
footer .toggle-btn:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background: url(/assets/image/mobile/icon_arrow_down.png) no-repeat left top;
  background-size: cover;
  margin: -3px 0 0 2px;
  opacity: 0.5;
}
footer.active .toggle-btn:after {
  background: url(/assets/image/mobile/icon_arrow_up.png) no-repeat left top;
  background-size: cover;
}
footer .fnb a {
  margin: 0 0 0 16px;
  color: var(--Text-Sub-Primary, #686e7b);
  text-align: right;
  font-family: Pretendard;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
  letter-spacing: -0.036px;
}
footer .fnb a strong {
  color: #686e7b;
}
footer .toggle-box {
  transition: height 0ms 400ms, opacity 400ms 0ms;
  overflow: hidden;
  height: 0;
  opacity: 0;
}
footer.active .toggle-box {
  height: auto;
  opacity: 1;
  margin: 0 0 16px;
}
footer .toggle-box ul {
  padding: 16px;
  border-radius: 8px;
  background: var(--Dimed-4, rgba(30, 34, 41, 0.04));
}
footer .toggle-box li {
  display: flex;
}
footer .toggle-box li + li {
  margin: 8px 0 0;
}
footer .toggle-box .tit,
footer .toggle-box .con {
  color: var(--Text-Sub-Secondary, #8f95a1);
  font-family: Pretendard;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 127.273% */
  letter-spacing: -0.033px;
  white-space: normal;
  word-wrap: break-word;
}
footer .toggle-box .tit {
  width: 100px;
}
footer .toggle-box .con {
  width: calc(100% - 100px);
  color: var(--Text-Sub-Primary, #686e7b);
}
footer .copyright {
  margin: 0 0 16px;
  color: var(--Text-Sub-Tertiary, #bac1cb);
  font-family: Pretendard;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 13px; /* 130% */
  letter-spacing: -0.03px;
}

/* gnb */
.gnb {
  padding: 0 24px;
}
.gnb hr {
  margin: 8px 0 24px;
  border: 0;
  border-top: 1px solid rgba(30, 34, 41, 0.04);
}
.gnb .btn {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gnb .btn .btn-regular {
  width: calc((100% - 8px) / 2);
}
.gnb > ul > li + li {
  margin: 24px 0 0;
}
.gnb > ul > li > a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: url(/assets/image/mobile/icon_arrow_right.png) no-repeat right center;
  background-size: 18px;
  color: var(--Text-Primary, #1e2229);
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 140% */
  letter-spacing: -0.045px;
}
.gnb > ul > li > a > img,
.gnb > ul > li > .tit > img {
  width: 24px;
  height: 24px;
}
.gnb > ul > li .tit {
  display: flex;
  align-items: center;
  gap: 8px;
  background: url(/assets/image/mobile/icon_arrow_right.png) no-repeat right center;
  background-size: 18px;
  color: var(--Text-Primary, #1e2229);
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 140% */
  letter-spacing: -0.045px;
  background: url(/assets/image/mobile/icon_arrow_down.png) right center no-repeat;
  background-size: 20px;
}
.gnb > ul > li.active .tit {
  background: url(/assets/image/mobile/icon_arrow_up.png) right center no-repeat;
  background-size: 20px;
}
.gnb > ul ul {
  display: none;
  border-radius: 8px;
  background: var(--Light-Basic-Gray-100, #f6f6f6);
  margin: 16px 0;
  padding: 1px;
}
.gnb > ul ul li a {
  display: block;
  height: 20px;
  color: var(--Text-Secondary, #353c46);
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.042px;
  margin: 16px 0 16px 16px;
}
.gnb > ul ul li a:before {
  content: " - ";
}
.gnb > ul > li.active ul {
  display: block;
}

/*main-index*/
.main-index { margin:0 60px;}


/* main-link */
.main-link {
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}
.main-link a {
  display: flex;
  gap: 16px;
  min-width: calc(25% - 12px);
  width: calc(25% - 12px);
  height: 88px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--Border-Tertiary, #e7eaee);
  background: #fff url(/assets/image/mobile/icon_arrow_right.png) no-repeat right 12px
    center;
  background-size: 20px;
  box-shadow: 0px 2px 6px 0px rgba(30, 34, 41, 0.04);
}
.main-link a img {
  width: 48px;
  height: 48px;
}
.main-link h6 {
  color: var(--Text-Sub-Primary, #686e7b);
  font-family: Pretendard;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
  letter-spacing: -0.039px;
}
.main-link h5 {
  margin: 6px 0 0;
  color: var(--Text-Primary, #1e2229);
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 137.5% */
  letter-spacing: -0.048px;
}

/* authentication-time */
.authentication-time {
  margin: 8px 0 0;
  position: relative;
}
.authentication-time #time {
  position: absolute;
  top: 16px;
  right: 90px;
  z-index: 1;
  display: block;
  color: var(--Light-Basic-Blue, #067df4);
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 19px; /* 126.667% */
  letter-spacing: -0.045px;
}

/* content-graph-question */
.content-graph-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width:calc(100% - 120px);
  height:calc(100% - 80px);
  margin:40px 60px;
}
.content-graph-question .content-graph {
  width: calc(100% - 383px);
  aspect-ratio: 1 / 0.6;
  max-height: 652px;
  border-radius: 16px;
  background: url(/assets/image/mobile/graph_bg.png) no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-graph-question .content-graph .logo {
  width: 300px;
  height: 100px;
}
.content-graph-question .content-graph .logo img {
  width: 100%;
  height: 100%;
}

/* content-question */
.content-graph-question .content-question {
  width: 343px;
}
.content-question .question h6 {
  color: var(--Text-Secondary, #353c46);
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.042px;
}
.content-question .question h4 {
  margin: 8px 0 0;
  color: var(--Text-Primary, #1e2229);
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 120% */
  letter-spacing: -0.06px;
  white-space: pre-line;
}
.content-question > ul > li + li,
.content-question > form > ul > li + li {
  margin: 40px 0 0;
}
.content-question > form > ul > li > .tit,
.content-question > ul > li > .tit {
  color: var(--Text-Secondary, #353c46);
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 140% */
  letter-spacing: -0.2px;
}
.content-question > form > ul > li > .con {
  margin: 16px 0 0;
}
.content-question > form > ul > li > .con > label {
  margin: 16px 0 0;
  display: block;
  color: var(--Text-Primary, #1e2229);
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 140% */
  letter-spacing: -0.045px;
}
.content-question .btn {
  margin: 40px 0 0;
  display: flex;
}

/* icon-name-age */
.icon-name-age {
  margin: 16px 0 0;
  display: flex;
  height: 91px;
  padding: 12px 0;
  align-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid var(--Border-Tertiary, #e7eaee);
  background: var(--Background, #fff);
}
.icon-name-age > li {
  width: 25%;
}
.icon-name-age > li + li {
  border-left: 1px solid rgba(30, 34, 41, 0.08);
}
/* cols2 */
.icon-name-age.cols2 > li {
  width: 50%;
}
.icon-name-age .icon-name {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  color: var(--Text-Secondary, #353c46);
  text-align: center;
  font-family: Pretendard;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
  letter-spacing: -0.039px;
}
.icon-name-age .icon-name img {
  width: 18px;
  height: 18px;
}
.icon-name-age .age {
  margin: 8px 0 0;
  color: var(--Text-Primary, #1e2229);
  text-align: center;
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 140% */
  letter-spacing: -0.045px;
}

/* major-points */
.major-points {
  margin: 12px 0 0;
  padding: 0 16px 16px;
  border-radius: 12px;
  background: var(--Primary-Lightened, #f1f6fb);
  overflow: hidden;
}
.major-points li {
  margin: 16px 0 0;
  position: relative;
  padding-left: 28px;
  color: var(--Text-Primary, #1e2229);
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.042px;
}
.major-points li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 20px;
  height: 20px;
  min-width: 20px;
  padding: 2px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background: var(--Primary, #0a2644);
  color: var(--Text-Dark-Inverted, #fff);
  text-align: center;
  font-family: Pretendard;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px; /* 127.273% */
  letter-spacing: -0.033px;
}
.major-points li.n1:before {
  content: "1";
  background-color:black;
}
.major-points li.n2:before {
  content: "2";
  background-color:black;
}
.major-points li.n3:before {
  content: "3";
}
.major-points li.n4:before {
  content: "4";
  background-color:black;
}
.major-points li.r:before {
  background: var(--Red, #fe6060);
}
.major-points li.g:before {
  background: var(--Green, #09cd87);
}

/* btn-situation-results */
.btn-situation-results {
  margin: 16px 0 0;
}
.btn-situation-results .btn-medium + .btn-medium {
  margin: 8px 0 0;
}

/* age-space-between */
.age-space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.age-space-between .unit-wrap {
  width: calc(100% - 66px);
}



}

/*************************************************************************************************************************************************************************************************************************************************************************************************************/

/* content-graph 추가 스타일 */
.content-graph-question .content-graph.hmin-auto {
  min-height: auto;
}
.content-graph-question .content-graph img {
  width: 100%;
  height: 100%;
}
.content-question .question + hr {
  margin-top: 16px;
}
.content-question .question .guide-text.small {
  color: var(--Text-Secondary, #353C46);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.042px;
}
.content-question .question .space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* title-large */
.title-large {
  margin: 0 0 52px;
  color: var(--Text-Primary, #1E2229);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 31px;
  letter-spacing: -0.072px;
}
.title-large2 {
  color: var(--Text-Primary, #1E2229);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.06px;
}

/* btn-radio-checkbox (공통) */
.btn-radio-checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.btn-radio-checkbox label {
  width: auto;
  height: auto;
}
.btn-radio-checkbox input {
  display: none;
}
.btn-radio-checkbox .btn {
  margin: 0;
  display: inline-flex;
  width: 100%;
  height: 48px;
  padding: 0px;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--Border-Tertiary, #e7eaee);
  background: var(--Background, #fff);
  color: var(--Text-Secondary, #353C46);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.042px;
  white-space: normal;
  word-wrap: break-word;
}
.btn-radio-checkbox input:checked + .btn {
  border: 1px solid #0A2644;
  background: #0A2644;
  color: #fff;
  font-weight: 700;
}
.btn-radio-checkbox.icon-chk input:checked + .btn {
  border: 1px solid #0A2644;
  background: var(--Background, #fff);
  color: #0A2644;
  font-weight: 700;
}
.btn-radio-checkbox input:checked + .btn span {
  font-weight: 400;
}
.btn-radio-checkbox.icon-chk input:checked + .btn:before {
  content: '';
  margin-right: 2px;
  width: 24px;
  height: 24px;
  background: url(../../image/icon_check_completed_primary.png) no-repeat 0 0;
  background-size: contain;
}
.btn-radio-checkbox.cols2 label {
  width: calc((100% - 8px) / 2);
  margin: 0 8px 0 0;
}
.btn-radio-checkbox.cols2 label:nth-child(2n) {
  margin-right: 0;
}
.btn-radio-checkbox.cols3 label {
  width: calc((100% - 16px) / 3);
  margin: 0 8px 0 0;
}
.btn-radio-checkbox.cols3 label:nth-child(3n) {
  margin-right: 0;
}
.btn-radio-checkbox.cols4 label {
  width: calc((100% - 24px) / 4);
  margin: 0 8px 0 0;
}
.btn-radio-checkbox.cols4 label:nth-child(4n) {
  margin-right: 0;
}
.btn-radio-checkbox.cols5 label {
  width: calc((100% - 32px) / 5);
  margin: 0 8px 0 0;
}
.btn-radio-checkbox.cols5 label:nth-child(5n) {
  margin-right: 0;
}

/* creditcard-list */
.creditcard-list {
  padding: 0 16px 16px;
}
.creditcard-list > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.creditcard-list .border {
  position: relative;
  margin: 16px 0 0;
  padding: 16px;
  border-radius: 8px;
  border: solid 1px #d6d6d6;
  background-color: #fff;
}
.creditcard-list > ul > li.default .more-layer .default {
  display: none;
}
.creditcard-list > ul > li.default .number::before {
  content: "";
  width: 47px;
  height: 20px;
  margin: 0 8px 0 0;
  background: url(/assets/image/set_default_card.png) no-repeat center center;
  background-size: contain;
}
.creditcard-list .number {
  margin: 0 8px 0 0;
  color: var(--Text-Primary, #262626);
  font-family: Pretendard;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: -0.042px;
  display: flex;
  align-items: center;
}
.creditcard-list .name {
  margin: 8px 0 0;
  color: var(--Text-Sub-Primary, #868686);
  font-family: Pretendard;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.036px;
}
.creditcard-list .more-layer {
  position: absolute;
  top: 16px;
  right: 8px;
}

/* popup.full PC 대응 */
.popup.full .popup-header {
  max-width: 500px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.popup.full .inner-wrap .popup-close {
  right: calc(50% - 250px + 10px);
}

/* 모바일 시작 */
@media screen and (max-width: 1023px) {

.m-only {
display: flex !important;
}

.w-only {
display: none !important;
}

/* Layout */
body > .wrapper {
  overflow: hidden;
}
header {
  z-index: 1;
  position: fixed;
  width: 100%;
  height: 48px;
  border-bottom: 1px solid var(--Divider-Secondary, rgba(30, 34, 41, 0.08));
  background: var(--Background, #fff);
}
header > .inner-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .open-drawer-menu {
  cursor: pointer;
  width: 40px;
  height: 40px;
  background: url(/assets/image/mobile/icon_menu.png) no-repeat center center;
  background-size: 28px;
}
header .logo {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 48px;
  display: none;
}
header .logo img {
  width: 100%;
  height: 100%;
}
header .page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 229px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--Text-Primary, #1e2229);
  text-align: center;
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 19px; /* 118.75% */
  letter-spacing: -0.048px;
}
header .header-wrap {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .back {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(/assets/image/mobile/icon_arrow_left.png) center center no-repeat;
  background-size: 28px;
}

/*notification*/
header .notification {
  position: relative;
  display: none;
  width: 40px;
  height: 40px;
  background: url(/assets/image/mobile/icon_notification.png) no-repeat center center;
  background-size: 28px;
  margin: 0;
}
header .notification.new:after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  display: flex;
  width: 5px;
  height: 5px;
  padding: 2px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--Red, #fe6060);
}

/* notification-set */
header .notification-set {
  position: relative;
  display: none;
}
header .notification-set > button {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url(/assets/image/mobile/icon_more_horizontal.png) no-repeat center center;
  background-size: 28px;
  cursor: pointer;
}
header .notification-set > ul {
  display: none;
  position: absolute;
  top: 36px;
  right: 16px;
  width: 160px;
  border-radius: 12px;
  background: var(--light-semantic-background-elevated-primary, #fff);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.08);
}
header .notification-set.active > ul {
  display: block;
}
header .notification-set > ul > li {
  color: var(--Text-Secondary, #353c46);
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.042px;
}
header .notification-set > ul > li + li {
  border-top: 1px solid #e7eaee;
}
header .notification-set .tit {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  color: #8f95a1;
}
header .notification-set .tit:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(/assets/image/mobile/icon_check.png) no-repeat center center;
  background-size: contain;
  margin: 0 8px 0 0;
}
header .notification-set input {
  display: none;
}
header .notification-set label {
  display: flex;
  padding: 10px 16px;
  width: 100%;
  cursor: pointer;
}

/* 활성화 */
body.active-notification header .notification,
body.active-logo header .logo,
body.active-notification-set .notification-set {
  display: inline-block;
}

body.active-logo footer {
  display: block;
}

/* 비활성화 */
body.inactive-back header .back {
  display: none;
}

/* drawer-menu */
aside.drawer-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  width: 288px;
  height: 100%;
  overflow-y: scroll;
  padding-bottom: 120px;
  background: var(--Background, #fff);
}
.wrapper.dim:after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
aside.drawer-menu::scrollbar {
  display: none;
}
aside.drawer-menu::-webkit-scrollbar {
  display: none;
}
aside.drawer-menu.active {
  display: block;
}
aside.drawer-menu > .inner-wrap {
  width: 100%;
  height: 100%;
}
aside.drawer-menu > .inner-wrap > .gnb-header {
  position: relative;
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
}
aside.drawer-menu > .inner-wrap > .gnb-header .logo {
  width: 180px;
  height: 48px;
  margin: 0 0 0 12px;
}
aside.drawer-menu > .inner-wrap > .gnb-header .logo img {
  width: 100%;
  height: 100%;
}
aside.drawer-menu > .inner-wrap > .gnb-header > .open-drawer-menu {
  cursor: pointer;
  position: absolute;
  top: 4px;
  right: 4px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(/assets/image/mobile/icon_close_prohibited.png) no-repeat center center;
  background-size: 28px;
}
aside.drawer-menu .copyright {
  position: fixed;
  border: 60px;
  right: 0;
  width: 288px;
  color: var(--Text-Sub-Tertiary, #bac1cb);
  text-align: center;
  font-family: Pretendard;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 13px; /* 130% */
  letter-spacing: -0.03px;
}

main {
  width: 100%;
  height: 100%;
  padding: 48px 0 0;
}
main > section.container {
  width: 100%;
  height: 100%;
}
main > section.container > section.content {
  width: 100%;
  height: 100%;
}
main > section.container > section.content > .inner-wrap {
  position: relative;
  max-width: 500px;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}

/* footer */
footer {
  display: none;
  width: calc(100% - 32px);
  margin:40px 16px;
}
footer .toggle-btn-fnb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 0 16px;
  padding: 24px 0 0;
}
footer .toggle-btn {
  display: block;
  color: var(--Text-Sub-Primary, #686e7b);
  font-family: Pretendard;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 133.333% */
  letter-spacing: -0.036px;
}
footer .toggle-btn:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background: url(/assets/image/mobile/icon_arrow_down.png) no-repeat left top;
  background-size: cover;
  margin: -3px 0 0 2px;
  opacity: 0.5;
}
footer.active .toggle-btn:after {
  background: url(/assets/image/mobile/icon_arrow_up.png) no-repeat left top;
  background-size: cover;
}
footer .fnb a {
  margin: 0 0 0 16px;
  color: var(--Text-Sub-Primary, #686e7b);
  text-align: right;
  font-family: Pretendard;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
  letter-spacing: -0.036px;
}
footer .fnb a strong {
  color: #686e7b;
}
footer .toggle-box {
  transition: height 0ms 400ms, opacity 400ms 0ms;
  overflow: hidden;
  height: 0;
  opacity: 0;
}
footer.active .toggle-box {
  height: auto;
  opacity: 1;
  margin: 0 0 16px;
}
footer .toggle-box ul {
  padding: 16px;
  border-radius: 8px;
  background: var(--Dimed-4, rgba(30, 34, 41, 0.04));
}
footer .toggle-box li {
  display: flex;
}
footer .toggle-box li + li {
  margin: 8px 0 0;
}
footer .toggle-box .tit,
footer .toggle-box .con {
  color: var(--Text-Sub-Secondary, #8f95a1);
  font-family: Pretendard;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 127.273% */
  letter-spacing: -0.033px;
  white-space: normal;
  word-wrap: break-word;
}
footer .toggle-box .tit {
  width: 100px;
}
footer .toggle-box .con {
  width: calc(100% - 100px);
  color: var(--Text-Sub-Primary, #686e7b);
}
footer .copyright {
  margin: 0 0 16px;
  color: var(--Text-Sub-Tertiary, #bac1cb);
  font-family: Pretendard;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 13px; /* 130% */
  letter-spacing: -0.03px;
}

/* gnb */
.gnb {
  padding: 0 24px;
}
.gnb hr {
  margin: 8px 0 24px;
  border: 0;
  border-top: 1px solid rgba(30, 34, 41, 0.04);
}
.gnb .btn {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gnb .btn .btn-regular {
  width: calc((100% - 8px) / 2);
}
.gnb > ul > li + li {
  margin: 24px 0 0;
}
.gnb > ul > li > a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: url(/assets/image/mobile/icon_arrow_right.png) no-repeat right center;
  background-size: 18px;
  color: var(--Text-Primary, #1e2229);
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 140% */
  letter-spacing: -0.045px;
}
.gnb > ul > li > a > img,
.gnb > ul > li > .tit > img {
  width: 24px;
  height: 24px;
}
.gnb > ul > li .tit {
  display: flex;
  align-items: center;
  gap: 8px;
  background: url(/assets/image/mobile/icon_arrow_right.png) no-repeat right center;
  background-size: 18px;
  color: var(--Text-Primary, #1e2229);
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 140% */
  letter-spacing: -0.045px;
  background: url(/assets/image/mobile/icon_arrow_down.png) right center no-repeat;
  background-size: 20px;
}
.gnb > ul > li.active .tit {
  background: url(/assets/image/mobile/icon_arrow_up.png) right center no-repeat;
  background-size: 20px;
}
.gnb > ul ul {
  display: none;
  border-radius: 8px;
  background: var(--Light-Basic-Gray-100, #f6f6f6);
  margin: 16px 0;
  padding: 1px;
}
.gnb > ul ul li a {
  display: block;
  height: 20px;
  color: var(--Text-Secondary, #353c46);
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.042px;
  margin: 16px 0 16px 16px;
}
.gnb > ul ul li a:before {
  content: " - ";
}
.gnb > ul > li.active ul {
  display: block;
}

/*main-index*/
.main-index { margin:0 16px;}

/* main-link */
.main-link {
  margin: 24px 0 0;
  display: block;
  justify-content: space-between;
}
.main-link a {
  display: flex;
  gap: 16px;
  margin-bottom:12px;
  width: 100%;
  height: 88px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--Border-Tertiary, #e7eaee);
  background: #fff url(/assets/image/mobile/icon_arrow_right.png) no-repeat right 12px
    center;
  background-size: 20px;
  box-shadow: 0px 2px 6px 0px rgba(30, 34, 41, 0.04);
}
.main-link a img {
  width: 48px;
  height: 48px;
}
.main-link h6 {
  color: var(--Text-Sub-Primary, #686e7b);
  font-family: Pretendard;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
  letter-spacing: -0.039px;
}
.main-link h5 {
  margin: 6px 0 0;
  color: var(--Text-Primary, #1e2229);
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 137.5% */
  letter-spacing: -0.048px;
}

/* authentication-time */
.authentication-time {
  margin: 8px 0 0;
  position: relative;
}
.authentication-time #time {
  position: absolute;
  top: 16px;
  right: 90px;
  z-index: 1;
  display: block;
  color: var(--Light-Basic-Blue, #067df4);
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 19px; /* 126.667% */
  letter-spacing: -0.045px;
}

/* content-graph-question */
.content-graph-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width:calc(100% - 32px);
  height:calc(100% - 32px);
  margin:16px;
}
.content-graph-question .content-graph {
    margin: 24px 0 40px;
    width: 100%;
    height: auto;
	min-height:375px;
    aspect-ratio: 1 / 0.6;
    max-height: 652px;
    border-radius: 8px;
    background: url(/assets/image/mobile/graph_bg.png) no-repeat center center;
    background-size: cover;
}
.content-graph-question .content-graph .logo {
  width: 300px;
  height: 100px;
}
.content-graph-question .content-graph .logo img {
  width: 100%;
  height: 100%;
}

/* content-question */
.content-graph-question .content-question {
  width: 100%;
  padding-bottom: 70px;
}
.prj-fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 12px 16px;
}
.content-question .question h6 {
  color: var(--Text-Secondary, #353c46);
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.042px;
}
.content-question .question h4 {
  margin: 8px 0 0;
  color: var(--Text-Primary, #1e2229);
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 120% */
  letter-spacing: -0.06px;
  white-space: pre-line;
}
.content-question > ul > li + li,
.content-question > form > ul > li + li {
  margin: 40px 0 0;
}
.content-question > form > ul > li > .tit,
.content-question > ul > li > .tit {
  color: var(--Text-Secondary, #353c46);
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px; /* 140% */
  letter-spacing: -0.2px;
}
.content-question > form > ul > li > .con {
  margin: 16px 0 0;
}
.content-question > form > ul > li > .con > label {
  margin: 16px 0 0;
  display: block;
  color: var(--Text-Primary, #1e2229);
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 140% */
  letter-spacing: -0.045px;
}
.content-question .btn {
  margin: 40px 0 0;
  display: flex;
}



/* icon-name-age */
.icon-name-age {
  margin: 16px 0 0;
  display: flex;
  height: 91px;
  padding: 12px 0;
  align-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  border: 1px solid var(--Border-Tertiary, #e7eaee);
  background: var(--Background, #fff);
}
.icon-name-age > li {
  width: 25%;
}
.icon-name-age > li + li {
  border-left: 1px solid rgba(30, 34, 41, 0.08);
}
/* cols2 */
.icon-name-age.cols2 > li {
  width: 50%;
}
.icon-name-age .icon-name {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  color: var(--Text-Secondary, #353c46);
  text-align: center;
  font-family: Pretendard;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 138.462% */
  letter-spacing: -0.039px;
}
.icon-name-age .icon-name img {
  width: 18px;
  height: 18px;
}
.icon-name-age .age {
  margin: 8px 0 0;
  color: var(--Text-Primary, #1e2229);
  text-align: center;
  font-family: Pretendard;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 140% */
  letter-spacing: -0.045px;
}

/* major-points */
.major-points {
  margin: 12px 0 0;
  padding: 0 16px 16px;
  border-radius: 12px;
  background: var(--Primary-Lightened, #f1f6fb);
  overflow: hidden;
}
.major-points li {
  margin: 16px 0 0;
  position: relative;
  padding-left: 28px;
  color: var(--Text-Primary, #1e2229);
  font-family: Pretendard;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.042px;
}
.major-points li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 20px;
  height: 20px;
  min-width: 20px;
  padding: 2px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background: var(--Primary, #0a2644);
  color: var(--Text-Dark-Inverted, #fff);
  text-align: center;
  font-family: Pretendard;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px; /* 127.273% */
  letter-spacing: -0.033px;
}
.major-points li.n1:before {
  content: "1";
  background-color:black;
}
.major-points li.n2:before {
  content: "2";
  background-color:black;
}
.major-points li.n3:before {
  content: "3";
}
.major-points li.n4:before {
  content: "4";
  background-color:black;
}
.major-points li.r:before {
  background: var(--Red, #fe6060);
}
.major-points li.g:before {
  background: var(--Green, #09cd87);
}

/* btn-situation-results */
.btn-situation-results {
  margin: 16px 0 0;
}
.btn-situation-results .btn-medium + .btn-medium {
  margin: 8px 0 0;
}

/* age-space-between */
.age-space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.age-space-between .unit-wrap {
  width: calc(100% - 66px);
}

  body.inactive-border-bottom-header header {
    border-bottom: 0;
  }
    .category-slider {
    margin: 0;
  }
    .tab-menu.type-c > .inner-wrap > .tab-header {
    margin: 0;
  }
  .tab-menu + .board-list {
    padding: 0 16px;
  }
  .terms-of {
    padding: 16px;
  }

  .popup .terms-of {
    padding: 40px 16px 16px;
  }
    .board-list {
    padding: 0 16px;
  }

  .mypage-menu {
    padding: 0 16px;
  }
  .mypage-menu + form .BTT {
    padding: 0 16px;
  }

  .BTT {
    padding: 0 16px;
  }

  .board-view .header {
    padding: 16px 0;
  }

  .member-content {
    padding: 16px 16px 0;
  }

  .app-setting {
    padding: 16px 16px 0;
  }

  .result-area {
    padding: 16px 16px 8px;
  }

  .notification-list {
    padding: 0 16px;
  }


}

.member-content .title,
.result-area h1 {
  white-space: normal;
}
aside.drawer-menu {
  padding-bottom: 0;
}
aside.drawer-menu .copyright {
  bottom: 16px;
}
aside.drawer-menu .inner-wrap .gnb ul {
  max-height: calc(100vh - 204px);
  overflow-y: auto;
}

/* ========================================
   추가개발 CSS (퍼블리싱 포팅)
   ======================================== */

/* title-medium */
.title-medium {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
  letter-spacing: -0.054px;
}

/* title-regular */
.title-regular {
  margin: 24px 0 0;
  color: var(--Text-Primary, #1E2229);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.048px;
}

/* BTT 추가 규칙 */
.BTT > ul > li {
  margin: 16px 0 0;
}
.BTT > ul > li .tit {
  color: var(--Text-Secondary, #353c46);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: -0.039px;
}
.BTT .input-medium + .input-medium {
  margin: 0;
}
.BTT .input-medium.flexible + .input-medium.flexible {
  margin: 8px 0 0;
}

/* type-coverage-info */
.type-coverage-info {
  margin: 16px 0 0;
}
.type-coverage-info a {
  margin: 8px 0 0;
  display: flex;
  height: 48px;
  padding: 0 16px 0 20px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 8px;
  border: 1px solid var(--Border-Secondary, #D8DDE2);
  background: var(--Background, #FFF);
}
.type-coverage-info a .tit {
  color: var(--Text-Secondary, #353C46);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.045px;
}
.type-coverage-info a .con {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
.type-coverage-info a .con span {
  display: flex;
  width: 16px;
  height: 16px;
  min-width: 16px;
  padding: 2px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background: var(--Text-Sub-Secondary, #8F95A1);
  color: var(--Text-Dark-Inverted, #FFF);
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
  letter-spacing: -0.03px;
}
.type-coverage-info a .con .icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(/assets/image/icon_pencil_inactive.png) no-repeat 0 0;
  background-size: contain;
}
.type-coverage-info a.active .con span {
  background: #0A2644;
}
.type-coverage-info a.active .con .icon {
  background: url(/assets/image/icon_pencil.png) no-repeat 0 0;
  background-size: contain;
}

/* coverage-period */
.coverage-period {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.coverage-period > span {
  width: calc((100% - 16px)/2);
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.042px;
}
.coverage-period > span .unit-wrap {
  width: calc(100% - 36px);
}

/* popup.full */
.popup.full > .inner-wrap {
  padding: 48px 0 24px;
  overflow-y: auto;
}

/* more-layer button.vertical */
.more-layer > button.vertical {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url(/assets/image/icon_more_vertical.png) no-repeat 0 0;
  background-size: contain;
  cursor: pointer;
}

/* btn-refresh-wrap */
.btn-refresh-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.btn-refresh-wrap .btn-large {
  width: calc(100% - 60px);
}
.btn-refresh {
  display: flex;
  width: 52px;
  height: 52px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--Border-Secondary, #D8DDE2);
  background: #FFF url(/assets/image/icon_refresh.png) no-repeat center center;
  background-size: 28px;
}

/* screenshot-graph-list */
.screenshot-graph-list > label {
  margin: 16px 0 0;
  position: relative;
  display: flex;
  height: 79px;
  padding: 16px 40px 16px 52px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 12px;
  border: 1px solid var(--Border-Tertiary, #E7EAEE);
  background: var(--Background, #FFF);
}
.screenshot-graph-list input {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
}
.screenshot-graph-list .more-layer {
  position: absolute;
  top: 16px;
  right: 0;
}
.screenshot-graph-list .tit {
  color: var(--Text-Primary, #1E2229);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.048px;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.screenshot-graph-list .date {
  margin: 8px 0 0;
  color: var(--Text-Sub-Primary, #686E7B);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.036px;
}

/* comparison-graph-list */
.comparison-graph-list > article {
  margin: 16px 0 0;
  position: relative;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--Border-Tertiary, #E7EAEE);
  background: var(--Background, #FFF);
}
.comparison-graph-list .more-layer {
  position: absolute;
  top: 16px;
  right: 0;
}
.comparison-graph-list .subject {
  padding-right: 48px;
  color: var(--Text-Primary, #1E2229);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.048px;
  overflow: hidden;
  white-space: normal;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.comparison-graph-list hr {
  margin: 16px 0;
  border-top: 1px solid rgba(30, 34, 41, 0.08);
  width: 100%;
}
.comparison-graph-list .tit-con li {
  margin: 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.comparison-graph-list .tit-con .tit {
  width: calc(100% - 80px);
  color: var(--Text-Secondary, #353C46);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.039px;
}
.comparison-graph-list .tit-con .con {
  color: var(--Text-Sub-Primary, #686E7B);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.036px;
}

/* screenshot-graph-comparison */
.screenshot-graph-comparison .subject-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.screenshot-graph-comparison .subject-date .subject {
  width: calc(100% - 80px);
  color: var(--Text-Primary, #1E2229);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.048px;
}
.screenshot-graph-comparison .subject-date .date {
  padding-right: 16px;
  color: var(--Info-Text, #686E7B);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: -0.033px;
}
.screenshot-graph-comparison .graph {
  margin: 16px 0 0;
  min-height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.screenshot-graph-comparison .graph img {
  width: 100%;
}
.screenshot-graph-comparison + .screenshot-graph-comparison {
  margin: 56px 0 0;
}

/* 나의 그래프 - 하단 고정 비교하기 버튼 */
.prj-fixed-bottom {
  position: sticky;
  bottom: 0;
  padding: 12px 0;
  background: transparent;
  box-shadow: none;
  z-index: 1;
  box-sizing: border-box;
}
.prj-fixed-bottom .btn-large { display: block; text-align: center; }

/* all-select-btn-del */
.all-select-btn-del {
  margin: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.all-select-btn-del label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--Text-Secondary, #353C46);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: -0.042px;
}

/* crm-list */
.crm-list > ul > li {
  margin: 16px 0 0;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--Border-Tertiary, #E7EAEE);
}
.crm-list .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 12px;
  margin: 0 0 12px;
  border-bottom: 1px solid rgba(30, 34, 41, 0.08);
}
.crm-list .top label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--Text-Primary, #1E2229);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.048px;
}
.crm-list .top .arrow {
  width: 24px;
  height: 24px;
  background: url(/assets/image/icon_arrow_right.png) no-repeat 0 0;
  background-size: contain;
  opacity: 0.6;
}
.crm-list .tit-con > li {
  margin: 8px 0 0;
  display: flex;
  align-items: center;
}
.crm-list .tit-con .tit {
  width: 100px;
  color: var(--Text-Sub-Primary, #686E7B);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: -0.033px;
}
.crm-list .tit-con .con {
  width: calc(100% - 100px);
  color: var(--Text-Secondary, #353C46);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.039px;
}
.crm-list .btn-group {
  margin-top: 12px;
}

/* btn-bottom-right */
.btn-bottom-right {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 1;
  width: 100%;
  height: 0;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.btn-bottom-right img {
  width: 24px;
  height: 24px;
}

/* child-exists */
.child-exists {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--Text-Secondary, #353C46);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.048px;
}

/* crm-view */
.crm-view > ul > li {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--Border-Tertiary, #E7EAEE);
}
.crm-view > ul > li + li {
  margin: 16px 0 0;
}
.crm-view .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 12px;
  margin: 0 0 12px;
  border-bottom: 1px solid rgba(30, 34, 41, 0.08);
  color: var(--Text-Primary, #1E2229);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.048px;
}
.crm-view .tit-con > li {
  margin: 8px 0 0;
  display: flex;
  align-items: center;
}
.crm-view .tit-con .tit {
  width: 100px;
  color: var(--Text-Sub-Primary, #686E7B);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: -0.033px;
}
.crm-view .tit-con .con {
  width: calc(100% - 100px);
  color: var(--Text-Secondary, #353C46);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.039px;
}

/* crm-graph-info */
.crm-graph-info {
  margin: 0 0 60px;
}
.crm-graph-info > ul > li {
  margin: 8px 0 0;
  position: relative;
  padding: 16px 24px 16px 16px;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--Border-Tertiary, #E7EAEE);
  background: #FFF;
}
.crm-graph-info > ul > li a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.crm-graph-info .subject {
  width: calc(100% - 76px);
  color: var(--Text-Primary, #1E2229);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.048px;
}
.crm-graph-info .date {
  width: 60px;
  flex-shrink: 0;
  text-align: right;
  color: var(--Info-Text, #686E7B);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 17px;
  letter-spacing: -0.033px;
}
.crm-graph-info .more-layer {
  position: absolute;
  top: 16px;
  right: -8px;
}

/* question.add-btn */
.content-question .question.add-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content-question .question.add-btn h4 {
  margin: 0;
}
.content-question .question.add-btn .btn-small {
  width: 47px;
  height: 34px;
}

/* help-text.icon 보정 */
.help-text.icon:before {
  top: 2px;
}

/* inactive-open-drawer-menu */
body.inactive-open-drawer-menu header .open-drawer-menu {
  display: none;
}
body.inactive-open-drawer-menu header .back {
  background-image: url(/assets/image/mobile/icon_home_v2.png);
}

/* tab-menu 퍼블리싱 스타일 오버라이드 */
.tab-menu .inner-wrap .tab-header {
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--Border-Quaternary, #f3f5f6);
  background: var(--Background-Lower-Primary, #f3f5f6);
  padding: 1px;
}
.tab-menu .inner-wrap .tab-header li {
  border-radius: 8px;
  border: 0;
  border-left: 0;
  -webkit-tap-highlight-color: transparent;
  transition: none;
  color: inherit;
  font-size: inherit;
}
.tab-menu .inner-wrap .tab-header li:first-child {
  border-left: 0;
}
.tab-menu .inner-wrap .tab-header li a {
  padding: 0 12px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  color: var(--Text-Sub-Secondary, #8f95a1);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: -0.042px;
}
.tab-menu .inner-wrap .tab-header li.active {
  background: var(--Background-Lower-Primary, #f3f5f6);
  color: inherit;
  border: 0;
}
.tab-menu .inner-wrap .tab-header li.active a {
  border: 1px solid var(--Border-Quaternary, #D8DDE2);
  background: #fff !important;
  color: var(--Text-Primary, #1e2229) !important;
  font-weight: 700;
}
.tab-menu .inner-wrap .tab-header li.active:hover {
  background: var(--Background-Lower-Primary, #f3f5f6);
  color: inherit;
  border: 0;
}
.tab-menu .inner-wrap .tab-content {
  margin-top: 0;
  border: 0;
  padding: 0;
}

/* 카드 등록 폼 - 카드번호 가로배치 */
.card-number-insert {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.card-number-insert .input-medium {
  min-width: calc((100% - 24px) / 4) !important;
  width: calc((100% - 24px) / 4) !important;
  text-align: center;
}

/* 카드 등록 폼 - 유효기간 가로배치 */
.expiration-period-insert {
  display: flex;
  align-items: center;
  gap: 8px;
}
.expiration-period-insert .input-medium {
  width: 80px !important;
  min-width: 80px !important;
  text-align: center;
}
