/* header */
header,
.rnb-header {
  padding: 8px 12px;
  height: 74px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
}
header .logo,
.rnb-header .logo {
  max-width: 190px;
  width: 86%;
  height: auto;
  max-height: 74px;
  margin-left: -12px;
}
header .inner,
.rnb-header .inner {
  align-items: center;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  gap: 12px;
}
header .inner .btn-login,
.rnb-header .inner .btn-login {
  width: 65px;
  height: 31px;
  text-align: center;
  line-height: 31px;
  border-radius: 16.5px;
  background-color: var(--color-dark-navy);
  color: #fff;
  font-size: var(--font-size--15);
}
header .inner .btn-logout,
.rnb-header .inner .btn-logout {
  width: 78px;
  height: 31px;
  text-align: center;
  line-height: 31px;
  font-size: var(--font-size--15);
  border-radius: 16.5px;
  border: solid 1px #041a68;
  color: #041a68;
  display: inline-block;
}
header .inner .hamburg,
.rnb-header .inner .hamburg {
  cursor: pointer;
  align-items: center;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
}
/* footer */
footer .dark-area {
  display: flex;
  flex-direction: column;
  background-color: #2f2e3e;
  align-items: center;
}
footer .dark-area .href-list {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-direction: row;
  gap: 20px;
}
footer .dark-area .href-list li {
  position: relative;
}
footer .dark-area .href-list li a {
  color: var(--color-yellow);
}
footer .dark-area .href-list li:not(:last-child):after {
  content: '';
  position: absolute;
  width: 2px;
  height: 12px;
  right: -12px;
  top: 8px;
  background: rgba(211, 213, 219, 0.4);
}
footer .white-area {
  height: 160px;
  background-color: #fff;
  padding: 0 0 10px;
}
footer .white-area .inner {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  gap: 13px;
  align-items: center;
  justify-content: center;
}
footer .white-area .inner .list {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  gap: 17.5px;
}
footer .white-area .inner .list li {
  position: relative;
}
footer .white-area .inner .list li:not(:last-child):after {
  content: '·';
  position: absolute;
  top: 0;
  right: -10px;
  color: var(--color-dark-grey);
}
footer .white-area .inner .list li a {
  font-size: var(--font-size--13);
  color: var(--color-dark-grey);
  line-height: var(--line-height-l);
  display: inline-block;
  white-space: nowrap;
}
footer .txt_tell a {
	color: var(--color-dark-grey);
}
/* form element */
.kc-form.dark {
  width: 169px;
  height: 49px;
  font-size: 14px;
  color: #d3d5db;
  border-color: #21212d;
  letter-spacing: -0.8px;
  padding: 12px 12px 14px 22px;
  border-radius: 10px;
  background-color: #21212d;
}

/* 로그인 관련 */
#logout-box { display: none; }
#logout-box.active {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
#btn-login { display: none; }
#btn-login.active {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}
/* 공통 레이아웃 */
.page-title {
  line-height: 1.59;
  letter-spacing: -0.8px;
  /* border-bottom: 1px solid #d3d3d3; */
}
.page-title h2 {
  margin: 0 0 5px 0;
  line-height: 1.59;
  letter-spacing: -0.8px;
  font-weight: bold;
}

.box-tab ul {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}
.box-tab ul li {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-color: #dddddd;
  flex: 1;
  height: 73px;
  justify-content: center;
  align-items: center;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  text-align: center;
}
.box-tab ul li a {
  color: var(--font-color);
  line-height: 1.41;
  letter-spacing: -0.8px;
  width: 100%;
  height: 100%;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
}
.box-tab ul li.active {
  font-size: var(--font-size--17);
  color: #fff;
  border-color: #091f5f;
  background-color: #091f5f;
}
.box-tab ul li.active a {
  color: #fff;
}
.box-tab ul li:last-child {
  border-right: 1px solid;
  border-color: #dddddd;
}
/* modal(팝업 관련) */
#modal {
  position: fixed;
  display: none;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.7);
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  padding: 44px;
}
#modal.show {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#modal .modal-container {
  border-radius: 9px;
  border: solid 1px #979797;
  padding: 0 21px 21px 21px;
  min-height: 203px;
  background-color: #ffffff;
  width: 100%;
  position: relative;
}
#modal .modal-container .modal-body {
  min-height: 110px;
  text-align: center;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#modal .modal-container .modal-body.icon {
  flex-direction: column;
  height: 148px;
}
#modal .modal-container .modal-body .modal-title {
  font-size: var(--font-size--20);
  line-height: 2.14;
  font-weight: bold;
  letter-spacing: -0.47px;
  color: var(--font-color);
  width: 100%;
}
#modal .modal-container .modal-body .sub p {
  font-size: var(--font-size--17);
  white-space: pre-line;
  letter-spacing: -0.8px;
  line-height: 1.76;
}
#modal .modal-container .modal-footer {
  width: 100%;
}
#modal .modal-container .modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
}
/* aside (팝업 관련) */
#aside {
  position: fixed;
  visibility: hidden;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#aside.show {
  visibility: visible;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#aside .aside-container {
  position: absolute;
  padding: 0 15px;
  bottom: 0;
  width: 100%;
  height: 0;
  border-radius: 11px 11px 0 0;
  background-color: #fff;
  transition: height 0.1s ease-out;
}
#aside.show .aside-container{
  height: 403px;
}
#aside .aside-container .aside-title {
  font-size: var(--font-size--23);
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.87;
  letter-spacing: -0.8px;
  text-align: center;
  color: var(--font-color);
  padding: 13px 0;
  border-bottom: solid 0.5px #d3d3d3;
}
#aside .aside-container .aside-list ul {
  margin: 16px 0 24px 0;
}
#aside .aside-container .aside-list ul li {
  text-align: center;
}
#aside .aside-container .aside-list ul li:not(:last-child) {
  margin-bottom: 8px;
}
#aside .aside-container .aside-list ul li a {
  font-size: var(--font-size--20);
  color: var(--font-color);
  line-height: 2.15;
  letter-spacing: -0.8px;
  display: inline-block;
}
#aside .aside-container .aside-list ul li.active a {
  color: #091f5f;
  font-weight: bold;
}

.border-slasher {
  height: 4px;
  width: 100%;
  position: relative;
  display: block;
}

.border-slasher:before {
  --border-width: 1px;
  --stripe-distance: 2px;
  position: absolute;
  content: '';
  left: calc(var(--border-width) * -1);
  right: calc(var(--border-width) * -1);
  top: calc(var(--border-width) * -1);
  bottom: calc(var(--border-width) * -1);
  background: repeating-linear-gradient( -45deg, #d3d3d3, transparent 1px, transparent var(--stripe-distance), #d3d3d3 calc(var(--stripe-distance) + 1px));
  z-index: -1;
}

/* collapse */
.collapse-container .collapse-item .collapse-head {
  height: 43px;
  border-bottom: 1px solid #1a1b1c;;
  position: relative;
  user-select: none;
  cursor: pointer;
  margin-bottom: 40px;
  -moz-transition: all .6s;
  -ms-transition: all .6s;
  -o-transition: all .6s;
  -webkit-transition: all .6s;
  transition: all .6s;
}
.collapse-container .collapse-item[scope="rnb"] .collapse-head {
  height: 55px;
  border: none;
  margin-bottom: 20px;
}
.collapse-container .collapse-item .collapse-head.show {
  margin-bottom: 20px;
}
.collapse-container .collapse-item .collapse-head .title {
  display: block;
  font-size: 22px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.95;
  letter-spacing: -0.8px;
  color: var(--font-color);
}
.collapse-container .collapse-item[scope="rnb"] .collapse-head .title {
  background-color: #f2f3f5;
  border-radius: 5px;
  padding: 15px 16px;
  font-size: 17px;
  line-height: 1.5;
  text-align: center;
}
.collapse-container .collapse-item .collapse-head img {
  position: absolute;
  right: 0;
  bottom: 3px;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.collapse-container .collapse-item[scope="rnb"] .collapse-head img {
  right: 16px;
  bottom: 17px;
}
.collapse-container .collapse-item .collapse-head.show img {
  transform: rotate(180deg);
}
.collapse {
  -moz-transition: height .5s;
  -ms-transition: height .5s;
  -o-transition: height .5s;
  -webkit-transition: height .5s;
  transition: height .5s;
  height: 0;
  overflow: hidden;
}
[status="show"] .collapse {
  transition: none;
}
.collapse-container .collapse-item .collapse-head.show .collapse {
  overflow: unset;
}
/* common ul list */
.default-list {
}
.grey-info-box {
  background: #f6f6f6;
  border-radius: 9px;
  padding: 21px 21px 21px 31px;
}
.grey-info-box.pd-s{
  padding: 25px 13px 25px 15px;
}
.grey-info-box.pd-xs{
  padding: 19px;
}
.grey-info-box.pd-a-xs{
  padding: 19px 15px 19px 24px
}
.grey-info-box.pd-xxs {
  padding: 16px 22px;
}
.flat-list li {
  position: relative;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
}
.flat-list li button.sticky{
  position: absolute;
  right: -8px;
  top: 7px;
}
.default-list li {
  position: relative;
}
.default-list li:not(:last-child) {
  margin-bottom: 13px;
}
.default-list .sub-list[gap="s"] li:not(:last-child) {
  margin-bottom: 5px;
}
.default-list > li:before {
  content: '·';
  position: absolute;
  top: 0;
  color: var(--color-light-black);
  left: -18px;
  font-size: 26px;
  line-height: 0.8;
}
.default-list li p {
  color: var(--color-light-black);
  font-size: var(--font-size--15);
}
.default-list li .sub-list {
}
.default-list li .sub-list li p {
  color: var(--color-light2-black);
}
.default-list li .sub-list > li:before {
  content: '-';
  position: absolute;
  top: 0;
  color: var(--color-light-black);
  left: -18px;
  font-size: 20px;
  line-height: 1;
}
/* info icon text */
.info-icon-text {
  position: relative;
  padding-left: 25px;
}
.info-icon-text .noti-icon {
  position: absolute;
  left: 0;
  top: 3px;
}

/* table */
.basic-table-wrapper {
  position: relative;
}
.basic-table-wrapper.scroll {
  overflow: auto;
  margin: 0 -15px;
  padding: 0 15px;
}
.basic-table-wrapper.full {

}
.basic-table-wrapper.scroll.np {
  padding: unset;
}
.basic-table-wrapper table {
  border-top: 2.5px solid #4a4b4d;
  border-spacing: 0;
}
.basic-table-wrapper table thead tr {
  background-color: #f5f6f8;
}
.basic-table-wrapper table thead tr th, .basic-table-wrapper table tfoot tr th {
  border-bottom: 1px solid #dbdcdc;
  line-height: 1.53;
  letter-spacing: -0.8px;
  font-size: var(--font-size--15);
  padding: 11px 0;
}
.basic-table-wrapper .m-table thead tr th, .basic-table-wrapper table tfoot tr th {
  padding: var(--table-pd);
  white-space: nowrap;
}
.basic-table-wrapper .m-table thead[multi] tr th {
  padding: var(--table-pd);
}
.basic-table-wrapper .m-table thead[multi] tr[multi] th {
  padding: var(--table-pd);
}

.basic-table-wrapper table tbody tr td {
  border-bottom: 1px solid #dbdcdc;
  padding: 10px 0;
}
.basic-table-wrapper table tbody tr[row-checked] td {
  background-color: var(--color-table-bg);
}
.basic-table-wrapper .m-table tbody tr td {
  padding: var(--table-pd);
  white-space: nowrap;
}
.basic-table-wrapper .m-table.no-ws tbody tr td {
  white-space: inherit;
  padding: var(--table-pd);
}
.basic-table-wrapper table tbody tr td p {
  word-break: break-all;
}
.basic-table-wrapper table tbody tr td[cell="checkbox"] {
  padding: var(--table-pd);
}
.basic-table-wrapper table tbody tr td .kc-checkbox {
  width: 24px;
  height: 24px;
  display: inline-block;
}

.basic-table-wrapper table th:not([style*="display:none"]) + th:not([style*="display:none"]), 
.basic-table-wrapper table td:not([style*="display:none"]) + td:not([style*="display:none"]) {
  border-left: 1px solid #dbdcdc;
}
.basic-table-wrapper [scope="list"]{
  position: absolute;
  right: 0;
  top: 38px;
  width: 100px;
}
.basic-table-wrapper [scope="list"] select {
  border: none;
  height: 32px;
  font-size: var(--font-size--15);
  background-color: transparent;
  border-radius: 0;
  padding: 0 8px;
}
.basic-table-wrapper [scope="list"]:after {
  right: 3px;
  top: 6px;
}
.table-list-select {
  width: 110px;
}
.table-list-select:after {
  right: 3px !important;
  top: 6px !important;
}
.table-list-select select {
  border: none;
  width: 100%;
  height: 32px !important;
  font-size: var(--font-size--15) !important;
  background-color: transparent;
  border-radius: 0;
  padding: 0 8px !important;
}
.table-inner-wrapper {
}
.table-inner-wrapper table {
}
.tb-r {
  border-right: 1px solid #dbdcdc;
}
[full] {width: 100%}
table { width: 100%; border-spacing: 0; text-align: center; font-size: var(--font-size--15) }
[tw="1"] { width: 512px; }
[tw="2"] { width: 534px; }
[th-w="1"] { width: 72px; }
[th-w="2"] { width: 82px; }
[th-w="2.5"] { width: 85px; }
[th-w="3"] { width: 88px; }
[th-w="3.5"] { width: 104px; }
[th-w="4"] { width: 118px; }
[th-w="6"] { width: 130px; }
[th-w="65.5"] { width: 328px; }
[td-w="head-half"] { width: 112px; }
[td-w="head-full"] { width: 225px; }
[table="780"] { width: 780px; }
[table="838"] { width: 838px; }
[table="922"] { width: 922px; }
table[th-size="m"] tbody tr td[filled] {
  width: 175px;
}
table[th-size="l"] tbody tr td[filled] {
  width: 225px;
}
th[line="right"] {
  border-right: 1px solid var(--color-table-line);
}
td[line="right"] {
  border-right: 1px solid var(--color-table-line);
}
[line="d-right"] {
  border-right: 1px solid #656565 !important;
}
[tbg="t2"] {
  background-color: var(--color-table-bg2);
}
[tbg="t3"] {
  background-color: var(--color-table-bg3);
}
td[filled] {
  background: var(--color-table-bg);
  font-weight: bold;
  color: var(--font-color);
}
td[unlined="right"] {
  border-right: none !important;
}
td[unlined="left"] {
  border-left: none !important;
}
.full-table {
  border-top: 1px solid #4a4a4a;
}
.full-table tbody tr td {
  border: 0;
  padding: 0;
  height: 60px;
  border-bottom: 1px solid var(--color-table-line);
}
.full-table tbody tr td:first-child {
  background-color: var(--color-table-bg);
  width: 175px;
  border-right: 1px solid var(--color-table-line);
}
.full-table tbody tr td:first-child p {
  padding-left: 27px;
  font-weight: bold;
  font-size: var(--font-size--15);
}
.full-table tbody tr td:last-child {
  padding-left: 34px;
}
.full-table tbody tr td:last-child p {
  font-size: var(--font-size--15);
}

/* tab */
.tab_menu {
  position:relative;
  margin: auto;
  /*max-width: var(--size-body);*/
}
.tab_menu .inner {
  margin-left: -15px;
  margin-right: -15px;
  border-bottom: 0.5px solid #000;
}
.tab_menu[scope="home"] .inner {
  margin-left: -20px;
  margin-right: -20px;
}
.tab_menu .inner .scroll-wrapper {
  padding: 0 17px;
}
.scroll-wrapper[size="home"] {
  width: 915px !important;
  box-sizing:border-box;
}
.scroll-wrapper[size="m"] {
  width: 548px !important;
}
.scroll-wrapper[size="xs"] {
  width: 335px !important;
}
.scroll-wrapper[size="530"] {
  width: 530px !important;
}
.tab_menu .inner .scroll-wrapper .list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.tab_menu .inner .scroll-wrapper .list li:not(:last-child) {
  margin-right: 30px;
}
.tab_menu .list {
}
.tab_menu .list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera*/
}
.tab_menu .list li {
  position: relative;
}
.tab_menu .list a {
  font-size: var(--font-size--17);
  letter-spacing: -0.8px;
  padding-bottom: 7px;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  color: var(--color-light2-black);
  white-space: nowrap;
}
.tab_menu .tab-panel {
  display:none;
}
.tab_menu .list li.active a {
  font-weight:bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  color: var(--color-dark-navy);
}
.tab_menu .list li.active:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background: var(--color-dark-navy);
}
.tab_menu .tab-panel.active {
  display:block;
}

/* box-tab */
.box-tab-item {
  display: none;
}
.box-tab-item.active {
  display: block;
}
.box-tab-item .href {
  position: relative;
}
/* position */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background-color: #fff;
  margin: 0 auto;
}
.sticky-header header,
.sticky-header .tab-container {
  max-width: var(--size-body);
  margin: 0 auto;
}

.home-sticky-body {
  padding-top: var(--home-header-height);
}
.sticky-footer {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 0 15px 15px 15px;
  background-color: #fff;
}
.sticky-footer .footer-btn-container {
  max-width: var(--size-body);
  margin: 0 auto;
}

#floating-btn {
  visibility: hidden;
  border-radius: 50%;
  position: fixed;
  right: 27px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.09);
  border: solid 1px #e2e2e2;
  background-color: #fff;
  transition: opacity 2s 1s ease
}
#floating-btn.active {
  visibility: visible;
}
#floating-btn:after {
  content: "";
  background: url("../img/ic-arrow-gototop.png") no-repeat center center;
  width: calc(100% - 1px);
  height: inherit;
  display: block;
}
.bond-note-wrapper .inner {
  position: relative;
}
.bond-note-wrapper .inner img {
  position: absolute;
  top: -16px;
  left: 0;
}
.bond-note-wrapper .inner ul {
  padding-left: 92px;
  padding-right: 20px;
}
.bond-note-wrapper.plain .inner ul {
  padding: 0 37px;
}
.bond-note-wrapper .inner ul li {
  position: relative;
}
.bond-note-wrapper .inner ul li:before {
  content: '-';
  position: absolute;
  top: 0;
  left: -18px;
  line-height: 1;
}
.bond-note-wrapper .inner ul li p {
  font-size: var(--font-size--15);
  color: var(--color-light2-black);
}
.bond-note-wrapper .inner ul li:not(:last-child) {
  margin-bottom: 7px;
}
/* rnb-menu */
.rnb-container {
  position: fixed;
  height: 100vh;
  transition: width 0.25s ease-out;
  right: 0;
  width: 0;
  background: transparent;
  z-index: 99;
}
.rnb-container.on {
  width: calc(100% - 84px);
}
#dim {
  position: fixed;
  height: 100vh;
  right: 0;
  width: 100%;
  transition: visibility 0.25s ease-out;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  z-index: 98;
  overflow: hidden;
}
.rnb-container .rnb-content {
  /*width: calc(100% - 84px);*/
  position: relative;
  width: 100%;
  background: #fff;
  height: 100%;
  overflow-y: auto;
  overflow-x:hidden;
}
.rnb-body {
  padding: 0 18px 140px 18px;
}
.dash-divider {
  height: 2px;
  background-image: linear-gradient(90deg, transparent, transparent 50%, #fff 50%, #fff 100%), linear-gradient(90deg, #cecece, #cecece, #cecece, #cecece, #cecece);
  background-size: 8px 4px, 100% 4px;
  border: none;
}
.rnb-list > ul {
  width: 180px;
  margin: auto;
}
.rnb-list ul > li:not(:last-child) {
  margin-bottom: 5px;
}
.rnb-list ul > li span {
  font-weight: bold;
  font-size: var(--font-size--15);
  position: relative;
  display: inline-block;
}
.rnb-list ul > li span:after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  left: -17px;
  background-color: #714bb4;
  top: 8px;
}
.rnb-list ul > li > ul {
  padding-left: 30px;
}
.rnb-list ul > li > ul > li {
  position: relative;
  display: block;
}
.rnb-list ul > li > ul > li:after {
  content: '-';
  position: absolute;
  color: var(--color-light2-black);
  left: -17px;
}
.rnb-list ul > li > ul li a {
  color: var(--color-light2-black);
}
.rnb-footer {
  background-color: #f8f8f8;
}
.rnb-footer .inner {
  background-color: #fff;
  position: relative;
  top: 10px;
  padding: 42px 0 176px 0;
}
.rnb-footer .inner ul li {
  text-align: center;
}
.rnb-footer .inner ul li:not(:last-child) {
  margin-bottom: 20px;
}
.rnb-footer .inner ul li a {
  font-size: var(--font-size--15);
  color: var(--color-light2-black);
}

.main-card-container {
  position: relative;
  height: 390px;
}
.main-card-container[scope="sub"] {
  /*height: 251px;*/
  height: auto;
  max-height: 251px;
}
.main-card-container[scope="moo"] {
  height: 145px;
}
.main-card-container .home-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-card-container .desc--top {
  position: absolute;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.8px;
  color: #ffffff;
  top: 32px;
  left: 33px;
  user-select: none;
}
.main-card-container[scope="sub"] .desc--top {
  font-size: var(--font-size--26);
  text-shadow: none;
  top: 52px;
  left: 30px;
}
.main-card-container[scope="moo"] .desc--top {
  font-size: var(--font-size--26);
  text-shadow: none;
  top: 44px;
  left: 0;
  width: 100%;
  text-align: center;
}
.main-card-container .desc--sub {
  position: absolute;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  font-size: 34px;
  font-weight: bold;
  line-height: 1.26;
  letter-spacing: -0.8px;
  color: #fff;
  top: 66px;
  left: 33px;
  user-select: none;
}
.main-card-container[scope="sub"] .desc--sub {
  font-size: var(--font-size--19);
  top: 98px;
  left: 30px;
}
/* cover */
.cover-container {
  width: 100%;
  height: 100vh;
  background: var(--color-cover);
}
.cover-container a {
  font-size: 40px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.45;
  letter-spacing: -2.19px;
  color: #fff;
  position: relative;
  display: block;
  padding-top: 177px;
  padding-left: 38px;
}
.cover-container a:after {
  content: '→';
  position: absolute;
  bottom: -122px;
  left: 38px;
}
/* Loading */
#loading {
  position: fixed;
  display: none;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.7);
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  padding: 44px;
}
#loading.show {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.loading-box {
  transform: scale(0.334);
  width: 300px;
  height: 300px;
  background: url('../img/loading_sprite_sheet.png') left center;
  animation: play 1.35s steps(55) infinite;
}

@keyframes play {
  100% { background-position: -16500px; }
}
.popup-header {
  position: relative;
  border-bottom: 1px solid var(--color-light2-grey);
}
.popup-header .title {
  font-size: var(--font-size--18);
  font-weight: bold;
  line-height: 2.39;
  letter-spacing: -0.47px;
  text-align: center;
  color: var(--font-color);
  margin-top: 13px;
}
.popup-header img {
  position: absolute;
  right: 15px;
  bottom: 15px;
}
.popup-header img[left] {
  left: 15px;
  bottom: 15px;
}
.board-list {
  border-top: solid 0.5px #d3d3d3;
}
.board-list li {
  border-bottom: solid 0.5px #d3d3d3;
  padding: 20px 0;
  position: relative;
}
.board-list li[attach="file"] a:after {
  content: url("../img/img-file.png");
  align-items: center;
  padding-top: 4px;
}
.board-list li .key {
  color: #c8c8c8;
  font-size: var(--font-size--14);
  line-height: 1.64;
  margin-bottom: 5px;
}
.board-list li .title {
  font-size: var(--font-size--17);
  font-weight: bold;
  margin-bottom: 11px;
  max-width: 64.4vw;
  max-height: 4.4rem;
}
.board-list li .date {
  color: #979797;
  font-size: var(--font-size--14);
  line-height: 1.64;
}
[ellipsis="2"] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.board-detail-title {
  padding-bottom: 20px;
  border-bottom: solid 0.5px #d3d3d3;
}
.board-content {
	min-height:50px;
}

.board-content .attach-box {

}
.board-content .attach-box p[scope="label"] {
  font-size: var(--font-size--15);
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: flex-end;
  gap: 9px;
}
.board-content .attach-box p[scope="label"]:before {
  content: url("../img/img-file.png");
  width: 19px;
  height: 19px;
}
.board-content .attach-box .attach-list {
  padding: 0 27px;
}
.board-content .attach-box .attach-list li {
  background-color: #f8f8f8;
  border-radius: 6px;
  height: 43px;
  padding: 0 55px 0 18px;
  position: relative;
}
.board-content .attach-box .attach-list li:after {
  content: url("../img/img-file-download.png");
  width: 28px;
  height: 100%;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  position: absolute;
  right: 13px;
  top: 0;
  padding-top: 2px;
}
.board-content .attach-box .attach-list li:not(:last-child) {
  margin-bottom: 10px;
}
.board-content .attach-box .attach-list li p {
  line-height: 43px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--color-light2-black);
}
.board-content .content {
  white-space: pre-line;
  word-break: break-all;
  color: var(--color-light2-black);
}
.pagination {
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
}
.pagination .btn {
  width: 1.57rem;
  height: 1.57rem;
  cursor: pointer;
}
.pagination .btn[scope="prev-double"] {
  content: url("../img/ic-arrow-grey-light-2.png");
  transform: rotate(180deg);
  margin-right: 8px;
}
.pagination .btn[scope="prev"] {
  content: url("../img/ic-arrow-grey-light.png");
  transform: rotate(180deg);
  margin-right: 20px;
}
.pagination .btn[scope="next-double"] {
  content: url("../img/ic-arrow-grey-light-2.png");
  margin-left: 8px;
}
.pagination .btn[scope="next"] {
  content: url("../img/ic-arrow-grey-light.png");
  margin-left: 20px;
}
.pagination .page {
  width: 2.25rem;
  text-align: center;
  line-height: 2.25rem;
  height: 2.25rem;
  color: #7f8081;
  border-radius: 5px;
  cursor: pointer;
  font-size: var(--font-size--15);
}
.pagination .page.active {
  color: #ffffff;
  background-color: #091f60;
}

footer .white-area .inner p a {
  display: inline-block;
  font-size: var(--font-size--13);
  color: var(--color-dark-grey);
  line-height: var(--line-height-l);
  white-space: nowrap;
  margin-right: 8px;
}

footer .white-area .inner p a:not(:last-child)::after {
  content: "·";
  position: relative;
  top: 0px;
  left: 5px;
  color: var(--color-dark-grey);
}

.nowrap {
	white-space: nowrap;
}