@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Noto+Serif+KR:wght@200..900&family=Sorts+Mill+Goudy:ital@0;1&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* common */
body {
  font-family: 'Pretendard Variable', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  word-break: keep-all;
  line-height: 1.6;
  letter-spacing: -0.025rem;
  user-select: none;
}

body.lang-zh,
body.lang-ja {
  word-break: break-word !important;
  white-space: normal !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1.4;
}
p,
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1 {
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: -0.075rem;
}
h2 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.075rem;
}
h3 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.075rem;
}
h4 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.075rem;
}
h5 {
  font-size: 1.25rem;
  font-weight: 500;
}
h6 {
  font-size: 1.125rem;
  font-weight: 500;
}
a {
  color: inherit;
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #3e004b;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
::-webkit-scrollbar-horizontal {
  height: 10px;
}
::-webkit-scrollbar-vertical {
  width: 10px;
}

.bold {
  font-weight: 700;
}
.purple {
  color: #3e004b;
}
.blue {
  color: #296aa6;
}
.darkgray {
  color: #666 !important;
}
.caution {
  font-size: 0.9rem;
  color: #666;
}
.bg-lightpurple {
  background: #ede7f6;
}
.bg-blue {
  background: #1790bc;
}

.underline a {
  position: relative;
}
.underline a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #212529;
  transition: width 0.3s ease-in-out;
}
.underline a:hover::after {
  width: 100%;
}

.fade_up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.3s ease-in, transform 0.6s ease-in-out;
}
.fade_up.show {
  opacity: 1;
  transform: translateY(0);
}

/* font */
.ft_mill {
  font-family: 'Sorts Mill Goudy', serif;
  letter-spacing: 0;
  line-height: 1.2;
  font-weight: normal;
}
.ft_ntkr {
  font-family: 'Noto Serif KR', serif;
}
.ft_tinos {
  font-family: 'Tinos', serif;
  letter-spacing: 0;
  line-height: 1.4;
  font-weight: normal;
}
.ft_marc {
  font-family: 'Marcellus', serif;
  letter-spacing: 0;
  line-height: 1.4;
  font-weight: normal;
}

/* header.pc_menu */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
header.pc_menu:not(.active) {
  color: #fff;
  border-bottom: 0;
}
header.pc_menu:not(.active) img {
  filter: brightness(0) invert(1);
}
header.pc_menu.active {
  background: #fff;
  filter: none;
}

header.pc_menu {
  background: transparent;
  position: relative;
  border-bottom: 1px solid #cfcfcf;
  line-height: 1.2;
}
header .logo {
  display: flex;
  align-items: center;
}
header .wrap {
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
header nav {
  display: flex;
  flex-direction: row;
}

.pc_menu .menu {
  display: flex;
}
.pc_menu .menu .item {
  font-size: 1.15rem;
}
.pc_menu .menu .depth1 > .item {
  display: flex;
  height: 100%;
  padding: 0 20px;
  align-items: center;
}
.pc_menu .menu .depth1:hover > .item {
  color: #3e004b;
}
.pc_menu .menu .depth1:hover .depth2 {
  opacity: 1;
  visibility: visible;
}
.pc_menu .menu .depth2 {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  background: #fff;
  display: flex;
  border-top: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.pc_menu .menu .depth2 .left {
  flex-basis: 580px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  padding: 60px 120px;
}
.pc_menu .menu .depth2 .left h2 {
  color: #3e004b;
}
.pc_menu .menu .depth2 .right {
  display: flex;
  flex: 1;
  padding: 60px 80px;
}
.pc_menu .menu .depth2 .right ul {
  flex: 1;
}
.pc_menu .menu .depth2 .right li {
  padding: 20px 0;
}
.pc_menu .menu .depth2 .right a {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.pc_menu .menu .depth2 .right a .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
.pc_menu .menu .depth2 .right a .item h4 {
  color: #3e004b;
}
.pc_menu .menu .depth2 .right a .item p {
  font-size: 0.9rem;
}
.pc_menu .menu .depth2 .right h6 {
  color: #3e004b;
  font-size: 0.9rem;
}
.pc_menu .menu .depth2 .right .image {
  display: flex;
  gap: 10px;
  flex-direction: column;
  padding: 10px 0;
  flex-basis: 340px;
}
.pc_menu .menu .depth2 p {
  color: #666;
  line-height: 1.4;
}

.pc_menu .menu .depth1:nth-of-type(1) .depth2 .left {
  background-image: url(../images/bg/header_bg1.png);
}
.pc_menu .menu .depth1:nth-of-type(2) .depth2 .left {
  background-image: url(../images/bg/header_bg2.png);
}
.pc_menu .menu .depth1:nth-of-type(3) .depth2 .left {
  background-image: url(../images/bg/header_bg3.png);
}
.pc_menu .menu .depth1:nth-of-type(4) .depth2 .left {
  background-image: url(../images/bg/header_bg4.png);
}

header [class*='container'] {
  max-width: 1600px;
}
header.pc_menu nav .adm {
  padding: 0 10px;
}
header.pc_menu nav .adm ul {
  display: flex;
  height: 100%;
}
header.pc_menu nav .adm li {
  display: flex;
  height: 100%;
  align-items: center;
}
header.pc_menu nav .adm a {
  display: flex;
  padding: 0 10px;
  line-height: 1;
}
header.pc_menu nav .adm a:hover {
  color: #3e004b;
}
header.pc_menu nav .adm li:not(:last-child) a {
  border-right: 1px solid #cfcfcf;
}
header.pc_menu .lang {
  display: flex;
  
  padding: 0 20px;
  align-items: center;
}
header.pc_menu .lang .item {
  background-color: transparent;
  background-image: url(../images/icon/global.svg);
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: center left;
  border: 0;
  padding-left: 26px;
}
header.pc_menu .lang .item:hover {
  color: #3e004b;
  background-image: url(../images/icon/global_purple.svg);
}
header:not(.active) .lang .item {
  filter: brightness(0) invert(1);
}

header.m_menu.active {
  background: #fff;
  filter: none;
}
header.m_menu:not(.active) .logo {
  filter: brightness(0) invert(1);
}
header.m_menu:not(.active) .m_btn > * {
  filter: brightness(0) invert(1);
}
header.m_menu .m_btn {
  display: flex;
  align-items: center;
}
header.m_menu .m_btn button {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 0;
  background-size: 40px;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0;
}
header.m_menu .m_btn .m_open {
  background-image: url(../images/icon/menu_open.svg);
}
header.m_menu .m_btn .m_close {
  background-image: url(../images/icon/menu_close.svg);
  display: none;
}
header.m_menu .m_btn .m_logout {
  background-image: url(../images/icon/menu_logout.svg);
}
header.m_menu .m_btn .m_login {
  background-image: url(../images/icon/menu_login.svg);
}

/* header.m_menu .m_btn .m_lang {
  background-image: url(../images/icon/menu_global.svg);
} */

.m_menu.active [class*='container'] {
  border-bottom: 1px solid #cfcfcf;
}
.m_menu .menu {
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  padding: 20px;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s, visibility 0.2s;
  background-image: url(../images/bg/menu_bg.svg);
  background-repeat: no-repeat;
  background-position: right -50px bottom -50px;
  background-size: 300px;
}
.m_menu .menu > * {
  width: 100%;
}
.m_menu .menu .accordion {
  --bs-accordion-bg: transparent;
}
.m_menu .menu.show {
  visibility: visible;
  opacity: 1;
}

.m_menu .menu .depth1 > .item {
  width: 100%;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid #3e004b !important;
  color: #3e004b;
  display: flex;
  align-items: center;
  height: 70px;
  line-height: 1;
  padding: 10px 0;
  background-color: transparent;
  border: 0;
  background-image: url(../images/icon/menu_up.svg);
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: right center;
}
.m_menu .menu .depth1 > .item.collapsed {
  background-image: url(../images/icon/menu_down.svg);
}
.m_menu .menu .depth2 {
  padding: 30px 10px 60px;
}
.m_menu .menu .depth2 ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.m_menu .menu .depth2 a {
  display: flex;
  flex-direction: column;
}
.m_menu .menu .depth2 a .item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.m_menu .menu .depth2 h6 {
  font-size: 0.8rem;
  color: #3e004b;
}
.m_menu .menu .depth2 h4 {
  color: #3e004b;
  font-size: 1.1rem;
}
.m_menu .menu .depth2 p {
  color: #666;
  font-size: 0.85rem;
}
.m_menu .accordion-item {
  border: 0;
}

@media (max-width: 1599px) {
  .pc_menu .menu .depth2 .right .image {
    display: none;
  }
}

@media (min-width: 1200px) {
  .pc_menu .menu .depth2 .right a .item p {
    opacity: 0;
    transition: 0.2s;
  }
  .pc_menu .menu .depth2 .right a:hover .item p {
    opacity: 1;
    transition: 0.2s;
  }
  header.m_menu {
    display: none;
  }
}

@media (max-width: 1199px) {
  header.pc_menu {
    display: none;
  }
  header .wrap {
    height: 80px;
  }
  header .logo {
    width: 140px;
  }
  .m_menu .menu {
    height: calc(100vh - 80px);
  }
}

@media (max-width: 767px) {
  header.pc_menu nav {
    display: none;
  }
  header .wrap {
    height: 60px;
  }
  header .logo {
    width: 120px;
  }
  .m_menu .menu {
    height: calc(100vh - 60px);
    background-size: 300px;
    background-position: right -20px bottom -20px;
  }
  .m_menu .menu .depth2 {
    padding: 30px 10px 40px;
  }
  .m_menu .menu .depth2 ul {
    display: flex;
    flex-direction: column;
  }
  .m_menu .menu .depth2 a {
    display: flex;
    flex-direction: column;
  }
  .m_menu .menu .depth2 a .item {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  header.m_menu .m_btn button {
    background-size: 30px;
  }
}

@media (max-width: 575px) {
  .m_menu .menu {
    padding: 0 calc(var(--bs-gutter-x) * 0.5);
  }
}

/* img */
.w100 {
  max-width: 100%;
}
.img_style1 {
  border-radius: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.img_style2 {
  border-radius: 10px;
  border: 2px solid #3e004b;
}
.infographic {
  max-width: 60px;
}

[class*='col']:has(.image_wrap) {
  justify-items: center;
}
.image_wrap {
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  width: fit-content;
}
.image_wrap > *:not(:last-child) {
  margin-bottom: 20px;
}
.image_wrap img {
  border: 2px solid #3e004b;
}

.ratio1 {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1;
}
.ratio1 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
}
a:hover .ratio1 img {
  transform: translate(-50%, -50%) scale(1.05);
  transition: 0.2s;
}

/* button */
button {
  line-height: 1.2;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
button[class*='type'] {
  border-radius: 10rem;
  padding: 12px 45px 12px 20px;
  align-items: center;
  font-size: 0.9rem;
  line-height: 1;
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: right 20px center;
  transition: 0.2s;
}
button[class*='type']:hover {
  background-color: #3e004b;
  transition: 0.2s;
}

button[class*='type'] {
  font-weight: 500;
}
button.type1 {
  color: #3e004b;
  border: 1px solid #3e004b;
  background-color: transparent;
  background-image: url(../images/icon/arrow_right_purple.svg);
}
button.type1:hover {
  background-image: url(../images/icon/arrow_right_white.svg);
  color: #fff;
}
button.type2 {
  color: #212529;
  border: 1px solid #212529;
  background-color: transparent;
  background-image: url(../images/icon/arrow_right_black.svg);
}
button.type2:hover {
  background-image: url(../images/icon/arrow_right_white.svg);
  color: #fff;
}
button.type3 {
  color: #fff;
  border: 1px solid #fff;
  background-color: transparent;
  background-image: url(../images/icon/arrow_right_white.svg);
}
button.type3:hover {
  background-color: #fff;
  color: #3e004b;
  background-image: url(../images/icon/arrow_right_black.svg);
  color: #212529;
}
button.type4 {
  color: #fff;
  border: 1px solid #212529;
  background-color: #212529;
  background-image: url(../images/icon/arrow_right_white.svg);
}
button.type4:hover {
  background-color: #3e004b;
}
button.normal {
  width: 120px;
  height: 40px;
  background: #212529;
  border: 0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-weight: 500;
}
button.normal:hover {
  background: #3e004b;
}
button.cancel {
  width: 120px;
  height: 40px;
  background: transparent;
  border: 1px solid #212529;
  color: #212529;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-weight: 500;
}
button.cancel:disabled {
  background: #818181;
  color: #fff;
  border-color: #818181;
}

button.board_btn_write {
  width: 120px;
  height: 40px;
  background: #212529;
  border: 0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-weight: 500;
}
button.board_btn_normal {
  width: 120px;
  height: 40px;
  background: transparent;
  border: 1px solid #212529;
  color: #212529;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-weight: 500;
}
button.board_btn_list {
  width: 100px;
  height: 40px;
  background: #3e004b;
  border: 0;
  color: #fff;
  border-radius: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-weight: 500;
}
button.board_btn_prev {
  padding: 0 20px 0 44px;
  height: 40px;
  background-color: transparent;
  border: 1px solid #212529;
  color: #212529;
  border-radius: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  background-image: url(../images/icon/arrow_left_black.svg);
  background-repeat: no-repeat;
  background-position: center left 20px;
}
button.board_btn_prev:hover {
  background-color: #e2d9e4;
  border-color: #e2d9e4;
}
button.board_btn_next {
  padding: 0 44px 0 20px;
  height: 40px;
  background-color: transparent;
  border: 1px solid #212529;
  color: #212529;
  border-radius: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  background-image: url(../images/icon/arrow_right_black.svg);
  background-repeat: no-repeat;
  background-position: center right 20px;
}
button.board_btn_next:hover {
  background-color: #e2d9e4;
  border-color: #e2d9e4;
}

/* 슬라이드 */
section:has(.half_slide) {
  overflow: hidden;
}
.half_slide .slide_wrap {
  position: relative;
}
.half_slide .slide_content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  gap: 40px;
  align-items: stretch;
}
.half_slide .slide_content > li {
  min-width: 100%;
  height: auto;
  align-content: center;
}
.half_slide .slide_content > li:not(.active) {
  opacity: 0;
  transition: 0.5s;
}
.half_slide .slide_content .content-div > *:not(:last-child) {
  margin-bottom: 15px;
}
.half_slide .slide_content .title > .top {
  margin-bottom: 15px;
}
.half_slide .slide_content .title p {
  line-height: 1.3;
}
.half_slide .slide_content .title h3 {
  line-height: 1.3;
}
.half_slide .slide_content .caution {
  margin-top: 30px;
}
.half_slide .btn-group {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
}

.half_slide .slide_wrap2 {
  position: relative;
}
.half_slide .slide_wrap2 .slide_content > li {
  background: #fff;
  padding: 60px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.half_slide .slide_wrap2 .slide_content > li:not(.active) {
  opacity: 1;
  transition: 0.5s;
}
.half_slide .slide_wrap2 .slide_content > li:not(.active) .row {
  opacity: 0.3;
}
.half_slide .slide_wrap2 .slide_content h3 {
  line-height: 1.3;
}
.half_slide .slide_wrap2 .image img {
  border-radius: 10rem;
}

.half_slide .slide_wrap3 {
  position: relative;
}
.half_slide .slide_wrap3 .slide_content > li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.half_slide .slide_wrap3 .slide_content > li:not(.active) {
  opacity: 1;
  transition: 0.5s;
}
.half_slide .slide_wrap3 .slide_content > li:not(.active) > * {
  opacity: 0.3;
}
.half_slide .slide_wrap3 .slide_content .image img {
  max-width: 100%;
  width: 100%;
}
.half_slide .slide_wrap3 .slide_content .text {
  padding: 20px;
  flex: 1;
  align-content: center;
}
.half_slide .slide_wrap3 .slide_content .check {
  justify-items: center;
}
.half_slide .slide_wrap3 .slide_content .check li {
  width: fit-content;
}

/* 갤러리 슬라이드 */
section:has(.gallery_slide) {
  overflow: hidden;
}
.gallery_slide .slide_wrap {
  position: relative;
}
.gallery_slide .slide_content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  gap: 40px;
  align-items: stretch;
}
.gallery_slide .slide_content > li {
  min-width: 100%;
  height: auto;
  align-content: center;
  transition: 0.5s;
}
.gallery_slide .slide_content > li:not(.active) {
  opacity: 0.3;
  scale: 90%;
  transition: 0.5s;
}
.gallery_slide .btn-group {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
}

.gallery_slide .image {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 5/3;
}
.gallery_slide .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery_slide .thumb {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}
.gallery_slide .thumb button {
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  opacity: 0.5;
  width: 25%;
}
.gallery_slide .thumb button.active {
  opacity: 1;
}
.gallery_slide .thumb img {
  object-fit: cover;
}

/* 슬라이드 버튼 */
button[class*='slide'] {
  width: 65px;
  height: 65px;
  justify-content: center;
  border: 0;
  border-radius: 100%;
  background-color: #3e004b;
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center center;
  transition: 0.2s;
}
button[class*='slide']:hover {
  background-color: #212529;
  transition: 0.2s;
}
button.slide_prev {
  background-image: url(../images/icon/arrow_left_white.svg);
}
button.slide_next {
  background-image: url(../images/icon/arrow_right_white.svg);
}

[class*='slide'] .btn-group {
  pointer-events: none;
}
[class*='slide'] .btn-group button {
  pointer-events: auto;
}
.slide_content .num {
  display: none;
}

#main .slide_content .num {
  display: inline-block;
}
.indicator {
  display: flex;
  justify-content: center;
  align-items: center;
}
.indicator button {
  width: 24px;
  height: 24px;
  background: none;
  border: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.indicator button.active .circle {
  width: 12px;
  height: 12px;
  border: 1px solid #212529;
  border-radius: 100%;
  background: none;
  transition: 0.2s;
}
.indicator button .circle {
  width: 6px;
  height: 6px;
  background: #666;
  border-radius: 100%;
}
.indicator button:hover .circle {
  width: 12px;
  height: 12px;
  border: 1px solid #212529;
  border-radius: 100%;
  background: none;
  transition: 0.2s ease-in-out;
}

/* 메인 슬라이드 */
section:has(.main_slide) {
  overflow: hidden;
}
.main_slide .slide_wrap {
  position: relative;
  width: 100vw;
  overflow: hidden;
}
.main_slide .slide_wrap2 {
  position: relative;
  width: 100vw;
  overflow: hidden;
}
.main_slide .slide_content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  gap: 40px;
  align-items: stretch;
}
.main_slide .slide_content > li {
  width: 100%;
  height: auto;
  align-content: center;
}
.main_slide .thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 0;
  background: none;
  border-radius: 10px;
}
.main_slide .thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.01);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
}
.main_slide a:hover .thumb img {
  transform: translate(-50%, -50%) scale(1.05);
  transition: 0.2s;
}
.main_slide .item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main_slide .text {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 10px;
}
.main_slide .text .board_title {
  text-overflow: ellipsis;
  white-space: normal;
  overflow: hidden;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.main_slide .text .board_date {
  color: #666;
}
.main_slide .btn-group {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
}
.main_slide .slide_bar {
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  overflow: hidden;
}
.main_slide .slide_bar .progress {
  height: 100%;
  width: 0%;
  background: #3e004b;
  transition: width 0.5s ease-in-out;
}
.main_slide .bottom {
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}
.main_slide .bottom .btn-group {
  position: relative;
  width: fit-content;
  height: fit-content;
  top: 0;
  left: 0;
  transform: translate(0);
  gap: 20px;
}
.main_slide .bottom .btn-group .slide_prev {
  margin: 0;
}
.main_slide .bottom .btn-group .slide_next {
  margin: 0;
}
.main_slide .bottom .slide_bar {
  position: relative;
  width: 100%;
}
.main_slide .num {
  text-align: left;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  text-shadow: -1px -1px 0 #818181, 1px -1px 0 #818181, -1px 1px 0 #818181, 1px 1px 0 #818181;
}
.main_slide li.active .num {
  text-shadow: none;
  color: #3e004b;
}

/* 탭메뉴 */
.tab_wrap {
  background: #f0f0f0;
}
.tab_wrap ul {
  display: flex;
  justify-content: center;
}
.tab_wrap ul li {
  display: inline-block;
}
.tab_wrap button {
  height: 40px;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  color: #212529;
}
.tab_wrap button.active {
  background: #3e004b;
  color: #fff;
  font-weight: 600;
}

[class*='tab_menu'] {
  display: flex;
  justify-content: center;
}
[class*='tab_menu'] li {
  display: inline-block;
  padding: 0 30px;
}
[class*='tab_menu'] li:not(:last-child) {
  border-right: 1px solid #cfcfcf;
}
[class*='tab_menu'] button {
  border: 0;
  background: 0;
  color: #818181;
  padding: 0;
  gap: 4px;
}
[class*='tab_menu'] button.active {
  font-weight: 600;
  color: #3e004b;
}

.tab_content .tab_item {
  display: none;
}
.tab_content .tab_item.active {
  display: block;
}

.content:has(.tab_slide) {
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.tab_slide .image > *:not(:last-child) {
  margin-bottom: 20px;
}

/* list */
.list1 li {
  display: flex;
  align-items: center;
  border: 2px solid #cfcfcf;
  padding: 20px 30px;
  border-radius: 10rem;
  gap: 10px;
  line-height: 1.3;
  background: #fff;
}
.list1 li:not(:last-child) {
  margin-bottom: 20px;
}
.list1 li .num {
  font-weight: 600;
  color: #3e004b;
  flex-basis: 30px;
}
.list1 li p {
  flex-grow: 1;
  text-align: left;
}
.list1 li .bold {
  color: #3e004b;
}

.list2 {
  text-align: left;
  line-height: 1.4;
}
.list2 > *:not(:last-child) {
  margin-bottom: 10px;
}
.list2 .icon_wrap {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 100%;
}
.list2 .icon_wrap img {
  width: 40px;
}
.list2 h5 {
  border-bottom: 1px solid #3e004b;
  color: #3e004b;
  display: flex;
  gap: 10px;
  padding-bottom: 5px;
  width: 100%;
}

.row.list3 {
  --bs-gutter-y: 1rem;
}
.list3 .circle {
  border-radius: 100%;
  aspect-ratio: 1;
  padding: 20px;
  border: 1px solid #cfcfcf;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.list3 .circle h5 {
  color: #3e004b;
}
.list3 .circle p {
  line-height: 1.4;
}

.list4 {
  background: #fff;
  border-radius: 10px;
  padding: 30px 10px;
}
.list4 .row > *:not(:last-child) {
  border-right: 1px dashed #bfb2c3;
}
.list4 .item {
  justify-items: center;
}
.list4 .item > *:not(:last-child) {
  margin: 0 auto;
  margin-bottom: 10px;
}
.list4 .item p {
  line-height: 1.4;
}
.list4 .icon_wrap {
  width: fit-content;
  padding: 10px;
  border: 2px solid #3e004b;
  border-radius: 100%;
  aspect-ratio: 1;
}

.list5 .row {
  --bs-gutter-y: 0;
  margin: 0;
  line-height: 1.4;
}
.list5 li {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 10px;
  border: 1px solid #bfb2c3;
  margin: -0.5px;
}
.list5 li > *:not(:last-child) {
  margin-bottom: 10px;
}
.list5 li .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
.list5 li .icon_wrap {
  padding: 10px;
  background: #3e004b;
  border-radius: 100%;
  width: fit-content;
  aspect-ratio: 1;
}

.list6 {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.list6 .row {
  --bs-gutter-y: 1rem;
}
.list6 .item {
  padding: 20px 0;
  color: #3e004b;
}
.list6 [class*='col']:has(.item):not(:last-child) {
  border-right: 1px dashed #bfb2c3;
}
.list6 .item h5 {
  line-height: 1.3;
}
.list6 .item > *:not(:last-child) {
  margin-bottom: 10px;
}

.list7 [class*='col'] {
  display: flex;
}
.list7 .item {
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.list7 .item .text {
  background: #3e004b;
  padding: 10px;
  color: #fff;
  line-height: 1.3;
  height: 100%;
  align-content: center;
}

.list8 {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 0 80px;
}
.list8 .item {
  display: flex;
  padding: 80px 0;
  gap: 60px;
}
.list8 .item > * {
  width: 50%;
  align-content: center;
}
.list8 .item:not(:last-child) {
  border-bottom: 1px dashed #cfcfcf;
}
.list8 .item > .text .title {
  margin-bottom: 30px;
}
.list8 .item > .text .title h3 {
  display: flex;
  gap: 10px;
}
.list8 .item > .text .title h3 .num {
  color: #bfb2c3;
}
.list8 .item > .text .title h3 > *:last-child {
  flex: 1;
}
.list8 .item > .text .title > *:not(:last-child) {
  margin-bottom: 20px;
}
.list8 .item > .image img {
  border-radius: 100rem;
  max-width: 500px;
  width: 100%;
}

.card_list li {
  display: flex;
  flex-direction: row;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.card_list li:not(:last-child) {
  margin-bottom: 50px;
}
.card_list li > * {
  width: 50%;
}
.card_list li > .text {
  background: #fff;
  padding: 30px 60px;
  align-content: center;
}
.card_list li > .text > *:not(:last-child) {
  margin-bottom: 10px;
}
.card_list li > .text > .title {
  margin-bottom: 20px;
}
.card_list li > .text .num {
  color: #bfb2c3;
}
.card_list li > .image img {
  min-height: 100%;
  object-fit: cover;
}

section .accordion {
  border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
  border-bottom: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
section .accordion .accordion-item button.accordion-button h5 {
  padding-left: 26px;
  background-image: url(../images/logo/h_small_blue.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left center;
}
section .accordion .accordion-item button.accordion-button:not(.collapsed) {
  color: #212529;
  background-color: #fff;
}
section .accordion .accordion-item button.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-icon);
}
section .accordion .accordion-body {
  background: #f8f9fa;
}

/* 꾸밈 요소 */
.capsule {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.capsule li {
  display: inline-block;
  line-height: 1;
  border: 1px solid #3e004b;
  border-radius: 10rem;
  color: #3e004b;
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
}

.check li {
  padding-left: 16px;
  background-image: url(../images/icon/check_purple.svg);
  background-size: 14px;
  background-repeat: no-repeat;
  background-position-y: 3px;
  line-height: 1.4;
}
.check li:not(:last-child) {
  margin-bottom: 6px;
}

.check2 li {
  padding: 8px 10px 8px 35px;
  background-color: #f8f9fa;
  background-image: url(../images/icon/check2_purple.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 12px 10px;
  text-align: left;
  line-height: 1.4;
}
.check2 li:not(:last-child) {
  margin-bottom: 10px;
}
.check2 li.attention {
  background-color: #f5eef7;
  background-image: url(../images/icon/attention.svg);
  background-size: 18px;
}

.badge_title {
  background: url(../images/logo/h_small_white.svg), #3e004b;
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 24px;
  color: #fff;
  border-radius: 10rem;
  padding: 4px 20px 4px 50px;
  display: inline-block;
}
.badge_title2 {
  color: #3e004b;
  border: 1px solid #3e004b;
  border-radius: 10rem;
  padding: 4px 14px;
  display: inline-block;
}

/* box */
.step_box {
  padding: 0 20px;
}
.row:has(.step_box) {
  --bs-gutter-y: 0;
}
[class*='col']:has(.step_box):not(:last-child) {
  border-right: 1px dashed #cfcfcf;
}
.step_box > *:not(:last-child) {
  margin-bottom: 30px;
}
.step_box .image h5 {
  background: #296aa6;
  color: #fff;
  padding: 4px 10px;
}
.step_box .text > *:not(:last-child) {
  margin-bottom: 10px;
}
.step_box .text > div > *:not(:last-child) {
  margin-bottom: 4px;
}
[class*='step_box'] .step {
  line-height: 1;
  border: 1px solid #3e004b;
  border-radius: 10rem;
  color: #3e004b;
  padding: 6px 14px;
  font-family: 'Tinos', serif;
  letter-spacing: 0;
  display: inline-block;
}

.step_box2 {
  background: #fff;
  padding: 20px 60px;
  border-radius: 10px;
}
.step_box2 li {
  padding: 30px 0;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.step_box2 li:not(:last-child) {
  border-bottom: 1px dashed #cfcfcf;
}
.step_box2 li .text {
  display: flex;
  flex-direction: row;
  flex: 1;
  align-items: start;
  gap: 20px;
}
.step_box2 li .text > div {
  flex: 1;
}
.step_box2 li .text > div h5 {
  color: #3e004b;
  margin-bottom: 6px;
}
.step_box2 li .image {
  flex-basis: 180px;
}
.step_box2 li .image img {
  border-radius: 15px;
}

.step_box3 {
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.step_box3 [class*='col']:not(:last-child) {
  border-right: 1px dashed #cfcfcf;
}
.step_box3 .box {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.step_box3 .box .image {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step_box3 .box .image .step {
  width: fit-content;
}
.step_box3 .box .image > *:not(:last-child) {
  margin-bottom: 10px;
}
.step_box3 .box .text {
  flex: 1;
  align-content: center;
  line-height: 1.4;
}

.combobox_right {
  text-align: right;
}
.combobox_left {
  text-align: left;
}
.combobox [class*='col'] {
  align-content: center;
}
.combobox [class*='combobox'] > *:not(:last-child) {
  margin-bottom: 10px;
}
.combobox .combobox_right {
  padding-right: 30px;
  border-right: 2px solid #3e004b;
}
.combobox .combobox_center {
  padding: 0 20px;
}
.combobox .combobox_left {
  padding-left: 30px;
  border-left: 2px solid #3e004b;
}

.box_wrap .row {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 2rem;
}
.box_wrap .box > *:not(:last-child) {
  margin-bottom: 20px;
}
.box_wrap .text {
  line-height: 1.4;
}
.box_wrap .text > *:not(:last-child) {
  margin-bottom: 10px;
}

[class*='box_style'] {
  margin: 0;
  border-radius: 10px;
  padding: 40px;
}
[class*='box_style'] [class*='col'] {
  align-content: center;
}
[class*='box_style'] .col_step {
  flex: 1;
  height: 100%;
}
[class*='box_style'] .col_step .box_center img {
  border-radius: 100%;
  box-shadow: 0px 0px 20px 0px rgba(62, 0, 75, 0.5);
}
[class*='box_style'] .col_step .box {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #cfcfcf;
}
[class*='box_style'] .col_step .box_title {
  background: #3e004b;
  font-weight: 600;
  padding: 4px 10px;
}
[class*='box_style'] .col_step .box_title h5 {
  background: url(../images/logo/h_small_white.svg);
  background-repeat: no-repeat;
  background-position: 0 center;
  background-size: 24px;
  color: #fff;
  padding-left: 30px;
  display: inline-block;
}
[class*='box_style'] .col_step .box_content {
  padding: 10px;
}
[class*='box_style'] .col_step .box_content .check {
  text-align: left;
}
[class*='box_style'] .col_step > *:not(:last-child) {
  margin-bottom: 20px;
}
[class*='box_style'] .col_icon {
  flex-basis: 80px;
}
[class*='box_style'] .col_icon img {
  width: 40px;
}
[class*='box_style'] .col_icon img.icon {
  width: 20px;
}

.box_style1 {
  background: #fff;
  border: 2px solid #cfcfcf;
}
.box_style1 .col_step {
  align-content: baseline;
}
.box_style2 {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border-radius: 50rem;
}
.box_style2 .row {
  align-items: center;
}

/* table */
.table1 {
  width: 100%;
  table-layout: fixed;
  border: 2px solid #cfcfcf;
  line-height: 1.4;
}
.table1 thead {
  background: #f0f0f0;
}
.table1 thead tr > *:last-child {
  background: #613f9c;
  color: #fff;
  border-top: 2px solid #613f9c;
}
.table1 tr {
  height: 100px;
}
.table1 tr > * {
  border: 1px solid #cfcfcf;
  padding: 10px;
}
.table1 tr > *:nth-child(1) {
  width: 300px;
  background: #f0f0f0;
  font-weight: 500;
}
.table1 tr > *:last-child {
  border-left: 2px solid #613f9c;
  border-right: 2px solid #613f9c;
  color: #3e004b;
  font-weight: 600;
}
.table1 tr:last-child > *:last-child {
  border-bottom: 2px solid #613f9c;
}

/* layout */
[class*='container'] {
  padding: 0 calc(var(--bs-gutter-x));
}
section {
  padding: 160px 0;
  text-align: center;
}
section.belt {
  padding: 100px 0;
}
section .title {
  margin-bottom: 60px;
}
section .title > .top {
  margin-bottom: 30px;
}
section .title > .top > *:not(:last-child) {
  margin-bottom: 10px;
}
section .title > .top p {
  color: #3e004b;
  font-weight: 500;
}
section .title > .top p .icon {
  margin-right: 10px;
  width: 26px;
}
section .title > .top h6 {
  color: #666;
  margin-top: 15px;
}
section .title > .bottom > *:not(:last-child) {
  margin-bottom: 10px;
}
section .content > *:not(:last-child) {
  margin-bottom: 50px;
}
section .content-div > *:not(:last-child) {
  margin-bottom: 20px;
}
section .content .row {
  justify-content: center;
}

[class*='half'] .text > *:not(:last-child) {
  margin-bottom: 20px;
}
.half_list .content > *:not(:last-child) {
  margin-bottom: 100px;
}

.container-sm {
  max-width: 768px;
}
.container-lg {
  max-width: 992px;
}
.container-xl {
  max-width: 1199px;
}

[class*='sub'] {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.divider {
  margin: 0;
  border: 1px solid #f1dfff;
  opacity: 1;
}
.divider_rec {
  width: 30px;
}

.col_5 {
  width: 20%;
}
.col_5_2 {
  width: 20%;
}

.row {
  --bs-gutter-y: 2rem;
}

/* 공통 */
.scroll_top {
  position: fixed;
  left: 50px;
  bottom: 50px;
  border: 1px solid #3e004b;
  border-radius: 100%;
  background-image: url(../images/icon/scroll_circle_logo.svg);
  background-size: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  z-index: 20;
  padding: 0;
  width: 200px;
  height: 200px;
}
.scroll_top:not(.active) {
  filter: brightness(0) invert(1);
}
.scroll_top.active {
  border-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.scroll_top:hover {
  background-color: #fff !important;
  background-image: url(../images/icon/scroll_circle_top.svg);
  background-size: 40px;
  border-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  filter: none;
}
.scroll_top img {
  transition: filter 0.3s ease;
  filter: brightness(100%);
}

.side_btn {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 20px;
  transition: bottom 0.3s ease;
  animation: float 2s ease-in-out infinite;
}
.side_btn ul {
  flex-direction: column;
  gap: 10px;
  display: none;
}
/* .side_btn.open ul {
  display: flex;
} */
.side_btn ul li a {
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 10rem;
  display: inline-block;
  width: 100%;
  height: 40px;
  display: flex;
  gap: 10px;
  padding: 10px 15px;
  align-items: center;
}
.side_btn ul li a img {
  width: 20px;
}
.side_btn .side_open {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: #3e004b;
  border: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.side_btn .side_open img {
  /* width: 30px; */
  /* transform: rotate(-45deg); */
  transition: 0.2s;
}
.side_btn.open .side_open img {
  transform: rotate(0deg);
  transition: 0.2s;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.top_banner {
  height: 500px;
  background: #333;
  align-content: center;
  text-align: center;
  font-weight: 500;
  color: #fff;
  background-position: center center;
  background-size: cover;
  line-height: 1.4;
  position: relative;
  top: 0;
  display: grid;
}
.top_banner::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url(../images/icon/scroll_down.svg);
  background-repeat: no-repeat;
  background-position: bottom right 50px;
}
.top_banner [class*='container'] > *:not(:last-child) {
  margin-bottom: 10px;
}

.blog .text > *:not(:last-child) {
  margin-bottom: 50px;
}
.blog .text .title p {
  line-height: 1.6;
}
.blog .text .top > *:not(:last-child) {
  margin-bottom: 10px;
}
.blog .image {
  border: 2px solid #3e004b;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
}
.blog .image .card {
  border-radius: 0;
}
.blog .image .card img {
  max-width: 100%;
  width: 100%;
}
.blog .image .card .blog_icon {
  position: absolute;
  width: 60px;
  top: 20px;
  right: 20px;
}
.blog .image .card .box {
  padding: 20px;
  text-align: left;
}
.blog .image .card .box > *:not(:last-child) {
  margin-bottom: 4px;
}
.blog .image .card .box > * {
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.blog .btn-group {
  pointer-events: none;
}
.blog .btn-group button {
  pointer-events: auto;
}

/* board */
[class*='board'] {
  text-align: left;
}
.board_tab {
  border-bottom: 1px solid #cfcfcf;
  display: flex;
  justify-content: center;
}
.board_tab button {
  min-width: 100px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 0;
  padding: 0;
  gap: 4px;
  padding: 0 20px;
}
.board_tab button.active {
  border-bottom: 2px solid #212529;
  font-weight: 600;
}
.board_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.board_top .search {
  display: flex;
  gap: 20px;
}
.board_top [class*='search'] > * {
  height: 40px;
  border-radius: 0;
}
.board_top .search .search_select {
  width: 120px;
  padding: 0 6px;
  background-image: url(../images/icon/chevron_down.svg);
  background-position: center right 10px;
  background-size: 14px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  background-color: #fff;
}
.board_top .search .search_input {
  width: 220px;
  display: flex;
  border-bottom: 1px solid #212529;
}
.board_top .search .search_input input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}
.board_top .search .search_input button {
  min-width: 40px;
  flex-basis: 40px;
  background-image: url(../images/icon/search.svg);
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  padding: 0;
  display: flex;
  border: 0;
}

.board_list .row {
  justify-content: left !important;
}
.board_list {
  word-break: break-all;
  line-height: 1.4;
}
.board_list .board_title {
  font-size: 1.15rem;
  font-weight: 500;
  flex: 1;
  line-height: 1.3;
}
.board_list a:hover .board_title {
  font-weight: 700;
}
.board_list .board_date {
  color: #999;
}
.board_list .board_menu {
  color: #999;
}
.board_list .thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.board_list a:hover img {
  transform: translate(-50%, -50%) scale(1.05);
  transition: 0.2s;
}
.board_list .thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.01);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
}

.board_list .bna_wrap {
  display: flex;
  aspect-ratio: 16/9;
}
.board_list .bna_wrap > * {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.board_list .bna_wrap > * img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.01);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
}
.board_list .bna_wrap .after {
  position: relative;
}
.board_list .bna_wrap .after img {
  filter: blur(8px);
}
.board_list .bna_wrap .after .after_login {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-shadow: 0 0 5px rgba(0, 0, 0, 1);
  font-size: 0.9rem;
  line-height: 1.2;
}

.board_card .item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.board_card .item .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  flex: 1;
}
.board_card .item .text > * {
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.board_table .board_list ul {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #cfcfcf;
  gap: 30px;
  padding: 20px 0;
  text-align: center;
}
.board_table .board_list ul.head {
  border-top: 1px solid #666;
  font-weight: 600;
  background: #f0f0f0;
}
.board_table .board_list ul.head li.tit {
  text-align: center;
}
.board_table .board_list ul li {
  width: 100%;
  max-width: 100px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.board_table .board_list ul li.num {
  width: 100%;
  max-width: 80px;
}
.board_table .board_list ul li.img {
  width: 100%;
  max-width: 300px;
}
.board_table .board_list ul li.tit {
  width: 100%;
  max-width: 100%;
  text-align: left;
  font-weight: 500;
}
.board_table .board_list ul li.tit a:hover {
  text-decoration: underline;
}
.board_table .board_list ul li.state span {
  border: 1px solid #818181;
  border-radius: 10rem;
  padding: 4px 10px;
  line-height: 1;
  color: #818181;
  display: inline-block;
}
.board_table .board_list ul li.state span.wait::after {
  content: '대기';
}
.board_table .board_list ul li.state span.complete {
  border-color: #7c4ca0;
  color: #7c4ca0;
}
.board_table .board_list ul li.state span.complete::after {
  content: '완료';
}
.board_table .board_list a:hover ul li.tit {
  font-weight: 600;
}
/* .board_table .board_list a:hover ul{background: #F5EEF7;} */
.board_table .board_list ul.notice {
  color: #5f2e69;
}
/* .board_table .board_list ul.notice {background-color: #F5EEF7;} */
/* .board_table .board_list a:hover ul.notice {background-color: #F5EEF7;} */

.paging {
  display: flex;
  justify-content: center;
}
.paging .btn-group {
  gap: 4px;
}
.paging button {
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
  color: #999;
}
.paging button.active {
  color: #212529;
  font-weight: 600;
}
.paging button.prev {
  background-image: url(../images/icon/paging_prev.svg);
}
.paging button.next {
  background-image: url(../images/icon/paging_next.svg);
}
.paging button:disabled {
  display: none;
}

.board_bottom {
  display: flex;
  justify-content: center;
  align-items: center;
}

.board_view .view_title {
  padding: 40px 0;
  border-top: 2px solid #3e004b;
  border-bottom: 1px solid #cfcfcf;
}
.board_view .view_title > *:not(:last-child) {
  margin-bottom: 10px;
}
.board_view .view_content {
  padding: 40px 0;
  border-bottom: 1px solid #cfcfcf;
}
.board_view .view_comment {
  padding: 40px 0;
}
.board_view .view_comment .comment_title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.board_view .view_comment .comment_content {
  border: 1px solid #cfcfcf;
  padding: 20px;
  background: #f5eef7;
  height: 200px;
  overflow-y: auto;
}
.board_view .write_comment .input {
  position: relative;
  padding-bottom: 40px;
  border: 1px solid #cfcfcf;
}
.board_view .write_comment .input textarea {
  width: 100%;
  height: 160px;
  border: 0;
  outline: 0;
  padding: 20px;
}
.board_view .write_comment .input button {
  position: absolute;
  right: 0;
  bottom: 0;
}
.board_view .view_bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.board_view .view_bottom .btn-group {
  gap: 10px;
}

/* form */
.form .btn-group {
  gap: 10px;
}
.form_title {
  text-align: left;
  border-bottom: 1px solid #333;
  padding: 10px 0;
}
.form_list {
  border-top: 1px solid #cfcfcf;
}
.form_list li {
  min-height: 60px;
  display: flex;
  border-bottom: 1px solid #cfcfcf;
}
.form_list li > * {
  display: flex;
  align-items: center;
  padding: 10px 20px;
}
.form_list li .label {
  flex-basis: 200px;
  text-align: left;
  background: #f0f0f0;
}
.form_list li .label .req::after {
  content: '*';
  margin-left: 4px;
  color: #ff3b30;
}
.form_list li .input {
  flex: 1;
  text-align: left;
  display: grid;
  flex-direction: column;
  gap: 5px;
}
.form_list li .input input {
  width: 100%;
  height: 40px;
  border: 1px solid #cfcfcf;
  outline: 0;
  padding: 10px;
}
.form_list li .input textarea {
  width: 100%;
  height: 200px;
  border: 1px solid #cfcfcf;
  outline: 0;
  padding: 10px;
}

.form_check {
  text-align: left;
}
.form_check > *:not(:last-child) {
  margin-bottom: 10px;
}
.form_check .form_checkbox input[type='checkbox'] {
  display: none;
}
.form_check .form_checkbox label {
  padding-left: 26px;
  position: relative;
}
.form_check .form_checkbox label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/icon/checkbox_default.svg);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position-y: center;
}
.form_check .form_checkbox input[type='checkbox']:checked + label::before {
  content: '';
  background: url(../images/icon/checkbox_checked.svg);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position-y: center;
}
.form_check .form_checkbox .req {
  color: #007aff;
}
.form_check .form_scroll {
  border: 1px solid #cfcfcf;
  padding: 20px;
  height: 200px;
  overflow-x: hidden;
  font-size: 0.9rem;
}
.form_check .form_scroll > div:not(:last-child) {
  margin-bottom: 10px;
}

.form .login_box .account {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form .login_box .account input:not([type='checkbox']) {
  width: 100%;
  height: 60px;
  border: 1px solid #cfcfcf;
  outline: 0;
  padding: 0 20px;
}
.form .login_box .account .input {
  display: flex;
  gap: 10px;
}
.form .login_box .account .input select {
  width: 300px;
  padding: 0 20px;
  background-image: url(../images/icon/chevron_down.svg);
  background-position: center right 20px;
  background-size: 14px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  background-color: #fff;
}
.form .login_box .btn-group {
  width: 100%;
}
.form .login_box .btn-group button {
  width: 100%;
  height: 60px;
}
.form .login_box .login_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #818181;
}
.form .login_box .login_bottom ul {
  display: flex;
  line-height: 1;
}
.form .login_box .login_bottom ul li:not(:last-child) {
  padding-right: 10px;
  border-right: 1px solid #cfcfcf;
  margin-right: 10px;
}

.result_box {
  background: #f5eef7;
  padding: 20px;
  min-height: 160px;
  align-items: center;
  display: grid;
}

.quick_login {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.quick_login button {
  width: 100%;
  height: 60px;
  border: 1px solid #cfcfcf;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 60px;
  background-position: center left;
}
.quick_login button.naver_login {
  background-image: url(../images/icon/naver_login.svg);
}
.quick_login button.kakao_login {
  background-image: url(../images/icon/kakao_login.svg);
}

.form .login_box .btn-group button {
  width: 100%;
  height: 60px;
}

/* bottom */
.common_bottom section {
  text-align: left;
}
.common_bottom section .left .top > *:not(:last-child) {
  margin-bottom: 20px;
}
.common_bottom section .left .top {
  margin-bottom: 30px;
}

.common_bottom .value {
  text-align: center;
  background-image: radial-gradient(#662d91, #241d29);
  color: #fff;
}
.common_bottom .value .top p {
  color: #fff;
}
.common_bottom .value .list {
  display: flex;
  flex-direction: row;
  padding: 20px;
  flex-wrap: nowrap;
}
.common_bottom .value .item {
  width: 100%;
  margin: -20px;
}
.common_bottom .value .circle {
  border-radius: 100%;
  border: 1px solid #fff;
  aspect-ratio: 1;
  align-content: center;
  padding: 20px;
}
.common_bottom .value .circle > *:not(:last-child) {
  margin-bottom: 20px;
}
.common_bottom .value .circle h5 {
  letter-spacing: 0;
}
.common_bottom .left {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.common_bottom .slide_content > li {
  min-width: 400px;
}
.common_bottom .bottom_instagram .slide_content > li {
  min-width: 300px;
  max-width: 300px;
}
.common_bottom .bottom_instagram .thumb {
  aspect-ratio: 1;
  border-radius: 0;
}
.common_bottom .btn-group {
  gap: 10px;
}

/* footer */
footer {
  background: #3e004b;
  color: #fff;
  text-align: center;
  padding: 60px 0;
}
footer [class*='container'] > *:not(:last-child) {
  margin-bottom: 20px;
}
footer .footer_quick li {
  display: inline-block;
  font-weight: 500;
}
footer .footer_quick li:not(:last-child) {
  margin-right: 20px;
}
footer .footer_quick li a::after {
  background-color: #fff;
}
footer .footer_bottom {
  font-size: 0.9rem;
}
footer .footer_bottom > *:not(:last-child) {
  margin-bottom: 10px;
}
footer .footer_bottom .copyright {
  color: #bfb2c3;
}

@media (min-width: 1500px) {
  .half_slide .slide_wrap .btn-group .slide_prev {
    margin-left: -100px;
  }
  .half_slide .slide_wrap .btn-group .slide_next {
    margin-right: -100px;
  }
  .half_slide .slide_wrap2 .btn-group .slide_prev {
    margin-left: -20px;
  }
  .half_slide .slide_wrap2 .btn-group .slide_next {
    margin-right: -20px;
  }
  .main_slide .btn-group .slide_prev {
    margin-left: -100px;
  }
  .main_slide .btn-group .slide_next {
    margin-right: -100px;
  }
}
@media (max-width: 1399px) {
  .col_5 {
    width: 33.33%;
  }
  .col_5_2 {
    width: 33.33%;
  }

  .half_slide .slide_wrap2 .slide_content > li {
    padding: 40px;
  }

  .list4 .row > *:nth-child(3n) {
    border-right: 0;
  }
  .list6 [class*='col']:has(.item):nth-child(3n) {
    border-right: 0;
  }
  .list8 {
    padding: 0 40px;
  }
  .list8 .item {
    display: flex;
    padding: 40px 0;
    gap: 40px;
  }
  .list8 .item > .text .title {
    margin-bottom: 20px;
  }

  .combobox img {
    max-width: 400px;
    width: 100%;
  }
  .combobox [class*='col'] {
    align-content: center;
  }
  .combobox [class*='col']:has(.combobox_center) {
    order: 1;
  }
  .combobox [class*='col']:has(.combobox_right) {
    order: 2;
  }
  .combobox [class*='col']:has(.combobox_left) {
    order: 3;
  }
  .combobox [class*='combobox'] > *:not(:last-child) {
    margin-bottom: 10px;
  }
  .combobox .combobox_center {
    padding: 0;
  }
  .combobox .combobox_right {
    text-align: left;
    padding-right: 0;
    border-right: 0;
    padding-left: 20px;
    border-left: 2px solid #3e004b;
  }
  .combobox .combobox_left {
    padding-left: 20px;
    border-left: 2px solid #3e004b;
  }
}

@media (min-width: 1200px) {
  .half_slide .slide_wrap2 .row > *:nth-child(odd) {
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
  .half_slide .slide_wrap2 .row > *:nth-child(even) {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }

  .list8 .item > .text {
    text-align: left;
  }
  .list8 .item > .text .title > *:not(:last-child) {
    align-items: baseline;
  }

  .card_list li > .text {
    text-align: left;
  }

  .tab_slide .row > *:not(:last-child) {
    border-right: 1px dashed #cfcfcf;
  }

  [class*='half'] .text {
    text-align: left;
  }
  [class*='half'] .row > * {
    align-self: center;
  }
  [class*='half'] .row > *:nth-child(odd) {
    padding-right: 50px;
  }
  [class*='half'] .row > *:nth-child(even) {
    padding-left: 50px;
  }
  .half_reverse .text {
    text-align: right;
  }
  .box_style2 {
    padding: 40px 120px;
  }

  .table1 thead {
    font-size: 1.15rem;
  }
  .table1 tr > *:last-child {
    font-size: 1.15rem;
  }

  [class*='board'] .row {
    --bs-gutter-x: 2.5rem;
    --bs-gutter-y: 2.5rem;
  }
}

@media (max-width: 1199px) {
  section .content > *:not(:last-child) {
    margin-bottom: 30px;
  }

  [class*='half'] .row {
    gap: 30px;
  }
  [class*='half'] [class*='image'] img {
    max-width: 500px;
    width: 100%;
  }
  .image_wrap {
    max-width: fit-content;
    padding: 30px;
  }
  .image_wrap > *:not(:last-child) {
    margin-bottom: 10px;
  }
  .half_reverse {
    flex-direction: column-reverse;
  }

  button[class*='slide'] {
    width: 50px;
    height: 50px;
    background-size: 24px;
  }
  .main_slide .slide_content {
    gap: 30px;
  }
  .main_slide .num {
    font-size: 2.5rem;
  }

  button.board_btn_write {
    width: 100px;
  }
  button.board_btn_normal {
    width: 100px;
  }

  [class*='container']:has(.slide_wrap2) {
    max-width: 600px;
  }
  .half_slide .slide_wrap2 .slide_content > li {
    padding: 40px;
  }
  .half_slide .slide_wrap2 .slide_content > li:not(.active) {
    opacity: 1;
    transition: 0.5s;
  }
  .half_slide .slide_wrap2 .slide_content > li .row {
    flex-direction: column-reverse;
  }
  .half_slide .slide_wrap2 .slide_content > li:not(.active) .row {
    opacity: 0.3;
  }
  .half_slide .slide_wrap2 .image img {
    max-width: 400px;
  }

  .half_slide .slide_wrap3 .slide_content .text {
    padding: 15px;
  }

  .list8 {
    padding: 0 30px;
  }
  .list8 .item {
    display: flex;
    flex-direction: column;
    padding: 30px 0;
    gap: 30px;
  }
  .list8 .item > * {
    width: 100%;
  }
  .list8 .item > .text .title {
    margin-bottom: 20px;
  }
  .list8 .item > .text .title h3 {
    flex-direction: column;
    gap: 4px;
  }

  .card_list li:not(:last-child) {
    margin-bottom: 30px;
  }
  .card_list li > .text {
    padding: 30px;
  }

  .capsule {
    justify-content: center;
  }

  .check {
    justify-items: center;
    display: grid;
  }
  .check li {
    width: fit-content;
  }

  .step_box {
    display: flex;
    padding: 30px 0;
  }
  [class*='col']:has(.step_box):not(:last-child) .step_box {
    border-bottom: 1px dashed #cfcfcf;
  }
  .step_box > * {
    width: 50%;
    justify-content: center;
    align-content: center;
  }
  [class*='col']:has(.step_box):not(:last-child) {
    border-right: 0;
  }
  .step_box > *:not(:last-child) {
    margin-bottom: 0px;
  }
  .step_box .text {
    align-content: center;
  }
  .step_box .text > *:not(:last-child) {
    margin-bottom: 6px;
  }

  .step_box2 {
    padding: 10px 40px;
  }
  .step_box2 li .text {
    flex-direction: column;
    gap: 10px;
  }

  .tab_wrap [class*='container'] {
    padding: 0;
  }
  .tab_wrap ul {
    flex-wrap: wrap;
  }
  .tab_wrap ul li {
    width: 33%;
  }
  .tab_wrap button {
    width: 100%;
    padding: 0;
  }

  [class*='tab_menu'] li {
    padding: 0 20px;
  }

  .content:has(.tab_slide) {
    padding: 20px;
  }

  .box_wrap .row {
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 2rem;
  }

  [class*='box_style'] {
    padding: 30px;
  }
  [class*='box_style'] .col_step .box_img img {
    max-width: 100%;
  }
  [class*='box_style'] .col_icon img {
    width: 30px;
  }
  .box_style2 {
    border-radius: 10px;
  }

  .table1 tr > *:nth-child(1) {
    width: 150px;
  }

  .scroll_top {
    background-size: 35px;
    left: 40px;
    bottom: 40px;
    width: 160px;
    height: 160px;
  }
  .scroll_top:hover {
    background-size: 35px;
  }

  .blog .row [class*='col'] {
    justify-items: center;
  }
  .blog .text {
    justify-items: center;
    display: grid;
  }
  .blog .text > *:not(:last-child) {
    margin-bottom: 30px;
  }
  .blog .text button {
    justify-self: center;
  }
  .blog .image {
    max-width: 500px;
    width: 100%;
    padding: 15px;
  }
  .blog .image .card .box {
    padding: 10px;
  }
  .blog .image .card .box > *:not(:last-child) {
    margin-bottom: 0;
  }
  .blog .image .card .blog_icon {
    position: absolute;
    width: 40px;
    top: 15px;
    right: 15px;
  }

  .board_table .board_list ul li.num {
    max-width: 60px;
  }
  .board_table .board_list ul li.img {
    max-width: 220px;
  }

  .common_bottom .value .content {
    display: grid;
    margin: 0 auto;
  }
  .common_bottom .value .circle > *:not(:last-child) {
    margin-bottom: 10px;
  }
  .common_bottom .slide_content > li {
    min-width: 340px;
  }
  .common_bottom .bottom_instagram .slide_content > li {
    min-width: 260px;
  }

  .side_btn {
    right: 20px;
    bottom: 20px;
  }
  .side_btn ul li a {
    gap: 6px;
    font-size: 0.9rem;
  }
  .side_btn ul li a img {
    width: 18px;
    filter: none;
  }
  .side_btn .side_open {
    width: 90px;
    height: 90px;
  }
  /* .side_btn .side_open img {
    width: 25px;
  } */
}

@media (min-width: 992px) {
  h1,
  h2,
  h3 {
    line-height: 1.3;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 2.6rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.8rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1.125rem;
  }
  h6 {
    font-size: 1rem;
  }

  .list6 {
    padding: 20px calc(var(--bs-gutter-x) * 0.25);
  }
  .list6 [class*='col']:has(.item):nth-child(odd) {
    border-right: 1px dashed #bfb2c3;
  }
  .list6 [class*='col']:has(.item):nth-child(even) {
    border-right: 0;
  }
  .list6 .item {
    padding: 10px 0;
  }

  .card_list .card_reverse {
    flex-direction: column-reverse;
  }
  .card_list li {
    flex-direction: column;
  }
  .card_list li > * {
    width: 100%;
  }
  .card_list li > .text {
    padding: 30px 10px;
  }
  .card_list li > .image img {
    width: 100%;
  }

  [class*='half'] .row {
    gap: 20px;
  }

  [class*='box_style'] [class*='col'] {
    align-content: center;
  }
  [class*='box_style'] .col_step {
    flex: 1;
  }
  [class*='box_style'] .col_step img {
    max-width: 500px;
    width: 100%;
  }
  [class*='box_style'] .col_icon {
    flex-basis: auto;
  }
  [class*='box_style'] .col_icon.equal img {
    transform: rotate(90deg);
  }
  .box_style2 .col_step .box_center img {
    max-width: 200px;
  }
  .box_style2 .col_icon img {
    transform: rotate(90deg);
  }

  .step_box3 {
    padding: 10px 20px;
  }
  .step_box3 .row {
    --bs-gutter-y: 0;
  }
  .step_box3 [class*='col']:not(:last-child) {
    border-right: 0;
  }
  .step_box3 .box {
    padding: 30px 0;
  }
  .step_box3 [class*='col']:not(:last-child) .box {
    border-bottom: 1px dashed #cfcfcf;
  }

  [class*='board'] .board_title {
    font-size: 1rem;
  }
  [class*='board'] .board_menu {
    font-size: 0.9rem;
  }
  [class*='board'] .board_date {
    font-size: 0.9rem;
  }
  .board_card .item {
    gap: 15px;
  }
  .board_card .item .text {
    gap: 5px;
  }
  .board_card .item .text > * {
    width: 100%;
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .board_table .board_list ul {
    gap: 10px;
    font-size: 0.9rem;
    padding: 15px 0;
  }
  .board_table .board_list ul li {
    max-width: 80px;
  }
  .board_table .board_list ul li.date {
    display: none;
  }
  .board_table .board_list ul li.img {
    max-width: 100px;
  }
  .board_table .board_list ul li.tit {
    text-overflow: ellipsis;
    white-space: normal;
    overflow: hidden;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .common_bottom .value .list {
    flex-direction: column;
    padding: 20px 0;
    display: grid;
  }
  .common_bottom .value .item {
      width: 400px;
      justify-self: center;
  }
  .common_bottom .value .circle {
    padding: 20px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .m-only {
    display: none;
  }

  .list1 li {
    font-size: 1.25rem;
  }
  .list1 li .num {
    font-size: 1.3rem;
  }

  .step_box2 li .text {
    text-align: left;
  }

  .form .login_box .account input:not([type='checkbox']) {
    font-size: 18px;
  }
  .form .login_box .btn-group button {
    font-size: 18px;
  }

  footer .footer_info li {
    display: inline-block;
  }
  footer .footer_info li:not(:last-child)::after {
    content: '';
    border-right: 1px solid #8c5997;
    padding-right: 15px;
    margin-right: 15px;
  }
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1.125rem;
  }

  .img_style1 {
    border-radius: 15px;
  }
  .infographic {
    max-width: 40px;
  }

  section {
    padding: 120px 0;
  }
  section.belt {
    padding: 60px 0;
  }
  section .title {
    margin-bottom: 40px;
  }
  section .title > .top {
    margin-bottom: 20px;
  }
  .image_wrap {
    padding: 20px;
  }

  .col_5 {
    width: 100%;
  }
  .col_5_2 {
    width: 50%;
  }

  .row:has(.col-6) {
    --bs-gutter-x: 1rem;
  }

  .half_slide .btn-group {
    display: none;
  }
  .half_slide .container-xl {
    padding: 0;
  }
  .gallery_slide .btn-group {
    display: none;
  }
  .gallery_slide .container-sm {
    padding: 0;
  }
  .main_slide .slide_wrap .btn-group {
    display: none;
  }
  .main_slide .slide_content {
    gap: 20px;
  }
  .main_slide .bottom .btn-group {
    display: none;
  }
  .main_slide .num {
    font-size: 2rem;
  }

  .list1 li {
    padding: 10px 16px;
    gap: 8px;
  }
  .list1 li:not(:last-child) {
    margin-bottom: 10px;
  }
  .list1 li .num {
    flex-basis: 24px;
  }

  .row:has(.list2) {
    --bs-gutter-y: 2rem;
  }
  .list2 {
    text-align: center;
    justify-items: center;
    display: grid;
  }
  .list2 h5 {
    justify-content: center;
    flex-direction: column;
    gap: 2px;
  }

  .list3 .circle {
    border-radius: 10rem;
    aspect-ratio: auto;
    text-align: left;
    flex-direction: row;
    padding: 20px 40px;
    gap: 20px;
  }
  .list3 .circle .text {
    flex-grow: 1;
  }

  .list4 .row > *:nth-child(3n) {
    border-right: 1px dashed #bfb2c3;
  }
  .list4 .row > *:nth-child(even) {
    border-right: 0;
  }

  .list5 li {
    padding: 20px 10px;
  }

  .list8 {
    padding: 0 20px;
  }

  .step_box {
    padding: 20px 0;
  }
  .step_box2 {
    padding: 10px 20px;
  }
  .step_box2 li {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }
  .step_box2 li .text {
    align-items: center;
  }
  .step_box2 li .image {
    flex-basis: auto;
  }
  .step_box2 li .image img {
    max-width: 180px;
    width: 100%;
  }

  .badge_title {
    background-position: 16px center;
    background-size: 18px;
    color: #fff;
    border-radius: 10rem;
    padding: 4px 16px 4px 40px;
    display: inline-block;
  }

  .box_wrap .text > *:not(:last-child) {
    margin-bottom: 4px;
  }

  [class*='box_style'] {
    padding: 20px;
  }
  [class*='box_style'] .row {
    --bs-gutter-y: 1rem;
  }
  [class*='box_style'] [class*='col'] {
    align-content: center;
  }

  .table1 {
    font-size: 0.825rem;
  }
  .table1 tr {
    height: 80px;
  }
  .table1 tr > *:nth-child(1) {
    width: 80px;
  }
  .table1 tr > * {
    padding: 4px;
  }

  .board_top {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 10px;
  }
  .board_top .search {
    gap: 10px;
    width: 100%;
  }
  .board_top .search .search_input {
    flex: 1;
    width: 100%;
  }

  .board_list .bna_wrap .after .after_login {
    font-size: 0.8rem;
  }

  .board_view .view_title {
    padding: 20px 0;
  }
  .board_view .view_title h3 {
    font-size: 20px;
  }
  .board_view .view_title > *:not(:last-child) {
    margin-bottom: 5px;
  }
  .board_view .view_comment {
    padding-bottom: 20px;
  }
  .board_view .view_comment .comment_content {
    height: 140px;
    padding: 10px;
  }
  .board_view .write_comment .input textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
  }

  .form {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .form .btn-group {
    gap: 10px;
  }
  .form_list li > * {
    padding: 10px 15px;
  }
  .form_list li .label {
    flex-basis: 120px;
  }
  .form_list li .input textarea {
    width: 100%;
    height: 100px;
  }

  .form_check .form_scroll {
    padding: 10px;
    height: 120px;
  }

  .form .login_box .account {
    gap: 10px;
  }
  .form .login_box .account input:not([type='checkbox']) {
    padding: 0 10px;
    height: 50px;
  }
  .form .login_box .btn-group button {
    height: 50px;
  }
  .quick_login {
    gap: 10px;
  }
  .quick_login button {
    height: 40px;
    background-size: 40px;
  }

  .result_box {
    min-height: 100px;
  }

  /* .common_bottom .btn-group {
    display: none;
  } */
  .common_bottom .slide_content > li {
    min-width: 240px;
  }
  .common_bottom .bottom_instagram .slide_content > li {
    min-width: 200px;
  }

  .side_btn {
    gap: 10px;
  }
  .side_btn ul {
    gap: 4px;
  }
  .side_btn ul li a {
    height: 34px;
  }
  .side_btn ul li a img {
    width: 16px;
  }
  .side_btn .side_open {
    width: 80px;
    height: 80px;
  }
  /* .side_btn .side_open img {
    width: 25px;
  } */

  footer {
    padding: 40px 0;
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  [class*='container'] {
    padding: 0 calc(var(--bs-gutter-x) * 0.5);
  }

  section {
    padding: 80px 0;
  }
  section.belt {
    padding: 40px 0;
  }
  section .title {
    margin-bottom: 40px;
  }

  .half_slide .row {
    gap: 0;
  }
  .half_slide .slide_content h3 {
    font-size: 1.3rem;
  }
  .half_slide .slide_content h5 {
    font-size: 1.05rem;
  }
  .half_slide .slide_content p {
    font-size: 0.95rem;
  }
  .half_slide .slide_content .caution {
    margin-top: 20px;
  }

  .half_slide .slide_wrap2 .slide_content > li {
    padding: 20px;
  }
  .half_slide .slide_wrap2 .slide_content > li:not(.active) .row {
    opacity: 0.3;
  }
  .half_slide .slide_wrap2 .image img {
    max-width: 400px;
  }

  /* .top_banner {
    height: 56vw !important;
  } */
  .top_banner::before {
    background-image: url(../images/icon/scroll_down_m.svg);
    background-repeat: no-repeat;
    background-position: bottom right 20px;
  }

  .step_box .text > .step {
    font-size: 0.9rem;
  }
  .step_box .text > div > * {
    line-height: 1.4;
  }
  .step_box .text > div p {
    font-size: 0.9rem;
  }
  .step_box .text > div h5 {
    font-size: 1rem;
  }
}

@media (max-width: 450px) {
  .common_bottom .value .item {
      width: 100%;

  }
}

/* top_banner */
/* #main .top_banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/bg/main_top_banner_bg.png);
    background-color: #fff;
} */
#overview .top_banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/bg/overview_top_banner_bg.png);
}
#info .top_banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/bg/info_top_banner_bg.png);
}
#derm .top_banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/bg/derm_top_banner_bg.png);
}
#antiaging .top_banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/bg/anti_top_banner_bg.png);
}
#laser .top_banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/bg/laser_top_banner_bg.png);
}
#fat .top_banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/bg/fat_top_banner_bg.png);
}
#sweat .top_banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/bg/sweat_top_banner_bg.png);
}
#medical .top_banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/bg/medical_top_banner_bg.png);
}
#skin .top_banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/bg/skin_top_banner_bg.png);
}
#lecture .top_banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/bg/lecture_top_banner_bg.png);
}
#event .top_banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/bg/event_top_banner_bg.png);
}
#bna .top_banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/bg/bna_top_banner_bg.png);
}
#online .top_banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/bg/online_top_banner_bg.png);
}
#simple .top_banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/bg/simple_top_banner_bg.png);
}
#adm .top_banner {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../images/bg/adm_top_banner_bg.png);
}

@media (max-width: 767px) {
  #overview .top_banner {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(../images/bg/overview_top_banner_bg_m.png);
  }
  #info .top_banner {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(../images/bg/info_top_banner_bg.png);
  }
  #derm .top_banner {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(../images/bg/derm_top_banner_bg_m.png);
  }
  #antiaging .top_banner {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(../images/bg/anti_top_banner_bg_m.png);
  }
  #laser .top_banner {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(../images/bg/laser_top_banner_bg_m.png);
  }
  #fat .top_banner {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(../images/bg/fat_top_banner_bg_m.png);
  }
  #sweat .top_banner {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(../images/bg/sweat_top_banner_bg_m.png);
  }
  #medical .top_banner {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(../images/bg/medical_top_banner_bg_m.png);
  }
  #skin .top_banner {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(../images/bg/skin_top_banner_bg_m.png);
  }
  #lecture .top_banner {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(../images/bg/lecture_top_banner_bg_m.png);
  }
  #event .top_banner {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(../images/bg/event_top_banner_bg_m.png);
  }
  #bna .top_banner {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(../images/bg/bna_top_banner_bg_m.png);
  }
  #online .top_banner {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(../images/bg/online_top_banner_bg_m.png);
  }
  #simple .top_banner {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(../images/bg/simple_top_banner_bg_m.png);
  }
}

/* 메인 */
#main .sub3 {
  background-image: url(../images/bg/bg_gray.png);
}
#main .sub3 .image {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px 0;
  filter: saturate(0);
  transition: 0.2s;
}
#main .sub3 .image:hover {
  filter: saturate(1);
  transition: 0.5s;
}
#main .sub3 .image .image_badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
}
#main .sub3 .image .image_badge .badge .icon {
  width: 50px;
}
#main .sub3 .text {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  margin-top: 20px;
}
#main .sub3 .text h4 {
  font-weight: 600;
}
#main .sub3 .text ul {
  display: flex;
}
#main .sub3 .text ul li {
  padding: 0 10px;
  font-weight: 600;
}
#main .sub3 .text ul li:not(:last-child) {
  border-right: 1px solid #cfcfcf;
}
#main .sub3 .text ul li:last-child {
  color: #3e004b;
}

#main .sub4 .title {
  text-align: left;
}
#main .sub4 .slide_content {
  text-align: left;
}
#main .sub4 .slide_content > li {
  min-width: 440px;
}
#main .sub4 .slide_content li .image {
  position: relative;
}
#main .sub4 .slide_content li .image img {
  filter: brightness(50%);
  transition: 0.2s;
}
#main .sub4 .slide_content li a:hover .image img {
  filter: brightness(100%);
  border-radius: 2vw;
  transition: 0.5s;
}
#main .sub4 .slide_content li .image h4 {
  position: absolute;
  top: 40px;
  left: 40px;
  color: #fff;
}
#main .sub4 .slide_content li .text {
  border-top: 1px solid #cfcfcf;
  padding: 20px 0;
  display: block;
  background-image: url(../images/icon/plus.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center right;
}

#main .sub5 .title {
  text-align: left;
}
#main .sub5 .slide_content > li {
  min-width: 500px;
  border-right: 1px solid #cfcfcf;
  padding-right: 40px;
}

#main .sub6 {
  background-image: url(../images/main/main_sub6_bg.png);
}
#main .sub6 .big {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
#main .sub6 .big iframe {
  width: 100%;
  height: 100%;
}
#main .sub6 .list {
  overflow-y: scroll;
  padding-right: 10px;
}
#main .sub6 .thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 0;
  background: none;
  border-radius: 10px;
}
#main .sub6 .thumb + .thumb {
  margin-top: 10px;
}
#main .sub6 .thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.01);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#main .sub6 .thumb:not(.vid-active) img {
  filter: saturate(0);
}

#main .sub7 .row {
  --bs-gutter-y: 1rem;
}
#main .sub8 {
  background-image: url(../images/main/main_sub8_bg.png);
}
#main .sub8 .infographic {
  max-width: 80px;
}

#laser_menu3 .sub8 {
  background-image: none;
}

.map {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}
.map .image {
  position: relative;
}
.map .image .map_btn {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.map .image .map_btn a {
  border: 1px solid #666;
  display: flex;
  gap: 10px;
  background: #fff;
  border-radius: 4px;
  width: 180px;
  height: 50px;
  justify-content: center;
  align-items: center;
}
.map .image .map_btn a .icon {
  width: 26px;
}
.map .text .item {
  display: flex;
  padding: 30px 0;
}
.map .text .item:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 0;
}
.map .text .item .left {
  flex-basis: 260px;
}
.map .text .item .right {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 20px;
  font-size: 1.15rem;
}
.map .text .item .right p:has(.subway) {
  display: flex;
  gap: 6px;
  align-items: center;
}
.map .text .item .right .subway {
  display: inline-block;
  background: #833edb;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 100%;
  line-height: 1;
}
.map .text .item .right .num {
  letter-spacing: 0;
}
.map .text .item .right ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.map .text .item .right ul li {
  display: flex;
  align-items: center;
}
.map .text .item .right ul li h6 {
  flex-basis: 140px;
}
.map .text .item .right ul li p {
  flex: 1;
}

@media (min-width: 1400px) {
  #main .sub4 .title {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: end;
  }
  #main .sub4 .title .top {
    margin-bottom: 0;
  }
  #main .sub5 .title {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: end;
  }
  #main .sub5 .title .top {
    margin-bottom: 0;
  }
}

@media (max-width: 1399px) {
  .map .text .item .left {
    flex-basis: 180px;
  }
}

@media (min-width: 1200px) {
  #main .top_banner {
    min-height: 56vw;
  }
  #main .top_banner::before {
    background-image: url(../images/icon/scroll_down_main.svg);
    background-position-x: center;
  }
}

@media (max-width: 1199px) {
  #main .sub4 .slide_content > li {
    min-width: 380px;
  }
  #main .sub4 .slide_content li .image h4 {
    top: 30px;
    left: 30px;
  }
  #main .sub4 .slide_content li .text {
    padding: 15px 0;
  }
  #main .sub4 .slide_content li .text {
    background-size: 18px;
  }
  #main .sub5 .slide_content > li {
    min-width: 500px;
    padding-right: 30px;
  }

  .map .row {
    justify-content: center;
  }
  .map .row [class*='col'] {
    max-width: 800px;
  }
  .map .image img {
    max-width: 100%;
  }
  .map .text {
    text-align: left;
    padding: 0 20px;
  }
  .map .text .item .left {
    flex-basis: 300px;
  }
  .map .text .item .right .num {
    letter-spacing: 0;
  }
  .map .text .item .right ul li h6 {
    flex-basis: 200px;
  }
}

@media (min-width: 992px) {
  #main .sub3 [class*='col']:nth-child(2) {
    margin-top: 5rem;
  }

  /* 강서점 원장님 추가시 해당 css 변경 */
  /* #main .sub3 [class*='col']:nth-child(3n-1) {
    margin-top: 5rem;
  } */
}

@media (max-width: 991px) {
  #main .sub3 .image {
    padding: 20px 10px 0;
  }
  #main .sub3 .image .image_badge {
    right: 15px;
    bottom: 15px;
  }
  #main .sub3 .image .image_badge .badge .icon {
    width: 40px;
  }
  #main .sub6 .list {
    overflow-y: hidden;
    overflow-x: scroll;
    padding-right: 0;
    padding-bottom: 20px;
    display: flex;
  }
  #main .sub6 .thumb {
    min-width: 40%;
  }
  #main .sub6 .thumb + .thumb {
    margin-top: 0;
    margin-left: 10px;
  }
}

@media (max-width: 767px) {
  #main .sub4 .slide_content > li {
    min-width: 200px;
  }
  #main .sub4 .slide_content li .image h4 {
    top: 20px;
    left: 20px;
    font-size: 1rem;
  }
  #main .sub4 .btn-group {
    display: none;
  }
  #main .sub5 .slide_content > li {
    min-width: 240px;
    padding-right: 20px;
  }
  #main .sub8 .infographic {
    max-width: 60px;
  }

  .map .text {
    text-align: center;
    padding: 0;
  }
  .map .text .item {
    flex-direction: column;
    gap: 20px;
  }
  .map .text .item .left {
    flex-basis: auto;
  }
  .map .text .item .right {
    font-size: 1rem;
  }
  .map .text .item .right p:has(.subway) {
    justify-content: center;
  }
  .map .text .item .right ul {
    align-items: center;
    gap: 4px;
  }
  .map .text .item .right ul li {
    max-width: 340px;
    width: 100%;
  }
  .map .text .item .right ul li h6 {
    flex-basis: 120px;
    text-align: left;
  }
  .map .text .item .right ul li p {
    text-align: right;
  }
}

@media (max-width: 575px) {
  #main .sub3 .text {
    flex-direction: column;
    gap: 5px;
  }
  #main .sub3 .image {
    padding: 10px 10px 0;
  }
  #main .sub3 .image .image_badge {
    right: 10px;
    bottom: 10px;
  }
  #main .sub3 .image .image_badge .badge .icon {
    width: 30px;
  }

  .map .image .map_btn {
    bottom: 10px;
  }
  .map .image .map_btn a {
    gap: 6px;
    width: 150px;
    height: 36px;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
  }
  .map .image .map_btn a .icon {
    width: 18px;
  }
  .map .text .item .right ul li {
    max-width: 300px;
  }
}

/* 의료진 소개 */
#derm .sub1 {
  padding-bottom: 80px;
}
#derm .sub1 .title {
  margin-bottom: 0;
}
#derm .sub2 {
  background-image: url(../images/bg/bg_gray.png);
}
#derm .sub2 .history ul {
  background-size: contain;
  background-repeat: no-repeat;
}
#derm .sub2 .history ul li {
  background-image: url(../images/icon/history_black.svg);
  background-repeat: no-repeat;
  background-size: 26px;
  background-position: center top;
}
#derm .sub2 .history ul li.active {
  background-image: url(../images/icon/history_purple.svg);
}
#derm .sub3 {
  background-image: radial-gradient(#662d91, #241d29);
}
#derm .sub3 .image_wrap {
  width: 100%;
}
#derm .sub3 .image_wrap img {
  max-width: 400px;
  width: 100%;
}
#derm .sub3 .table1 tr {
  height: 60px;
}
#derm .sub3 .table1 tr > *:nth-child(1) {
  width: 180px;
}
#derm .sub3 .table1 span {
  margin-top: 0;
}

.derm_list section {
  position: relative;
  overflow: hidden;
}
.derm_list .name_en {
  position: absolute;
  font-size: 6rem;
  letter-spacing: 4px;
  left: 50%;
  top: 50%;
  transform: translate(calc(-50% + 50px), -50%);
  text-align: left;
  line-height: 1.3;
  color: #f0f0f075;
  z-index: -1;
}
.derm_list .name_en > *:nth-child(1) {
  margin-left: -100px;
}
.derm_list .name_en > *:nth-child(3) {
  margin-left: 100px;
}
.derm_list .image img {
  max-width: 400px;
  width: 100%;
}
.derm_list .text .logo {
  display: flex;
  flex-direction: row;
  gap: 30px;
  font-weight: 500;
}
.derm_list .text .logo li > * {
  display: flex;
  gap: 10px;
  align-items: center;
}
.derm_list .text .name {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-bottom: 50px;
}
.derm_list .text .name h2 {
  line-height: 1;
  letter-spacing: 8px;
  font-weight: bold;
}
.derm_list .text .name h5 {
  line-height: 1;
  letter-spacing: 4px;
}
.derm_list .text .history {
  display: flex;
  column-gap: 10px;
  line-height: 1.4;
}
.derm_list .text .history ul {
  flex: 1;
}
.derm_list .text .history ul li {
  background-image: url(../images/icon/history_black.svg);
  background-repeat: no-repeat;
  background-size: 6px;
  background-position: left 7px;
  padding-left: 10px;
}
.derm_list .text .history ul li:not(:last-child) {
  margin-bottom: 6px;
}

@media (min-width: 1400px) {
  #derm .sub2 .history ul {
    background-image: url(../images/icon/history_line.svg);
    background-position-y: calc(2rem + 8px);
    line-height: 1.4;
  }
  #derm .sub2 .history ul li {
    background-position: center top;
    padding-top: 40px;
  }
}

@media (max-width: 1399px) {
  #derm .sub2 .pc-only {
    display: none;
  }
  #derm .sub2 .history {
    justify-items: center;
  }
  #derm .sub2 .history .row {
    margin: 0;
    padding-bottom: 40px;
  }
  #derm .sub2 .history ul {
    background-image: url(../images/icon/history_line2.svg);
    background-position-x: 8px;
    max-width: 340px;
  }
  #derm .sub2 .history ul li {
    text-align: left;
    background-position: left center;
    padding-left: 40px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #derm .sub3 .table1 tr > *:nth-child(1) {
    width: 150px;
  }
}

@media (min-width: 1200px) {
  .derm_list section {
    padding-bottom: 0;
  }
  .derm_list section:nth-child(odd) {
    background-image: url(../images/derm/derm_list_bg_right.png);
    background-position: bottom right;
  }
  .derm_list section:nth-child(even) {
    background-image: url(../images/derm/derm_list_bg_left.png);
    background-position: bottom left;
  }
}

@media (max-width: 1199px) {
  .derm_list section {
    background-image: url('../images/derm/derm_list_bg_m.png');
    background-position: bottom right;
  }
  .derm_list .name_en {
    position: absolute;
    font-size: 4rem;
    letter-spacing: 4px;
    top: 30%;
    transform: translate(calc(-50% + 30px), -50%);
  }
  .derm_list .name_en > *:nth-child(1) {
    margin-left: -60px;
  }
  .derm_list .name_en > *:nth-child(3) {
    margin-left: 60px;
  }
  .derm_list .image img {
    max-width: 240px;
    width: 100%;
  }
  .derm_list .text .logo {
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
  }
  .derm_list .text .logo img {
    width: 26px;
  }
  .derm_list .text .name {
    margin-bottom: 30px;
    justify-content: center;
  }
  .derm_list .text .history {
    flex-direction: column;
    row-gap: 6px;
  }
  .derm_list .text .history ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .derm_list .text .history ul li {
    display: inline-flex;
  }
}

@media (max-width: 767px) {
  #derm .sub3 .table1 tr > *:nth-child(1) {
    width: 70px;
  }
}

/* 안티에이징 */
#antiaging .anti_common .sub1 .logo{max-width: 400px; width: 100%;}
#antiaging .anti_common .sub1 .text h3::before{content: "‘";color: #833EDB; font-size: 1.2em; font-family: "Tinos", serif; margin-right: 6px;}
#antiaging .anti_common .sub1 .text h3::after{content: "’";color: #833EDB; font-size: 1.2em; font-family: "Tinos", serif; margin-left: 6px;}
#antiaging .anti_common .sub2{background-image: url(../images/antiaging/anti_sub2_bg.png); color: #FFF;}
#antiaging .anti_common .sub2 .infographic{margin-bottom: 10px;}
#antiaging .anti_common .sub3{padding-bottom: 0;}
#antiaging .anti_common .sub3 .content{justify-items: center; display: grid;}
#antiaging .anti_common .sub3 .total{position: relative; max-width: 580px;}
#antiaging .anti_common .sub3 .total ul{width: 340px; display: flex; flex-direction: column; gap: 60px; transform: translateY(-50%);}
#antiaging .anti_common .sub3 .total ul.left{text-align: right; position: absolute; top: 50%; left: -145px;}
#antiaging .anti_common .sub3 .total ul.right{text-align: left; position: absolute; top: 50%; right: -145px;}
#antiaging .anti_common .sub3 .total ul li{color: #662D91; background-repeat: no-repeat; background-size: 100px;}
#antiaging .anti_common .sub3 .total ul.left li{background-image: url(../images/antiaging/anti_sub3_img2.svg); background-position: right center; padding-right: 120px;}
#antiaging .anti_common .sub3 .total ul.left li:nth-child(2){margin-right: 60px;}
#antiaging .anti_common .sub3 .total ul.left li:nth-child(3){margin-right: 60px;}
#antiaging .anti_common .sub3 .total ul.right li{background-image: url(../images/antiaging/anti_sub3_img3.svg); background-position: left center; padding-left: 120px;}
#antiaging .anti_common .sub3 .total ul.right li:nth-child(2){margin-left: 60px;}
#antiaging .anti_common .sub3 .total ul.right li:nth-child(3){margin-left: 60px;}
#antiaging .anti_common .sub4{padding-top: 60px;}
#antiaging .anti_common .sub4 .program .row{--bs-gutter-y: 1.5rem; justify-content: center;}
#antiaging .anti_common .sub4 .program .card{padding: 30px; height: 100%; border-radius: 0; border: 1px solid #EDE7F6;}
#antiaging .anti_common .sub4 .program .card .top{color: #3E004B;}
#antiaging .anti_common .sub4 .program .card .top .infographic{margin: 20px 0;}
#antiaging .anti_common .sub4 .program .card .bottom{background: #F5EEF7; padding: 10px; height: 100%; min-height: 70px; align-content: center; line-height: 1.4;}

#anti_menu1 .sub1{background-image: url(../images/antiaging/anti1/anti1_sub1_bg.png);}
#anti_menu1 .sub2{background-image: url(../images/bg/bg_gray.png);}
#anti_menu1 .sub3{background-image: url(../images/antiaging/anti1/anti1_sub3_bg.png);}
#anti_menu1 .sub3 .title{margin-bottom: 300px;}
#anti_menu1 .sub3 .title .logo img{max-width: 260px;}
#anti_menu1 .sub4{background-image: url(/images/bg/bg9.png);}
#anti_menu1 .sub5{background-image: url(../images/bg/bg_wave.png);}
#anti_menu1 .sub6{background-image: linear-gradient(to top, rgba(232, 218, 243, 0.6),  rgba(255, 255, 255, 0.6));}
#antiaging .sub5 {
  background-image: url(../images/bg/bg_gray.png);
}
#antiaging .sub6 {
  background-image: url(../images/bg/bg_wave.png);
}
#antiaging .sub7 {
  background-image: linear-gradient(to top, rgba(232, 218, 243, 0.6), rgba(255, 255, 255, 0.6));
}
#antiaging .sub8 {
  background-image: linear-gradient(to bottom, rgba(232, 218, 243, 0.6), rgba(255, 255, 255, 0.6));
}

@media (max-width: 1399px) {
    #anti_menu1 .sub3{background-image: url(../images/antiaging/anti1/anti1_sub3_bg_t.png);}
    #anti_menu1 .sub3 .title{margin-bottom: 200px;}
}

@media (max-width: 1199px) {
    #anti_menu3 .sub1 .row{flex-direction: column-reverse;}
}
@media (max-width: 991px) {
    #antiaging .anti_common .sub3 .total{max-width: 440px;}
    #antiaging .anti_common .sub3 .total ul{width: 320px; gap: 50px;}
    #antiaging .anti_common .sub3 .total ul.left{left: -150px;}
    #antiaging .anti_common .sub3 .total ul.right{right: -150px;}
    #antiaging .anti_common .sub3 .total ul li{background-size: 90px;}
    #antiaging .anti_common .sub3 .total ul.left li{padding-right: 110px;}
    #antiaging .anti_common .sub3 .total ul.left li:nth-child(2){margin-right: 65px;}
    #antiaging .anti_common .sub3 .total ul.left li:nth-child(3){margin-right: 65px;}
    #antiaging .anti_common .sub3 .total ul.right li{padding-left: 110px;}
    #antiaging .anti_common .sub3 .total ul.right li:nth-child(2){margin-left: 65px;}
    #antiaging .anti_common .sub3 .total ul.right li:nth-child(3){margin-left: 65px;}
}

@media (max-width: 767px) {
    #antiaging .anti_common .sub1 .logo{max-width: 200px;}
    #antiaging .anti_common .sub3 .total img{width: 360px;}
    #antiaging .anti_common .sub3 .total ul{width: 190px; gap: 0;}
    #antiaging .anti_common .sub3 .total ul.left{left: -80px;}
    #antiaging .anti_common .sub3 .total ul.right{right: -80px;}
    #antiaging .anti_common .sub3 .total ul li{background-size: 50px; height: 60px; align-content: center;}
    #antiaging .anti_common .sub3 .total ul li h5{line-height: 1.2;}
    #antiaging .anti_common .sub3 .total ul.left li{background-image: url(../images/antiaging/anti_sub3_img2_m.svg); padding-right: 50px;}
    #antiaging .anti_common .sub3 .total ul.left li:nth-child(2){margin-right: 40px;}
    #antiaging .anti_common .sub3 .total ul.left li:nth-child(3){margin-right: 40px;}
    #antiaging .anti_common .sub3 .total ul.right li{background-image: url(../images/antiaging/anti_sub3_img3_m.svg); padding-left: 50px;}
    #antiaging .anti_common .sub3 .total ul.right li:nth-child(2){margin-left: 40px;}
    #antiaging .anti_common .sub3 .total ul.right li:nth-child(3){margin-left: 40px;}
    #antiaging .anti_common .sub4{padding-top: 40px;}
    #antiaging .anti_common .sub4 .program .row{--bs-gutter-y: 1rem;}
    #antiaging .anti_common .sub4 .program .card{padding: 20px;}
    #antiaging .anti_common .sub4 .program .card .top .infographic{margin: 10px 0;}
}

@media (max-width: 575px) {
    #antiaging .anti_common .sub3 .total img{width: 220px;}
    #antiaging .anti_common .sub3 .total ul{width: 140px; gap: 0;}
    #antiaging .anti_common .sub3 .total ul.left{left: -65px;}
    #antiaging .anti_common .sub3 .total ul.right{right: -65px;}
    #antiaging .anti_common .sub3 .total ul li{background-size: 40px; height: 40px; align-content: center;}
    #antiaging .anti_common .sub3 .total ul li h5{font-size: 0.9rem; line-height: 1.1;}
    #antiaging .anti_common .sub3 .total ul.left li{background-image: url(../images/antiaging/anti_sub3_img2_m.svg); padding-right: 50px;}
    #antiaging .anti_common .sub3 .total ul.left li:nth-child(2){margin-right: 30px;}
    #antiaging .anti_common .sub3 .total ul.left li:nth-child(3){margin-right: 30px;}
    #antiaging .anti_common .sub3 .total ul.right li{background-image: url(../images/antiaging/anti_sub3_img3_m.svg); padding-left: 50px;}
    #antiaging .anti_common .sub3 .total ul.right li:nth-child(2){margin-left: 30px;}
    #antiaging .anti_common .sub3 .total ul.right li:nth-child(3){margin-left: 30px;}
    #antiaging .anti_common .sub4 .program .card{padding: 10px;}
    #antiaging .anti_common .sub4 .program .card .bottom{font-size: 0.9rem;}
    
    #anti_menu1 .sub3{background-image: url(../images/antiaging/anti1/anti1_sub3_bg_m.png);}
    #anti_menu1 .sub3 .title{margin-bottom: 400px;}
}

/* 레이저 */
#laser_menu1 .sub1 {
  background-image: url(../images/bg/bg_gray.png);
}
#laser_menu1 .sub3 {
  background-image: url(../images/laser/laser1/laser1_sub3_bg.png);
}
#laser_menu1 .sub5 {
  background-image: url(../images/laser/laser1/laser1_sub5_bg.png);
}

#laser_menu2 .sub1 {
  background-image: url(../images/laser/laser2/laser2_sub1_bg.png);
}
#laser_menu2 .sub2 {
  background-image: url(../images/laser/laser2/laser2_sub2_bg.png);
}
#laser_menu2 .sub3 {
  background-image: url(../images/laser/laser2/laser2_sub3_bg.png);
}
#laser_menu2 .sub4 {
  background-image: url(../images/laser/laser2/laser2_sub4_bg.png);
}
#laser_menu2 .sub5 {
  background-image: url(../images/laser/laser2/laser2_sub5_bg.png);
}
#laser_menu2 .sub6 {
  background-image: url(../images/laser/laser2/laser2_sub6_bg.png);
}
#laser_menu2 .sub7 {
  background-image: url(../images/laser/laser2/laser2_sub7_bg.png);
}
#laser_menu2 .sub8 {
  background-image: url(../images/laser/laser2/laser2_sub8_bg.png);
}
#laser_menu2 .sub9 {
  background-image: url(../images/laser/laser2/laser2_sub9_bg.png);
}
#laser_menu2 .sub10 {
  background-image: url(../images/laser/laser2/laser2_sub10_bg.png);
}
#laser_menu2 .sub11 {
  background-image: url(../images/laser/laser2/laser2_sub11_bg.png);
}
#laser_menu2 .sub11 .half_slide .slide_wrap2 .image img {
  border-radius: 15px;
}
#laser_menu2 .sub12 {
  background-image: url(../images/laser/laser2/laser2_sub12_bg.png);
}
#laser_menu2 .sub13 {
  background-image: url(../images/bg/bg_wave.png);
}
#laser_menu2 .sub14 {
  background-image: url(../images/laser/laser2/laser2_sub14_bg.png);
}
#laser_menu2 .sub15 {
  background-image: url(../images/laser/laser2/laser2_sub15_bg.png);
}
#laser_menu2 .sub16 {
  background-image: url(../images/laser/laser2/laser2_sub16_bg.png);
}
#laser_menu2 .sub18 {
  background-image: url(../images/laser/laser2/laser2_sub18_bg.png);
}

#laser_menu3 .sub1 {
  background-image: url(../images/laser/laser3/laser3_sub1_bg.png);
}
#laser_menu3 .sub2 {
  background-image: url(../images/bg/bg_gray.png);
}
#laser_menu3 .sub3 {
  background-image: url(../images/laser/laser3/laser3_sub3_bg.png);
}
#laser_menu3 .sub4 {
  background-image: linear-gradient(to bottom, rgba(232, 218, 243, 0.6), rgba(255, 255, 255, 0.6));
}
#laser_menu3 .sub4 .image_wrap {
  border: 2px solid #cfcfcf;
  box-shadow: none;
}
#laser_menu3 .sub5 {
  background-image: url(../images/laser/laser3/laser3_sub5_bg.png);
}
#laser_menu3 .sub5 .image_wrap {
  border: 2px solid #cfcfcf;
  box-shadow: none;
}
#laser_menu3 .sub7 {
  background-image: url(../images/laser/laser3/laser3_sub7_bg.png);
}
#laser_menu3 .sub9 {
  background-image: url(../images/laser/laser3/laser3_sub9_bg.png);
}
#laser_menu3 .sub10 {
  background-image: url(../images/bg/bg_wave.png);
}
#laser_menu3 .sub11 {
  background-image: url(../images/laser/laser3/laser3_sub11_bg.png);
}

#laser_menu4 .sub1 {
  background-image: url(../images/laser/laser4/laser4_sub1_bg.png);
}
#laser_menu4 .sub3 {
  background-image: url(../images/bg/bg_gray.png);
}
#laser_menu4 .sub5 {
  background-image: url(../images/laser/laser4/laser4_sub5_bg.png);
}

/* 눈밑지방재배치 */
#fat .sub2 {
  background-image: url(../images/fat/fat_sub2_bg.png);
}
#fat .sub2 .content img {
  max-width: 500px;
  width: 100%;
}
#fat .sub3 {
  background-image: url(../images/fat/fat_sub3_bg.png);
}
#fat .sub5 {
  background-image: url(../images/fat/fat_sub5_bg.png);
}
#fat .sub6 {
  background-image: url(../images/fat/fat_sub6_bg.png);
}
#fat .sub7 .list2 .icon_wrap {
  background: #3e004b;
}
#fat .sub8 {
  background-image: url(../images/fat/fat_sub8_bg.png);
}
#fat .sub9 {
  background-image: url(../images/bg/bg_wave.png);
}
#fat .sub11 {
  background-image: url(../images/fat/fat_sub11_bg.png);
}
#fat .sub12 {
  background-image: url(../images/fat/fat_sub12_bg.png);
}

#fat .sub12_textwrapper {
  display: flex;
  position: relative;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  background: #FFF;
}
#fat .sub12_textwrapper > .badge {
position: absolute;
    display: flex ;
    width: 139px;
    padding: 9px 12px 7px 12px;
    top: -20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: var(--main, #3E004B);
    color: #FFF;
    font-family: "Sorts Mill Goudy";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.6px;
}
#fat .sub12_textwrapper > .info {
  display: flex;
  align-items: anchor-center;
  gap: 16px;
  margin-bottom: 0px;
}
#fat .info > h3 {
  color: var(--title-1, #111);
  font-size: 28px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -0.84px;
}
.sub12_image_wrapper {
  width: 442px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.20);
}
.sub12_content_wrapper {
  width: 820px;
}

.sub12_content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  align-self: stretch;
}
.sub12 .container-xl {
  max-width: 1400px;
  padding: 0px;
}

#fat .info > p {
  color: var(--title-2, #333);
  font-size: 20px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.6px;
}

#fat .review_content > p {
  color: var(--subtext-1, #666);
  font-size: 18px;
  font-weight: 500;
  line-height: 160%; 
  letter-spacing: -0.54px;
}

@media (min-width: 1200px) {
  #fat .sub5 .tab_slide .text {
    padding: 0 40px;
  }
 
}
@media (max-width: 1200px) {
  .sub12_content {
    flex-direction: column;
  }

    #reviewSlideContent {
      align-items: flex-start;
  }
  .sub12_content_wrapper {
    width: 100%;
}
#fat .review_content > p {
  text-align: left;
}
}
@media (max-width: 500px) {
.sub12_image_wrapper {
  width: 100%;
}
#fat .info > h3 {
  font-size: 24px;
}
#fat .info > p {
  font-size: 16px;
}

}
/* 다한증 */
#sweat .sub1 {
  background-image: url(../images/sweat/sweat_sub1_bg.png);
}
#sweat .sub1 .check li {
  background-image: url(../images/icon/check_blue.svg);
}
#sweat .sub2 .image_wrap {
  border: 2px solid #cfcfcf;
  box-shadow: none;
}
#sweat .sub3 {
  background-image: url(../images/sweat/sweat_sub3_bg.png);
}
#sweat .sub5 {
  background-image: linear-gradient(to bottom, rgba(195, 233, 246, 0.6), rgba(255, 255, 255, 0.6));
}
#sweat .sub5 .image_wrap {
  border: 2px solid #cfcfcf;
  box-shadow: none;
}
#sweat .sub5 h3:has(.bg-blue) {
  line-height: 1.6;
}
#sweat .sub5 .bg-blue {
  display: inline-block;
  padding: 2px 6px;
  color: #fff;
  line-height: 1.2;
}
#sweat .sub6 {
  background-image: url(../images/sweat/sweat_sub6_bg.png);
}
#sweat .sub7 {
  background-image: url(../images/sweat/sweat_sub7_bg.png);
}
#sweat .sub8 {
  background-image: url(../images/bg/bg_wave_blue.png);
}
#sweat .sub9 {
  background-image: url(../images/sweat/sweat_sub9_bg.png);
}
#sweat .sub10 {
  background-image: url(../images/sweat/sweat_sub10_bg.png);
}
#sweat .sub11 {
  background-image: url(../images/bg/bg_wave_blue.png);
}
#sweat .sub13 {
  background-image: url(../images/sweat/sweat_sub13_bg.png);
}
#sweat .sub14 {
  background-image: url(../images/sweat/sweat_sub10_bg.png);
}
#sweat .sub15 {
  background-image: url(../images/sweat/sweat_sub15_bg.png);
}
#sweat .sub15 .box_style2 {
  box-shadow: none;
  border: 2px solid #cfcfcf;
}
#sweat .sub15 .box_style2 .img_style1 {
  box-shadow: none;
}
#sweat .sub16 .step_box .image {
  max-width: 500px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#sweat .sub16 .step_box .image img {
  max-width: 500px;
  width: 100%;
}
#sweat .sub17 {
  background-image: url(../images/sweat/sweat_sub17_bg.png);
}
#sweat .sub17 .list1 li .num {
  color: #296aa6;
}
#sweat .sub17 .list1 li .bold {
  color: #296aa6;
}

#sweat section .title > .top p {
  color: #296aa6;
}
#sweat [class*='step_box'] .step {
  border-color: #296aa6;
  color: #296aa6;
}
#sweat .badge_title {
  background-color: #296aa6;
}
#sweat .image_wrap img {
  border-color: #296aa6;
}
#sweat button[class*='slide'] {
  background-color: #296aa6;
}
#sweat button[class*='slide']:hover {
  background-color: #212529;
}
#sweat .list6 .item {
  color: #296aa6;
}
#sweat .list6 [class*='col']:has(.item):not(:last-child) {
  border-color: #cfcfcf;
}
#sweat .check li {
  background-image: url(../images/icon/check_blue.svg);
}

#sweat .card_list li > .text .num {
  color: #a2c7ea;
}
#sweat .table1 thead tr > *:last-child {
  background: #296aa6;
  border-top: 2px solid #296aa6;
  color: #fff;
}
#sweat .table1 tr > *:nth-child(1) {
  width: 200px;
}
#sweat .table1 tr > *:last-child {
  border-left: 2px solid #296aa6;
  border-right: 2px solid #296aa6;
  color: #296aa6;
}
#sweat .table1 tr:last-child > *:last-child {
  border-bottom: 2px solid #296aa6;
}
#sweat .blog .image {
  border-color: #296aa6;
}

@media (min-width: 1200px) {
  #sweat .sub15 .box_style2 {
    padding: 40px 160px;
  }
}
@media (max-width: 1199px) {
  #sweat .sub1 .row {
    flex-direction: column-reverse;
  }
  #sweat .sub5 .bg-blue {
    padding: 2px 4px;
  }
  #sweat .sub16 .box_style1 {
    padding: 0 20px;
  }
  #sweat .sub16 .step_box {
    flex-direction: column;
  }
  #sweat .sub16 .step_box > * {
    width: 100%;
  }
  #sweat .sub16 .step_box > *:not(:last-child) {
    margin-bottom: 10px;
  }
  #sweat .table1 tr > *:nth-child(1) {
    width: 80px;
  }
}

@media (max-width: 991px) {
  #sweat .table1 {
    font-size: 0.825rem;
    line-height: 1.3;
  }
  #sweat .table1 tr {
    height: 80px;
  }
  #sweat .table1 tr > *:nth-child(1) {
    width: 80px;
  }
  #sweat .table1 tr > * {
    padding: 10px 4px;
  }
}

@media (max-width: 767px) {
  #sweat .check li {
    text-align: left;
  }
  #sweat .table1 {
    font-size: 0.825rem;
    line-height: 1.3;
  }
  #sweat .table1 tr {
    height: 50px;
  }
  #sweat .table1 tr > *:nth-child(1) {
    width: 100px;
  }
  #sweat .table1 tr > * {
    padding: 10px 4px;
  }
  #sweat .table1.gray thead tr > *:last-child {
    background: #f0f0f0;
    border-top: 1px solid #cfcfcf;
    color: #212529;
    font-weight: 700;
  }
  #sweat .table1.gray tr > *:last-child {
    border-left: 1px solid #cfcfcf;
    border-right: 2px solid #cfcfcf;
    color: #212529;
    font-weight: inherit;
  }
  #sweat .table1.gray tr:last-child > *:last-child {
    border-bottom: 1px solid #cfcfcf;
  }
}

/* 메디컬 스킨케어 */
#medical .sub2 {
  background-image: url(../images/medical/medical_sub2_bg.png);
}
#medical .sub3 {
  background-image: url(../images/medical/medical_sub3_bg.png);
}
#medical .sub4 {
  background-image: url(../images/bg/bg_gray.png);
}
#medical .sub5 {
  background-image: url(../images/medical/medical_sub5_bg.png);
}

/* 피부질환 */
#skin_menu1 .sub1 {
  background-image: url(../images/skin/skin1/skin1_sub1_bg.png);
}
#skin_menu1 .sub2 {
  background-image: url(../images/bg/bg_gray.png);
}
#skin_menu1 .sub3 {
  background-image: url(../images/skin/skin1/skin1_sub3_bg.png);
}
#skin_menu1 .sub4 {
  background-image: url(../images/skin/skin1/skin1_sub4_bg.png);
}
#skin_menu1 .sub5 {
  background-image: url(../images/skin/skin1/skin1_sub5_bg.png);
}
#skin_menu1 .sub5 .list6 {
  box-shadow: none;
  border: 1px solid #bfb2c3;
}
#skin_menu1 .sub6 {
  background-image: url(../images/skin/skin1/skin1_sub6_bg.png);
}

#skin_menu2 .sub1 {
  background-image: url(../images/skin/skin2/skin2_sub1_bg.png);
}
#skin_menu2 .sub3 {
  background-image: url(../images/bg/bg_gray.png);
}
#skin_menu2 .sub4 {
  background-image: url(../images/skin/skin2/skin2_sub4_bg.png);
}
#skin_menu2 .sub5 {
  background-image: url(../images/skin/skin2/skin2_sub5_bg.png);
}

@media (min-width: 992px) {
  #skin_menu2 .sub3 .box_wrap .row {
    --bs-gutter-x: 2rem;
  }
}

/* 온라인 상담 */
#online .board_table .board_list ul:not(.head) li.tit {
  background-image: url(../images/icon/lock.svg);
  background-repeat: no-repeat;
  background-position: 4px center;
  background-size: 12px;
  padding-left: 24px;
}

@media (max-width: 992px) {
  #online .board_table .board_list ul li.num {
    display: none;
  }
}

/* 로그인 */
#adm [class*='tab_wrap'] {
  background: transparent;
}
#adm [class*='tab_wrap'] ul {
  display: flex;
}
#adm [class*='tab_wrap'] ul li {
  flex: 1;
}
#adm [class*='tab_wrap'] button {
  width: 100%;
  height: 50px;
  background: #fff;
  color: #212529;
  border-bottom: 1px solid #212529;
}
#adm [class*='tab_wrap'] button.active {
  font-weight: 600;
  color: #212529;
  border-top: 1px solid #212529;
  border-right: 1px solid #212529;
  border-bottom: 0;
  border-left: 1px solid #212529;
}

@media (max-width: 767px) {
  #adm [class*='tab_wrap'] button {
    height: 40px;
  }
}

/* 추가수정사항 */
.font-resize {
  font-size: 25.5px;
}
@media (max-width: 767px) {
  .font-resize {
    font-size: 21px;
  }
}
