.wrap header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #fff;
  z-index: 9;
  border-bottom: 1px solid #F1F1F5;
}
.wrap header .header_content {
  height: 100%;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrap header .header_content .header_01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 10px;
}
.wrap header .header_content .header_01 a {
  display: block;
}
.wrap header .header_content .header_01 a h1 img {
  display: block;
  width: 96px;
}
.wrap header .header_content .header_02 a {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line-color-3);
}
.wrap header .header_content .header_02 a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wrap .side_menu {
  position: fixed;
  left: 0;
  top: 70px;
  height: calc(100dvh - 70px);
  width: 280px;
  background: #69C5DC;
  padding: 0 16px;
  border-right: 1px solid var(--line4);
}
.wrap .side_menu > div + div {
  margin-top: 24px;
}
.wrap .side_menu .side_menu_01 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 88px);
  overflow-y: scroll;
}
.wrap .side_menu .side_menu_01::-webkit-scrollbar {
  width: 10px;
}
.wrap .side_menu .side_menu_01 ul li strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  height: 46px;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
}
.wrap .side_menu .side_menu_01 ul li strong.active {
  font-weight: 500;
  color: #0D1C49;
}
.wrap .side_menu .side_menu_01 ul li a {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 46px;
  padding: 6px 16px;
  font-size: 14px;
  line-height: 26px;
  color: #fff;
  font-weight: 400;
}
.wrap .side_menu .side_menu_01 ul li a img {
  display: block;
  width: 34px;
}
.wrap .side_menu .side_menu_01 ul li a.select_menu {
  border-radius: 23px;
  background: #0D1C49;
  font-weight: 600;
}
.wrap .side_menu .side_menu_01 ul.gnb {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 24px;
}
.wrap .side_menu .side_menu_01 ul.adm_menu {
  padding-top: 24px;
}
.wrap .side_menu .side_menu_01 ul.adm_menu .acco a {
  display: none;
}
.wrap .side_menu .side_menu_01 ul.adm_menu .acco a:first-of-type {
  display: flex;
  padding: 6px 28px 6px 16px;
  position: relative;
}
.wrap .side_menu .side_menu_01 ul.adm_menu .acco a:first-of-type:after {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  background: url(../img/up.svg) no-repeat center center/100% auto;
  right: 16px;
  top: 17px;
}
.wrap .side_menu .side_menu_01 ul.adm_menu .acco.on {
  background: #35B2D1;
  border-radius: 23px;
  padding: 0 4px 4px;
  margin-bottom: 8px;
}
.wrap .side_menu .side_menu_01 ul.adm_menu .acco.on a {
  display: flex;
  margin-top: 4px;
}
.wrap .side_menu .side_menu_01 ul.adm_menu .acco.on a:first-of-type {
  width: calc(100% + 8px);
  margin-left: -4px;
  border-radius: 23px;
  background: #31A8C6;
  font-weight: 600;
  margin-top: 0;
}
.wrap .side_menu .side_menu_01 ul.adm_menu .acco.on a:first-of-type:after {
  transform: rotate(180deg);
}
.wrap .side_menu .side_menu_02 {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.wrap > .content {
  padding-top: 70px;
  padding-left: 280px;
  min-height: 100dvh;
}
.wrap > .content .c_wl {
  width: 100%;
  padding: 0 32px;
}

ul.table_list {
  border-top: 0.0625rem solid #DEE0E3;
  background: #fff;
  border-radius: 0.625rem;
}
ul.table_list li {
  display: flex;
}
ul.table_list li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  font-size: 14px;
  line-height: 20px;
  border-bottom: 1px solid #E9EAEC;
  flex: 1;
}
ul.table_list li.list_title span {
  min-height: 46px;
  background: #F7F7F8;
  color: rgba(15, 19, 36, 0.6);
  border-bottom: none;
}

.modal_bottom_sheet {
  display: none;
}
.modal_bottom_sheet.active {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.modal_bottom_sheet.active .inner {
  background: #fff;
  max-width: 45rem;
  width: 100%;
  border-radius: 1.125rem 1.125rem 0 0;
}
.modal_bottom_sheet.active .inner > div {
  display: none;
}
.modal_bottom_sheet.active .inner > div.on {
  display: block;
}

.pop {
  display: none;
}
.pop.active {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pop.active .inner {
  background: #fff;
  max-width: 640px;
  width: calc(100% - 40px);
  border-radius: 8px;
}
.pop.active .inner > div {
  display: none;
}
.pop.active .inner > div.on {
  display: block;
}
.pop.active .inner > div .pop_cont {
  padding: 20px;
  font-size: 14px;
  line-height: 22px;
  color: var(--font-color-3);
  text-align: center;
}
.pop.active .inner > div .pop_cont h4 {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: var(--font-color-1);
}
.pop.active .inner > div .pop_cont h4 + span {
  display: block;
  margin-top: 8px;
}
.pop.active .inner > div .pop_btns {
  border-top: 0.0625rem solid var(--line-color-3);
  padding: 8px 20px;
  display: flex;
  gap: 20px;
}
.pop.active .inner > div .pop_btns > * {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  height: 40px;
  cursor: pointer;
}
.pop.active .inner > div .pop_btns > *.color {
  color: var(--color-primary);
  font-weight: 600;
}

.login_box {
  z-index: 10;
}

.bttn {
  display: inline-block;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  padding: 11px 22px;
  border-radius: 40px;
  cursor: pointer;
}
.bttn.small {
  font-size: 12px;
  line-height: 16px;
  padding: 10px 20px;
}
.bttn.large {
  padding: 16px 32px;
}
.bttn.brand {
  background: var(--color-primary);
  color: #fff;
}
.bttn.lightgray {
  background: var(--color-N20);
  color: var(--font-color-2);
}
.bttn.sub_brand {
  background: var(--color-sub-primary);
  color: #fff;
}
.bttn.brand_outline {
  background: #fff;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}
.bttn.sub_brand_outline {
  background: #fff;
  border: 1px solid var(--color-sub-primary);
  color: var(--color-sub-primary);
}

.btns_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.textbox {
  height: 40px;
  border-radius: 4px;
  border: 1px solid var(--line-color-2);
  padding: 0 10px;
  font-size: 14px;
}
.textbox:focus {
  outline: none;
  border-color: var(--color-primary);
}