@charset "UTF-8";
/* reset.css */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap");
html body *,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font-family: "Noto Sans KR", sans-serif;
  line-height: normal;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

html, body {
  font-size: 16px;
}

.pc_layout {
  display: none;
}

.mo_layout {
  display: block;
}

@media (min-width: 801px) {
  .pc_layout {
    display: block;
  }
  .mo_layout {
    display: none;
  }
}
button {
  background: transparent;
  border: none;
}

table {
  width: 100%;
}

a, img {
  display: block;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* Media Query Size */
/*=================================================================
    color
    1. 색상이 변동되거나 background-color적용시 함수사용    
    ex)
        .container {
            background-color: color(main_bg);
        }

        .title {
            color: color(gray_900);
        }

    2. 색상이 고정일 경우 class로 사용 => base.scss 파일 참고
        <div class="color_main_cool_mint_blue"></div>
====================================================================*/
/*=================================================================
  font
====================================================================*/
/*=================================================================
  color (default: green-mint)
====================================================================*/
.color-mint-blue {
  color: #79d1c7 !important;
}

.color-blue-purple {
  color: #8165fe !important;
}

.color-main-bg {
  color: #f4f8fb !important;
}

.color-green-mint {
  color: #00ab93 !important;
}

.color-pink {
  color: #f3b3d1 !important;
}

.color-red-pink {
  color: #f04d69 !important;
}

.color-yellow {
  color: #ffd349 !important;
}

.color-navy {
  color: #01416c !important;
}

.color-light-purple {
  color: #b3a3fe !important;
}

.color-blue-gray {
  color: #e0e7ec !important;
}

.color-light-yellow {
  color: #fff27b !important;
}

.color-black {
  color: #000 !important;
}

.color-gray900 {
  color: #121212 !important;
}

.color-gray800 {
  color: #333333 !important;
}

.color-gray700 {
  color: #666666 !important;
}

.color-gray600 {
  color: #777777 !important;
}

.color-gray500 {
  color: #999999 !important;
}

.color-gray400 {
  color: #cccccc !important;
}

.color-gray300 {
  color: #dddddd !important;
}

.color-gray200 {
  color: #ebebeb !important;
}

.color-gray100 {
  color: #f5f5f5 !important;
}

.color-white {
  color: #fff !important;
}

.bg-mint-blue {
  background-color: #79d1c7 !important;
}

.bg-blue-purple {
  background-color: #8165fe !important;
}

.bg-main {
  background-color: #f4f8fb !important;
}

.bg-green-mint {
  background-color: #00ab93 !important;
}

.bg-pink {
  background-color: #f3b3d1 !important;
}

.bg-red-pink {
  background-color: #f04d69 !important;
}

.bg-yellow {
  background-color: #ffd349 !important;
}

.bg-navy {
  background-color: #01416c !important;
}

.bg-light-purple {
  background-color: #b3a3fe !important;
}

.bg-blue-gray {
  background-color: #e0e7ec !important;
}

.bg-light-yellow {
  background-color: #fff27b !important;
}

.bg-black {
  background-color: #000 !important;
}

.bg-gray900 {
  background-color: #121212 !important;
}

.bg-gray800 {
  background-color: #333333 !important;
}

.bg-gray700 {
  background-color: #666666 !important;
}

.bg-gray600 {
  background-color: #777777 !important;
}

.bg-gray500 {
  background-color: #999999 !important;
}

.bg-gray400 {
  background-color: #cccccc !important;
}

.bg-gray300 {
  background-color: #dddddd !important;
}

.bg-gray200 {
  background-color: #ebebeb !important;
}

.bg-gray100 {
  background-color: #f5f5f5 !important;
}

.bg-white {
  background-color: #fff !important;
}

.border-mint-blue {
  border-color: #79d1c7 !important;
}

.border-blue-purple {
  border-color: #8165fe !important;
}

.border-main-bg {
  border-color: #f4f8fb !important;
}

.border-green-mint {
  border-color: #00ab93 !important;
}

.border-pink {
  border-color: #f3b3d1 !important;
}

.border-red-pink {
  border-color: #f04d69 !important;
}

.border-yellow {
  border-color: #ffd349 !important;
}

.border-navy {
  border-color: #01416c !important;
}

.border-light-purple {
  border-color: #b3a3fe !important;
}

.border-blue-gray {
  border-color: #e0e7ec !important;
}

.border-light-yellow {
  border-color: #fff27b !important;
}

.border-black {
  border-color: #000 !important;
}

.border-gray900 {
  border-color: #121212 !important;
}

.border-gray800 {
  border-color: #333333 !important;
}

.border-gray700 {
  border-color: #666666 !important;
}

.border-gray600 {
  border-color: #777777 !important;
}

.border-gray500 {
  border-color: #999999 !important;
}

.border-gray400 {
  border-color: #cccccc !important;
}

.border-gray300 {
  border-color: #dddddd !important;
}

.border-gray200 {
  border-color: #ebebeb !important;
}

.border-gray100 {
  border-color: #f5f5f5 !important;
}

.border-white {
  border-color: #fff !important;
}

/*==============================================================
  button 
  * 그 외 버튼 custom => color, background-color, border-color class로
  @mixin btnStyle() {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
================================================================*/
.btn-default {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #cccccc;
  color: #121212;
}

.btn-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333333;
  color: #fff;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00ab93;
  color: #fff;
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #01416c;
  color: #fff;
}

.btn-md {
  width: fit-content;
  gap: 10px;
  padding: 0 30px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  height: 54px;
  min-height: 54px;
}
.btn-md.type-print::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(/assets/renewal2023/img/ico/ico-print.png) no-repeat center/20px auto;
}
.btn-md.type-download::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("/assets/renewal2023/img/ico/ico-download.png") no-repeat center/24px auto;
}
.btn-md.type-out::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("/assets/renewal2023/img/ico/ico-out.png") no-repeat center/22px auto;
}

.btn-sm {
  width: fit-content;
  gap: 4px;
  padding: 0 20px;
  border-radius: 10px;
  font-size: 16px;
  height: 36px;
  min-height: 36px;
}
.btn-sm.type-search {
  min-width: 100px;
}
.btn-sm.type-search::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("/assets/renewal2023/img/ico/ico-search.png") no-repeat center/16px auto;
}
.btn-sm.type-x::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("/assets/renewal2023/img/ico/ico-close-b.png") no-repeat center/13px auto;
}
.btn-sm.type-download::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("/assets/renewal2023/img/ico/ico-download-navy.png") no-repeat center/17px auto;
}

.btn-xsm {
  width: fit-content;
  gap: 4px;
  padding: 0 12px;
  border-radius: 6px;
  font-size: 14px;
  height: 30px;
  min-height: 30px;
}
.btn-xsm.type-download::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("/assets/renewal2023/img/ico/ico-download.png") no-repeat center/15px auto;
}
.btn-xsm.type-play::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("/assets/renewal2023/img/ico/ico-play.png") no-repeat center/cover;
}

.btn-pd40 {
  padding: 14px 40px;
  min-width: 113px;
}

.btn-disabled {
  opacity: 0.6;
}

.btn-shadow {
  box-shadow: 0px 4px 8px 0px rgba(12, 50, 75, 0.16);
}

.btn-width-fixed {
  display: flex;
  width: 165px;
  height: 54px;
  padding: 14px 54px 14px 55px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px; /* 144.444% */
  border: 1px solid transparent;
}

/*==============================================================
  layout
================================================================*/
/* 전체 레이아웃 */
.wrap {
  overflow: visible;
  width: 100%;
}
@media (min-width: 801px) {
  .wrap.main-container {
    min-width: 1024px;
  }
  .wrap.sub-container {
    width: max-content;
    min-width: 1440px;
  }
}
@media (min-width: 1024px) {
  .wrap.main-container {
    width: 100%;
  }
}
@media (min-width: 1440px) {
  .wrap.sub-container {
    width: 100%;
  }
}
.wrap:has(.type-only-pc) {
  min-width: 1440px;
}

/* 서브 레이아웃 > 로케이션&서브텍스트 */
.sub-container {
  /* 서브 상단 */
}
.sub-container .location {
  display: block;
  margin-top: 62px;
}
@media (min-width: 801px) {
  .sub-container .location {
    margin-top: 0;
    background: #f4f8fb;
  }
}
.sub-container .location .location-wrap {
  position: relative;
  z-index: 5555;
}
.sub-container .location .location-wrap::after {
  display: none;
}
@media (min-width: 801px) {
  .sub-container .location .location-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
  }
}
.sub-container .location .location-wrap .select-wrap {
  gap: 33px;
  padding: 8px 16px;
  background: #00ab93;
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 801px) {
  .sub-container .location .location-wrap .select-wrap {
    display: block;
    max-width: unset;
    margin: 0;
    padding: 0;
    position: unset;
    background: none;
  }
}
.sub-container .location .location-wrap .select-wrap .breadcrumb {
  display: block;
  position: relative;
  color: #b3e6df;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.sub-container .location .location-wrap .select-wrap .breadcrumb::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -16.5px;
  transform: translateX(50%);
  background-color: #b3e6df;
}
@media (min-width: 801px) {
  .sub-container .location .location-wrap .select-wrap .breadcrumb {
    display: none;
  }
}
.sub-container .location .location-wrap .select-wrap .select-menu {
  position: unset;
}
@media (min-width: 801px) {
  .sub-container .location .location-wrap .select-wrap .select-menu {
    position: relative;
  }
}
.sub-container .location .location-wrap .select-wrap .select-menu.m-only {
  display: flex;
}
@media (min-width: 801px) {
  .sub-container .location .location-wrap .select-wrap .select-menu.m-only {
    display: none;
  }
}
.sub-container .location .location-wrap .select-wrap .select-menu.pc-only {
  display: none;
}
@media (min-width: 801px) {
  .sub-container .location .location-wrap .select-wrap .select-menu.pc-only {
    display: flex;
  }
}
.sub-container .location .location-wrap .select-wrap .select-menu.active .select-btn {
  border: none;
}
.sub-container .location .location-wrap .select-wrap .select-menu.active .select-btn .sBtn-text {
  color: #fff27b;
}
@media (min-width: 801px) {
  .sub-container .location .location-wrap .select-wrap .select-menu.active .select-btn .sBtn-text {
    color: unset;
  }
}
.sub-container .location .location-wrap .select-wrap .select-menu.active .select-btn svg path {
  fill: #fff27b;
}
@media (min-width: 801px) {
  .sub-container .location .location-wrap .select-wrap .select-menu.active .select-btn svg path {
    fill: #00ab93;
  }
}
.sub-container .location .location-wrap .select-wrap .select-menu .select-btn {
  border: none;
  background: none;
  padding: 0;
}
@media (min-width: 801px) {
  .sub-container .location .location-wrap .select-wrap .select-menu .select-btn {
    gap: 10px;
    height: 47px;
    font-size: 18px;
    border-radius: 8px;
  }
}
.sub-container .location .location-wrap .select-wrap .select-menu .select-btn .sBtn-text {
  color: #fff;
  font-weight: 700;
}
@media (min-width: 801px) {
  .sub-container .location .location-wrap .select-wrap .select-menu .select-btn .sBtn-text {
    color: #121212;
    font-size: 36px;
    line-height: 47px;
    border: none;
  }
}
@media (min-width: 801px) {
  .sub-container .location .location-wrap .select-wrap .select-menu .select-btn svg {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 801px) {
  .sub-container .location .location-wrap .select-wrap .select-menu .select-btn svg path {
    fill: #00ab93;
  }
}
.sub-container .location .location-wrap .select-wrap .select-menu .options {
  top: 52px;
  padding: 20px;
  border-radius: 0;
  margin: 0;
  gap: 0;
}
@media (min-width: 801px) {
  .sub-container .location .location-wrap .select-wrap .select-menu .options {
    top: 47px;
    padding: 10px 0;
    margin: 10px 0 0;
    border-radius: 8px;
    max-width: 200px;
    min-width: 200px;
  }
}
.sub-container .location .location-wrap .select-wrap .select-menu .options .option {
  border-bottom: 1px dashed #ddd;
}
@media (min-width: 801px) {
  .sub-container .location .location-wrap .select-wrap .select-menu .options .option:hover {
    background: #f2f2f2;
  }
}
.sub-container .location .location-wrap .select-wrap .select-menu .options .option:hover .option-text {
  color: unset;
}
.sub-container .location .location-wrap .select-wrap .select-menu .options .option .point {
  width: 15.75px;
  height: 14px;
}
@media (min-width: 801px) {
  .sub-container .location .location-wrap .select-wrap .select-menu .options .option .point {
    display: none;
  }
}
.sub-container .location .location-wrap .select-wrap .select-menu .options .option .option-text {
  width: 100%;
  color: #666;
  padding: 7px 10px;
}
@media (min-width: 801px) {
  .sub-container .location .location-wrap .select-wrap .select-menu .options .option .option-text {
    padding: 10px 20px;
  }
}
@media (min-width: 801px) {
  .sub-container:has(.type-border.base-page-cont) .location .location-wrap {
    border-bottom: 1px solid #00ab93;
  }
}
@media (min-width: 801px) {
  .sub-container:has(.type-padding-20.base-page-cont) .location .location-wrap {
    padding-bottom: 20px;
  }
}
.sub-container .location__title {
  display: block;
  margin-top: 56px;
  padding: 40px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 135%;
  text-align: center;
  background-color: #f4f8fb;
}
@media (min-width: 801px) {
  .sub-container .location__title {
    margin-top: 0;
    padding: 60px 0;
  }
}
.sub-container .location__title .location__title_desc {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
  color: #666666;
}
.sub-container .sub-top-text {
  display: none;
  align-items: center;
  justify-content: end;
  margin-top: -44px;
}
@media (min-width: 801px) {
  .sub-container .sub-top-text {
    display: flex;
  }
}
.sub-container .sub-top-text .icon {
  width: 36px;
  height: 36px;
}
.sub-container .sub-top-text .icon > img {
  width: 100%;
}
.sub-container .sub-top-text .text {
  font-size: 18px;
  color: #666666;
}
.sub-container .sub-top-text.type-bg {
  justify-content: start;
  margin-top: auto;
}
.sub-container .sub-top-text.type-bg .icon {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 280px;
  height: 161px;
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc) .location {
    margin-top: 0;
    background: #f4f8fb;
  }
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc) .location .location-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
  }
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc) .location .location-wrap .select-wrap {
    display: block;
    max-width: unset;
    margin: 0;
    padding: 0;
    position: unset;
    background: none;
  }
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc) .location .location-wrap .select-wrap .breadcrumb {
    display: none;
  }
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc) .location .location-wrap .select-wrap .select-menu {
    position: relative;
  }
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc) .location .location-wrap .select-wrap .select-menu.m-only {
    display: none;
  }
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc) .location .location-wrap .select-wrap .select-menu.pc-only {
    display: flex;
  }
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc) .location .location-wrap .select-wrap .select-menu.active .select-btn .sBtn-text {
    color: unset;
  }
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc) .location .location-wrap .select-wrap .select-menu.active .select-btn svg path {
    fill: #00ab93;
  }
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc) .location .location-wrap .select-wrap .select-menu .select-btn {
    gap: 10px;
    height: 47px;
    font-size: 18px;
    border-radius: 8px;
  }
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc) .location .location-wrap .select-wrap .select-menu .select-btn .sBtn-text {
    color: #121212;
    font-size: 36px;
    line-height: 47px;
    border: none;
  }
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc) .location .location-wrap .select-wrap .select-menu .select-btn svg {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc) .location .location-wrap .select-wrap .select-menu .select-btn svg path {
    fill: #00ab93;
  }
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc) .location .location-wrap .select-wrap .select-menu .options {
    top: 47px;
    padding: 10px 0;
    margin: 10px 0 0;
    border-radius: 8px;
  }
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc) .location .location-wrap .select-wrap .select-menu .options .option:hover {
    background: #f2f2f2;
  }
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc) .location .location-wrap .select-wrap .select-menu .options .option .point {
    display: none;
  }
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc) .location .location-wrap .select-wrap .select-menu .options .option .option-text {
    padding: 10px 20px;
  }
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc):has(.type-border.base-page-cont) .location .location-wrap {
    border-bottom: 1px solid #00ab93;
  }
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc) .location__title {
    margin-top: 0;
    padding: 60px 0;
  }
}
@media (max-width: 801px) {
  .sub-container:has(.type-only-pc) .sub-top-text {
    display: flex;
  }
}

/* 서브 컨텐츠 */
.base-page-cont:not(:has(.base-content-wrap)) {
  padding: 0 0 100px;
}
.base-page-cont .base-content-wrap {
  padding: 40px 0 100px;
}
@media (min-width: 801px) {
  .base-page-cont .base-content-wrap {
    padding: 50px 0 100px;
  }
}
.base-page-cont .base-inner {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 801px) {
  .base-page-cont .base-inner {
    padding: 0;
    max-width: 1200px;
  }
}
.base-page-cont .base-inner .function-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.base-page-cont .base-inner .function-group .btn-area {
  width: auto;
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 0;
}
.base-page-cont .base-page-desc {
  margin: 0 0 20px 0;
  background: #fff;
  border-bottom: 1px solid #79d1c7;
}
@media (min-width: 801px) {
  .base-page-cont .base-page-desc {
    margin: 40px auto;
    background: transparent;
  }
}
.base-page-cont .base-page-desc .tit {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 133.333%;
}
.base-page-cont .base-page-desc .desc {
  padding: 20px 0;
  font-size: 12px;
  line-height: 150%;
  color: #666666;
}
@media (min-width: 801px) {
  .base-page-cont .base-page-desc .desc {
    padding: 0 0 10px 0;
    font-size: 16px;
  }
}
@media (min-width: 801px) {
  .base-page-cont .base-page-desc.type2 {
    padding: 26px 48px;
    background: #fff;
    border: 1px solid #01416c;
    border-radius: 20px;
  }
}
@media (min-width: 801px) {
  .base-page-cont .base-page-desc.type2 .desc {
    padding: 0;
    font-size: 20px;
    font-weight: 700;
    color: #01416c;
  }
}
@media (min-width: 801px) {
  .base-page-cont .base-page-desc.type2 .desc .small {
    font-size: 16px;
    font-weight: 400;
  }
}
@media (min-width: 801px) {
  .base-page-cont .base-page-desc.type3 {
    padding: 26px 48px;
    background: #f4f8fb;
    border: none;
    border-radius: 20px;
  }
}
@media (min-width: 801px) {
  .base-page-cont .base-page-desc.type3 .desc {
    padding: 0;
    font-size: 20px;
    font-weight: 700;
    color: #01416c;
  }
}
@media (min-width: 801px) {
  .base-page-cont .base-page-desc.type3 .desc .small {
    font-size: 16px;
    font-weight: 400;
  }
}

@media (max-width: 801px) {
  .type-only-pc.base-page-cont .base-content-wrap {
    padding: 50px 0 100px;
  }
}
@media (max-width: 801px) {
  .type-only-pc.base-page-cont .base-inner {
    padding: 0;
    max-width: 1200px;
  }
}
@media (max-width: 801px) {
  .type-only-pc.base-page-cont .base-page-desc {
    margin: 40px auto;
    background: transparent;
  }
}
@media (max-width: 801px) {
  .type-only-pc.base-page-cont .base-page-desc .desc {
    padding: 0 0 10px 0;
    font-size: 16px;
  }
}
@media (max-width: 801px) {
  .type-only-pc.base-page-cont .base-page-desc.type2 {
    padding: 26px 48px;
    background: #fff;
    border: 1px solid #01416c;
    border-radius: 20px;
  }
}
@media (max-width: 801px) {
  .type-only-pc.base-page-cont .base-page-desc.type2 .desc {
    padding: 0;
    font-size: 20px;
    font-weight: 700;
    color: #01416c;
  }
}
@media (max-width: 801px) {
  .type-only-pc.base-page-cont .base-page-desc.type2 .desc .small {
    font-size: 16px;
    font-weight: 400;
  }
}
@media (max-width: 801px) {
  .type-only-pc.base-page-cont .base-page-desc.type3 {
    padding: 26px 48px;
    background: #f4f8fb;
    border: none;
    border-radius: 20px;
  }
}
@media (max-width: 801px) {
  .type-only-pc.base-page-cont .base-page-desc.type3 .desc {
    padding: 0;
    font-size: 20px;
    font-weight: 700;
    color: #01416c;
  }
}
@media (max-width: 801px) {
  .type-only-pc.base-page-cont .base-page-desc.type3 .desc .small {
    font-size: 16px;
    font-weight: 400;
  }
}

/* header */
.mo_layout {
  z-index: 9999;
}
.mo_layout .header {
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mo_layout .header img.menuBtn {
  position: unset;
  transform: unset;
  padding: 0;
  width: 18px;
  height: auto;
  display: block;
}
.mo_layout .header a img {
  width: 106px;
  height: 28px;
  display: block;
}
.mo_layout .moMenu .moMenuCon {
  height: 100%;
  left: auto;
  right: 0px;
  background: rgb(255, 255, 255);
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mo_layout .moMenu .moMenuCon .moMenu_top {
  font-size: unset;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .row-group {
  width: 100%;
  background: #f4f8fb;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  padding: 8px 16px;
  min-height: 56px;
  max-height: 56px;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .row-group .moMenu_x {
  position: unset;
  padding: 0;
  width: 18px;
  height: 18px;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .row-group .profile {
  display: flex;
  gap: 8px;
  align-items: center;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .row-group .profile .profile-img {
  width: auto;
  height: 28px;
  display: block;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .row-group .profile .profile-img-wrap {
  position: relative;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .row-group .profile .profile-img-wrap .profile-img {
  width: 40px;
  height: auto;
  display: block;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .row-group .profile .profile-img-wrap .state-new {
  width: 14px;
  height: 14px;
  display: block;
  position: absolute;
  top: -4px;
  right: 0;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .row-group .profile p {
  color: #121212;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .row-group .profile p > b {
  font-weight: 700;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .row-group.mypage ~ .btn-req {
  background: #8165fe;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .row-group.mypage .my-page-info {
  display: flex;
  gap: 4px;
  align-items: center;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .row-group.mypage .my-page-info .profile-grade {
  color: #121212;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .row-group.mypage .my-page-info .profile-name {
  color: #121212;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  display: flex;
  gap: 4px;
  align-items: center;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .row-group.mypage .my-page-info .profile-name > img {
  width: 14px;
  height: 14px;
  display: block;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .btns {
  width: 100%;
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  gap: 33px;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .btns a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  justify-content: center;
  flex-grow: 1;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .btns a .img-wrap {
  position: relative;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .btns a .img-wrap > img {
  width: 32px;
  height: 32px;
  display: block;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .btns a .img-wrap .state-new,
.mo_layout .moMenu .moMenuCon .moMenu_top .btns a .img-wrap .state-num {
  width: 14px;
  height: 14px;
  position: absolute;
  top: -4px;
  right: 0;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .btns a .img-wrap .state-new {
  top: 0;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .btns a .img-wrap .state-num {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0;
  background: none;
  font-size: 10px;
  font-weight: 700;
  line-height: 160%;
  color: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .btns a:not(:last-of-type)::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  right: -16.5px;
  width: 1px;
  height: 20px;
  background-color: #ddd;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .btns a span {
  color: #121212;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
.mo_layout .moMenu .moMenuCon .moMenu_top .btn-req {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  width: calc(100% - 32px);
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  border-radius: 8px;
  background: #01416c;
  box-shadow: 0px 4px 8px 0px rgba(12, 50, 75, 0.16);
}
.mo_layout .moMenu .moMenuCon .menu-list {
  padding: 20px 16px 40px;
}
.mo_layout .moMenu .moMenuCon .notice-list {
  padding: 16px 16px 16px 26px;
  list-style: none;
  background: #f4f8fb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.mo_layout .moMenu .moMenuCon .notice-list li {
  color: #999;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  border-bottom: 0;
  position: relative;
  word-break: keep-all;
}
.mo_layout .moMenu .moMenuCon .notice-list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: -10px;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: #00ab93;
}

.pc_layout {
  position: sticky;
  top: -109px;
  z-index: 6666;
}
.pc_layout .header_wrap {
  margin: 0 auto;
}
.pc_layout .header_wrap .header-container {
  width: 100%;
  background-color: #fff;
}
.pc_layout .header_wrap .header-container.bottom {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  display: flex;
}
.pc_layout .header_wrap .header {
  display: flex;
  align-items: center;
  max-width: 1440px;
  padding: 0 32px;
  gap: 20px;
}
@media (min-width: 1440px) {
  .pc_layout .header_wrap .header {
    gap: 66px;
  }
}
.pc_layout .header_wrap .header > ul {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-grow: 1;
}
@media (min-width: 1440px) {
  .pc_layout .header_wrap .header > ul {
    gap: 56px;
  }
}
@media (min-width: 1440px) {
  .pc_layout .header_wrap .header > ul.menu-list1 {
    height: 100%;
  }
}
.pc_layout .header_wrap .header > ul.menu-list2 {
  margin-left: 160px;
  flex-grow: 1;
  justify-content: flex-end;
  gap: 20px;
}
@media (min-width: 1440px) {
  .pc_layout .header_wrap .header > ul.menu-list2 {
    gap: 28px;
    height: 100%;
  }
}
@media (min-width: 1440px) {
  .pc_layout .header_wrap .header > ul.menu-list2 > li > a {
    height: 70px;
    align-items: center;
    display: flex;
  }
}
.pc_layout .header_wrap .header > ul.menu-list2 li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 128.571%;
}
@media (min-width: 1440px) {
  .pc_layout .header_wrap .header > ul.menu-list2 li a {
    font-size: 16px;
    line-height: 150%;
    height: 100%;
  }
}
.pc_layout .header_wrap .header > ul.menu-list2 li.item01 a {
  display: flex;
  align-items: center;
}
.pc_layout .header_wrap .header > ul.menu-list2 li:nth-of-type(3) ul {
  left: unset;
  transform: unset;
  right: 0;
}
.pc_layout .header_wrap .header > ul > li {
  margin-right: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 144.444%;
}
.pc_layout .header_wrap .header > ul > li.active {
  position: relative;
}
.pc_layout .header_wrap .header > ul > li.active > a {
  color: #00ab93;
}
.pc_layout .header_wrap .header > ul > li.active:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  border-radius: 0;
  bottom: 0;
  background-color: #00ab93;
}
@media (min-width: 1440px) {
  .pc_layout .header_wrap .header > ul > li {
    font-size: 20px;
    line-height: 140%;
    height: 100%;
  }
}
.pc_layout .header_wrap .header > ul > li:hover > a {
  color: #00ab93;
}
.pc_layout .header_wrap .header > ul > li:hover:after {
  width: 100%;
  height: 4px;
  border-radius: 0;
  bottom: 0;
  background-color: #00ab93;
}
.pc_layout .header_wrap .header > ul > li > a {
  padding: 20px 0;
  height: auto;
  font-size: 18px;
  font-weight: 700;
  line-height: 144.444%;
  display: block;
  width: max-content;
}
@media (min-width: 1440px) {
  .pc_layout .header_wrap .header > ul > li > a {
    font-size: 20px;
    line-height: 140%;
  }
}
.pc_layout .header_wrap .header > ul > li .sub-menu {
  width: max-content;
  min-width: 240px;
  height: fit-content !important;
  top: auto;
  bottom: auto;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 4px 8px 0px rgba(12, 50, 75, 0.16);
  padding: 20px;
}
.pc_layout .header_wrap .header > ul > li .sub-menu > li {
  border-bottom: 1px dashed #eee;
  display: flex;
  align-items: center;
  gap: 4px;
}
.pc_layout .header_wrap .header > ul > li .sub-menu > li:has(.sub-sub-menu) {
  flex-direction: column;
}
.pc_layout .header_wrap .header > ul > li .sub-menu > li + li {
  margin-top: 0;
}
.pc_layout .header_wrap .header > ul > li .sub-menu > li > a {
  width: 100%;
  display: block;
  padding: 10px 0 10px 21px;
  position: relative;
}
.pc_layout .header_wrap .header > ul > li .sub-menu > li > a::after {
  content: "";
  display: block;
  background: url("/assets/renewal2023/img/ico/ico-right-arrow-green.png") no-repeat center/contain;
  width: 15.75px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.pc_layout .header_wrap .header > ul > li .sub-menu > li > a:hover {
  color: #00ab93;
}
.pc_layout .header_wrap .header > ul > li .sub-menu > li > img {
  width: 14px;
  height: auto;
}
.pc_layout .header_wrap .header > ul > li .sub-menu > li.on {
  height: inherit;
}
.pc_layout .header_wrap .header > ul > li .sub-menu > li.on ul.sub-sub-menu {
  height: fit-content !important;
}
.pc_layout .header_wrap .header > ul > li .sub-menu > li > ul.sub-sub-menu {
  width: 100%;
  border-radius: 10px;
  background: #f5f5f5;
  padding: 6px 30px;
  margin: 0 0 10px;
}
.pc_layout .header_wrap .header > ul > li .sub-menu > li > ul.sub-sub-menu > li {
  margin-top: 0;
  padding: 0;
}
.pc_layout .header_wrap .header > ul > li .sub-menu > li > ul.sub-sub-menu > li > a {
  display: block;
  width: max-content;
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 200%;
}
.pc_layout .header_wrap .header > ul > li .sub-menu > li > ul.sub-sub-menu > li > a:hover {
  color: #00ab93;
}
.pc_layout .header_wrap .header > ul > li .sub-menu > li > ul.sub-sub-menu > li > a:hover::after, .pc_layout .header_wrap .header > ul > li .sub-menu > li > ul.sub-sub-menu > li > a:hover::before {
  display: none;
}
.pc_layout .header_wrap .header .all_menu {
  cursor: pointer;
}
.pc_layout .header_wrap .header-top {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}
@media (min-width: 801px) {
  .pc_layout .header_wrap .header-top {
    padding: 22px 32px;
  }
}
.pc_layout .header_wrap .header-top .logo > a {
  display: block;
}
.pc_layout .header_wrap .header-top .logo > a > img {
  width: 164px;
  height: auto;
}
.pc_layout .header_wrap .header-top .row-group {
  display: flex;
  gap: 30px;
  align-items: center;
}
.pc_layout .header_wrap .header-top .row-group .my-page-layer {
  display: flex;
  align-items: center;
}
.pc_layout .header_wrap .header-top .row-group .my-page-layer .my-page {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 64px;
  border-right: 1px solid #ebebeb;
  padding-right: 20px;
}
.pc_layout .header_wrap .header-top .row-group .my-page-layer .my-page .profile {
  position: relative;
}
.pc_layout .header_wrap .header-top .row-group .my-page-layer .my-page .profile .profile-img {
  width: 48px;
  height: auto;
  display: block;
}
.pc_layout .header_wrap .header-top .row-group .my-page-layer .my-page .my-page-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pc_layout .header_wrap .header-top .row-group .my-page-layer .my-page .my-page-info .profile-grade {
  color: #777;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}
.pc_layout .header_wrap .header-top .row-group .my-page-layer .my-page .my-page-info .profile-name {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #121212;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}
.pc_layout .header_wrap .header-top .row-group .my-page-layer .my-page .my-page-info .profile-name img {
  width: 14px;
  height: 14px;
  display: block;
}
.pc_layout .header_wrap .header-top .row-group .my-page-layer .img-wrap {
  position: relative;
  overflow: hidden;
}
.pc_layout .header_wrap .header-top .row-group .my-page-layer .state-new,
.pc_layout .header_wrap .header-top .row-group .my-page-layer .state-num {
  width: 14px;
  height: 14px;
  display: block;
  position: absolute;
  top: -4px;
  right: 0;
}
.pc_layout .header_wrap .header-top .row-group .my-page-layer .state-num {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0;
  background: none;
  font-size: 10px;
  font-weight: 700;
  line-height: 160%;
  color: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc_layout .header_wrap .header-top .row-group .btns {
  display: flex;
  align-items: center;
}
.pc_layout .header_wrap .header-top .row-group .btns a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  color: #121212;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  position: relative;
  padding: 5px 30px;
}
.pc_layout .header_wrap .header-top .row-group .btns a:not(:nth-last-of-type(1)) {
  position: relative;
}
.pc_layout .header_wrap .header-top .row-group .btns a:not(:nth-last-of-type(1))::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(50%);
  background-color: #ebebeb;
}
.pc_layout .header_wrap .header-top .row-group .btns a:nth-last-of-type(1) {
  padding: 5px 0 5px 30px;
}
.pc_layout .header_wrap .header-top .row-group .btns a:nth-last-of-type(1) .state-new {
  right: 0;
}
.pc_layout .header_wrap .header-top .row-group .btns .state-new {
  top: 0;
}
.pc_layout .allMenu_wrap {
  position: fixed;
  top: 0;
  z-index: 7777;
  height: 100vh;
  background: linear-gradient(180deg, #07ad95 4.35%, #069ca6 80.83%);
  padding: 60px 0 0;
  overflow: auto;
}
.pc_layout .allMenu_wrap .logo {
  display: block;
  margin: 0 auto;
}
.pc_layout .allMenu_wrap .close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
.pc_layout .allMenu_wrap .allMenu {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
  max-width: 1450px;
  margin: 65px auto 0;
  padding: 0;
}
.pc_layout .allMenu_wrap .allMenu > li {
  padding: 0 0 0 30px;
  border-left: 1px solid #fff;
  width: 20%;
}
.pc_layout .allMenu_wrap .allMenu > li:nth-child(4) {
  margin-right: 0;
}
.pc_layout .allMenu_wrap .allMenu > li a {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
.pc_layout .allMenu_wrap .allMenu > li a:after {
  display: none;
}
.pc_layout .allMenu_wrap .allMenu > li > ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.pc_layout .allMenu_wrap .allMenu > li > ul li {
  margin-top: 0;
}
.pc_layout .allMenu_wrap .allMenu > li > ul li > a {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.wrap:has(.type-only-pc) .pc_layout {
  display: block;
}
.wrap:has(.type-only-pc) .mo_layout {
  display: none;
}

.my-page-layer {
  position: relative;
}
.my-page-layer .my-book-list-modal {
  width: 390px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: absolute;
  top: 69px;
  left: calc(50% - 18px);
  transform: translateX(-50%);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 4px 8px 0px rgba(12, 50, 75, 0.16);
  padding: 20px 0;
  transition: opacity 0.2s ease-in;
  z-index: 8888;
  display: none;
}
.my-page-layer .my-book-list-modal.show {
  display: flex;
}
.my-page-layer .my-book-list-modal:has(.no-book-list) {
  width: 272px;
}
.my-page-layer .my-book-list-modal:has(.no-book-list) .no-book-list strong {
  font-weight: 400;
  color: #666666;
}
.my-page-layer .my-book-list-modal .my-book-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.my-page-layer .my-book-list-modal .my-book-list .my-book-item {
  display: flex;
  flex-direction: column;
  padding: 8px 0 0;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  cursor: pointer;
}
.my-page-layer .my-book-list-modal .my-book-list .my-book-item.item1 {
  background-color: #fff6db;
}
.my-page-layer .my-book-list-modal .my-book-list .my-book-item.item2 {
  background-color: #e4f6f4;
}
.my-page-layer .my-book-list-modal .my-book-list .my-book-item.item3 {
  background-color: #fdf0f6;
}
.my-page-layer .my-book-list-modal .my-book-list .my-book-item.item4 {
  background-color: #e6e0ff;
}
.my-page-layer .my-book-list-modal .my-book-list .my-book-item.item5 {
  background-color: #d7f8e8;
}
.my-page-layer .my-book-list-modal .my-book-list .my-book-item.item6 {
  background-color: #daedfc;
}
.my-page-layer .my-book-list-modal .my-book-list .my-book-item.item7 {
  background-color: #ffe7cf;
}
.my-page-layer .my-book-list-modal .my-book-list .my-book-item.item8 {
  background-color: #fcdbe1;
}
.my-page-layer .my-book-list-modal .my-book-list .my-book-item strong {
  font-size: 11px;
  font-weight: 400;
  line-height: 136.364%;
  text-align: center;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-page-layer .my-book-list-modal .close-btn {
  padding: 6px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 116.667%;
  border-radius: 13px;
  background: #666;
}

/* footer */
@media (min-width: 801px) {
  .main-container + .footer-wrap {
    min-width: 1024px;
  }
}

.footer-wrap {
  background-color: #333333;
  width: 100%;
  min-width: 360px;
}
@media (min-width: 801px) {
  .footer-wrap {
    border-top: 1px solid #dddddd;
    min-width: 1440px;
  }
}
.footer-wrap .footer-mobile {
  padding: 30px 16px;
}
@media (min-width: 801px) {
  .footer-wrap .footer-mobile {
    display: none;
  }
}
.footer-wrap .footer-pc {
  display: none;
}
@media (min-width: 801px) {
  .footer-wrap .footer-pc {
    display: block;
  }
}
.footer-wrap .footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (min-width: 1440px) {
  .footer-wrap .footer-inner {
    padding: 0;
  }
}
.footer-wrap .family-site {
  position: relative;
  margin-bottom: 20px;
}
.footer-wrap .family-site-list {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 1px;
  width: 100%;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 6px 0px rgba(12, 50, 75, 0.2);
  background-color: #fff;
}
.footer-wrap .family-site-link {
  display: block;
  width: 100%;
  padding: 7px 0 9px;
  border-bottom: 1px dotted #dddddd;
  line-height: 24px; /* 150% */
}
@media (min-width: 801px) {
  .footer-wrap .family-site {
    margin-bottom: 0;
  }
}
.footer-wrap .family-site-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 20px;
  background-color: #fff;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  vertical-align: middle;
}
.footer-wrap .family-site-button > i {
  vertical-align: middle;
}
.footer-wrap .family-site-button-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M8.99491 11.3736L2.83069 5.10428C2.68718 4.95833 2.5078 4.88535 2.29254 4.88535C2.07728 4.88535 1.89138 4.95833 1.73483 5.10428C1.57828 5.2635 1.5 5.45257 1.5 5.6715C1.5 5.89043 1.57828 6.0795 1.73483 6.23872L8.17302 12.7867C8.29043 12.9061 8.42089 12.9923 8.56439 13.0454C8.7079 13.0985 8.85141 13.125 8.99491 13.125C9.13842 13.125 9.28192 13.0985 9.42543 13.0454C9.56894 12.9923 9.69939 12.9061 9.81681 12.7867L16.2746 6.21882C16.4311 6.0596 16.5061 5.87384 16.4996 5.66155C16.4931 5.44926 16.4115 5.2635 16.255 5.10428C16.0984 4.95833 15.9158 4.88203 15.7071 4.8754C15.4983 4.86876 15.3157 4.94506 15.1591 5.10428L8.99491 11.3736Z' fill='black'/%3E%3C/svg%3E") no-repeat 0 0;
}
@media (min-width: 801px) {
  .footer-wrap .family-site-button {
    min-width: 200px;
    padding: 12px 20px;
    border-radius: 0;
    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
  }
}
@media (min-width: 1024px) {
  .footer-wrap .family-site-button {
    min-width: 285px;
  }
}
.footer-wrap .visible {
  display: block;
}
.footer-wrap .visible-icon {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.33069 15.7707L9.49491 9.50142L15.6591 15.7707C15.8157 15.9299 15.9983 16.0062 16.2071 15.9996C16.4158 15.993 16.5984 15.9167 16.755 15.7707C16.9115 15.6115 16.9931 15.4257 16.9996 15.2135C17.0061 15.0012 16.9311 14.8154 16.7746 14.6562L10.6601 8.4375L16.7746 2.21882C16.9311 2.0596 17.0061 1.87384 16.9996 1.66155C16.9931 1.44926 16.9115 1.2635 16.755 1.10428C16.5984 0.958327 16.4158 0.882033 16.2071 0.8754C15.9983 0.868766 15.8157 0.945059 15.6591 1.10428L9.49491 7.37358L3.33069 1.10428C3.18718 0.958326 3.0078 0.88535 2.79254 0.88535C2.57728 0.88535 2.39138 0.958326 2.23483 1.10428C2.07828 1.2635 2 1.45257 2 1.6715C2 1.89043 2.07828 2.0795 2.23483 2.23872L8.32971 8.4375L2.23483 14.6363C2.07828 14.7955 2 14.9846 2 15.2035C2 15.4224 2.07828 15.6115 2.23483 15.7707C2.39138 15.9167 2.57728 15.9897 2.79254 15.9897C3.0078 15.9897 3.18718 15.9167 3.33069 15.7707Z' fill='%23999999'/%3E%3C/svg%3E") no-repeat 0 0;
}
.footer-wrap .company-info {
  margin-bottom: 20px;
}
.footer-wrap .company-info .logo {
  margin-bottom: 12px;
}
.footer-wrap .company-info > p {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
}
.footer-wrap .company-info-web {
  margin-bottom: 24px;
}
.footer-wrap .company-info-web > p,
.footer-wrap .company-info-web span {
  font-size: 14px;
  color: #999999;
  line-height: 18px; /* 128.571% */
}
.footer-wrap .company-info-web button {
  font-size: 14px;
  color: #dddddd;
  line-height: 18px; /* 128.571% */
}
.footer-wrap .company-info-web > p > span {
  display: inline-block;
  position: relative;
  margin-right: 20px;
}
.footer-wrap .company-info-web > p > span::after {
  content: "";
  display: block;
  position: absolute;
  top: 15%;
  right: -10px;
  width: 1px;
  height: 70%;
  background-color: #999999;
}
.footer-wrap .footer-cs-info {
  margin-bottom: 20px;
}
.footer-wrap .footer-cs-info > p:nth-child(1) {
  font-size: 16px;
  line-height: 24px; /* 150% */
  margin-bottom: 6px;
}
.footer-wrap .footer-cs-info > p:nth-child(2) {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 128.571% */
}
@media (min-width: 801px) {
  .footer-wrap .footer-cs-info {
    text-align: right;
  }
  .footer-wrap .footer-cs-info > p:nth-child(1) {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px; /* 140% */
    margin-bottom: 8px;
  }
}
.footer-wrap .copyright {
  font-size: 12px;
  line-height: 16px; /* 133.333% */
}
.footer-wrap .footer-top {
  background-color: #fff;
}
.footer-wrap .footer-top-inner {
  display: flex;
  justify-content: space-between;
}
.footer-wrap .footer-link {
  display: flex;
  align-items: center;
  vertical-align: middle;
  gap: 32px;
  margin-bottom: 16px;
}
.footer-wrap .footer-link > li {
  position: relative;
}
.footer-wrap .footer-link > li::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 4px;
  margin-right: -18px;
  transform: translate(-50%, -50%);
  background-color: #999999;
  border-radius: 50%;
  -webkit-border-radius: 50%;
}
.footer-wrap .footer-link > li:last-child::after {
  display: none;
}
.footer-wrap .footer-link > li > a {
  font-size: 14px;
  font-weight: 700;
  line-height: 128.571%;
  color: #999999;
}
@media (min-width: 801px) {
  .footer-wrap .footer-link {
    margin-bottom: 0;
  }
  .footer-wrap .footer-link > li::after {
    background-color: #d9d9d9;
  }
  .footer-wrap .footer-link > li > a {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #121212;
  }
}
.footer-wrap .footer-bottom {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
}

.wrap:has(.type-only-pc) + .footer-wrap {
  min-width: fit-content;
  border-top: 1px solid #dddddd;
}
.wrap:has(.type-only-pc) + .footer-wrap .footer-mobile {
  display: none;
}
.wrap:has(.type-only-pc) + .footer-wrap .footer-pc {
  display: block;
  min-width: 1440px;
}
.wrap:has(.type-only-pc) + .footer-wrap .family-site {
  margin-bottom: 0;
}
.wrap:has(.type-only-pc) + .footer-wrap .family-site-button {
  min-width: 200px;
  padding: 12px 20px;
  border-radius: 0;
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
  min-width: 285px;
}
.wrap:has(.type-only-pc) + .footer-wrap .footer-cs-info {
  text-align: right;
}
.wrap:has(.type-only-pc) + .footer-wrap .footer-cs-info > p:nth-child(1) {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px; /* 140% */
  margin-bottom: 8px;
}
.wrap:has(.type-only-pc) + .footer-wrap .footer-link {
  margin-bottom: 0;
}
.wrap:has(.type-only-pc) + .footer-wrap .footer-link > li::after {
  background-color: #d9d9d9;
}
.wrap:has(.type-only-pc) + .footer-wrap .footer-link > li > a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; /* 150% */
  color: #121212;
}

/*==============================================================
  Form 
================================================================*/
/* input */
input[type=text],
input[type=password],
input[type=tel],
.base-ipt-text {
  width: 100%;
  height: auto;
  padding: 9px 20px;
  background: #fff;
  border: 1px solid #cccccc;
  font-size: 16px;
  line-height: 150%;
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=tel]::placeholder,
.base-ipt-text::placeholder {
  color: #cccccc;
  font-size: 16px;
  line-height: 150%;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=tel]:focus,
.base-ipt-text:focus {
  border: 1px solid #00ab93;
  outline: none;
}
input[type=text]:disabled,
input[type=password]:disabled,
input[type=tel]:disabled,
.base-ipt-text:disabled {
  background-color: #ebebeb;
  color: #666666;
}
input[type=text].type-sm,
input[type=password].type-sm,
input[type=tel].type-sm,
.base-ipt-text.type-sm {
  height: 34px;
  padding: 0 20px;
  border-radius: 10px;
}
input[type=text].type-md,
input[type=password].type-md,
input[type=tel].type-md,
.base-ipt-text.type-md {
  padding: 5px 20px;
  border-radius: 10px;
  min-width: 320px;
  max-width: 320px;
}

/* textarea */
.base-textarea {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 10px;
}
.base-textarea .textarea {
  flex: 1;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  line-height: 150%;
  color: #333333;
}
@media (min-width: 801px) {
  .base-textarea .textarea {
    padding: 20px;
  }
}
.base-textarea .textarea::placeholder {
  color: #cccccc;
}
.base-textarea .textarea:focus {
  outline: none;
}
.base-textarea .textarea:disabled {
  color: #666666;
}
.base-textarea:has(:focus) {
  border-color: #00ab93;
}
.base-textarea:has(:disabled) {
  border-color: #ebebeb;
}
.base-textarea .cf {
  padding: 5px 10px;
  background: #f5f5f5;
  text-align: right;
  font-size: 14px;
  color: #666666;
}
.base-textarea .cf .count {
  margin-left: 10px;
}

@media (max-width: 801px) {
  .type-only-pc .base-textarea .textarea {
    padding: 20px;
  }
}

/* checkbox */
.checkbox-primary input[type=checkbox],
.base-checkbox-primary input[type=checkbox] {
  display: none !important;
}
.checkbox-primary input[type=checkbox] + label,
.base-checkbox-primary input[type=checkbox] + label {
  display: inline-flex;
  align-items: center;
  height: auto;
  min-height: 26px;
  padding-left: 30px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Crect x='0.5' y='0.5' width='23' height='23' rx='3.5' fill='white' stroke='%23CCCCCC'/%3E%3C/svg%3E") no-repeat 0 0;
  background-size: 24px 24px;
  line-height: 150%;
  color: #666;
}
.checkbox-primary input[type=checkbox]:checked + label,
.base-checkbox-primary input[type=checkbox]:checked + label {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Crect x='0.5' y='0.5' width='23' height='23' rx='3.5' fill='white' stroke='%23CCCCCC'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M19.5641 6.43739C20.1453 7.02057 20.1453 7.9661 19.5641 8.54928L11.378 16.7626C10.7968 17.3458 9.85439 17.3458 9.27314 16.7626L4.43593 11.9093C3.85469 11.3261 3.85469 10.3806 4.43593 9.79739C5.01718 9.2142 5.95956 9.2142 6.54081 9.79739L10.3256 13.5948L17.4592 6.43739C18.0404 5.8542 18.9828 5.8542 19.5641 6.43739Z' fill='%2300AB93'/%3E%3C/svg%3E") no-repeat 0 0;
}

.checkbox-secondary input[type=checkbox],
.base-checkbox-secondary input[type=checkbox] {
  display: none !important;
}
.checkbox-secondary input[type=checkbox] + label,
.base-checkbox-secondary input[type=checkbox] + label {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding-left: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Ccircle cx='15' cy='15' r='14.5' fill='%23F5F5F5' stroke='%23DDDDDD'/%3E%3C/svg%3E") no-repeat 2px 2px;
  background-size: 30px 30px;
  font-weight: 700;
  line-height: 150%;
  color: #666;
}
.checkbox-secondary input[type=checkbox]:checked + label,
.base-checkbox-secondary input[type=checkbox]:checked + label {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Ccircle cx='15' cy='15' r='15' fill='%2301416C'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M24.4551 8.54673C25.1816 9.27571 25.1816 10.4576 24.4551 11.1866L14.2225 21.4533C13.496 22.1822 12.318 22.1822 11.5914 21.4533L5.54492 15.3866C4.81836 14.6576 4.81836 13.4757 5.54492 12.7467C6.27147 12.0178 7.44946 12.0178 8.17601 12.7467L12.907 17.4935L21.824 8.54673C22.5505 7.81776 23.7285 7.81776 24.4551 8.54673Z' fill='white'/%3E%3C/svg%3E") no-repeat 2px 2px;
  background-size: 30px 30px;
}

/* radio */
.radio-primary input[type=radio],
.base-radio-primary input[type=radio] {
  display: none;
}
.radio-primary input[type=radio] + label,
.base-radio-primary input[type=radio] + label {
  display: inline-block;
  min-height: 30px;
  padding-left: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Ccircle cx='15' cy='15' r='14.5' fill='white' stroke='%2301416C'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 30px 30px;
  font-weight: 400;
  color: #666;
}
.radio-primary input[type=radio]:checked + label,
.base-radio-primary input[type=radio]:checked + label {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Ccircle cx='15' cy='15' r='14.5' fill='white' stroke='%2301416C'/%3E%3Ccircle cx='7' cy='7' r='7' transform='matrix(1 0 0 -1 8 22)' fill='%2301416C'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 30px 30px;
}

.radio-secondary input[type=radio],
.base-radio-secondary input[type=radio] {
  display: none;
}
.radio-secondary input[type=radio] + label,
.base-radio-secondary input[type=radio] + label {
  display: inline-block;
  padding-left: 30px;
  height: auto;
  min-height: 26px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='11.5' fill='white' stroke='%23CCCCCC'/%3E%3C/svg%3E") no-repeat 0 0;
  background-size: 24px 24px;
  font-weight: 400;
  line-height: 150%;
  color: #666;
}
.radio-secondary input[type=radio]:checked + label,
.base-radio-secondary input[type=radio]:checked + label {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='11.5' fill='white' stroke='%23CCCCCC'/%3E%3Ccircle cx='12' cy='12' r='6' fill='%2300AB93'/%3E%3C/svg%3E") no-repeat 0 0;
  background-size: 24px 24px;
}

/* 셀렉트 박스 */
.select-wrap .select-menu,
.base-select-wrap .select-menu {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.select-wrap .select-menu.active .select-btn,
.base-select-wrap .select-menu.active .select-btn {
  border: 1px solid #00ab93;
}
.select-wrap .select-menu.active .select-btn svg,
.base-select-wrap .select-menu.active .select-btn svg {
  transform: rotate(0);
}
.select-wrap .select-menu.active .options,
.base-select-wrap .select-menu.active .options {
  display: flex !important;
}
.select-wrap .select-menu .select-btn,
.base-select-wrap .select-menu .select-btn {
  width: 100%;
  height: 36px;
  padding: 0 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  color: #121212;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
  white-space: nowrap;
}
.select-wrap .select-menu .select-btn .sBtn-text,
.base-select-wrap .select-menu .select-btn .sBtn-text {
  color: #121212;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.select-wrap .select-menu .select-btn svg,
.base-select-wrap .select-menu .select-btn svg {
  width: 12px;
  height: 10px;
  transform: rotate(-180deg);
  transition: 0.3s;
}
.select-wrap .select-menu .options,
.base-select-wrap .select-menu .options {
  width: 100%;
  min-width: fit-content;
  max-height: 600px;
  position: absolute;
  top: 38px;
  left: 0;
  z-index: 9;
  background: #fff;
  box-shadow: 0px 4px 8px 0px rgba(12, 50, 75, 0.16);
  border-radius: 10px;
  overflow-x: auto;
  margin: 5px 0 0;
  padding: 16px 0;
  display: none;
  flex-direction: column;
}
.select-wrap .select-menu .options .option,
.base-select-wrap .select-menu .options .option {
  display: flex;
  cursor: pointer;
  align-items: center;
  background: #fff;
}
.select-wrap .select-menu .options .option:hover .option-text,
.base-select-wrap .select-menu .options .option:hover .option-text {
  color: #00ab93;
}
.select-wrap .select-menu .options .option .option-text,
.base-select-wrap .select-menu .options .option .option-text {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 0 20px;
  color: #121212;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  word-break: normal;
}
.select-wrap .select-menu .options .option:not(:last-child),
.base-select-wrap .select-menu .options .option:not(:last-child) {
  margin-bottom: 12px;
}

/* table */
.base-table .box-flex-wrap {
  display: flex;
  gap: 30px;
  align-items: center;
}
.base-table th,
.base-table td {
  padding: 8px;
  border: 1px solid #dddddd;
  line-height: 150%;
  text-align: left;
  font-size: 16px;
  color: #333333;
}
@media (min-width: 801px) {
  .base-table th,
  .base-table td {
    padding: 16.5px;
  }
}
.base-table th {
  text-align: center;
  font-weight: 700;
}
.base-table th.th,
.base-table td.td {
  height: 40px;
}
@media (min-width: 801px) {
  .base-table th.th,
  .base-table td.td {
    height: 80px;
  }
}
.base-table th.th > div,
.base-table td.td > div {
  overflow: hidden;
  width: 100%;
  height: auto;
}
.base-table .td-link {
  padding: 0;
}
.base-table .td-link > a,
.base-table .td-link > button {
  width: 100%;
  height: 100%;
  padding: 8px;
}
@media (min-width: 801px) {
  .base-table .td-link > a,
  .base-table .td-link > button {
    padding: 16.5px;
  }
}
.base-table.type-sky th {
  background-color: #f4f8fb;
  color: #333333;
}
.base-table.type-navy {
  background: #fff;
}
.base-table.type-navy tr:nth-of-type(2n) {
  background-color: #fafdff;
}
.base-table.type-navy th,
.base-table.type-navy td {
  text-align: center;
}
.base-table.type-navy th .base-checkbox-primary,
.base-table.type-navy td .base-checkbox-primary {
  height: 24px;
}
.base-table.type-navy th .base-checkbox-primary input[type=checkbox] + label,
.base-table.type-navy td .base-checkbox-primary input[type=checkbox] + label {
  width: 24px;
  height: 24px;
  padding-left: 24px;
}
.base-table.type-navy th {
  background: #01416c;
  color: #fff;
}
.base-table.type-navy td {
  color: #666666;
}
.base-table.type-navy td .btn-delete {
  width: 21px;
  height: 21px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  background: url("/assets/renewal2023/img/ico/ico-close-b.png") no-repeat center/9px auto;
}
.base-table.type-navy th.th,
.base-table.type-navy td.td {
  height: 40px;
}
@media (min-width: 801px) {
  .base-table.type-navy th.th,
  .base-table.type-navy td.td {
    height: 58px;
  }
}
.base-table.type-mint {
  background: #fafdff;
}
.base-table.type-mint tr:nth-of-type(2n) {
  background-color: #f4f8fb;
}
.base-table.type-mint th,
.base-table.type-mint td {
  text-align: center;
}
.base-table.type-mint th .base-checkbox-primary,
.base-table.type-mint td .base-checkbox-primary {
  height: 24px;
}
.base-table.type-mint th .base-checkbox-primary input[type=checkbox] + label,
.base-table.type-mint td .base-checkbox-primary input[type=checkbox] + label {
  width: 24px;
  height: 24px;
  padding-left: 24px;
}
.base-table.type-mint th {
  background: #79d1c7;
}
.base-table.type-mint td {
  color: #666666;
}
.base-table.type-mint td .btn-delete {
  width: 21px;
  height: 21px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  background: url("/assets/renewal2023/img/ico/ico-close-b.png") no-repeat center/9px auto;
}
.base-table.type-mint th.th,
.base-table.type-mint td.td {
  height: 40px;
}
@media (min-width: 801px) {
  .base-table.type-mint th.th,
  .base-table.type-mint td.td {
    height: 58px;
  }
}
.base-table.type-gray {
  background: #fff;
}
.base-table.type-gray tr:nth-of-type(2n) {
  background-color: #f5f5f5;
}
.base-table.type-gray th,
.base-table.type-gray td {
  border: 1px solid #999999;
  text-align: center;
}
.base-table.type-gray th .base-checkbox-primary,
.base-table.type-gray td .base-checkbox-primary {
  height: 24px;
}
.base-table.type-gray th .base-checkbox-primary input[type=checkbox] + label,
.base-table.type-gray td .base-checkbox-primary input[type=checkbox] + label {
  width: 24px;
  height: 24px;
  padding-left: 24px;
}
.base-table.type-gray th {
  background: #ebebeb;
}
.base-table.type-gray td {
  color: #666666;
}
.base-table.type-gray td .btn-delete {
  width: 21px;
  height: 21px;
  border: 1px solid #cccccc;
  border-radius: 4px;
  background: url("/assets/renewal2023/img/ico/ico-close-b.png") no-repeat center/9px auto;
}
.base-table.type-gray th.th,
.base-table.type-gray td.td {
  height: 40px;
}
@media (min-width: 801px) {
  .base-table.type-gray th.th,
  .base-table.type-gray td.td {
    height: 58px;
  }
}
.base-table.type-vertical th {
  border-left: none;
}
.base-table.type-vertical td:last-of-type {
  border-right: none;
}

@media (max-width: 801px) {
  .type-only-pc .base-table th,
  .type-only-pc .base-table td {
    padding: 16.5px;
  }
}
@media (max-width: 801px) {
  .type-only-pc .base-table th.th,
  .type-only-pc .base-table td.td {
    height: 80px;
  }
}
@media (max-width: 801px) {
  .type-only-pc .base-table .td-link {
    padding: 0;
  }
}
@media (max-width: 801px) {
  .type-only-pc .base-table .td-link > a,
  .type-only-pc .base-table .td-link > button {
    padding: 16.5px;
  }
}
@media (max-width: 801px) {
  .type-only-pc .base-table.type-navy th.th,
  .type-only-pc .base-table.type-navy td.td {
    height: 58px;
  }
}
@media (max-width: 801px) {
  .type-only-pc .base-table.type-mint th.th,
  .type-only-pc .base-table.type-mint td.td {
    height: 58px;
  }
}
@media (max-width: 801px) {
  .type-only-pc .base-table.type-gray th.th,
  .type-only-pc .base-table.type-gray td.td {
    height: 58px;
  }
}

/* base-file */
.base-file {
  display: flex;
  gap: 8px;
}

/* 스위치 버튼 */
.base-switch-wrap {
  /* 스위치 스타일링 */
}
.base-switch-wrap .switch {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 스위치 슬라이더 */
}
.base-switch-wrap .switch .switch-label {
  margin-right: 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}
.base-switch-wrap .switch .slider {
  width: 132px;
  height: 36px;
  cursor: pointer;
  background-color: #ebebeb;
  border-radius: 18px;
  transition: 0.4s;
  padding: 3px;
  /* 스위치 슬라이더 마우스 클릭 상태 스타일 */
}
.base-switch-wrap .switch .slider:before {
  content: "OFF";
  display: block;
  width: 63px;
  height: 30px;
  background: #999;
  border-radius: 18px;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}
.base-switch-wrap .switch input {
  position: absolute;
  z-index: -1;
  /* 스위치 켜짐 상태 스타일 */
}
.base-switch-wrap .switch input + .slider.on:before {
  content: "ON";
  transform: translateX(63px);
  background-color: #8165fe;
}

/*==============================================================
  utils
================================================================*/
/* 반응형 */
.use-mb,
.m-only {
  display: block;
}
@media (min-width: 801px) {
  .use-mb,
  .m-only {
    display: none;
  }
}

.use-pc,
.pc-only {
  display: none;
}
@media (min-width: 801px) {
  .use-pc,
  .pc-only {
    display: block;
  }
}

/* 말줄임 */
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* print */
@media print {
  #noprint,
  .no-print {
    display: none;
  }
}
/* 정렬 */
.block-center {
  margin: 0 auto !important;
}

.inline-center {
  text-align: center !important;
}

.inline-right {
  text-align: right !important;
}

.inline-left {
  text-align: left !important;
}

/* keyframes */
@keyframes fadeInUp {
  from {
    transform: translate3d(0, 30px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    transform: translate3d(0, 20px, 0);
    opacity: 0;
  }
}
@keyframes fadeInOut {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  30% {
    visibility: visible;
    opacity: 1;
  }
  70% {
    visibility: visible;
    opacity: 1;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}
/*==============================================================
  ui (재활용)
================================================================*/
/* wide-bg */
.wide-bg {
  position: relative;
  z-index: 1;
}
.wide-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  margin-left: -50vw;
  z-index: -1;
  background: #f4f8fb;
}
@media (min-width: 1440px) {
  .wide-bg::after {
    height: 100%;
  }
}

/* scroll */
/* 아코디언 메뉴 */
@media (min-width: 801px) {
  .menu-list,
  .base-accordion {
    max-width: 328px;
  }
}
.menu-list > li,
.base-accordion > li {
  border-bottom: 0;
}
.menu-list > li p,
.base-accordion > li p {
  color: #121212;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  background: url("/assets/renewal2023/img/ico/ico-plus.png") no-repeat right 1.25rem center/0.94rem auto;
  padding: 8px 20px;
}
.menu-list > li p.active,
.base-accordion > li p.active {
  background: url("/assets/renewal2023/img/ico/ico-minus.png") no-repeat right 1.25rem center/0.94rem auto;
  color: #00ab93;
}
.menu-list > li .depth3,
.base-accordion > li .depth3 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.menu-list > li .depth3 > ul,
.base-accordion > li .depth3 > ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-radius: 20px;
  background: #f4f8fb;
  box-shadow: 0px 4px 8px 0px rgba(12, 50, 75, 0.16);
  padding: 20px 30px;
  margin-bottom: 20px;
  border: 1px solid #79d1c7;
}
.menu-list > li .depth3 > ul > li,
.base-accordion > li .depth3 > ul > li {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.menu-list > li .depth3 > ul > li a,
.base-accordion > li .depth3 > ul > li a {
  width: 100%;
  display: block;
  color: #666;
  font-size: 16px;
  font-weight: 400;
}
.menu-list > li .depth3 > ul > li > ul,
.base-accordion > li .depth3 > ul > li > ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 0 0 20px;
}
.menu-list > li .depth3 > ul > li > ul li,
.base-accordion > li .depth3 > ul > li > ul li {
  position: relative;
}
.menu-list > li .depth3 > ul > li > ul li::after,
.base-accordion > li .depth3 > ul > li > ul li::after {
  content: "-";
  display: inline-block;
  position: absolute;
  top: 0;
  left: -10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #666;
}

/* 탭 메뉴 */
.tab,
.base-tab {
  position: relative;
  /* 모바일 탭 상속 */
}
@media (min-width: 801px) {
  .tab,
  .base-tab {
    border-bottom: 2px solid #79d1c7;
  }
}
.tab::before,
.base-tab::before {
  display: none;
}
.tab::after,
.base-tab::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ccc;
}
@media (min-width: 801px) {
  .tab::after,
  .base-tab::after {
    display: none;
  }
}
.tab.scroll-wrap,
.base-tab.scroll-wrap {
  overflow-x: auto;
}
.tab .tab__list,
.tab .base-tab__list,
.base-tab .tab__list,
.base-tab .base-tab__list {
  width: 100%;
  min-width: max-content;
  display: flex;
  align-items: center;
}
.tab .tab__item,
.tab .base-tab__item,
.base-tab .tab__item,
.base-tab .base-tab__item {
  flex-grow: 1;
  padding: 12px 0;
  text-align: center;
  cursor: pointer;
}
.tab .tab__item[selected=selected], .tab .tab__item.on,
.tab .base-tab__item[selected=selected],
.tab .base-tab__item.on,
.base-tab .tab__item[selected=selected],
.base-tab .tab__item.on,
.base-tab .base-tab__item[selected=selected],
.base-tab .base-tab__item.on {
  position: relative;
}
.tab .tab__item[selected=selected] .tab__item__text, .tab .tab__item.on .tab__item__text,
.tab .base-tab__item[selected=selected] .tab__item__text,
.tab .base-tab__item.on .tab__item__text,
.base-tab .tab__item[selected=selected] .tab__item__text,
.base-tab .tab__item.on .tab__item__text,
.base-tab .base-tab__item[selected=selected] .tab__item__text,
.base-tab .base-tab__item.on .tab__item__text {
  color: #79d1c7;
}
.tab .tab__item[selected=selected]:after, .tab .tab__item.on:after,
.tab .base-tab__item[selected=selected]:after,
.tab .base-tab__item.on:after,
.base-tab .tab__item[selected=selected]:after,
.base-tab .tab__item.on:after,
.base-tab .base-tab__item[selected=selected]:after,
.base-tab .base-tab__item.on:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #79d1c7;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 801px) {
  .tab .tab__item,
  .tab .base-tab__item,
  .base-tab .tab__item,
  .base-tab .base-tab__item {
    padding: 16px 0;
  }
  .tab .tab__item:after,
  .tab .base-tab__item:after,
  .base-tab .tab__item:after,
  .base-tab .base-tab__item:after {
    height: 4px;
  }
}
.tab .tab__item__text,
.tab .base-tab__item__text,
.base-tab .tab__item__text,
.base-tab .base-tab__item__text {
  color: #121212;
  font-size: 16px;
  font-weight: 700;
  display: block;
}
@media (min-width: 801px) {
  .tab .tab__item__text,
  .tab .base-tab__item__text,
  .base-tab .tab__item__text,
  .base-tab .base-tab__item__text {
    text-align: center;
    font-size: 24px;
    font-weight: 400;
  }
}
.tab__type2,
.base-tab__type2 {
  border-bottom: none !important;
}
@media (min-width: 801px) {
  .tab__type2,
  .base-tab__type2 {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
.tab__type2 .tab,
.tab__type2 .base-tab,
.base-tab__type2 .tab,
.base-tab__type2 .base-tab {
  border-bottom: none !important;
}
.tab__type2 .tab.pc-only,
.tab__type2 .base-tab.pc-only,
.base-tab__type2 .tab.pc-only,
.base-tab__type2 .base-tab.pc-only {
  display: none;
}
@media (min-width: 801px) {
  .tab__type2 .tab.pc-only,
  .tab__type2 .base-tab.pc-only,
  .base-tab__type2 .tab.pc-only,
  .base-tab__type2 .base-tab.pc-only {
    display: flex;
  }
}
@media (min-width: 801px) {
  .tab__type2 .tab__list,
  .base-tab__type2 .tab__list {
    display: flex;
    gap: 12px;
    align-items: center;
  }
  .tab__type2 .tab__list .tab__item[selected=selected] .tab__item__text,
  .base-tab__type2 .tab__list .tab__item[selected=selected] .tab__item__text {
    color: #fff;
  }
}
.tab__type2 .date-picker-wrap,
.base-tab__type2 .date-picker-wrap {
  display: flex;
  padding: 40px 0 0;
  justify-content: center;
}
@media (min-width: 801px) {
  .tab__type2 .date-picker-wrap,
  .base-tab__type2 .date-picker-wrap {
    background: #fff;
    padding: 20px 40px;
    border-radius: 0px 0px 20px 20px;
    justify-content: space-between;
  }
}
.tab__type2 .date-picker-wrap .date-picker,
.base-tab__type2 .date-picker-wrap .date-picker {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tab__type2 .date-picker-wrap .date-picker .prev-btn,
.tab__type2 .date-picker-wrap .date-picker .next-btn,
.base-tab__type2 .date-picker-wrap .date-picker .prev-btn,
.base-tab__type2 .date-picker-wrap .date-picker .next-btn {
  width: 24px;
  height: 24px;
}
.tab__type2 .date-picker-wrap .date-picker .prev-btn img,
.tab__type2 .date-picker-wrap .date-picker .next-btn img,
.base-tab__type2 .date-picker-wrap .date-picker .prev-btn img,
.base-tab__type2 .date-picker-wrap .date-picker .next-btn img {
  width: 100%;
  height: 100%;
  display: block;
}
.tab__type2 .date-picker-wrap .select-month,
.base-tab__type2 .date-picker-wrap .select-month {
  color: #121212;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.2px;
}
@media (min-width: 801px) {
  .tab__type2 .date-picker-wrap .now-month,
  .base-tab__type2 .date-picker-wrap .now-month {
    color: #121212;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 7px 20px;
    border-radius: 20px;
    border: 1px solid #00ab93;
    background: #fff;
  }
  .tab__type2 .date-picker-wrap .now-month img,
  .base-tab__type2 .date-picker-wrap .now-month img {
    width: 24px;
    height: 24px;
    display: block;
  }
}
.tab__type2 .tab__item,
.base-tab__type2 .tab__item {
  flex-grow: unset;
}
@media (min-width: 801px) {
  .tab__type2 .tab__item,
  .base-tab__type2 .tab__item {
    width: 89px;
    height: 89px;
    box-sizing: border-box;
    border-radius: 100%;
    border: 1px solid #01416c;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tab__type2 .tab__item[selected=selected],
  .base-tab__type2 .tab__item[selected=selected] {
    background: #01416c;
    color: #fff;
    position: relative;
  }
  .tab__type2 .tab__item[selected=selected]::after,
  .base-tab__type2 .tab__item[selected=selected]::after {
    content: "";
    display: block;
    background: url(/assets/renewal2023/img/ico/ico-arrow-bottom.png) no-repeat center/contain;
    width: 16px;
    height: 14px;
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 801px) {
  .tab__type2 .tab__item .tab__item__text,
  .base-tab__type2 .tab__item .tab__item__text {
    color: #01416c;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
  }
}
.tab__type3,
.base-tab__type3 {
  border-bottom: none !important;
  background: #e4f6f4;
}
.tab__type3::after,
.base-tab__type3::after {
  display: none;
}
@media (min-width: 801px) {
  .tab__type3,
  .base-tab__type3 {
    padding: 20px 0;
    border-radius: 0px 0px 20px 20px;
  }
}
.tab__type3 .tab__list,
.base-tab__type3 .tab__list {
  padding: 14px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 801px) {
  .tab__type3 .tab__list,
  .base-tab__type3 .tab__list {
    padding: 0;
  }
}
.tab__type3 .tab__list .tab__item,
.base-tab__type3 .tab__list .tab__item {
  padding: 6px 12px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid #79d1c7;
}
.tab__type3 .tab__list .tab__item .tab__item__text,
.base-tab__type3 .tab__list .tab__item .tab__item__text {
  font-size: 14px;
  line-height: 128.571%;
}
.tab__type3 .tab__list .tab__item[selected=selected],
.base-tab__type3 .tab__list .tab__item[selected=selected] {
  background: #79d1c7;
}
.tab__type3 .tab__list .tab__item[selected=selected] .tab__item__text,
.base-tab__type3 .tab__list .tab__item[selected=selected] .tab__item__text {
  color: #fff;
  font-weight: 700;
}
.tab__type3 .tab__list .tab__item[selected=selected]:after,
.base-tab__type3 .tab__list .tab__item[selected=selected]:after {
  display: none;
}
@media (min-width: 801px) {
  .tab__type3 .tab__list .tab__item,
  .base-tab__type3 .tab__list .tab__item {
    width: 128px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: unset;
    max-width: 128px;
    text-align: center;
    padding: 0 10px;
    border-radius: 21px;
    border: 1px solid #79d1c7;
    background: #fff;
  }
  .tab__type3 .tab__list .tab__item .tab__item__text,
  .base-tab__type3 .tab__list .tab__item .tab__item__text {
    font-size: 16px;
  }
}

/* 모바일 탭 상속 */
.base-tab-depth2 .tab__item[selected=selected] a,
.base-tab-depth2 .tab__item[selected=selected] button, .base-tab-depth2 .tab__item.on a,
.base-tab-depth2 .tab__item.on button,
.base-tab-depth2 .base-tab__item[selected=selected] a,
.base-tab-depth2 .base-tab__item[selected=selected] button,
.base-tab-depth2 .base-tab__item.on a,
.base-tab-depth2 .base-tab__item.on button,
.base-tab.type-depth2 .tab__item[selected=selected] a,
.base-tab.type-depth2 .tab__item[selected=selected] button,
.base-tab.type-depth2 .tab__item.on a,
.base-tab.type-depth2 .tab__item.on button,
.base-tab.type-depth2 .base-tab__item[selected=selected] a,
.base-tab.type-depth2 .base-tab__item[selected=selected] button,
.base-tab.type-depth2 .base-tab__item.on a,
.base-tab.type-depth2 .base-tab__item.on button {
  font-weight: 700;
  color: #79d1c7;
}
@media (min-width: 801px) {
  .base-tab-depth2,
  .base-tab.type-depth2 {
    background: #00ab93;
    border-bottom: none;
  }
  .base-tab-depth2::after,
  .base-tab.type-depth2::after {
    display: none;
  }
  .base-tab-depth2 .tab__list,
  .base-tab.type-depth2 .tab__list {
    display: flex;
    gap: 10px;
  }
  .base-tab-depth2 .tab__list .tab__item,
  .base-tab.type-depth2 .tab__list .tab__item {
    flex: 1;
    padding: 0;
  }
  .base-tab-depth2 .tab__list .tab__item::after,
  .base-tab.type-depth2 .tab__list .tab__item::after {
    display: none;
  }
  .base-tab-depth2 .tab__list .tab__item a,
  .base-tab-depth2 .tab__list .tab__item button,
  .base-tab.type-depth2 .tab__list .tab__item a,
  .base-tab.type-depth2 .tab__list .tab__item button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10.5px 0;
    text-align: center;
    font-size: 24px;
    color: #fff;
  }
  .base-tab-depth2 .tab__list .tab__item[selected=selected], .base-tab-depth2 .tab__list .tab__item.on,
  .base-tab.type-depth2 .tab__list .tab__item[selected=selected],
  .base-tab.type-depth2 .tab__list .tab__item.on {
    padding-top: 10px;
  }
  .base-tab-depth2 .tab__list .tab__item[selected=selected] a,
  .base-tab-depth2 .tab__list .tab__item[selected=selected] button, .base-tab-depth2 .tab__list .tab__item.on a,
  .base-tab-depth2 .tab__list .tab__item.on button,
  .base-tab.type-depth2 .tab__list .tab__item[selected=selected] a,
  .base-tab.type-depth2 .tab__list .tab__item[selected=selected] button,
  .base-tab.type-depth2 .tab__list .tab__item.on a,
  .base-tab.type-depth2 .tab__list .tab__item.on button {
    background: #fff;
    border-radius: 20px 20px 0 0;
    font-weight: 700;
    color: #00ab93;
  }
  .base-tab-depth2 .tab__list .tab__item.new,
  .base-tab.type-depth2 .tab__list .tab__item.new {
    position: relative;
  }
  .base-tab-depth2 .tab__list .tab__item.new::before,
  .base-tab.type-depth2 .tab__list .tab__item.new::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 29px;
    background: url("/assets/renewal2023/img/ico/ico-new2.png") no-repeat center/cover;
  }
}

@media (max-width: 801px) {
  .type-only-pc .base-tab-depth2,
  .type-only-pc .base-tab.type-depth2 {
    background: #00ab93;
    border-bottom: none;
  }
  .type-only-pc .base-tab-depth2::after,
  .type-only-pc .base-tab.type-depth2::after {
    display: none;
  }
  .type-only-pc .base-tab-depth2 .tab__list,
  .type-only-pc .base-tab.type-depth2 .tab__list {
    display: flex;
    gap: 10px;
  }
  .type-only-pc .base-tab-depth2 .tab__list .tab__item,
  .type-only-pc .base-tab.type-depth2 .tab__list .tab__item {
    flex: 1;
    padding: 0;
  }
  .type-only-pc .base-tab-depth2 .tab__list .tab__item::after,
  .type-only-pc .base-tab.type-depth2 .tab__list .tab__item::after {
    display: none;
  }
  .type-only-pc .base-tab-depth2 .tab__list .tab__item a,
  .type-only-pc .base-tab-depth2 .tab__list .tab__item button,
  .type-only-pc .base-tab.type-depth2 .tab__list .tab__item a,
  .type-only-pc .base-tab.type-depth2 .tab__list .tab__item button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10.5px 0;
    text-align: center;
    font-size: 24px;
    color: #fff;
  }
  .type-only-pc .base-tab-depth2 .tab__list .tab__item[selected=selected], .type-only-pc .base-tab-depth2 .tab__list .tab__item.on,
  .type-only-pc .base-tab.type-depth2 .tab__list .tab__item[selected=selected],
  .type-only-pc .base-tab.type-depth2 .tab__list .tab__item.on {
    padding-top: 10px;
  }
  .type-only-pc .base-tab-depth2 .tab__list .tab__item[selected=selected] a,
  .type-only-pc .base-tab-depth2 .tab__list .tab__item[selected=selected] button, .type-only-pc .base-tab-depth2 .tab__list .tab__item.on a,
  .type-only-pc .base-tab-depth2 .tab__list .tab__item.on button,
  .type-only-pc .base-tab.type-depth2 .tab__list .tab__item[selected=selected] a,
  .type-only-pc .base-tab.type-depth2 .tab__list .tab__item[selected=selected] button,
  .type-only-pc .base-tab.type-depth2 .tab__list .tab__item.on a,
  .type-only-pc .base-tab.type-depth2 .tab__list .tab__item.on button {
    background: #fff;
    border-radius: 20px 20px 0 0;
    font-weight: 700;
    color: #00ab93;
  }
  .type-only-pc .base-tab-depth2 .tab__list .tab__item.new,
  .type-only-pc .base-tab.type-depth2 .tab__list .tab__item.new {
    position: relative;
  }
  .type-only-pc .base-tab-depth2 .tab__list .tab__item.new::before,
  .type-only-pc .base-tab.type-depth2 .tab__list .tab__item.new::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 29px;
    background: url("/assets/renewal2023/img/ico/ico-new2.png") no-repeat center/cover;
  }
}

.base-tab-depth3 .tab__item[selected=selected] a,
.base-tab-depth3 .tab__item[selected=selected] button, .base-tab-depth3 .tab__item.on a,
.base-tab-depth3 .tab__item.on button,
.base-tab-depth3 .base-tab__item[selected=selected] a,
.base-tab-depth3 .base-tab__item[selected=selected] button,
.base-tab-depth3 .base-tab__item.on a,
.base-tab-depth3 .base-tab__item.on button,
.base-tab.type-depth3 .tab__item[selected=selected] a,
.base-tab.type-depth3 .tab__item[selected=selected] button,
.base-tab.type-depth3 .tab__item.on a,
.base-tab.type-depth3 .tab__item.on button,
.base-tab.type-depth3 .base-tab__item[selected=selected] a,
.base-tab.type-depth3 .base-tab__item[selected=selected] button,
.base-tab.type-depth3 .base-tab__item.on a,
.base-tab.type-depth3 .base-tab__item.on button {
  font-weight: 700;
  color: #79d1c7;
}
@media (min-width: 801px) {
  .base-tab-depth3,
  .base-tab.type-depth3 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
    background: #f4f8fb;
    border-bottom: none;
    border-radius: 20px;
  }
  .base-tab-depth3::after,
  .base-tab.type-depth3::after {
    display: none;
  }
  .base-tab-depth3 .tab__list,
  .base-tab.type-depth3 .tab__list {
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
    min-width: 100%;
  }
  .base-tab-depth3 .tab__item,
  .base-tab.type-depth3 .tab__item {
    flex-grow: 0;
    width: fit-content;
    padding: 0;
    background: #fff;
    border: 1px solid #01416c;
    border-radius: 999px;
  }
  .base-tab-depth3 .tab__item::after,
  .base-tab.type-depth3 .tab__item::after {
    display: none;
  }
  .base-tab-depth3 .tab__item a,
  .base-tab-depth3 .tab__item button,
  .base-tab.type-depth3 .tab__item a,
  .base-tab.type-depth3 .tab__item button {
    font-size: 20px;
    color: #666666;
    padding: 10px 26px;
    border-radius: 999px;
  }
  .base-tab-depth3 .tab__item[selected=selected], .base-tab-depth3 .tab__item.on,
  .base-tab.type-depth3 .tab__item[selected=selected],
  .base-tab.type-depth3 .tab__item.on {
    background: #01416c;
    color: #fff;
  }
  .base-tab-depth3 .tab__item[selected=selected] a,
  .base-tab-depth3 .tab__item[selected=selected] button, .base-tab-depth3 .tab__item.on a,
  .base-tab-depth3 .tab__item.on button,
  .base-tab.type-depth3 .tab__item[selected=selected] a,
  .base-tab.type-depth3 .tab__item[selected=selected] button,
  .base-tab.type-depth3 .tab__item.on a,
  .base-tab.type-depth3 .tab__item.on button {
    background: #01416c;
    font-weight: 700;
    color: #fff;
  }
}

@media (max-width: 801px) {
  .type-only-pc .base-tab-depth3,
  .type-only-pc .base-tab.type-depth3 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 200px;
    background: #f4f8fb;
    border-bottom: none;
    border-radius: 20px;
  }
  .type-only-pc .base-tab-depth3::after,
  .type-only-pc .base-tab.type-depth3::after {
    display: none;
  }
  .type-only-pc .base-tab-depth3 .tab__list,
  .type-only-pc .base-tab.type-depth3 .tab__list {
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
    min-width: 100%;
  }
  .type-only-pc .base-tab-depth3 .tab__item,
  .type-only-pc .base-tab.type-depth3 .tab__item {
    flex-grow: 0;
    width: fit-content;
    padding: 0;
    background: #fff;
    border: 1px solid #01416c;
    border-radius: 999px;
  }
  .type-only-pc .base-tab-depth3 .tab__item::after,
  .type-only-pc .base-tab.type-depth3 .tab__item::after {
    display: none;
  }
  .type-only-pc .base-tab-depth3 .tab__item a,
  .type-only-pc .base-tab-depth3 .tab__item button,
  .type-only-pc .base-tab.type-depth3 .tab__item a,
  .type-only-pc .base-tab.type-depth3 .tab__item button {
    font-size: 20px;
    color: #666666;
    padding: 10px 26px;
    border-radius: 999px;
  }
  .type-only-pc .base-tab-depth3 .tab__item[selected=selected], .type-only-pc .base-tab-depth3 .tab__item.on,
  .type-only-pc .base-tab.type-depth3 .tab__item[selected=selected],
  .type-only-pc .base-tab.type-depth3 .tab__item.on {
    background: #01416c;
    color: #fff;
  }
  .type-only-pc .base-tab-depth3 .tab__item[selected=selected] a,
  .type-only-pc .base-tab-depth3 .tab__item[selected=selected] button, .type-only-pc .base-tab-depth3 .tab__item.on a,
  .type-only-pc .base-tab-depth3 .tab__item.on button,
  .type-only-pc .base-tab.type-depth3 .tab__item[selected=selected] a,
  .type-only-pc .base-tab.type-depth3 .tab__item[selected=selected] button,
  .type-only-pc .base-tab.type-depth3 .tab__item.on a,
  .type-only-pc .base-tab.type-depth3 .tab__item.on button {
    background: #01416c;
    font-weight: 700;
    color: #fff;
  }
}

.base-tab-wrap {
  display: flex;
  padding: 40px 0 0;
  justify-content: center;
}
@media (min-width: 801px) {
  .base-tab-wrap {
    background: #fff;
    padding: 20px 40px;
    border-radius: 0px 0px 20px 20px;
  }
}
.base-tab-wrap .base-tab {
  padding: 0;
  background: none;
}

/* 모바일 탭 독립 */
.base-tab-ver2 {
  border-left: 1px solid #dddddd;
  border-right: 1px solid #dddddd;
}
.base-tab-ver2 .tab-list {
  display: flex;
}
.base-tab-ver2 .tab-list .tab-item {
  flex: 1;
  border-top: 1px solid #dddddd;
  text-align: center;
}
.base-tab-ver2 .tab-list .tab-item + .tab-item {
  border-left: 1px solid #dddddd;
}
.base-tab-ver2 .tab-list .tab-item button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 18px 0;
  font-size: 18px;
  color: #999999;
}
.base-tab-ver2 .tab-list .tab-item.on {
  border-top: 2px solid #00ab93;
}
.base-tab-ver2 .tab-list .tab-item.on button {
  font-weight: 700;
  color: #00ab93;
}

.base-tab-ver3 .tab-list {
  display: flex;
  gap: 20px;
}
.base-tab-ver3 .tab-list .tab-item {
  text-align: center;
}
.base-tab-ver3 .tab-list .tab-item button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 8px 9px 8px;
  font-size: 18px;
}
.base-tab-ver3 .tab-list .tab-item.on {
  border-bottom: 4px solid #00ab93;
}
.base-tab-ver3 .tab-list .tab-item.on button {
  font-weight: 700;
  color: #00ab93;
}

/* card */
.card {
  width: 100%;
  border-radius: 40px;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0px 4px 8px 0px rgba(12, 50, 75, 0.16);
  overflow: hidden;
}
@media (min-width: 801px) {
  .card {
    position: relative;
    border-radius: 20px;
  }
}
.card__body {
  display: flex;
  flex-direction: column;
}
.card__title {
  color: #121212;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 8px;
}
.card__date, .card__rerlCmplt {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
@media (min-width: 801px) {
  .card__date, .card__rerlCmplt {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
}
.card__date {
  color: #121212;
}
@media (min-width: 801px) {
  .card__date span {
    color: #777;
  }
}
@media (min-width: 801px) {
  .card__rerlCmplt {
    color: #777;
  }
  .card__rerlCmplt span {
    font-weight: 700;
    color: #01416c;
  }
}
.card .btns {
  width: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 801px) {
  .card .btns {
    width: auto;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
  }
}
.card .btns a.btn {
  flex-grow: 1;
  width: 100%;
  border-radius: 0;
  padding: 10px 0;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
@media (min-width: 801px) {
  .card .btns a.btn {
    flex-grow: unset;
    width: max-content;
    gap: 4px;
    padding: 5px 20px 7px 20px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 24px;
  }
}
.card .btns a.btn img,
.card .btns a.btn svg {
  width: 32px;
  height: 32px;
}

/* paging */
.paging,
.base-paging {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.paging > span,
.base-paging > span {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  margin-right: 0;
  padding: 0;
}
.paging > span a,
.paging > span button,
.base-paging > span a,
.base-paging > span button {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #121212;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
.paging > span.btn-arrow,
.base-paging > span.btn-arrow {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px auto;
}
.paging > span.btn-arrow.prev,
.base-paging > span.btn-arrow.prev {
  background-image: url("/assets/renewal2023/img/ico/ico-arrow-prev.png");
}
.paging > span.btn-arrow.next,
.base-paging > span.btn-arrow.next {
  background-image: url("/assets/renewal2023/img/ico/ico-arrow-next.png");
}
.paging > span.active,
.base-paging > span.active {
  background: #00ab93;
  border: 1px solid #00ab93;
}
.paging > span.active a,
.paging > span.active button,
.base-paging > span.active a,
.base-paging > span.active button {
  color: #fff;
}

/* popup */
#popupLayer,
.base-popup {
  display: none;
  border-radius: 40px;
  padding: 0;
  background-color: #fff;
  margin: 0 16px;
  z-index: 9999;
}
@media (min-width: 801px) {
  #popupLayer,
  .base-popup {
    margin: 0;
  }
}
#popupLayer .sub-wrap,
.base-popup .sub-wrap {
  padding: 0;
}
#popupLayer .sub-wrap .exam-wrap .tbl-basic,
.base-popup .sub-wrap .exam-wrap .tbl-basic {
  border-top: 1px solid #ddd;
}
#popupLayer .sub-wrap .exam-wrap .tbl-basic::after,
.base-popup .sub-wrap .exam-wrap .tbl-basic::after {
  display: none;
}
#popupLayer .sub-wrap .exam-wrap .tbl-basic.write tr,
.base-popup .sub-wrap .exam-wrap .tbl-basic.write tr {
  border-bottom: 1px solid #ddd;
}
#popupLayer .sub-wrap .exam-wrap .tbl-basic.write tr th,
.base-popup .sub-wrap .exam-wrap .tbl-basic.write tr th {
  color: #121212;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  background-color: #f4f8fb;
}
#popupLayer .sub-wrap .exam-wrap .tbl-basic.write tr td,
.base-popup .sub-wrap .exam-wrap .tbl-basic.write tr td {
  padding: 14px 20px;
  color: #121212;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
#popupLayer .sub-wrap .exam-wrap .tbl-basic.write tr td .exam-check-list,
.base-popup .sub-wrap .exam-wrap .tbl-basic.write tr td .exam-check-list {
  height: 194px;
  margin-top: 14px;
}
#popupLayer .sub-wrap .exam-wrap .tbl-basic.write tr td input[type=text],
.base-popup .sub-wrap .exam-wrap .tbl-basic.write tr td input[type=text] {
  margin: 0;
  padding: 10px 20px;
  height: 44px;
}
#popupLayer .sub-wrap .exam-wrap .tbl-basic.write tr td .radiobox,
#popupLayer .sub-wrap .exam-wrap .tbl-basic.write tr td .checkbox,
.base-popup .sub-wrap .exam-wrap .tbl-basic.write tr td .radiobox,
.base-popup .sub-wrap .exam-wrap .tbl-basic.write tr td .checkbox {
  padding-left: 0;
}
#popupLayer .sub-wrap .exam-wrap .tbl-basic.write tr td:not(#popupLayer .sub-wrap .exam-wrap .tbl-basic.write tr td:has(.exam-check-list),
.base-popup .sub-wrap .exam-wrap .tbl-basic.write tr td:has(.exam-check-list)),
.base-popup .sub-wrap .exam-wrap .tbl-basic.write tr td:not(#popupLayer .sub-wrap .exam-wrap .tbl-basic.write tr td:has(.exam-check-list),
.base-popup .sub-wrap .exam-wrap .tbl-basic.write tr td:has(.exam-check-list)) {
  display: flex;
  gap: 20px;
}
#popupLayer .btn-close,
.base-popup .btn-close {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 12px;
  right: 20px;
}
@media (min-width: 801px) {
  #popupLayer .btn-close,
  .base-popup .btn-close {
    width: 48px;
    height: 48px;
  }
}
#popupLayer .btn-close > img,
.base-popup .btn-close > img {
  width: 100%;
  height: 100%;
  display: block;
}
#popupLayer .btn-close2,
.base-popup .btn-close2 {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 12px;
  right: 20px;
  background: url("/assets/renewal2023/img/ico/ico-close-w.png") no-repeat center/cover;
}
@media (min-width: 801px) {
  #popupLayer .btn-close2,
  .base-popup .btn-close2 {
    width: 48px;
    height: 48px;
  }
}
#popupLayer .popupContent,
.base-popup .popupContent {
  color: #121212;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
#popupLayer .popupContent__header,
.base-popup .popupContent__header {
  position: relative;
  padding: 9.5px 50px 9.5px 24px;
  border-radius: 40px 40px 0px 0px;
  background: #00ab93;
}
@media (min-width: 801px) {
  #popupLayer .popupContent__header,
  .base-popup .popupContent__header {
    padding: 20px 80px 20px 40px;
  }
}
#popupLayer .popupContent__title,
.base-popup .popupContent__title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}
@media (min-width: 801px) {
  #popupLayer .popupContent__title,
  .base-popup .popupContent__title {
    font-size: 24px;
    line-height: 32px;
  }
}
#popupLayer .popupContent__body,
.base-popup .popupContent__body {
  padding: 16px 24px;
}
@media (min-width: 801px) {
  #popupLayer .popupContent__body,
  .base-popup .popupContent__body {
    padding: 30px 40px;
  }
}
#popupLayer .popupContent__footer,
.base-popup .popupContent__footer {
  border-radius: 0px 0px 40px 40px;
  background: var(--BgColor, #f4f8fb);
  padding: 14px 24px;
}
@media (min-width: 801px) {
  #popupLayer .popupContent__footer,
  .base-popup .popupContent__footer {
    padding: 14px 40px;
  }
}
#popupLayer .popupContent__footer .btn-area,
.base-popup .popupContent__footer .btn-area {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin: 0;
}
#popupLayer .popupContent__footer .btn-area a,
#popupLayer .popupContent__footer .btn-area button,
.base-popup .popupContent__footer .btn-area a,
.base-popup .popupContent__footer .btn-area button {
  min-width: 84px;
}
@media (max-width: 801px) {
  #popupLayer.type-full,
  .base-popup.type-full {
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
    margin: 0;
    background: #f4f8fb;
    border-radius: 0;
  }
}
@media (max-width: 801px) {
  #popupLayer.type-full .popupContent,
  .base-popup.type-full .popupContent {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
@media (max-width: 801px) {
  #popupLayer.type-full .popupContent__header,
  .base-popup.type-full .popupContent__header {
    border-radius: 0;
  }
}
@media (max-width: 801px) {
  #popupLayer.type-full .popupContent__body,
  .base-popup.type-full .popupContent__body {
    flex: 1;
  }
}
@media (max-width: 801px) {
  #popupLayer.type-full .popupContent__footer,
  .base-popup.type-full .popupContent__footer {
    background: #e0e7ec;
    border-radius: 0;
  }
}
#popupLayer.type-player .popupContent__body,
.base-popup.type-player .popupContent__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  width: 670px;
  max-width: 670px;
  height: 520px;
  max-height: 520px;
}
#popupLayer.type-player .popupContent__body .btns,
.base-popup.type-player .popupContent__body .btns {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 15px;
}
#popupLayer.type-player .popupContent__body .btns > .disabled,
.base-popup.type-player .popupContent__body .btns > .disabled {
  opacity: 0.12;
  cursor: default;
}
#popupLayer.type-player .popupContent__body__img,
.base-popup.type-player .popupContent__body__img {
  height: 300px;
  max-height: 300px;
  background-color: #eee;
  padding: 30px 75px;
  border-radius: 20px;
  box-sizing: content-box;
}
#popupLayer.type-player .popupContent__body__img.no-thumbnail,
.base-popup.type-player .popupContent__body__img.no-thumbnail {
  height: 360px;
  max-height: 360px;
  padding: 0;
  background-color: unset;
}
#popupLayer.type-player.type-audio .popupContent__body,
.base-popup.type-player.type-audio .popupContent__body {
  width: 580px;
  max-width: 580px;
}
#popupLayer.type-player.type-audio .popupContent__body #video,
.base-popup.type-player.type-audio .popupContent__body #video {
  display: none;
}
#popupLayer.type-player.type-video,
.base-popup.type-player.type-video {
  width: calc(100% - 32px);
}
@media (min-width: 801px) {
  #popupLayer.type-player.type-video,
  .base-popup.type-player.type-video {
    width: auto;
  }
}
#popupLayer.type-player.type-video .popupContent__body,
.base-popup.type-player.type-video .popupContent__body {
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media (min-width: 801px) {
  #popupLayer.type-player.type-video .popupContent__body,
  .base-popup.type-player.type-video .popupContent__body {
    width: 940px;
    max-width: 940px;
    height: 540px;
    max-height: 540px;
  }
}
#popupLayer.type-player.type-video .popupContent__body .popupContent__body__img,
.base-popup.type-player.type-video .popupContent__body .popupContent__body__img {
  display: none;
}
#popupLayer.type-player.type-video .popupContent__body #video,
.base-popup.type-player.type-video .popupContent__body #video {
  width: 100%;
  max-width: 800px;
}
#popupLayer.type-player.type-video .popupContent__body #audio,
.base-popup.type-player.type-video .popupContent__body #audio {
  display: none;
}

@media (max-width: 801px) {
  body:has(.type-only-pc) #popupLayer,
  body:has(.type-only-pc) .base-popup {
    margin: 0;
  }
}
@media (max-width: 801px) {
  body:has(.type-only-pc) #popupLayer .popupContent__header,
  body:has(.type-only-pc) .base-popup .popupContent__header {
    padding: 20px 80px 20px 40px;
  }
}
@media (max-width: 801px) {
  body:has(.type-only-pc) #popupLayer .popupContent__title,
  body:has(.type-only-pc) .base-popup .popupContent__title {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 801px) {
  body:has(.type-only-pc) #popupLayer .popupContent__body,
  body:has(.type-only-pc) .base-popup .popupContent__body {
    padding: 30px 40px;
  }
}
@media (max-width: 801px) {
  body:has(.type-only-pc) #popupLayer .popupContent__footer,
  body:has(.type-only-pc) .base-popup .popupContent__footer {
    padding: 14px 40px;
  }
}
@media (max-width: 801px) {
  body:has(.type-only-pc) #popupLayer.type-player.type-video,
  body:has(.type-only-pc) .base-popup.type-player.type-video {
    width: auto;
  }
}
@media (max-width: 801px) {
  body:has(.type-only-pc) #popupLayer.type-player.type-video .popupContent__body,
  body:has(.type-only-pc) .base-popup.type-player.type-video .popupContent__body {
    width: 940px;
    max-width: 940px;
    height: 540px;
    max-height: 540px;
  }
}

/* alert */
.base-alert {
  display: none;
  min-width: 360px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
}
.base-alert .alert-body {
  padding: 20px 0 25px;
  text-align: center;
  font-weight: 700;
}
.base-alert .alert-footer .alert-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* layer */
.base-layer {
  overflow: hidden;
  position: relative;
  position: absolute;
  z-index: 99;
  border: 1px solid #01416c;
  border-radius: 20px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
}
.base-layer .layer-header {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 70px 15px 30px;
  background: #01416c;
  font-weight: 700;
  color: #fff;
}
.base-layer .layer-body {
  padding: 20px;
  background: #fff;
}
.base-layer .layer-close {
  display: block;
  position: absolute;
  top: 8px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: url("/assets/renewal2023/img/ico/ico-close-w.png") no-repeat center/cover;
}
.base-layer.active {
  visibility: visible;
  opacity: 1;
}

/* base-tooltip */
.base-tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: -10px;
  z-index: 10;
  width: fit-content;
  height: auto;
  padding: 12px;
  background: #fff6db;
  border: 1px solid #ffd349;
  border-radius: 10px;
  box-shadow: 0px 4px 8px 0px rgba(12, 50, 75, 0.16);
  font-size: 14px;
  white-space: nowrap;
}
.base-tooltip::before {
  position: absolute;
  top: -10px;
  content: "";
  width: 13px;
  height: 10px;
  background: url(/assets/renewal2023/img/ico/ico-layer-arrow.png) no-repeat center/cover;
}
.base-tooltip.active {
  visibility: visible;
  opacity: 1;
}

/* tooltips */
.tooltips {
  background: url(/assets/renewal2023/img/ico/ico-important.png) no-repeat center/contain;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

/* gray-box */
.gray-box {
  background: none;
  padding: 0 0 0 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gray-box:before, .gray-box:after {
  display: none;
}
.gray-box li {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  list-style: disc;
}
.gray-box li span {
  color: #999;
  display: block;
}

/* base-board-list */
.base-board-list .board-list {
  border-top: 1px solid #dddddd;
}
.base-board-list .board-list .board-item {
  background: #f4f8fb;
  padding: 10px;
  border-bottom: 1px solid #dddddd;
}
@media (min-width: 801px) {
  .base-board-list .board-list .board-item {
    padding: 24px 30px;
  }
}
.base-board-list .board-list .board-item .row {
  display: flex;
  gap: 10px;
  width: 100%;
}
@media (min-width: 801px) {
  .base-board-list .board-list .board-item .row {
    gap: 30px;
  }
}
.base-board-list .board-list .board-item .row .col {
  overflow: hidden;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 62px;
}
.base-board-list .board-list .board-item .row .col .base-checkbox-primary {
  height: 100%;
}
.base-board-list .board-list .board-item .row .col .base-checkbox-primary label {
  height: 100%;
  padding-left: 24px;
  background-position: center;
}
.base-board-list .board-list .board-item .row .col .tit strong {
  display: block;
  width: 100%;
  font-size: 16px;
}
.base-board-list .board-list .board-item .row .col .desc {
  line-height: 128%;
  font-size: 14px;
  color: #666666;
}
.base-board-list .board-list .board-item .row .col.body {
  flex: 1 1 auto;
}
.base-board-list .board-list .board-item .row .col.footer {
  align-items: center;
  justify-content: space-evenly;
}
.base-board-list .board-list .board-item:nth-of-type(2n) {
  background: #fafdff;
}

/* base-board-view */
.base-board-view {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fafdff;
  box-shadow: 0px 4px 8px 0px rgba(12, 50, 75, 0.16);
}
@media (min-width: 801px) {
  .base-board-view {
    gap: 20px;
    background: #fff;
    box-shadow: none;
  }
}
@media (min-width: 801px) {
  .base-board-view .view-card-top,
  .base-board-view .view-card-bottom {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0px 4px 8px 0px rgba(12, 50, 75, 0.16);
  }
}
.base-board-view .view-card-top .row-tit,
.base-board-view .view-card-bottom .row-tit {
  padding: 13px 16px;
  line-height: 150%;
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 801px) {
  .base-board-view .view-card-top .row-tit,
  .base-board-view .view-card-bottom .row-tit {
    padding: 13px 40px;
    background: #01416c;
    font-size: 18px;
    color: #fff;
  }
}
.base-board-view .view-card-top .row-cont,
.base-board-view .view-card-bottom .row-cont {
  padding: 20px 16px;
  line-height: 150%;
  color: #333333;
}
@media (min-width: 801px) {
  .base-board-view .view-card-top .row-cont,
  .base-board-view .view-card-bottom .row-cont {
    padding: 20px 40px;
    color: #666666;
  }
}
.base-board-view .view-card-top .row-tit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (min-width: 801px) {
  .base-board-view .view-card-top .row-tit {
    justify-content: flex-start;
  }
}
.base-board-view .view-card-top .row-tit .tit {
  flex: 1;
}
@media (min-width: 801px) {
  .base-board-view .view-card-top .row-tit .tit {
    flex: none;
  }
}
.base-board-view .view-card-top .row-tit .tag {
  display: block;
  width: fit-content;
  min-width: 55px;
  min-height: 20px;
  padding: 0 3px;
  border: 1px solid #01416c;
  border-radius: 999px;
  font-size: 12px;
  color: #01416c;
}
@media (min-width: 801px) {
  .base-board-view .view-card-top .row-tit .tag {
    min-width: 91px;
    min-height: 24px;
    padding: 3px 16px;
    margin-left: 0;
    background: #fff;
    font-size: 14px;
    color: #01416c;
  }
}
.base-board-view .view-card-top .row-desc {
  display: flex;
  flex-direction: row-reverse;
  padding: 0 16px 13px;
  font-size: 14px;
  color: #333333;
}
@media (min-width: 801px) {
  .base-board-view .view-card-top .row-desc {
    padding: 0 40px;
    flex-direction: column;
  }
}
@media (min-width: 801px) {
  .base-board-view .view-card-top .row-desc .col {
    padding: 10px 0;
  }
}
.base-board-view .view-card-top .row-desc .col.user {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 801px) {
  .base-board-view .view-card-top .row-desc .col.user {
    width: 100%;
    gap: 8px;
    border-bottom: 1px solid #dddddd;
  }
}
@media (min-width: 801px) {
  .base-board-view .view-card-top .row-desc .col.user .user-img {
    overflow: hidden;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 100%;
  }
}
@media (min-width: 801px) {
  .base-board-view .view-card-top .row-desc .col.user .user-img > img {
    width: 100%;
    height: auto;
  }
}
@media (min-width: 801px) {
  .base-board-view .view-card-top .row-desc .col.user .user-id {
    flex: 1;
  }
}
@media (min-width: 801px) {
  .base-board-view .view-card-top .row-desc .col.user .tag {
    min-width: fit-content;
    min-height: 21px;
    padding: 1px 8px;
    background: #e0e7ec;
    border-radius: 999px;
    font-size: 13px;
    color: #666666;
  }
}
.base-board-view .view-card-top .row-desc .col.category {
  display: flex;
  flex: 1;
}
@media (min-width: 801px) {
  .base-board-view .view-card-top .row-desc .col.category {
    gap: 40px;
    border-bottom: 1px dashed #dddddd;
  }
}
@media (min-width: 801px) {
  .base-board-view .view-card-top .row-desc .col.category li + li {
    position: relative;
  }
}
.base-board-view .view-card-top .row-desc .col.category li + li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 10px;
  background: #cccccc;
}
.base-board-view .view-card-top .row-cont {
  background: #f4f8fb;
}
@media (min-width: 801px) {
  .base-board-view .view-card-top .row-cont {
    background: #fff;
  }
}
.base-board-view .view-card-top .row-cont .txt {
  min-height: 48px;
}
.base-board-view .view-card-top .row-cont .download {
  display: flex;
  margin-top: 30px;
  color: #333333;
}
.base-board-view .view-card-top .row-cont .download::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 2px 4px 0 0;
  background: url("/assets/renewal2023/img/ico/ico-download-gray.png") no-repeat center/16px auto;
}
.base-board-view .view-card-top .row-cont .download a {
  text-decoration: underline;
}
.base-board-view .view-card-bottom {
  border-top: 1px solid #dddddd;
}
@media (min-width: 801px) {
  .base-board-view .view-card-bottom {
    padding: 20px 40px;
    background: #f4f8fb;
    border-top: none;
  }
}
@media (min-width: 801px) {
  .base-board-view .view-card-bottom .row-tit {
    padding: 0 0 10px 0;
    background: #f4f8fb;
    color: #121212;
  }
}
@media (min-width: 801px) {
  .base-board-view .view-card-bottom .row-cont {
    padding: 0;
  }
}

/* bse-date-picker */
.base-date-picker {
  display: flex;
  padding: 40px 0 0;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 801px) {
  .base-date-picker {
    background: #fff;
    padding: 20px 40px;
    border-radius: 0px 0px 20px 20px;
    justify-content: space-between;
    flex-direction: row;
  }
}
.base-date-picker .date-picker {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 16px;
  background-color: #fff;
  justify-content: center;
}
.base-date-picker .date-picker .prev-btn,
.base-date-picker .date-picker .next-btn {
  width: 24px;
  height: 24px;
}
.base-date-picker .date-picker .prev-btn img,
.base-date-picker .date-picker .next-btn img {
  width: 100%;
  height: 100%;
  display: block;
}
@media (min-width: 801px) {
  .base-date-picker .date-picker {
    padding: 0;
  }
}
.base-date-picker .select-month {
  color: #121212;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.2px;
}
.base-date-picker .now-month {
  padding: 7px 20px;
  background-color: #79d1c7;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 801px) {
  .base-date-picker .now-month {
    color: #121212;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: -0.18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 7px 20px;
    border-radius: 20px;
    border: 1px solid #00ab93;
    background: #fff;
    cursor: pointer;
  }
  .base-date-picker .now-month img {
    width: 24px;
    height: 24px;
    display: block;
  }
}

/* base-card-msg */
.base-card-msg {
  display: flex;
  flex-direction: row;
  border-radius: 20px;
  box-shadow: 0px 4px 8px 0px rgba(12, 50, 75, 0.16);
}
.base-card-msg .msg-header {
  width: 134px;
  padding: 10px;
  background: #79d1c7;
  border-radius: 20px 0 0 20px;
}
@media (min-width: 801px) {
  .base-card-msg .msg-header {
    display: flex;
    gap: 30px;
    align-items: center;
    width: 352px;
    padding: 35px 32px;
  }
}
@media (min-width: 801px) {
  .base-card-msg .msg-header .profile {
    display: flex;
    flex-direction: row;
  }
}
.base-card-msg .msg-header .profile .img {
  margin: -8px auto 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  background: #f4f8fb;
  border-radius: 100%;
}
@media (min-width: 801px) {
  .base-card-msg .msg-header .profile .img {
    margin: auto;
  }
}
.base-card-msg .msg-header .profile .img > img {
  width: auto;
  height: 88%;
}
.base-card-msg .msg-header .profile .txt {
  margin-top: 3px;
  text-align: center;
  line-height: 150%;
  font-weight: 700;
}
@media (min-width: 801px) {
  .base-card-msg .msg-header .profile .txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 0 0 20px;
    font-size: 20px;
  }
}
.base-card-msg .msg-body {
  flex: 1;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 0 20px 20px 0;
}
@media (min-width: 801px) {
  .base-card-msg .msg-body {
    display: flex;
    gap: 20px;
    flex-direction: row;
    align-items: center;
  }
}
.base-card-msg .msg-body > img {
  width: 56px;
  height: 56px;
}
.base-card-msg .msg-body > h3 {
  text-align: left;
  min-height: 48px;
  line-height: 150%;
  font-weight: 700;
  word-break: break-all;
}
@media (min-width: 801px) {
  .base-card-msg .msg-body > h3 {
    flex: 1;
    min-height: auto;
    line-height: 140%;
    font-size: 20px;
    font-weight: 400;
    color: #333333;
  }
}
.base-card-msg .msg-body > dl {
  display: flex;
  gap: 4px;
  align-items: end;
}
@media (min-width: 801px) {
  .base-card-msg .msg-body > dl {
    gap: 0;
    flex-direction: column;
    align-items: center;
  }
}
.base-card-msg .msg-body > dl dd {
  font-size: 14px;
}
@media (min-width: 801px) {
  .base-card-msg .msg-body > dl dd {
    font-size: 16px;
    color: #666666;
  }
}
@media (min-width: 801px) {
  .base-card-msg .msg-body > dl .date {
    order: 2;
  }
}
@media (min-width: 801px) {
  .base-card-msg .msg-body > dl .time {
    order: 3;
  }
}
.base-card-msg .msg-body > dl .count {
  position: relative;
  padding: 6px 17px;
  margin-left: auto;
  background: #f04d69;
  border-radius: 5px;
  box-sizing: border-box;
  color: #fff;
}
@media (min-width: 801px) {
  .base-card-msg .msg-body > dl .count {
    order: 1;
    margin: 0 0 8px;
  }
}
.base-card-msg .msg-body > dl .count::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 1px;
  height: 1px;
  border: 6px solid #f04d69; /* border굵기로 삼각형 크기 조절 */
  border-color: #f04d69 transparent transparent transparent;
}
.base-card-msg .msg-body > dl .count.message-disabled {
  background: #d9d9d9;
}
.base-card-msg .msg-body > dl .count.message-disabled::after {
  border-color: #d9d9d9 transparent transparent transparent;
}

.scroll-hidden {
  overflow-y: hidden;
}/*# sourceMappingURL=common.css.map */