@charset "UTF-8";
/*base*/
@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&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn,
em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label,
legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby, section, summary, time,
mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
}

article, aside, details,
figcaption, figure, footer,
header, hgroup, menu,
nav, section {
  display: block;
}

body {
  line-height: 1;
  overflow-x: hidden;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

* {
  box-sizing: border-box;
}

li, a {
  list-style: none;
}

*, :after, :before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

textarea:focus,
input:focus {
  outline: none;
}

input {
  caret-color: black;
}

textarea {
  caret-color: black;
}

button {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  border: 0;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  max-width: 100%;
  width: auto;
}

::-moz-selection {
  color: white;
  background-color: var(--pri1);
}

::selection {
  color: white;
  background-color: var(--pri1);
}

div, span, p, ul, ol, li, dd, dt, dl,
h1, h2, h3, h4, h5, h6, a {
  word-break: break-all;
  caret-color: transparent;
}

/* 다크 모드 무시(삼성 인터넷 모바일) */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light !important;
    background-color: white !important;
    color: black !important;
  }
}
@keyframes title {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tit_mini {
  0% {
    letter-spacing: 0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    letter-spacing: auto;
    opacity: 1;
  }
}
@keyframes focus {
  0% {
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes cycleM {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(1.5rem) scale(0.95);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes scroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(-50%, 1.4rem);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes bigger {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(5);
    opacity: 0;
  }
}
@keyframes bounce {
  to {
    transform: translateX(2rem);
    opacity: 0;
  }
}
@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes slideRight {
  0% {
    transform: translateX(10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes reveal-line {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
[data-aos=reveal-line] {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

[data-aos=reveal-line].aos-animate {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

[data-aos=title] {
  opacity: 0;
}

[data-aos=title].aos-animate {
  animation: title 1s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}

/*style*/
/*
    반응형
    사용 시 : 
    @include tablet{

    }
    @include mobile{

    }
*/
/*모바일에서 안보임*/
.hidden-mo {
  display: block !important;
}
@media screen and (max-width: 1023px) {
  .hidden-mo {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden-mo {
    display: none !important;
  }
}

/*피씨에서 안보임*/
.hidden-pc {
  display: none !important;
}
@media screen and (max-width: 1023px) {
  .hidden-pc {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden-pc {
    display: block !important;
  }
}

/*탭에서 안보임*/
.hidden-tab {
  display: block !important;
}
@media screen and (max-width: 1023px) {
  .hidden-tab {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden-tab {
    display: block !important;
  }
}

/*탭+PC에서 안보임*/
.hidden-pc-tab {
  display: none !important;
}
@media screen and (max-width: 1023px) {
  .hidden-pc-tab {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden-pc-tab {
    display: block !important;
  }
}

/*탭+mo에서 안보임*/
.hidden-tab-mo {
  display: block !important;
}
@media screen and (max-width: 1023px) {
  .hidden-tab-mo {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden-tab-mo {
    display: none !important;
  }
}

:root {
  /*gray*/
  --gray1: #FAFAFA;
  --gray2: #F2F2F2;
  --gray3: #ECECEC;
  --gray4: #F0F0F0;
  --gray5: #CFCFCF;
  --gray6: #BEBEBE;
  --gray7: #B7B7B7;
  --gray8: #ABABAB;
  --gray9: #A1A1A1;
  --gray10: #5E5E5E;
  /*black*/
  --black: #000;
  --black-a95: rgba(0, 0, 0, 0.95);
  --black-a90: rgba(0, 0, 0, 0.90);
  --black-a85: rgba(0, 0, 0, 0.85);
  --black-a80: rgba(0, 0, 0, 0.80);
  --black-a75: rgba(0, 0, 0, 0.75);
  --black-a70: rgba(0, 0, 0, 0.70);
  --black-a65: rgba(0, 0, 0, 0.65);
  --black-a60: rgba(0, 0, 0, 0.60);
  --black-a55: rgba(0, 0, 0, 0.55);
  --black-a50: rgba(0, 0, 0, 0.50);
  --black-a45: rgba(0, 0, 0, 0.45);
  --black-a40: rgba(0, 0, 0, 0.40);
  --black-a35: rgba(0, 0, 0, 0.35);
  --black-a30: rgba(0, 0, 0, 0.30);
  --black-a25: rgba(0, 0, 0, 0.25);
  --black-a20: rgba(0, 0, 0, 0.20);
  --black-a15: rgba(0, 0, 0, 0.15);
  --black-a10: rgba(0, 0, 0, 0.10);
  --black-a5: rgba(0, 0, 0, 0.05);
  /*white*/
  --white: #fff;
  --white-a95: rgba(255, 255, 255, 0.95);
  --white-a90: rgba(255, 255, 255, 0.90);
  --white-a85: rgba(255, 255, 255, 0.85);
  --white-a80: rgba(255, 255, 255, 0.80);
  --white-a75: rgba(255, 255, 255, 0.75);
  --white-a70: rgba(255, 255, 255, 0.70);
  --white-a65: rgba(255, 255, 255, 0.65);
  --white-a60: rgba(255, 255, 255, 0.60);
  --white-a55: rgba(255, 255, 255, 0.55);
  --white-a50: rgba(255, 255, 255, 0.50);
  --white-a45: rgba(255, 255, 255, 0.45);
  --white-a40: rgba(255, 255, 255, 0.40);
  --white-a35: rgba(255, 255, 255, 0.35);
  --white-a30: rgba(255, 255, 255, 0.30);
  --white-a25: rgba(255, 255, 255, 0.25);
  --white-a20: rgba(255, 255, 255, 0.20);
  --white-a15: rgba(255, 255, 255, 0.15);
  --white-a10: rgba(255, 255, 255, 0.10);
  --white-a5: rgba(255, 255, 255, 0.05);
  /*pri 1*/
  --pri1: #2D63B0;
  /*pri 2*/
  --pri2: #2F2F45;
  /*pri 3*/
  --pri3: #EB6D12;
  /*sub*/
  --sub1: #BDCFDB;
  --sub1-1: #F7F8FE;
  --sub1-2: #92DEEE;
  --sub1-3: ;
  --sub1-4: ;
  --sub1-5: ;
  --sub1-6: ;
  --sub1-7: ;
  --sub1-8: ;
  --sub1-9: ;
  --sub1-10: ;
  /*sub*/
  --sub2: #FDFEFF;
  --sub2-1: #ECF5FB;
  --sub2-2: #E5EDF6;
  --sub2-3: #D4DAE1;
  --sub2-4: #AFBECF;
  --sub2-5: #657B94;
  --sub2-6: ;
  --sub2-7: ;
  --sub2-8: ;
  --sub2-9: ;
  --sub2-10: ;
  /*sub*/
  --sub3: #FFFEFD;
  --sub3-1: #FFFBF8;
  --sub3-2: #E2DBB5;
  --sub3-3: #D5BDAB;
  --sub3-4: #C5B2A4;
  --sub3-5: #8D8077;
  --sub3-6: ;
  --sub3-7: ;
  --sub3-8: ;
  --sub3-9: ;
  --sub3-10: ;
  /*second*/
  --second1: ;
  --second2: ;
  --second3: ;
  --second4: ;
  --second5: ;
  --second6: ;
  --second7: ;
  --second8: ;
  --second9: ;
  --second10: ;
  --second11: ;
  /*sns*/
  --kakao: #ffbb00;
  --naver: #58D30C;
  --daum: #618FFC;
  --youtube: #FD0532;
}

.pri1 {
  color: var(--pri1);
}

.pri2 {
  color: var(--pri2);
}

.pri3 {
  color: var(--pri3);
}

.sub1 {
  color: var(--sub1);
}

.sub2 {
  color: var(--sub2);
}

.sub3 {
  color: var(--sub3);
}

.bg-pri1 {
  background-color: var(--pri1);
}

.bg-pri2 {
  background-color: var(--pri2);
}

.bg-pri3 {
  background-color: var(--pri3);
}

.bg-sub1 {
  background-color: var(--sub1);
}

.bg-sub2 {
  background-color: var(--sub2);
}

.bg-sub3 {
  background-color: var(--sub3);
}

@font-face {
  font-family: "ChosunIlboMyungjo";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/Chosunilbo_myungjo.woff") format("woff");
  font-weight: normal;
  font-display: swap;
}
:root {
  --ko: "Pretendard", sans-serif;
  --en: "Marcellus", "Pretendard", sans-serif;
  --chosun: "ChosunIlboMyungjo", sans-serif;
}

/* 폰트셋팅*/
html,
body {
  font-size: 16px;
}
@media screen and (max-width: 1023px) {
  html,
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  html,
  body {
    font-size: 12px;
  }
}

h1 {
  font-family: var(--ko);
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.3rem;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
    letter-spacing: -0.2rem;
    line-height: 130%;
  }
}

h2 {
  font-family: var(--ko);
  font-size: 3rem;
  font-style: normal;
  font-weight: 200;
  line-height: 130%;
  /* 3.9rem */
  letter-spacing: -0.21rem;
}
@media screen and (max-width: 1023px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-family: var(--ko);
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  /* 2.4375rem */
  letter-spacing: -0.13125rem;
}

h4 {
  font-family: var(--ko);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  /* 1.95rem */
  letter-spacing: -0.135rem;
}

h5 {
  font-family: var(--ko);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  /* 1.625rem */
  letter-spacing: -0.0625rem;
}

h6 {
  font-family: var(--ko);
  font-size: 1.1875rem;
  font-style: normal;
  font-weight: 300;
  line-height: 130%;
  /* 1.54375rem */
  letter-spacing: -0.07125rem;
}

div,
a,
span,
p,
ul,
ol,
li,
dd,
dt,
dl,
table,
button,
select,
input {
  font-family: var(--ko);
  font-size: 1.4375rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  /* 2.5875rem */
  letter-spacing: -0.07188rem;
}

b {
  font-weight: 700;
}

.small {
  font-family: var(--ko);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 2.025rem */
  letter-spacing: -0.0675rem;
}

/*삭제금지*/
/*common*/
footer {
  position: relative;
  width: 100%;
  max-width: 105rem;
  margin-inline: auto;
  border-radius: 3.75rem 3.75rem 0 0;
  display: flex;
  padding-bottom: 10rem;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  overflow: hidden;
  background: url("/common/img/user/dental/bg_footer.jpg") no-repeat center center;
  background-size: cover;
}
footer .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}
footer .inr {
  display: flex;
  padding: 10rem 7.5rem 0 7.5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 9.375rem;
  width: 100%;
  color: #fff;
}
footer .inr .top {
  display: flex;
  flex-direction: column;
  gap: 1.88rem;
}
footer .inr .top > div {
  display: flex;
  flex-direction: row;
  gap: 3.12rem;
}
footer .inr .top > div p {
  color: #697483;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.02813rem;
}
footer .inr .top > div p span {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}
footer .inr .bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  align-self: stretch;
}
footer .inr .bottom p {
  color: #697483;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.02813rem;
}
footer .inr .bottom .link {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  color: #697483;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: -0.02813rem;
}
footer .inr .bottom .link a {
  display: flex;
  padding: 0.25rem 0.75rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  color: #697483;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: -0.02344rem;
  border-radius: 0.0625rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  footer .inr {
    padding: 8rem 5rem 0 5rem;
    gap: 8rem;
  }
}
@media screen and (max-width: 767px) {
  footer {
    border-radius: 0;
  }
  footer .inr {
    padding: 6rem 2rem 0 2rem;
    gap: 5rem;
  }
  footer .inr .top {
    width: 100%;
    align-items: center;
    gap: 1rem;
  }
  footer .inr .top > div {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.88rem;
  }
  footer .inr .top > div p {
    font-size: 1.25rem;
  }
  footer .inr .bottom {
    align-items: center;
    align-self: stretch;
    flex-direction: column;
    gap: 1rem;
  }
  footer .inr .bottom p {
    font-size: 1.25rem;
  }
  footer .inr .bottom .link a {
    font-size: 1.25rem;
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 5rem;
  z-index: 10;
  color: var(--white);
  background: linear-gradient(180deg, rgba(182, 181, 189, 0) 84.84%, rgba(182, 181, 189, 0.2) 100%), linear-gradient(270deg, rgba(182, 181, 189, 0) 50.52%, rgba(182, 181, 189, 0.36) 100%), linear-gradient(0deg, rgba(166, 165, 177, 0) 58.02%, rgba(166, 165, 177, 0.99) 100%), url(<path-to-image>) lightgray -1323.414px -66.164px/186.128% 115.926% no-repeat, #DADADA;
  background-blend-mode: plus-darker, multiply, multiply, normal, normal;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
header .top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 3.5rem 0;
}
header .top .location {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 148%;
  cursor: pointer;
}
header .top .location::before {
  display: flex;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url(/common/img/user/dental/icon_header_location.svg) no-repeat center center;
  background-size: contain;
}
header .top .logo {
  flex: 0 0 auto;
  cursor: pointer;
}
header .top .logo .txt {
  font-weight: 800;
  font-size: 2rem;
}
header .top .logo a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.19rem;
}
header .top .logo img {
  width: auto;
  height: 100%;
}
header .top .logo .line {
  display: block;
  width: 1px;
  height: 2.25rem;
  background-color: rgba(255, 255, 255, 0.38);
}
header .top .logo .tag {
  display: flex;
  align-items: center;
  width: 10rem;
}
header .top .logo .tag .marquee {
  display: block;
  width: 100%;
}
header .top .logo .tag .marquee .track {
  line-height: 1;
}
header .top .logo .tag .marquee span {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1;
  word-break: keep-all;
}
header .top .logo .tag .marquee span:nth-child(2) {
  display: none;
}
header .top .tel {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.56rem;
  font-family: var(--en);
  font-size: 1.375rem;
  letter-spacing: 0.01rem;
  font-weight: 400;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  header .top .tel {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  header .top .tel {
    font-family: var(--en);
  }
}
header .top .tel::after {
  display: flex;
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  background: url(/common/img/user/dental/icon_header_tel.svg) no-repeat center center;
  background-size: contain;
}
header .m-menu {
  display: none;
  position: fixed;
  right: 1.5rem;
  top: 3rem;
  width: 5rem;
  height: 5rem;
  background: url(/common/img/user/dental/m_menu.svg) no-repeat center center;
  background-size: 70%;
}
header .gnb {
  margin-inline: auto;
}
header .gnb ul {
  display: flex;
  flex-direction: row;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 3.75rem;
  flex-shrink: 0;
}
header .gnb ul li {
  flex-shrink: 0;
}
header .gnb ul li a {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}
header .gnb ul li a span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.5rem 0 1rem;
  font-size: 1.1875rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.0475rem;
  transition: all 0.35s ease;
}
header .gnb ul li a span::after {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  content: "";
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 0.3rem;
  background-color: #fff;
  transition: all 0.4s ease;
}
header .gnb ul li:hover a span {
  color: #b4cee9;
}
header .gnb ul li:hover a span::after {
  background-color: #b4cee9;
  top: 0;
  opacity: 1;
}
header.active {
  padding: 0 3rem;
  background: rgba(83, 111, 147, 0.61);
  -webkit-backdrop-filter: blur(9.8000001907px);
          backdrop-filter: blur(9.8000001907px);
  border-bottom: 0;
}
header.active .top {
  padding: 1rem 0 0;
}
header.active .top .location,
header.active .top .tag {
  display: none;
}
header.active .top .logo {
  gap: 0.5rem;
}
header.active .top .logo img {
  height: 2.2rem;
  transition: height 0.3s ease;
}
header.active .top .logo .line {
  opacity: 0;
  transition: opacity 0.3s ease;
}
header.active .top .tel {
  font-size: 1.1rem;
}
header.active .gnb {
  margin-inline: initial;
  margin-left: auto;
}
header.active .gnb ul {
  gap: 2.2rem;
}
header.active .gnb ul li a span {
  padding: 0.25rem 0 0.75rem;
}
@media screen and (max-width: 80rem) {
  header {
    padding: 0 3rem;
  }
  header .gnb {
    margin: 0;
  }
  header .gnb ul {
    width: 100%;
    justify-content: space-between;
    gap: initial;
  }
}
@media screen and (max-width: 1023px) {
  header {
    padding: 0 2rem;
  }
  header.active {
    padding: 0 2rem;
  }
  header.active .gnb {
    margin-left: initial;
  }
}
@media screen and (max-width: 767px) {
  header {
    position: absolute;
    padding: 0;
    top: initial;
    border: 0;
  }
  header.active {
    padding: 0;
    background: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  header.active .top {
    padding: 4rem 2rem 1.875rem;
  }
  header.active .top .location,
  header.active .top .tag {
    display: flex;
  }
  header.active .gnb ul li a span {
    padding: 0.5rem 0;
  }
  header .top {
    flex-direction: column;
    gap: 0.45rem;
    padding: 3rem 2rem 1.875rem;
  }
  header .top .tel {
    display: none;
  }
  header .top .logo {
    width: 16rem;
    overflow: hidden;
  }
  header .top .logo a {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  header .top .logo .line {
    display: none;
  }
  header .top .logo .tag {
    width: 96%;
    overflow: hidden;
    border: 1px solid #fff;
    border-radius: 10rem;
    padding: 0.2rem 2rem;
  }
  header .top .logo .tag .marquee {
    display: flex;
    white-space: nowrap;
  }
  header .top .logo .tag .marquee .track {
    display: inline-block;
    animation: marqueeScroll 15s linear infinite;
  }
  header .top .logo .tag .marquee .track span {
    display: inline-block;
    font-size: 1.2rem;
  }
  header .top .logo .tag .marquee .track span:nth-child(2) {
    display: inline-block;
  }
  header .top .location {
    font-size: 1.25rem;
    gap: 0.2rem;
  }
  header .top .location::before {
    width: 1.45rem;
    height: 1.45rem;
    margin-top: -0.1rem;
  }
  header .gnb {
    position: fixed;
    right: 1.5rem;
    top: 1.75rem;
    display: flex;
    padding: 0;
    align-items: center;
    gap: 0.625rem;
    width: 68%;
  }
  header .gnb.active ul {
    display: flex;
    transform: translateX(0) scale(1);
    pointer-events: auto;
    gap: 1.5rem;
  }
  header .gnb ul {
    position: absolute;
    top: 0;
    right: -1rem;
    width: 100%;
    padding: 6rem 0 2.5rem 4rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    border-radius: 3.75rem;
    background: rgba(55, 55, 55, 0.6);
    -webkit-backdrop-filter: blur(9.8500003815px);
            backdrop-filter: blur(9.8500003815px);
    transform: translateX(120%) scale(0.9);
    pointer-events: none;
    transition: transform 0.45s ease, scale 0.25s ease;
  }
  header .gnb ul li {
    display: block;
    width: 100%;
  }
  header .gnb ul li a {
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 160%;
    letter-spacing: -0.105rem;
  }
  header .gnb ul li a span {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    padding: 0.5rem 0;
  }
  header .gnb ul li a span::after {
    left: 0;
  }
  header .gnb ul li:hover a span::after {
    left: -1.1rem;
    top: 50%;
    transform: translateY(-50%);
  }
  header .m-menu {
    display: block;
    z-index: 1;
    transition: all 0.3s;
  }
  header .m-menu.active {
    background-color: #536F93;
    border-radius: 10rem;
  }
  header .m-menu.clicked {
    background-color: #374a64;
    border-radius: 10rem;
  }
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.quick-menu-wrap {
  position: fixed;
  top: 50%;
  right: -4rem;
  opacity: 0;
  z-index: 100;
  transition: opacity 0.3s ease, right 0.3s ease;
}
.quick-menu-wrap.active {
  opacity: 1;
  right: 2rem;
}
.quick-menu-wrap.active .msg-wrap {
  right: 4.5rem;
  opacity: 1;
}
.quick-menu-wrap .quick-menu {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 3.375rem;
  padding: 0.5rem 1rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.125rem;
  border: 1px solid #EBEBEC;
  background: #FFF;
}
.quick-menu-wrap .quick-menu .menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-bottom: 1px solid #EBEBEC;
}
.quick-menu-wrap .quick-menu .menu li {
  cursor: pointer;
}
.quick-menu-wrap .quick-menu .menu li.cost span {
  display: block;
  width: 100%;
  height: 3.375rem;
  background: url(/common/img/user/dental/icon_quick_cost.svg) no-repeat center center;
  background-size: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.quick-menu-wrap .quick-menu .menu li.cost span:hover {
  transform: scale(1.3);
}
.quick-menu-wrap .quick-menu .menu li.counsel span {
  display: block;
  width: 100%;
  height: 3.375rem;
  background: url(/common/img/user/dental/icon_quick_counsel.svg) no-repeat center center;
  background-size: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.quick-menu-wrap .quick-menu .menu li.counsel span:hover {
  transform: scale(1.3);
}
.quick-menu-wrap .quick-menu .scroll {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 0.2rem;
}
.quick-menu-wrap .quick-menu .scroll span {
  display: block;
  width: 100%;
  height: 3rem;
  cursor: pointer;
}
.quick-menu-wrap .quick-menu .scroll span.btn {
  background: url(/common/img/user/dental/icon_quick_arrow.svg) no-repeat center center;
  transition: transform 0.3s ease;
}
.quick-menu-wrap .quick-menu .scroll span.btn:hover {
  transform: scale(1.3);
}
.quick-menu-wrap .quick-menu .scroll span.btn.bottom {
  transform: rotate(180deg) scale(1);
}
.quick-menu-wrap .quick-menu .scroll span.btn.bottom:hover {
  transform: rotate(180deg) scale(1.3);
}
.quick-menu-wrap .msg-wrap {
  position: absolute;
  top: 2px;
  right: 1rem;
  opacity: 0;
  transition: opacity 0.6s ease 0.4s, right 0.6s ease 0.4s;
}
.quick-menu-wrap .msg-wrap .msg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 13.9375rem;
  padding: 0.75rem 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.045rem;
  border-radius: 0.125rem;
  background: #536F93;
}
.quick-menu-wrap .msg-wrap .msg::after {
  position: absolute;
  content: "";
  right: -0.8rem;
  top: 50%;
  width: 0;
  height: 0;
  border-width: 0.45rem;
  border-style: solid;
  border-color: #536F93 transparent transparent transparent;
  transform: translateY(-50%) rotate(270deg);
}
.quick-menu-wrap .msg-wrap .close {
  position: absolute;
  right: -0.4rem;
  top: -0.4rem;
  display: flex;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 6.25rem;
  background: #202020 url(/common/img/user/dental/icon_quick_close.svg) no-repeat center center;
  background-size: 40%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .quick-menu-wrap {
    display: none;
    right: 1rem;
    top: initial;
    bottom: 1rem;
  }
}

/* 모바일 */
.m-quick-menu {
  display: none;
  position: fixed;
  bottom: 0.5rem;
  width: 100%;
  padding: 0 1.25rem;
  align-items: center;
  gap: 1rem;
  z-index: 9;
  border-radius: 6.25rem;
}
.m-quick-menu .menu {
  display: flex;
  width: 80%;
  height: 6rem;
  padding: 0 1.88rem 0 1.88rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex: 1 0 0;
  border-radius: 6.25rem;
  border: 1px solid #D9E7EF;
  background: #FFF;
}
.m-quick-menu .menu li {
  display: flex;
  width: 25%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60% 45%;
}
.m-quick-menu .menu li.home {
  background-image: url(/common/img/user/dental/icon_m_quick_home.svg);
}
.m-quick-menu .menu li.cost {
  background-image: url(/common/img/user/dental/icon_m_quick_cost.svg);
}
.m-quick-menu .menu li.location {
  background-image: url(/common/img/user/dental/icon_m_quick_location.svg);
}
.m-quick-menu .menu li.counsel {
  background-image: url(/common/img/user/dental/icon_m_quick_counsel.svg);
}
.m-quick-menu .tel {
  display: flex;
  width: 6rem;
  height: 6rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 3.4375rem;
  background-color: #536F93;
  will-change: transform;
}
.m-quick-menu .tel span {
  display: block;
  width: 100%;
  height: 100%;
  background: url(/common/img/user/dental/icon_m_quick_tel.svg) no-repeat center center;
  background-size: 40%;
  animation: ring 4s infinite ease-in-out;
  transform: translateZ(0);
}
@media screen and (max-width: 767px) {
  .m-quick-menu {
    display: flex;
  }
}
@keyframes ring {
  0% {
    transform: rotate(0deg);
  }
  1.5% {
    transform: rotate(2deg);
  }
  3% {
    transform: rotate(-2.5deg);
  }
  4.5% {
    transform: rotate(1.5deg);
  }
  6% {
    transform: rotate(-1deg);
  }
  7.5% {
    transform: rotate(0.5deg);
  }
  9% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

#quick {
  position: fixed;
  bottom: 0.5rem;
  right: 0;
  align-items: flex-end;
  gap: 20px;
  z-index: 1000;
  opacity: 0;
  transform: translateX(0);
  visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, visibility 0s linear 0.6s;
}
#quick.on {
  opacity: 1;
  transform: translateX(-6rem);
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease, visibility 0s;
}
#quick .online-form {
  position: relative;
  display: flex;
  width: 36.25rem;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #2F4867;
  background: #FFF;
  box-shadow: 5px 7px 4.9px 0 rgba(0, 0, 0, 0.05);
}
#quick .online-form-close {
  position: absolute;
  right: 1.9375rem;
  top: 2.5rem;
  width: 1.8125rem;
  height: 1.8125rem;
  overflow: hidden;
  text-indent: -1000000rem;
  z-index: 1;
  cursor: pointer;
}
#quick .online-form-close::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(/common/img/user/dental/icon_quick_form_close.svg) no-repeat center center;
  background-size: 90%;
  transition: all 0.3s ease;
}
#quick .online-form-close:hover::before {
  opacity: 0.6;
}
#quick .header {
  display: flex;
  padding: 3.5rem 3rem 3rem 3rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2.125rem;
  align-self: stretch;
  background: #3B577B;
  color: white;
}
#quick .header .title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6875rem;
}
#quick .header .title-wrap .title {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 148%;
  letter-spacing: -0.06125rem;
}
#quick .header .title-wrap .desc {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 148%;
  letter-spacing: -0.04375rem;
}
#quick .header .desc-time {
  font-size: 1.125rem;
  font-weight: 200;
  line-height: 168%;
  letter-spacing: -0.03938rem;
}
#quick .header .desc-time b {
  font-weight: 500;
}
#quick .header .desc-time a {
  font-size: inherit;
}
#quick .header .desc-time .bar {
  display: inline-block;
  padding: 0 0.2rem;
  opacity: 0.5;
  font-weight: 200;
}
#quick .contents {
  display: flex;
  padding: 3.2rem 3rem;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  align-self: stretch;
}
#quick #quick_form {
  width: 100%;
}
#quick #quick_form select[name=subject],
#quick #quick_form input[type=text],
#quick #quick_form input[type=tel] {
  display: flex;
  height: 4rem;
  padding: 0 1.875rem;
  align-items: center;
  gap: 0.625rem;
  align-self: stretch;
  border-radius: 0.125rem;
  background: #F6F6F6;
  border: 0;
  font-size: 1.25rem;
}
#quick #quick_form input::-moz-placeholder {
  color: #C8C8C8;
}
#quick #quick_form input::placeholder {
  color: #C8C8C8;
}
#quick #quick_form input[type=submit] {
  position: relative;
  display: flex;
  width: 100%;
  padding: 1rem 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0.375rem;
  background: #3B577B;
  color: white;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.0375rem;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
  border: 0;
}
#quick #quick_form input[type=submit]::before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #444 0%, #000 100%);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.3s ease;
}
#quick #quick_form input[type=submit]:hover::before {
  position: relative;
  z-index: 1;
}
#quick #quick_form .chk-online-agree {
  display: flex;
  align-items: center;
  gap: 0.8125rem;
  color: #888;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.02813rem;
}
#quick #quick_form .chk-online-agree input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  border-radius: 0.0625rem;
  border: 1px solid #ACB7BD;
  background: #FFF;
}
#quick #quick_form .chk-online-agree a {
  font-size: inherit;
  font-weight: inherit;
}
#quick #quick_form .form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.62rem;
  align-self: stretch;
  padding: 1.62rem 0;
}

@media screen and (max-width: 767px) {
  #quick.on {
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
  }
  #quick .online-form {
    width: 100%;
    border-radius: 1.5625rem 1.5625rem 0 0;
    overflow: hidden;
  }
  #quick .header {
    padding: 3.5rem 2rem 2rem;
  }
  #quick .header .title-wrap .title {
    padding-bottom: 0;
    font-size: 2rem;
  }
  #quick .header .title-wrap .desc {
    display: none;
  }
  #quick .header .desc-time {
    font-size: 1.3rem;
  }
  #quick .contents {
    padding: 1.2rem 2rem 3rem;
  }
  #quick #quick_form .form {
    padding-top: 0;
  }
  #quick #quick_form .chk-online-agree {
    padding: 0.8rem 0 1rem;
  }
}
/*pages*/
html {
  scroll-behavior: smooth;
}

:root {
  --timing: 1s;
}

body > section {
  display: flex;
  flex-direction: column;
  padding-bottom: 12.5rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  body > section {
    padding-bottom: 6rem;
  }
}

@media screen and (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }
}
.sec-header {
  width: 100%;
  max-width: 105rem;
  margin-inline: auto;
  display: flex;
  padding-top: 15rem;
  padding-left: 5rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9375rem;
  padding-bottom: 6.25rem;
}
.sec-header .label {
  color: #536F93;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 168%;
  letter-spacing: -0.03438rem;
}
.sec-header .title {
  font-family: var(--chosun);
  color: #202020;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 168%;
}
.sec-header .title b {
  color: #536F93;
  font-weight: 400;
}
.sec-header .title b span {
  font-family: var(--chosun);
  color: #536F93;
  font-size: inherit;
  font-weight: 400;
  line-height: 168%;
}
.sec-header .title span {
  font-family: var(--chosun);
  color: #202020;
  font-size: inherit;
  font-weight: 400;
  line-height: 168%;
}
.sec-header .desc {
  color: #555;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.04375rem;
  overflow: hidden;
}
.sec-header.center {
  padding-left: 0;
  padding-bottom: 7.5rem;
  align-items: center;
}
.sec-header.center .title {
  text-align: center;
}
.sec-header.center .desc {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec-header {
    padding-top: 6.5rem;
    padding: 6.5rem 2rem 3rem !important;
  }
  .sec-header.center {
    padding-right: 2rem;
    padding-left: 2rem;
    padding-bottom: 3rem;
  }
  .sec-header .title {
    font-size: 2.6rem;
  }
}

.sec-contents {
  display: flex;
  width: 100%;
  max-width: 105rem;
  margin-inline: auto;
}
@media screen and (max-width: 105rem) {
  .sec-contents {
    padding: 0 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-contents {
    padding: 0 1.25rem;
  }
}

.panel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  z-index: 1;
}
.panel * {
  z-index: 1;
  box-sizing: border-box;
}
.panel:before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  pointer-events: none;
}

.img-ani {
  position: relative;
  overflow: hidden;
  transform-origin: bottom center;
}
.img-ani img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img-ani video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.cursor {
  position: fixed;
  width: 8.125rem;
  height: 8.125rem;
  background: #000;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  border-radius: 6.25rem;
  z-index: 10;
  transition: transform 0.1s ease;
}
.cursor p {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-family: var(--en);
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: -0.03438rem;
}
@media screen and (max-width: 1023px) {
  .cursor p {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .cursor p {
    font-family: var(--en);
  }
}
.cursor p::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.2rem;
  background: url(/common/img/user/dental/icon_swiper_control.svg) no-repeat center center;
}
.cursor p::after {
  display: block;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.2rem;
  transform: rotate(-180deg);
  background: url(/common/img/user/dental/icon_swiper_control.svg) no-repeat center center;
}

.cursor-process {
  position: fixed;
  width: 8.125rem;
  height: 8.125rem;
  border-radius: 5.75rem;
  position: fixed;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  border-radius: 6.25rem;
  z-index: 10;
  background: #000;
  transition: transform 0.1s ease;
}
.cursor-process p {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  color: #FFF;
  font-family: var(--en);
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: -0.03438rem;
}
@media screen and (max-width: 1023px) {
  .cursor-process p {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .cursor-process p {
    font-family: var(--en);
  }
}
.cursor-process .scroll-downs {
  position: absolute;
  top: 1rem;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 0px;
}
.cursor-process .scroll-downs .mousey {
  width: 2px;
  padding: 8px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}
.cursor-process .scroll-downs .mousey .scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  animation: scroll 2.2s cubic-bezier(0.15, 0.41, 0.69, 0.94) infinite;
}
@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

.hover-target {
  cursor: none;
}

/* 메인비쥬얼 */
#mainvisual {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 0;
}
#mainvisual .mainvisualSwiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#mainvisual .mainvisualSwiper .swiper-slide {
  height: 67.5rem;
}
#mainvisual .mainvisualSwiper .swiper-slide .txt-box {
  display: flex;
  flex-flow: column;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -45%);
  z-index: 10;
  width: 87.5rem;
  color: #fff;
  animation-delay: 0s;
  opacity: 1;
}
#mainvisual .mainvisualSwiper .swiper-slide .txt-box .txt {
  margin-bottom: 1.875rem;
  color: #FFF;
  font-family: var(--chosun);
  font-size: 3rem;
  font-weight: 400;
  line-height: 168%;
  letter-spacing: -0.165rem;
  overflow: hidden;
}
#mainvisual .mainvisualSwiper .swiper-slide .txt-box .txt span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
  font-family: inherit;
  font-size: inherit;
}
#mainvisual .mainvisualSwiper .swiper-slide .txt-box .txt span:nth-child(1) {
  transition-delay: 0.1s;
}
#mainvisual .mainvisualSwiper .swiper-slide .txt-box .txt span:nth-child(2) {
  transition-delay: 0.3s;
}
#mainvisual .mainvisualSwiper .swiper-slide .txt-box .txt span.wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
}
#mainvisual .mainvisualSwiper .swiper-slide .txt-box .txt span.wrap img {
  width: auto;
  height: 100%;
}
#mainvisual .mainvisualSwiper .swiper-slide .txt-box .desc {
  color: #FFF;
  font-size: 1.45rem;
  font-weight: 200;
  line-height: 168%;
  letter-spacing: -0.07875rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease 0.4s;
}
#mainvisual .mainvisualSwiper .swiper-slide .video {
  height: 100%;
}
#mainvisual .mainvisualSwiper .swiper-slide video {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  width: 100%;
  height: 100%;
}
#mainvisual .mainvisualSwiper .swiper-slide video.mo {
  display: none;
}
#mainvisual .mainvisualSwiper .swiper-slide .graph {
  display: flex;
  flex-flow: column;
  position: absolute;
  top: 54%;
  right: 0;
  transform: translate(-20%, -54%);
  z-index: 10;
  opacity: 0;
  transition: all 0.8s ease;
}
#mainvisual .mainvisualSwiper .swiper-slide .img-box img {
  height: 100%;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
}
@media screen and (max-width: 1023px) {
  #mainvisual .mainvisualSwiper .swiper-slide .img-box img {
    width: 100%;
    height: auto;
  }
}
#mainvisual .mainvisualSwiper .swiper-slide.swiper-slide-active .txt span {
  opacity: 1;
  transform: translateY(0);
}
#mainvisual .mainvisualSwiper .swiper-slide.swiper-slide-active .desc {
  opacity: 1;
  transform: translateY(0);
}
#mainvisual .mainvisualSwiper .swiper-slide.swiper-slide-active .graph {
  transition-delay: 0.4s;
  opacity: 1;
  transform: translate(-30%, -54%);
}
#mainvisual .mainvisualSwiper .swiper-slide.swiper-slide-active .img-box img {
  transform: scale(1.1);
  /*  default */
  -webkit-transform: scale(1.1);
  /*  크롬 */
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  transition: transform 0.8s ease;
}
#mainvisual .mainvisualSwiper .swiper-slide.first .graph {
  top: 42%;
  right: 21%;
  transform: initial;
}
#mainvisual .mainvisualSwiper .swiper-slide.first.swiper-slide-active .graph {
  right: 22%;
  transform: initial;
}
#mainvisual .mainvisualSwiper .swiper-slide.second .graph {
  top: 30%;
  right: 12%;
  transform: initial;
}
#mainvisual .mainvisualSwiper .swiper-slide.second.swiper-slide-active .graph {
  right: 13.5%;
  transform: initial;
}
#mainvisual .mainvisualSwiper .all-box-wrap {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  z-index: 10;
  width: 87.5rem;
  display: flex;
  justify-content: flex-start;
  pointer-events: auto;
}
@media screen and (max-width: 1480px) {
  #mainvisual .mainvisualSwiper .all-box-wrap {
    width: 100%;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 87.5rem) {
  #mainvisual .mainvisualSwiper .all-box-wrap {
    width: 90%;
    padding: 0;
  }
}
#mainvisual .mainvisualSwiper .all-box {
  display: flex;
  align-items: center;
  gap: 1.875rem;
  max-width: 17.5rem;
  width: 100%;
}
#mainvisual .mainvisualSwiper .all-box .progress-box {
  position: relative;
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}
#mainvisual .mainvisualSwiper .all-box .progress-box .autoplay-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #fff;
  transition: width 0.1s linear;
}
#mainvisual .mainvisualSwiper .all-box .page-num {
  font-family: var(--en);
  color: #fff;
  font-size: 1.375rem;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  #mainvisual .mainvisualSwiper .all-box .page-num {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  #mainvisual .mainvisualSwiper .all-box .page-num {
    font-family: var(--en);
  }
}
#mainvisual .mainvisualSwiper .all-box .page-num.current {
  opacity: 1;
}
#mainvisual .mainvisualSwiper .all-box .left {
  order: -1;
}
#mainvisual .mainvisualSwiper .all-box .right {
  order: 2;
}
#mainvisual .mainvisualSwiper .all-box .navi {
  position: relative;
  width: 2.75rem;
  height: 1.125rem;
  display: flex;
  gap: 0.5rem;
  order: 3;
}
#mainvisual .mainvisualSwiper .all-box .navi .swiper-button-next,
#mainvisual .mainvisualSwiper .all-box .navi .swiper-button-prev {
  position: static;
  width: 1.125rem;
  height: 100%;
  margin: 0;
  color: #fff;
}
#mainvisual .mainvisualSwiper .all-box .navi .swiper-button-next::after,
#mainvisual .mainvisualSwiper .all-box .navi .swiper-button-prev::after {
  font-size: 1rem;
}
@media screen and (max-width: 87.5rem) {
  #mainvisual .mainvisualSwiper .swiper-slide .txt-box {
    width: 90%;
  }
  #mainvisual .mainvisualSwiper .swiper-slide.swiper-slide-active.first.swiper-slide-active .graph {
    right: 8%;
  }
  #mainvisual .mainvisualSwiper .swiper-slide.swiper-slide-active.second.swiper-slide-active .graph {
    right: 3%;
  }
  #mainvisual .mainvisualSwiper .swiper-slide.swiper-slide-active.third.swiper-slide-active .graph {
    right: -10%;
  }
  #mainvisual .mainvisualSwiper .all-box {
    left: 5.2%;
  }
}
#mainvisual .notice-item {
  position: absolute;
  display: flex;
  width: 87.5rem;
  height: 5rem;
  bottom: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 1.0625rem 2.75rem;
  align-items: center;
  gap: 7.5rem;
  border-radius: 0.5rem;
  background: rgba(26, 26, 26, 0.21);
  -webkit-backdrop-filter: blur(9.8000001907px);
          backdrop-filter: blur(9.8000001907px);
  z-index: 1;
}
#mainvisual .notice-item .title {
  display: flex;
  flex-shrink: 0;
  min-width: 10rem;
  padding: 0.625rem 2rem;
  color: #FFF;
  font-family: var(--chosun);
  font-size: 1.625rem;
  font-weight: 400;
  letter-spacing: -0.07313rem;
}
#mainvisual .notice-item .title span {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}
#mainvisual .notice-item .noticeSwiper {
  height: 100%;
  margin: 0;
  overflow: hidden;
}
#mainvisual .notice-item .noticeSwiper .swiper-slide {
  display: flex;
  align-items: center;
  font-size: 2rem;
  color: #fff;
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.0675rem;
  cursor: grab;
}
@media screen and (max-width: 90rem) {
  #mainvisual .notice-item {
    position: relative;
    bottom: initial;
    width: 100%;
    border-radius: 0;
    background-color: #536F93;
  }
}
@media screen and (max-width: 1023px) {
  #mainvisual {
    height: auto;
  }
  #mainvisual .mainvisualSwiper .swiper-slide {
    height: auto;
  }
  #mainvisual .mainvisualSwiper .swiper-slide .img-box.video {
    width: 100%;
    height: auto;
  }
  #mainvisual .mainvisualSwiper .swiper-slide .img-box.video.mo {
    display: block;
  }
  #mainvisual .mainvisualSwiper .swiper-slide .img-box.video.pc {
    display: none;
  }
  #mainvisual .mainvisualSwiper .swiper-slide .img-box img {
    width: 100%;
    height: auto;
  }
  #mainvisual .mainvisualSwiper .swiper-slide .txt-box,
  #mainvisual .mainvisualSwiper .swiper-slide .graph {
    display: none;
  }
  #mainvisual .mainvisualSwiper .swiper-slide.swiper-slide-active .img-box img {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
  }
  #mainvisual .mainvisualSwiper .all-box {
    display: none;
  }
  #mainvisual .notice-item {
    position: relative;
    width: 100%;
    height: 8.5rem;
    bottom: initial;
    left: initial;
    transform: initial;
    padding: 2rem;
    gap: 0.5rem;
    border-radius: 0;
    background: #536F93;
    flex-direction: column;
    align-items: flex-start;
    transition: height 0.2s ease;
  }
  #mainvisual .notice-item .noticeSwiper {
    width: 100%;
  }
  #mainvisual .notice-item .title {
    padding: 0;
    font-size: 1.425rem;
  }
  #mainvisual .notice-item .swiper-slide {
    width: 100%;
    max-width: 100%;
  }
  #mainvisual .notice-item .swiper-slide p {
    font-size: 1.6rem;
    display: block;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  #mainvisual .notice-item.active {
    height: 10.6rem;
  }
  #mainvisual .notice-item.active .swiper-slide p {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
}

/* sec01. 치과 소개 */
#overview {
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
#overview .bg-circle {
  position: absolute;
  left: -50%;
  top: -20%;
  width: 74.625rem;
  height: 82.25rem;
  border-radius: 82.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
#overview .bg-circle.right {
  left: initial;
  right: -60%;
  top: 20%;
}
#overview .bg-circle.right .circle {
  transform: none;
}
#overview .bg-circle.last {
  left: -15%;
  top: initial;
  bottom: 8%;
}
#overview .bg-circle .circle {
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
  transform-origin: center center;
}
#overview .bg-circle .circle circle {
  fill: none;
  stroke: #ebebeb;
  stroke-width: 1;
  stroke-dasharray: 5143;
  stroke-dashoffset: 5143;
  transition: stroke-dashoffset 2s ease;
}
@media screen and (max-width: 767px) {
  #overview .bg-circle {
    display: none;
  }
}
#overview .overview-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  gap: 3rem;
}
#overview .overview-list .list {
  max-width: 43.75rem;
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 3.875rem;
}
#overview .overview-list .list:nth-child(even) {
  margin-top: 16rem;
}
#overview .overview-list .list .image {
  position: relative;
  overflow: hidden;
  width: auto;
  height: 44rem;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  #overview .overview-list .list .image {
    border-radius: 1.5rem;
  }
}
#overview .overview-list .list .image .num {
  position: absolute;
  z-index: 2;
  left: 3.1875rem;
  bottom: 3.125rem;
  text-align: center;
  font-size: 8.75rem;
  font-weight: 400;
  line-height: 100%;
  font-family: var(--en);
  color: #fff;
  transition: left 0.6s, bottom 0.6s;
}
@media screen and (max-width: 1023px) {
  #overview .overview-list .list .image .num {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  #overview .overview-list .list .image .num {
    font-family: var(--en);
  }
}
#overview .overview-list .list .image video,
#overview .overview-list .list .image img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: border-radius 0.6s;
}
#overview .overview-list .list .image:hover video,
#overview .overview-list .list .image:hover img {
  border-radius: 50%;
}
#overview .overview-list .list .image:hover .num {
  left: 5rem;
  bottom: 5rem;
}
#overview .overview-list .list .text-wrap {
  display: flex;
  padding-left: 4.2rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
}
#overview .overview-list .list .text-wrap .title {
  color: #202020;
  font-family: var(--chosun);
  font-size: 2.875rem;
  font-weight: 400;
  line-height: 168%;
}
#overview .overview-list .list .text-wrap .title b {
  font-weight: 400;
  color: #536F93;
}
#overview .overview-list .list .text-wrap .desc {
  color: #555;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: -0.0375rem;
}
@media screen and (max-width: 80rem) {
  #overview .overview-list .list:nth-child(even) {
    margin-top: 10rem;
  }
  #overview .overview-list .list .image {
    height: 28rem;
  }
  #overview .overview-list .list .text-wrap {
    padding: 0 2rem;
  }
  #overview .overview-list .list .text-wrap .title {
    font-size: 2.2rem;
  }
  #overview .overview-list .list .text-wrap .desc {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  #overview .overview-list {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 5rem;
  }
  #overview .overview-list .list {
    width: 100%;
    max-width: initial;
  }
  #overview .overview-list .list .image {
    height: 23rem;
  }
  #overview .overview-list .list .image:hover video,
  #overview .overview-list .list .image:hover img {
    border-radius: 0;
  }
  #overview .overview-list .list .image:hover .num {
    left: 3.1875rem;
    bottom: 3.125rem;
  }
  #overview .overview-list .list .text-wrap {
    padding: 0 2.5rem;
  }
  #overview .overview-list .list .text-wrap .desc br {
    display: none;
  }
  #overview .overview-list .list:nth-child(even) {
    margin-top: 0;
  }
}

/* sec02. 치과 과목 */
#subject {
  position: relative;
  width: 100%;
  display: flex;
  background: url(/common/img/user/dental/bg_subject.jpg) no-repeat top center;
  background-size: cover;
  background-attachment: fixed;
  padding-bottom: 14.375rem;
  z-index: 1;
}
#subject .sec-contents {
  margin-inline: auto;
}
#subject .subject-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6.25rem 3.2rem;
}
#subject .subject-list > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  flex: 1 1 calc(25% - 3.2rem);
  min-width: 18rem;
  box-sizing: border-box;
  cursor: pointer;
}
#subject .subject-list > li .img {
  width: 100%;
  min-height: 23rem;
  overflow: hidden;
  display: flex;
  justify-content: center;
  border-radius: 2rem;
  transition: border-radius 0.6s;
}
@media screen and (max-width: 767px) {
  #subject .subject-list > li .img {
    border-radius: 1.5rem;
  }
}
#subject .subject-list > li .img img {
  border-radius: 2rem;
  transition: scale 0.3s, border-radius 0.6s;
}
@media screen and (max-width: 767px) {
  #subject .subject-list > li .img img {
    border-radius: 1.5rem;
  }
}
#subject .subject-list > li .title {
  font-family: var(--chosun);
  color: #202020;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 168%;
}
#subject .subject-list > li:hover .img {
  border-radius: 50%;
}
#subject .subject-list > li:hover .img img {
  scale: 1.2 !important;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  #subject .subject-list {
    gap: 2.25rem 1.8rem;
  }
  #subject .subject-list > li {
    gap: 0.5rem;
    flex: 1 1 calc(50% - 2rem);
    min-width: auto;
  }
  #subject .subject-list > li .img {
    min-height: 14rem;
  }
  #subject .subject-list > li img {
    min-height: 14rem;
  }
}
@media screen and (max-width: 1023px) {
  #subject .subject-list > li .img {
    min-height: 16rem;
  }
  #subject .subject-list > li:nth-child(7) .img {
    min-height: 20rem;
  }
  #subject .subject-list > li:nth-child(8) .img {
    min-height: 20rem;
  }
}
@media screen and (max-width: 767px) {
  #subject {
    padding-bottom: 6rem;
  }
  #subject .subject-list > li:nth-child(7) .img {
    min-height: 16rem;
  }
  #subject .subject-list > li:nth-child(8) .img {
    min-height: 16rem;
  }
}

#process {
  max-width: 105rem;
  margin-inline: auto;
  position: relative;
}
#process .bg-circle {
  position: absolute;
  left: -50%;
  top: -20%;
  width: 74.625rem;
  height: 82.25rem;
  border-radius: 82.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
#process .bg-circle.right {
  left: initial;
  right: -60%;
  top: 20%;
}
#process .bg-circle.right .circle {
  transform: none;
}
#process .bg-circle.last {
  left: -15%;
  top: initial;
  bottom: 8%;
}
#process .bg-circle .circle {
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
  transform-origin: center center;
}
#process .bg-circle .circle circle {
  fill: none;
  stroke: #ebebeb;
  stroke-width: 1;
  stroke-dasharray: 5143;
  stroke-dashoffset: 5143;
  transition: stroke-dashoffset 2s ease;
}
#process .process-step {
  display: flex;
  align-items: center;
  height: 50rem;
  position: relative;
  overflow: hidden;
}
#process .process-step .swiper-wrapper {
  transition-timing-function: ease-out;
  align-items: center;
}
#process .process-step .swiper-slide {
  display: flex;
  flex-direction: column;
  transition: all var(--timing) ease-out;
  flex-shrink: 0;
  aspect-ratio: 1;
  justify-content: center;
  text-align: center;
  scale: 0.8;
  opacity: 1;
  border-radius: 2.5rem;
  padding: 5.2rem 4rem;
  cursor: none;
}
#process .process-step .swiper-slide img {
  transition: transform 0.8s ease-out;
  transform-origin: bottom left;
}
#process .process-step .swiper-slide[data-colour=gray] {
  background: #F5F5F5;
}
#process .process-step .swiper-slide[data-colour=gray-blue] {
  background: #E1E5EC;
}
#process .process-step .swiper-slide[data-colour=blue] {
  background: #BDCDE3;
}
#process .process-step .swiper-slide-prev {
  border-radius: 2.5rem 0 0 2.5rem;
}
#process .process-step .swiper-slide-next {
  border-radius: 0 2.5rem 2.5rem 0;
}
#process .process-step .icon {
  display: flex;
  justify-content: center;
}
#process .process-step .text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2.8rem;
}
#process .process-step .text-wrap .num {
  display: flex;
  width: 4rem;
  height: 4rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 6.25rem;
  background: #FFF;
  color: #000;
  font-family: var(--chosun);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 168%;
}
#process .process-step .text-wrap .title {
  font-family: var(--chosun);
  color: #202020;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 168%;
}
#process .process-step .text-wrap .desc {
  opacity: 0;
  height: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  color: #555;
  font-size: 1.55rem;
  font-weight: 300;
  letter-spacing: -0.04375rem;
  transition: all 0.3s ease;
}
#process .process-step .swiper-slide-active {
  overflow: visible;
  scale: 1.3;
  z-index: 99;
  opacity: 1;
}
#process .process-step .swiper-slide-active .text-wrap .desc {
  opacity: 1;
  height: auto;
  transform: translateY(0);
}
@media screen and (max-width: 1023px) {
  #process .sec-header {
    padding-bottom: 5rem;
  }
  #process .sec-contents {
    padding: 0 2rem;
  }
  #process .process-step .swiper-slide {
    scale: 0.9;
    padding: 3.2rem 2.2rem;
  }
  #process .process-step .swiper-slide.swiper-slide-next {
    border-radius: 2.5rem;
  }
  #process .process-step .swiper-slide-active {
    scale: 1;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  #process {
    padding-bottom: 6rem;
  }
  #process .process-step {
    height: initial;
  }
  #process .process-step .swiper-slide {
    scale: 0.6;
    margin-left: -2.2rem;
    padding: 3.2rem 1.8rem;
    border-radius: 1.25rem;
  }
  #process .process-step .icon img {
    width: 30%;
    transition: all var(--timing) ease-out;
  }
  #process .process-step .text-wrap {
    gap: 0.8rem;
    padding-top: 2rem;
  }
  #process .process-step .text-wrap .num {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.6rem;
  }
  #process .process-step .text-wrap .title {
    font-size: 2rem;
    line-height: 1.25;
  }
  #process .process-step .text-wrap .desc {
    font-size: 1.45rem;
    line-height: 1.65;
  }
  #process .process-step .swiper-slide {
    margin: 0;
  }
  #process .process-step .swiper-slide-active {
    overflow: visible;
    scale: 1;
    margin-left: 0;
    padding: 2rem 1.2rem;
  }
}

/* 의료진 소개 */
#doctor {
  position: relative;
  overflow: hidden;
  background-color: initial;
  padding: 0;
}
#doctor .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
#doctor .sec-contents {
  position: relative;
  align-items: flex-end;
  margin-inline: auto;
  gap: 2rem;
}
#doctor .dotor-img {
  margin-bottom: -5rem;
  padding-top: 5rem;
  padding-right: 3rem;
}
#doctor .dotor-img img {
  width: 100%;
  height: auto;
}
#doctor .text-wrap {
  width: 51rem;
  padding-top: 9.75rem;
  padding-bottom: 6.75rem;
}
#doctor .text-wrap .top {
  display: flex;
  flex-direction: column;
  gap: 1.88rem;
}
#doctor .text-wrap .bottom {
  display: flex;
  flex-direction: row;
  padding-top: 5rem;
}
#doctor .text-wrap .bottom .history {
  width: 50%;
}
#doctor .text-wrap .bottom .history .tit {
  display: inline-flex;
  padding: 0.1875rem 1.375rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 2.1875rem;
  background: #536F93;
  color: #FFF;
  text-align: center;
  font-family: var(--chosun);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.03125rem;
}
#doctor .text-wrap .bottom .history .con {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.44rem;
  overflow-y: scroll;
  height: 16rem;
}
#doctor .text-wrap .bottom .history .con::-webkit-scrollbar {
  display: none;
}
#doctor .text-wrap .bottom .history .con li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  color: #202020;
  font-size: 1.125rem;
  font-weight: 200;
  letter-spacing: -0.02813rem;
}
#doctor .text-wrap .bottom .history .con li::before {
  content: " ";
  display: flex;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 0.25rem;
  background: #A3BAC8;
}
#doctor .text-wrap .name {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0.875rem;
  color: #555;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: -0.05625rem;
}
#doctor .text-wrap .name span {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
#doctor .text-wrap .name .unit {
  font-size: 1.75rem;
  font-weight: 300;
}
#doctor .text-wrap .text {
  color: #202020;
  font-family: var(--chosun);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 148%;
}
#doctor .text-wrap .text span {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
#doctor .text-wrap .history-point {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 1.375rem 3.75rem;
  align-self: stretch;
  flex-wrap: wrap;
  padding-top: 2rem;
}
#doctor .text-wrap .history-point li {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #536F93;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.05rem;
}
#doctor .text-wrap .history-point li::before {
  content: "";
  display: flex;
  width: 1.6875rem;
  height: 1.6875rem;
  aspect-ratio: 1/1;
  border-radius: 0.2rem;
  background: url(/common/img/user/dental/icon_doctor_check.svg) no-repeat center center;
  background-size: contain;
}
#doctor .text-wrap .history-point li.point {
  color: #BD936E;
}
#doctor .text-wrap .history-point li.point b {
  font-weight: 500;
}
#doctor .text-wrap .history-point li.point::before {
  background-image: url(/common/img/user/dental/icon_doctor_check_point.svg);
}
@media screen and (max-width: 767px) {
  #doctor .sec-contents {
    flex-direction: column;
    padding: 6rem 2rem 6rem;
  }
  #doctor .sec-contents .text-wrap {
    width: 100%;
    padding-bottom: 0;
    padding-top: 4rem;
  }
  #doctor .sec-contents .text-wrap .text {
    font-size: 2.8rem;
  }
  #doctor .sec-contents .text-wrap .history-point li {
    align-items: flex-start;
    font-size: 1.6rem;
    line-height: 1.25;
  }
  #doctor .sec-contents .text-wrap .history-point li::before {
    width: 1.45rem;
    height: 1.45rem;
    margin-top: 0.2rem;
  }
  #doctor .sec-contents .text-wrap .bottom {
    gap: 2rem;
  }
  #doctor .dotor-img {
    padding: 0;
  }
  #doctor .dotor-img img {
    width: 80%;
    margin-inline: auto;
  }
}

#equip {
  position: relative;
  background: url(/common/img/user/dental/bg_equip.jpg) no-repeat top center;
  background-attachment: fixed;
  background-size: cover;
}
#equip .sec-contents {
  max-width: initial;
  margin-inline: initial;
  padding: 0;
}
#equip .equipSwiper {
  padding: 0 5rem;
  box-sizing: border-box;
}
#equip .equipSwiper .swiper-slide {
  width: 31.25rem;
  height: 100%;
  padding: 4.25rem 2.5rem 5rem;
  border-radius: 2.5rem;
  border: 1px solid #FFF;
  background: #FDFDFD;
}
#equip .equipSwiper .swiper-slide .header .label {
  color: #7F919C;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 188%;
  letter-spacing: -0.03438rem;
}
#equip .equipSwiper .swiper-slide .header .title {
  color: #202020;
  font-family: var(--chosun);
  font-size: 2.25rem;
  font-weight: 400;
  letter-spacing: -0.05625rem;
  text-transform: uppercase;
}
#equip .equipSwiper .swiper-slide > img {
  width: 100%;
  margin-inline: auto;
}
#equip .equipSwiper .swiper-slide .explain {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.625rem;
  align-self: stretch;
}
#equip .equipSwiper .swiper-slide .explain li {
  display: flex;
  flex-direction: column;
  padding-left: 2.1rem;
  align-items: flex-start;
  gap: 0.625rem;
  background: url(/common/img/user/dental/icon_check.svg) no-repeat 0 3px;
}
#equip .equipSwiper .swiper-slide .explain .tit {
  color: #7F919C;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 148%;
  letter-spacing: -0.03438rem;
}
#equip .equipSwiper .swiper-slide .explain .desc {
  color: #555;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 128%;
  letter-spacing: -0.03125rem;
}
@media screen and (max-width: 767px) {
  #equip .equipSwiper .swiper-slide {
    padding: 4.25rem 2.2rem 3rem;
  }
  #equip .equipSwiper .swiper-slide .header .title {
    font-size: 2rem;
  }
  #equip .equipSwiper .swiper-slide .explain li {
    background-size: 15%;
  }
  #equip .equipSwiper .swiper-slide .explain .tit {
    font-size: 1.6rem;
  }
  #equip .equipSwiper .swiper-slide .explain .desc {
    display: none;
  }
}

#partner .sec-header {
  align-items: center;
  text-align: center;
  padding-left: 0;
}
#partner .partnerSwiper .swiper-slide {
  display: flex;
  width: 24.375rem;
  padding: 3.75rem 1.875rem;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  border-radius: 1rem;
  border: 1px solid #EBEBEB;
}
#partner .partnerSwiper .swiper-slide .logo {
  display: flex;
  width: 100%;
  height: 10rem;
  justify-content: center;
  align-items: center;
}
#partner .partnerSwiper .swiper-slide .logo img {
  width: auto;
  height: auto;
  max-height: 11rem;
  margin-inline: auto;
}
#partner .partnerSwiper .swiper-slide .text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#partner .partnerSwiper .swiper-slide .text-wrap .tit {
  color: #555;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 128%;
  letter-spacing: -0.04375rem;
}
#partner .partnerSwiper .swiper-slide .text-wrap .en {
  color: #AFAFAF;
  font-family: var(--en);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 168%;
}
@media screen and (max-width: 1023px) {
  #partner .partnerSwiper .swiper-slide .text-wrap .en {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  #partner .partnerSwiper .swiper-slide .text-wrap .en {
    font-family: var(--en);
  }
}
#partner .partnerSwiper .swiper-slide .text-wrap .desc {
  padding-top: 1.88rem;
  text-align: center;
  color: #555;
  text-align: center;
  font-size: 1.125rem;
  line-height: 168%;
}
@media screen and (max-width: 767px) {
  #partner .partnerSwiper .swiper-slide .text-wrap .desc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #partner .sec-header br {
    display: none;
  }
  #partner .sec-contents {
    padding: 0;
  }
  #partner .partnerSwiper {
    padding: 0 2rem;
  }
  #partner .partnerSwiper .swiper-slide .logo {
    height: 6rem;
  }
}

#qna {
  display: flex;
  flex-direction: row;
  position: relative;
  overflow: visible;
  padding: 15rem 0 12.75rem;
  background-color: #E2EDF1;
}
#qna::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(240, 242, 243, 0.57);
  -webkit-backdrop-filter: blur(7.5999999046px);
          backdrop-filter: blur(7.5999999046px);
}
#qna .bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.58;
}
#qna .sec-header {
  padding-top: 5.3rem;
  position: relative;
  z-index: 1;
}
#qna .sec-header .title {
  padding-left: 5rem;
  position: sticky;
  top: 8rem;
  transition: all 0.3s;
}
#qna .sec-contents {
  position: relative;
  z-index: 1;
  padding-right: 5rem;
}
#qna .accordion li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.625rem;
  align-self: stretch;
  padding: 3.12rem 3.75rem 1.875rem 5rem;
  border-bottom: 1px solid #E2E2E2;
  overflow: hidden;
}
#qna .accordion li .question {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
}
#qna .accordion li .question .label {
  color: #202020;
  font-family: var(--chosun);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 168%;
  transition: color 0.3s;
}
#qna .accordion li .question .tit {
  color: #202020;
  font-family: ChosunilboNM;
  font-family: var(--chosun);
  font-size: 2rem;
  font-weight: 400;
  line-height: 168%;
  transition: color 0.3s;
}
#qna .accordion li .question .tit::before {
  content: "Q.";
  display: inline-flex;
  color: #A2A2A2;
  padding-right: 1rem;
  transition: color 0.3s;
}
#qna .accordion li .content {
  display: none;
}
#qna .accordion li .content p {
  color: #555;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 188%;
  letter-spacing: -0.0375rem;
}
#qna .accordion li:hover .label,
#qna .accordion li:hover .tit {
  color: #536F93;
}
#qna .accordion li.open {
  padding: 4.375rem 3.75rem 5rem 5rem;
  border-radius: 1.875rem;
  background: #FFF;
  transition: all 0.3s;
  border-bottom: 0;
}
#qna .accordion li.open .label,
#qna .accordion li.open .tit {
  color: #536F93;
}
#qna .accordion li.open .tit::before {
  color: #315078;
}
#qna .accordion li.open .content {
  display: block;
}
#qna .accordion li.prev-open {
  border-bottom: 0;
}
#qna .accordion li:last-child {
  border-bottom: 0;
}
@media screen and (max-width: 75rem) {
  #qna .sec-header .title br {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  #qna {
    flex-direction: column;
    padding: 7.5rem 0 9rem;
  }
  #qna .sec-header {
    padding-top: 0;
  }
  #qna .sec-header .title {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  #qna {
    padding: 4rem 0 6rem;
  }
  #qna .sec-header {
    padding-bottom: 4rem;
  }
  #qna .sec-contents {
    padding: 0 1.25rem;
  }
  #qna .accordion li {
    padding: 3rem 2.5rem 1.875rem;
  }
  #qna .accordion li.open {
    padding: 3rem 2.5rem 3rem;
  }
}

/* 병원정보 */
#hospital {
  position: relative;
}
#hospital .observer-trigger {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
}
#hospital .sec-header {
  padding-bottom: 5.625rem;
}
#hospital .sec-contents {
  flex-direction: column;
}
#hospital .map-wrap {
  width: 100%;
  position: relative;
}
#hospital .map-wrap .map {
  width: 100%;
  height: 42rem;
  overflow: hidden;
  border-radius: 3.75rem;
}
#hospital .map-wrap .map .wrap_controllers,
#hospital .map-wrap .map .cont {
  display: none;
}
#hospital .map-wrap .btn-map {
  display: flex;
  padding: 0.8125rem 4.59375rem;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 2.5rem;
  top: 1.4375rem;
  border-radius: 6.25rem;
  background: #5DAA53;
  z-index: 5;
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 168%;
  cursor: pointer;
  transition: all 0.3s;
}
#hospital .map-wrap .btn-map::before {
  display: block;
  content: "";
  width: 0.875rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  background: url(/common/img/user/dental/icon_btn_location.svg) no-repeat center center;
  background-size: contain;
}
#hospital .info-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 3.75rem 6rem 0 6rem;
}
#hospital .info-wrap > div {
  width: 45%;
  gap: 10rem;
}
#hospital .info-wrap .left {
  display: flex;
  flex-direction: column;
  gap: 3.75rem 0;
}
#hospital .info-wrap .label,
#hospital .info-wrap .tit {
  flex-shrink: 0;
  color: #202020;
  font-family: var(--chosun);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 168%;
}
#hospital .info-wrap .txt {
  color: #555;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.0375rem;
}
#hospital .info-wrap .info-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem 0;
}
#hospital .info-wrap .info-list .tel {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  color: #536F93;
  font-family: var(--en);
  font-size: 3.125rem;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  #hospital .info-wrap .info-list .tel {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  #hospital .info-wrap .info-list .tel {
    font-family: var(--en);
  }
}
#hospital .info-wrap .info-list .tel .icon {
  display: inline-block;
  width: 3.4375rem;
  height: 3.4375rem;
  background: #536F93 url(/common/img/user/dental/icon_tel.svg) no-repeat center center;
  border-radius: 6.25rem;
}
#hospital .info-wrap .info-list .time {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1.25rem;
}
#hospital .info-wrap .info-list .time li {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
}
#hospital .info-wrap .info-list .time li .tit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
  width: 14.5rem;
}
#hospital .info-wrap .info-list .time li .tit::before {
  content: " ";
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  background-color: #A3BAC8;
  border-radius: 6.25rem;
}
#hospital .info-wrap .info-list .time li .txt {
  color: #555;
  font-family: var(--en);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 168%;
  letter-spacing: -0.0375rem;
}
@media screen and (max-width: 1023px) {
  #hospital .info-wrap .info-list .time li .txt {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  #hospital .info-wrap .info-list .time li .txt {
    font-family: var(--en);
  }
}
#hospital .info-wrap .info-list .time li.notice .tit {
  width: 100%;
}
#hospital .info-wrap .info-list.parking {
  padding-top: 3.75rem;
}
@media screen and (max-width: 1023px) {
  #hospital .info-wrap {
    padding: 3.75rem 0 0 0;
  }
  #hospital .info-wrap > div {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  #hospital .info-wrap {
    padding: 3.75rem 1.25rem 0 1.25rem;
    flex-direction: column;
    gap: 3.75rem;
  }
  #hospital .info-wrap > div {
    width: 100%;
  }
  #hospital .info-wrap .tit {
    width: 10.5rem;
  }
}
@media screen and (max-width: 767px) {
  #hospital .map-wrap .map {
    border-radius: 1.5625rem;
  }
  #hospital .map-wrap .btn-map {
    padding: 1rem 3.6rem;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.5rem;
  }
}

html.popup-open {
  overflow: hidden;
}

body.popup-open {
  overflow: hidden;
}

.popup-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.popup-wrap.active {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.popup-wrap .shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.popup {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
  transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  transform-origin: center center;
  /* 섹션 */
  /* //섹션 */
  /* 틀니 > 관리방법 .list-row */
  /* 라미네이트 > QNA */
  /* 충치 단계별 증상 */
}
.popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}
.popup > .inr {
  max-width: 105rem;
  height: 92%;
  margin: 4% auto 0;
  background: #fff;
  padding: 4.5rem 0;
  box-sizing: border-box;
  border-radius: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
@media screen and (max-width: 767px) {
  .popup > .inr {
    height: 94%;
    margin: 10% auto;
    padding: 2rem 0;
  }
}
.popup .close {
  position: sticky;
  top: 1rem;
  left: auto;
  margin-left: auto;
  margin-right: 4rem;
  margin-top: -2.5rem;
  z-index: 100;
  width: 5.625rem;
  height: 5.625rem;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  cursor: pointer;
  background: #e0e0e0 url(/common/img/user/dental/icon_popup_close.svg) no-repeat center center;
  background-size: auto;
  border-radius: 100rem;
  transition: all 0.3s ease-in-out;
}
.popup .close:hover {
  background-color: #202020;
}
.popup .close.fixed {
  position: relative;
}
@media screen and (max-width: 767px) {
  .popup .close {
    width: 4rem;
    height: 4rem;
    background-size: 50%;
    margin-right: 2rem;
    margin-top: -1.5rem;
  }
}
.popup .popup-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4.38rem;
  align-self: stretch;
  padding: 0 6.875rem;
}
.popup .popup-header .title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.875rem;
  align-self: stretch;
  padding-left: 5rem;
}
.popup .popup-header .title-wrap .title {
  color: #202020;
  font-family: var(--chosun);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 168%;
}
.popup .popup-header .title-wrap .title b {
  color: #536F93;
  font-weight: inherit;
}
.popup .popup-header .title-wrap .desc {
  color: #555;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.04375rem;
}
.popup .popup-header .title-wrap .desc.small {
  font-size: 1.25rem;
}
.popup .popup-header .message {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.popup .popup-header .message .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  position: absolute;
  bottom: 5rem;
  left: 4rem;
  z-index: 1;
}
.popup .popup-header .message .text p {
  padding: 0.25rem 2.8125rem;
  border-radius: 6.25rem;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(14.1499996185px);
          backdrop-filter: blur(14.1499996185px);
  color: #202020;
  font-family: var(--chosun);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 168%;
}
.popup .popup-header .message .text p b {
  color: #536F93;
  font-weight: inherit;
}
.popup .popup-header .message .image {
  position: absolute;
  right: 2.875rem;
  bottom: 2.3125rem;
  width: 18.8125rem;
  height: 18.1875rem;
}
.popup .popup-header .message .image img {
  border-radius: 1.875rem;
}
.popup .popup-header .message .bg {
  border-radius: 3.75rem;
  overflow: hidden;
}
.popup .popup-header.active .title-wrap {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: red;
}
@media screen and (max-width: 1480px) {
  .popup .popup-header {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 767px) {
  .popup .popup-header {
    padding: 0 2rem;
    gap: 2.5rem;
  }
  .popup .popup-header .title-wrap {
    padding: 0 1rem;
  }
  .popup .popup-header .title-wrap .title {
    font-size: 2.2rem;
  }
  .popup .popup-header .title-wrap .desc {
    font-size: 1.4rem;
  }
  .popup .popup-header .message {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  .popup .popup-header .message .text {
    position: relative;
    bottom: inherit;
    left: inherit;
    padding: 0 1rem;
    gap: 1rem;
    display: none;
  }
  .popup .popup-header .message .text p {
    padding: 0;
    font-size: 1.6rem;
  }
  .popup .popup-header .message .image {
    display: none;
    width: 10.25rem;
    height: 10.25rem;
  }
  .popup .popup-header .message .bg {
    border-radius: 1.75rem;
  }
}
.popup .popup-contents {
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
  padding-top: 5rem;
}
.popup .popup-contents.cost {
  padding: 4rem 6.875rem 0;
}
.popup .popup-contents.cost table {
  border-collapse: collapse;
  border-top: 2px solid #004b8d;
  font-size: 1.6rem;
  color: #333;
  table-layout: fixed;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.popup .popup-contents.cost table caption {
  font-size: 0;
  height: 0;
  overflow: hidden;
  text-indent: -9999px;
}
.popup .popup-contents.cost table thead {
  position: sticky;
  top: -5rem;
  z-index: 10;
  background-color: #003366;
  border-bottom: 1px solid #002346;
}
.popup .popup-contents.cost table thead th {
  padding: 1.5rem 1rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.04375rem;
  border-bottom: 1px solid #002346;
}
.popup .popup-contents.cost table tbody tr td {
  padding: 1.3rem 1.5rem;
  text-align: center;
  word-break: keep-all;
  color: #555;
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.04375rem;
  border: 1px solid #e4edf3;
}
.popup .popup-contents.cost table tbody tr.even > td {
  background-color: #f5f6ff;
  border-color: #dedee5;
}
@media screen and (max-width: 767px) {
  .popup .popup-contents {
    padding-top: 3rem;
  }
  .popup .popup-contents.cost {
    padding: 4rem 1.25rem 0;
  }
  .popup .popup-contents.cost table thead {
    top: 0;
  }
}
.popup .header {
  display: flex;
  padding-top: 3.75rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.popup .header .title {
  color: #202020;
  font-family: var(--chosun);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 168%;
}
.popup .header .title::before {
  content: "·";
  display: inline-block;
  padding-right: 1rem;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.popup .header .title b {
  font-weight: inherit;
  color: #536F93;
}
.popup .header .desc {
  display: flex;
  padding-left: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #888;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 148%;
  letter-spacing: -0.03438rem;
}
.popup .contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .popup .header .title {
    font-size: 2rem;
    line-height: 1.45;
  }
  .popup .contents {
    width: 100%;
  }
}
.popup .list {
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 0 9.875rem;
  justify-content: space-between;
  align-items: flex-start;
  /* 치아교정 > 주의사항 .caution */
}
.popup .list .header {
  position: sticky;
  top: 0;
}
.popup .list .contents > ul {
  width: 100%;
}
.popup .list .contents > ul > li {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 2.5rem;
  border-bottom: 1px solid rgba(190, 204, 213, 0.3);
  color: #555;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.04375rem;
  transition: all 0.3s ease;
}
.popup .list .contents > ul > li:hover {
  background-color: #EFF8FE;
}
.popup .list .contents > ul > li::before {
  content: "·";
  display: inline-block;
  padding-right: 1.69rem;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.popup .list .contents > ul > li p {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.65;
}
.popup .list .contents > ul > li p b {
  font-weight: 500;
}
.popup .list.num .contents > ul {
  counter-reset: number;
}
.popup .list.num .contents > ul > li::before {
  display: flex;
  width: 3.3125rem;
  height: 3.3125rem;
  margin-right: 1.69rem;
  padding: 0.75rem 1.375rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  counter-increment: number;
  content: counter(number);
  border-radius: 1.65625rem;
  background: #BECCD5;
  color: #FFF;
  text-align: center;
  font-family: var(--en);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 100%;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .popup .list.num .contents > ul > li::before {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .popup .list.num .contents > ul > li::before {
    font-family: var(--en);
  }
}
.popup .list.num .contents > ul > li:hover::before {
  background: #536F93;
  color: #fff;
}
.popup .list.column {
  flex-direction: column;
  gap: 3rem;
  padding: 0 6.875rem;
}
.popup .list.column .header {
  position: relative;
}
.popup .list.column .contents {
  width: 100%;
}
.popup .list.caution .contents ul > li {
  flex-direction: column;
  align-items: flex-start;
}
.popup .list.caution .contents ul > li::before {
  display: none;
}
.popup .list.caution .contents ul > li p {
  display: flex;
  align-items: center;
}
.popup .list.caution .contents ul > li p::before {
  display: flex;
  width: 3.3125rem;
  height: 3.3125rem;
  margin-right: 1.69rem;
  padding: 0.75rem 1.375rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  counter-increment: number;
  content: counter(number);
  border-radius: 1.65625rem;
  background: #BECCD5;
  color: #FFF;
  text-align: center;
  font-family: var(--en);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 100%;
}
@media screen and (max-width: 1023px) {
  .popup .list.caution .contents ul > li p::before {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .popup .list.caution .contents ul > li p::before {
    font-family: var(--en);
  }
}
.popup .list.caution .contents ul > li ul {
  padding-top: 1rem;
  padding-left: 5rem;
}
.popup .list.caution .contents ul > li ul li {
  display: flex;
  flex-direction: row;
  gap: 0.62rem;
  color: #555;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.04375rem;
}
.popup .list.caution .contents ul > li ul li::before {
  content: "·";
  display: block;
  padding-right: 1.25rem;
}
@media screen and (max-width: 1480px) {
  .popup .list {
    padding: 0 4rem;
  }
  .popup .list.column {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 1023px) {
  .popup .list {
    padding: 0 2rem;
    gap: 1rem;
    flex-direction: column;
  }
  .popup .list .header {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .popup .list .contents > ul > li {
    padding: 2.1rem 0rem 2rem;
    font-size: 1.45rem;
    line-height: 1.45;
  }
  .popup .list .contents > ul > li:hover {
    background: none;
  }
  .popup .list .contents > ul > li p {
    line-height: 1.25;
  }
  .popup .list.num .contents > ul > li::before {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
    font-size: 1.45rem;
    padding: 1rem;
  }
  .popup .list.column {
    padding: 0 2rem;
    gap: 1rem;
  }
  .popup .list.caution .contents ul > li p::before {
    width: 2.6rem;
    height: 2.6rem;
    margin-right: 1rem;
  }
  .popup .list.caution .contents ul > li ul {
    padding-left: 2rem;
  }
  .popup .list.caution .contents ul > li ul li {
    font-size: 1.45rem;
  }
  .popup .list.caution .contents ul > li ul li::before {
    padding-right: 1rem;
  }
}
.popup .list-horizon {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  padding-top: 2.25rem;
  overflow: hidden;
}
.popup .list-horizon .header {
  padding: 0 9.875rem;
}
.popup .list-horizon .caseSwiperSubjectWrap {
  padding: 0 9.875rem;
  align-items: center;
}
.popup .list-horizon .swiper {
  width: 100%;
  padding-right: 4.875rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  cursor: grab;
}
.popup .list-horizon .swiper .swiper-wrapper {
  padding-left: 5rem;
}
.popup .list-horizon .swiper-slide {
  width: auto;
  border-right: 1px solid rgba(190, 204, 213, 0.3);
}
.popup .list-horizon .swiper-slide:last-child {
  border-right: 0;
}
.popup .list-horizon .swiper-slide .inr {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 5rem;
}
.popup .list-horizon .swiper-slide img {
  height: 17rem;
  align-self: stretch;
  border-radius: 1.875rem;
}
.popup .list-horizon .swiper-slide .title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  align-self: stretch;
}
.popup .list-horizon .swiper-slide .title-wrap .num {
  display: flex;
  width: 3.3125rem;
  height: 3.3125rem;
  padding: 0.75rem 1.375rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 1.65625rem;
  background: #BECCD5;
  color: #FFF;
  text-align: center;
  font-family: var(--en);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 100%;
}
@media screen and (max-width: 1023px) {
  .popup .list-horizon .swiper-slide .title-wrap .num {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .popup .list-horizon .swiper-slide .title-wrap .num {
    font-family: var(--en);
  }
}
.popup .list-horizon .swiper-slide .title-wrap .title {
  color: #202020;
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  line-height: 148%;
  letter-spacing: -0.05rem;
}
.popup .list-horizon .swiper-slide .desc {
  height: 6rem;
  color: #555;
  text-align: center;
  font-size: 1.65rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.04375rem;
}
.popup .list-horizon .swiper-slide .desc b {
  font-weight: 500;
  color: #BD936E;
}
.popup .list-horizon .pagination {
  display: flex;
  justify-content: center;
  gap: 0.4375rem;
  padding-top: 3.75rem;
}
.popup .list-horizon .pagination .swiper-pagination-bullet {
  background-color: #E3E3E3;
}
.popup .list-horizon .pagination .swiper-pagination-bullet-active {
  background-color: #536F93;
}
.popup .list-horizon.case .swiper {
  border: 0;
}
.popup .list-horizon.case .swiper .swiper-wrapper {
  justify-content: center;
  padding-left: 0;
}
.popup .list-horizon.case .swiper-slide {
  border: 0;
}
.popup .list-horizon.case .swiper-slide .inr {
  gap: 0;
  padding: 0;
}
.popup .list-horizon.case .swiper-slide img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
}
.popup .list-horizon.brand .swiper {
  border: 0;
}
.popup .list-horizon.brand .swiper .swiper-wrapper {
  justify-content: flex-start;
}
.popup .list-horizon.brand .swiper-slide {
  width: 24.375rem;
  border-radius: 1rem;
  border: 1px solid #EBEBEB;
}
.popup .list-horizon.brand .swiper-slide .inr {
  display: flex;
  padding: 2.5rem 1.875rem;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .popup .list-horizon.brand .swiper-slide .inr {
    padding: 2.5rem 1rem;
  }
}
.popup .list-horizon.brand .swiper-slide img {
  width: auto;
  max-height: 6.9375rem;
  height: initial;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .popup .list-horizon.brand .swiper-slide img {
    height: 5rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.popup .list-horizon.brand .swiper-slide .name {
  display: flex;
  flex-direction: column;
  color: #555;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.25;
}
.popup .list-horizon.brand .swiper-slide .name span {
  display: block;
  text-align: center;
}
.popup .list-horizon.brand .swiper-slide .name span.en {
  font-family: var(--en);
  color: #AFAFAF;
  font-weight: 400;
  line-height: 168%;
}
@media screen and (max-width: 1023px) {
  .popup .list-horizon.brand .swiper-slide .name span.en {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .popup .list-horizon.brand .swiper-slide .name span.en {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .popup .list-horizon.brand .swiper-slide .name span.en {
    font-size: 1rem;
  }
}
.popup .list-horizon.equip .swiper {
  border: 0;
}
.popup .list-horizon.equip .swiper-slide {
  width: 26.25rem;
  border: 0;
}
.popup .list-horizon.equip .swiper-slide .inr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0;
}
.popup .list-horizon.equip .swiper-slide img {
  width: auto;
  height: initial;
  max-height: 25rem;
  border-radius: 1.5rem;
}
.popup .list-horizon.brace .contents {
  width: 100%;
  align-items: initial;
}
@media screen and (max-width: 767px) {
  .popup .list-horizon.brace .contents {
    padding: 0 1rem;
  }
}
.popup .list-horizon.brace .braceSwiper {
  overflow: visible;
  padding: 0;
  border: 0;
}
.popup .list-horizon.brace .braceSwiper .swiper-wrapper {
  justify-content: initial;
  padding-left: initial;
}
.popup .list-horizon.brace .braceSwiper .swiper-slide {
  width: 46.25rem;
  flex-shrink: 0;
  text-align: center;
  opacity: 0.4;
  transform: scale(1);
  transition: all 0.4s ease;
  border: 0;
}
.popup .list-horizon.brace .braceSwiper .swiper-slide .inr {
  padding: 0;
}
.popup .list-horizon.brace .braceSwiper .swiper-slide img {
  height: initial;
  border-radius: 0;
}
.popup .list-horizon.brace .braceSwiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
@media screen and (max-width: 767px) {
  .popup .list-horizon.brace .braceSwiper .swiper-slide {
    width: 100%;
  }
}
@media screen and (max-width: 1480px) {
  .popup .list-horizon .header {
    padding: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .popup .list-horizon .header {
    padding: 0 2rem;
  }
  .popup .list-horizon .swiper-slide .inr {
    gap: 1.6rem;
    padding: 2rem 1.6rem;
  }
  .popup .list-horizon .swiper-slide .title-wrap {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .popup .list-horizon .swiper-slide .desc {
    text-align: left;
  }
  .popup .list-horizon .swiper {
    padding-right: 2rem;
  }
  .popup .list-horizon .swiper .swiper-wrapper {
    padding-left: 2rem;
  }
  .popup .list-horizon .swiper .swiper-slide .title-wrap .title {
    font-size: 1.8rem;
  }
  .popup .list-horizon .swiper .swiper-slide .desc {
    height: 8rem;
    font-size: 1.45rem;
  }
}
.popup .list-process {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  padding-top: 2.25rem;
}
.popup .list-process .header {
  padding: 0 9.875rem;
}
.popup .list-process .swiper {
  width: 100%;
  padding-right: 9.875rem;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  cursor: grab;
}
.popup .list-process .swiper .swiper-wrapper {
  padding-left: 5rem;
}
.popup .list-process .swiper-slide {
  width: auto;
  min-height: 32rem;
  border-right: 1px solid rgba(190, 204, 213, 0.3);
}
.popup .list-process .swiper-slide:last-child {
  border-right: 0;
}
.popup .list-process .swiper-slide .inr {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 5rem 4.5rem;
}
.popup .list-process .swiper-slide .title-wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.25rem;
  min-height: 5.875rem;
}
.popup .list-process .swiper-slide .title-wrap .step {
  display: flex;
  flex-shrink: 0;
  padding: 0.75rem 1.1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 1rem;
  background: #BECCD5;
  color: #FFF;
  text-align: center;
  font-family: var(--en);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 100%;
}
@media screen and (max-width: 1023px) {
  .popup .list-process .swiper-slide .title-wrap .step {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .popup .list-process .swiper-slide .title-wrap .step {
    font-family: var(--en);
  }
}
.popup .list-process .swiper-slide .title-wrap .step.point {
  background: #BD936E;
}
@media screen and (max-width: 767px) {
  .popup .list-process .swiper-slide .title-wrap .step {
    font-size: 1.4rem;
  }
}
.popup .list-process .swiper-slide .title-wrap .title {
  color: #202020;
  font-size: 2rem;
  font-weight: 400;
  line-height: 148%;
  letter-spacing: -0.05rem;
}
.popup .list-process .swiper-slide .title-wrap .title b {
  font-weight: 500;
  color: #BD936E;
}
@media screen and (max-width: 767px) {
  .popup .list-process .swiper-slide .title-wrap .title {
    font-size: 1.6rem;
  }
}
.popup .list-process .swiper-slide .desc-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;
}
.popup .list-process .swiper-slide .desc-list li {
  position: relative;
  color: #555;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.04375rem;
  padding-left: 2.5rem;
}
.popup .list-process .swiper-slide .desc-list li b {
  font-weight: 400;
  color: #BD936E;
}
.popup .list-process .swiper-slide .desc-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .popup .list-process .swiper-slide .desc-list li {
    padding-left: 1.1rem;
    font-size: 1.45rem;
  }
}
@media screen and (max-width: 767px) {
  .popup .list-process .swiper-slide {
    min-height: 24rem;
  }
}
.popup .list-process .pagination {
  display: flex;
  justify-content: center;
  gap: 0.4375rem;
  padding-top: 3.75rem;
}
.popup .list-process .pagination .swiper-pagination-bullet {
  background-color: #E3E3E3;
}
.popup .list-process .pagination .swiper-pagination-bullet-active {
  background-color: #536F93;
}
@media screen and (max-width: 1480px) {
  .popup .list-process .header {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 767px) {
  .popup .list-process .swiper {
    padding-right: 2rem;
  }
  .popup .list-process .swiper .swiper-wrapper {
    padding-left: 2rem;
  }
  .popup .list-process .swiper-slide .inr {
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
  }
  .popup .list-process .swiper-slide .title-wrap {
    flex-direction: column;
  }
  .popup .list-process .swiper-slide .title-wrap .title br {
    display: none;
  }
  .popup .list-process .pagination {
    padding: 0;
  }
}
.popup .list-column-image {
  display: flex;
  flex-direction: column;
  gap: 5.625rem;
  padding: 0 6.875rem;
}
.popup .list-column-image .contents > ul {
  display: flex;
  flex-direction: column;
  gap: 5.62rem;
}
.popup .list-column-image .contents > ul li {
  display: flex;
  flex-direction: row;
  gap: 5rem;
}
.popup .list-column-image .contents > ul li .image {
  position: relative;
  width: 28.75rem;
  height: auto;
}
.popup .list-column-image .contents > ul li .image .label {
  position: absolute;
  left: 1.125rem;
  top: 1.5rem;
  display: flex;
  height: 2.5rem;
  padding: 0.25rem 1.5625rem;
  justify-content: center;
  align-items: center;
  border-radius: 6.25rem;
  background: rgba(255, 255, 255, 0.33);
  -webkit-backdrop-filter: blur(14.1499996185px);
          backdrop-filter: blur(14.1499996185px);
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 168%;
  letter-spacing: -0.0375rem;
}
.popup .list-column-image .contents > ul li .image img {
  width: 100%;
  border-radius: 1.5rem;
}
.popup .list-column-image .contents > ul li .text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3.125rem;
  flex: 1 0 0;
}
.popup .list-column-image .contents > ul li .text-wrap .title {
  color: #202020;
  font-size: 2rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.05rem;
}
.popup .list-column-image .contents > ul li .text-wrap .title b {
  font-weight: 500;
}
.popup .list-column-image .contents > ul li .text-wrap .desc {
  color: #555;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.04375rem;
}
.popup .list-column-image .contents > ul li .text-wrap .desc b {
  color: #BD936E;
}
@media screen and (max-width: 1480px) {
  .popup .list-column-image {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 1023px) {
  .popup .list-column-image {
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .popup .list-column-image {
    padding: 0 2rem;
    gap: 2rem;
  }
  .popup .list-column-image .contents > ul li {
    flex-direction: column;
    gap: 2rem;
  }
  .popup .list-column-image .contents > ul li .text-wrap {
    gap: 1.6rem;
  }
  .popup .list-column-image .contents > ul li .text-wrap .title {
    font-size: 1.85rem;
  }
  .popup .list-column-image .contents > ul li .text-wrap .title br {
    display: none;
  }
  .popup .list-column-image .contents > ul li .text-wrap .desc {
    padding-left: 0;
    font-size: 1.45rem;
  }
  .popup .list-column-image .contents > ul li .image {
    width: 100%;
    margin: 0 auto;
  }
}
.popup .closing {
  padding: 0 6.875rem;
}
.popup .closing .inr {
  display: flex;
  height: 36.25rem;
  padding: 0 3.75rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5.625rem;
  border-radius: 3.75rem;
  gap: 2.25rem;
  background: url(/common/img/user/dental/bg_popup_closing.jpg) no-repeat center center;
  background-size: cover;
}
.popup .closing .header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
  align-items: center;
  padding-top: 0;
}
.popup .closing .header .title {
  color: #FFF;
  font-family: var(--chosun);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 168%;
}
.popup .closing .header .title b {
  position: relative;
  color: inherit;
  font-weight: inherit;
}
.popup .closing .header .title b::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.popup .closing .header .title::before {
  display: none;
}
.popup .closing .header .desc {
  padding-left: 0;
  color: #FFF;
  font-size: 1.875rem;
  font-weight: 200;
  line-height: 148%;
}
.popup .closing .contents {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.25rem;
  padding-top: 2rem;
}
.popup .closing .contents .btn {
  position: relative;
  display: flex;
  width: 18.75rem;
  height: 5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 0.375rem;
  background: #202020;
  color: #FFF;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 148%;
  letter-spacing: -0.04375rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3 ease;
}
.popup .closing .contents .btn span {
  position: relative;
  z-index: 1;
}
.popup .closing .contents .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #444 0%, #000 100%);
  opacity: 0;
  z-index: 0;
  transition: opacity 0.3s ease;
}
.popup .closing .contents .btn:hover::before {
  opacity: 1;
}
.popup .closing .contents .btn:active::before {
  background: linear-gradient(180deg, #000 0%, #444 100%);
}
.popup .closing .contents .btn.pri {
  background: #536F93;
}
.popup .closing .contents .btn.pri::before {
  background: linear-gradient(180deg, #5E7EA6 0%, #455E7D 100%);
}
.popup .closing .contents .btn.pri:active::before {
  background: linear-gradient(180deg, #455E7D 0%, #5E7EA6 100%);
}
@media screen and (max-width: 1480px) {
  .popup .closing {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 767px) {
  .popup .closing {
    padding: 0;
  }
  .popup .closing .inr {
    padding: 0 1.25rem;
    border-radius: 0;
  }
  .popup .closing .header .title {
    font-size: 1.8rem;
  }
  .popup .closing .header .desc {
    font-size: 1.45rem;
  }
}
.popup .hospital-info {
  padding: 0 6.875rem;
}
.popup .hospital-info .box {
  display: flex;
  width: 100%;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.875rem;
  justify-content: space-evenly;
}
.popup .hospital-info .box li {
  display: flex;
  width: calc(33% - 0.9375rem);
  height: 28.75rem;
  padding: 0 3.125rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
  flex-shrink: 0;
  border-radius: 2.5rem;
  background: #FAFAFA;
}
.popup .hospital-info .box li .images {
  width: 6.1875rem;
  height: 8.125rem;
  flex-shrink: 0;
  aspect-ratio: 99/130;
}
.popup .hospital-info .box li .text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.popup .hospital-info .box li .text-wrap .label {
  color: #7F919C;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 128%;
  letter-spacing: -0.0375rem;
}
.popup .hospital-info .box li .text-wrap .tit {
  color: #202020;
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  line-height: 168%;
  letter-spacing: -0.05rem;
}
.popup .hospital-info .box li .text-wrap .desc {
  display: flex;
  align-items: center;
  color: #555;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 168%;
  letter-spacing: -0.0375rem;
}
.popup .hospital-info .box li .text-wrap .icon-arrow {
  width: 0.8125rem;
  height: 0.8125rem;
  margin: 0 0.5rem;
  background: url(/common/img/user/dental/icon_hospital_info_arrow.svg) no-repeat center center;
  background-size: contain;
}
.popup .hospital-info .box.second {
  height: auto;
  flex-wrap: wrap;
  justify-content: center;
}
.popup .hospital-info .box.second li {
  width: calc(50% - 0.9375rem);
}
@media screen and (max-width: 1480px) {
  .popup .hospital-info {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 767px) {
  .popup .hospital-info {
    padding: 0 2rem;
  }
  .popup .hospital-info .box {
    gap: 1rem;
    flex-direction: column;
  }
  .popup .hospital-info .box.second li {
    width: 100%;
  }
  .popup .hospital-info .box li {
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    height: 11rem;
    gap: 1.25rem;
    padding: 0 1.2rem;
    border-radius: 1.25rem;
  }
  .popup .hospital-info .box li .image {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .popup .hospital-info .box li .image img {
    width: auto;
    height: auto;
    padding: 1.5rem;
  }
  .popup .hospital-info .box li .text-wrap {
    width: 70%;
    height: 100%;
    justify-content: center;
    gap: 0.5rem;
  }
  .popup .hospital-info .box li .text-wrap .label {
    width: 100%;
    text-align: left;
  }
  .popup .hospital-info .box li .text-wrap .tit {
    line-height: 1.25;
    font-size: 1.65rem;
    text-align: left;
    width: 100%;
  }
  .popup .hospital-info .box li .text-wrap .desc {
    display: none;
  }
}
@media screen and (max-width: 360px) {
  .popup .hospital-info .box.second {
    flex-direction: column;
  }
  .popup .hospital-info .box.second li {
    width: 100%;
    height: 20rem;
  }
}
.popup .list-row {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  padding: 0 6.875rem;
}
.popup .list-row.num .contents ul {
  counter-reset: number;
}
.popup .list-row.num .contents ul li .title::before {
  width: 3.3125rem;
  height: 3.3125rem;
  margin-right: 1.69rem;
  padding: 0.75rem 1.375rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  counter-increment: number;
  content: counter(number);
  border-radius: 1.65625rem;
  background: #BECCD5;
  color: #FFF;
  text-align: center;
  font-family: var(--en);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 100%;
}
@media screen and (max-width: 1023px) {
  .popup .list-row.num .contents ul li .title::before {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .popup .list-row.num .contents ul li .title::before {
    font-family: var(--en);
  }
}
.popup .list-row.num .contents ul li .desc {
  padding-left: 4.9rem;
}
@media screen and (max-width: 1023px) {
  .popup .list-row.num .contents ul li .desc {
    padding-left: 0;
  }
}
.popup .list-row .contents {
  border-top: 1px solid #000;
}
.popup .list-row .contents ul {
  display: flex;
  flex-wrap: wrap;
}
.popup .list-row .contents ul li {
  padding: 3.75rem 2.5rem;
  align-items: flex-start;
  gap: 1.6875rem;
  flex-shrink: 0;
  flex: 1 1 50%;
  box-sizing: border-box;
  border-right: 1px solid rgba(190, 204, 213, 0.3);
  border-bottom: 1px solid rgba(190, 204, 213, 0.3);
}
.popup .list-row .contents ul li:nth-child(2n) {
  border-right: 0;
}
.popup .list-row .contents ul li .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #202020;
  font-size: 2rem;
  font-weight: 500;
  line-height: 168%;
  letter-spacing: -0.05rem;
}
.popup .list-row .contents ul li .title::before {
  display: block;
  content: "·";
  padding-right: 1.25rem;
}
.popup .list-row .contents ul li .desc {
  padding-left: 1.7rem;
  color: #555;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.04375rem;
}
@media screen and (max-width: 1023px) {
  .popup .list-row {
    padding: 0 3rem;
  }
  .popup .list-row .contents ul li .title {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .popup .list-row {
    padding: 0 2rem;
  }
  .popup .list-row.num .contents ul li {
    border-right: 0;
  }
  .popup .list-row.num .contents ul li .title {
    font-size: 1.85rem;
  }
  .popup .list-row.num .contents ul li .title::before {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.45rem;
    padding: 1rem;
  }
  .popup .list-row.num .contents ul li .desc {
    font-size: 1.45rem;
  }
}
.popup .list-type {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  padding: 0 6.875rem;
}
.popup .list-type .contents > ul {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-top: 1px solid rgba(190, 204, 213, 0.6);
}
.popup .list-type .contents > ul > li {
  display: flex;
  align-items: center;
  padding: 5rem;
  gap: 5rem;
  border-bottom: 1px solid rgba(190, 204, 213, 0.6);
}
.popup .list-type .contents > ul > li .image {
  width: 40%;
}
.popup .list-type .contents > ul > li .image img {
  width: 31.25rem;
  height: 21.25rem;
  flex-shrink: 0;
  border-radius: 1.875rem;
}
.popup .list-type .contents > ul > li .text-wrap {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  flex: 1 0 0;
}
.popup .list-type .contents > ul > li .text-wrap .title {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.25rem;
}
.popup .list-type .contents > ul > li .text-wrap .title .num {
  display: flex;
  width: 3.3125rem;
  height: 3.3125rem;
  padding: 0.75rem 1.375rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  border-radius: 1.65625rem;
  background: #BECCD5;
  color: #FFF;
  text-align: center;
  font-family: var(--en);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 100%;
}
@media screen and (max-width: 1023px) {
  .popup .list-type .contents > ul > li .text-wrap .title .num {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .popup .list-type .contents > ul > li .text-wrap .title .num {
    font-family: var(--en);
  }
}
.popup .list-type .contents > ul > li .text-wrap .title .text {
  color: #202020;
  font-size: 2rem;
  font-weight: 400;
  line-height: 148%;
  letter-spacing: -0.05rem;
}
.popup .list-type .contents > ul > li .text-wrap .title .text b {
  color: #536F93;
  font-weight: inherit;
}
.popup .list-type .contents > ul > li .text-wrap .desc {
  color: #555;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.04375rem;
}
@media screen and (max-width: 1023px) {
  .popup .list-type {
    padding: 0 4rem;
  }
  .popup .list-type .contents > ul > li {
    padding: 3rem;
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .popup .list-type {
    padding: 0 2rem;
  }
  .popup .list-type .contents > ul {
    border-top: 0;
  }
  .popup .list-type .contents > ul > li {
    flex-direction: column;
    padding: 1rem 1rem 4rem;
    gap: 3rem;
    border-bottom: 0;
  }
  .popup .list-type .contents > ul > li:last-child {
    padding-bottom: 0;
  }
  .popup .list-type .contents > ul > li .image {
    width: 100%;
  }
  .popup .list-type .contents > ul > li .text-wrap {
    width: 100%;
  }
  .popup .list-type .contents > ul > li .text-wrap .title .num {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.45rem;
    padding: 1rem;
  }
  .popup .list-type .contents > ul > li .text-wrap .title .text {
    font-size: 1.85rem;
  }
  .popup .list-type .contents > ul > li .text-wrap .desc {
    font-size: 1.45rem;
  }
}
.popup .check-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.popup .check-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: #536F93;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.04375rem;
}
.popup .check-list li::before {
  content: "";
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  background: url(/common/img/user/dental/icon_list_check.svg) no-repeat center center;
}
@media screen and (max-width: 767px) {
  .popup .check-list li {
    align-items: flex-start;
    font-size: 1.45rem;
    line-height: 1.45;
  }
  .popup .check-list li::before {
    margin-top: 0.4rem;
  }
}
.popup .qna {
  gap: 3.75rem;
  padding: 0 6.875rem;
}
.popup .qna .contents {
  padding-top: 2rem;
}
.popup .qna .accordion {
  width: 100%;
  border-top: 1px solid rgba(190, 204, 213, 0.3);
}
.popup .qna .accordion li {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  flex-direction: column;
  padding-bottom: 0;
  border-bottom: 1px solid rgba(190, 204, 213, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}
.popup .qna .accordion li:hover {
  background-color: #EFF8FE;
}
.popup .qna .accordion li .question {
  display: flex;
  align-items: flex-end;
  align-self: stretch;
  padding: 2.5rem;
  transition: all 0.3s ease;
}
.popup .qna .accordion li .question .tit {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1.69rem;
  color: #555;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.04375rem;
}
.popup .qna .accordion li .question .tit::before {
  content: "Q";
  display: flex;
  width: 3.3125rem;
  height: 3.3125rem;
  padding: 0.75rem 1.375rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  color: #FFF;
  text-align: center;
  font-family: var(--en);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 100%;
  border-radius: 1.65625rem;
  background: #BECCD5;
}
@media screen and (max-width: 1023px) {
  .popup .qna .accordion li .question .tit::before {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .popup .qna .accordion li .question .tit::before {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .popup .qna .accordion li .question .tit {
    font-size: 1.6rem;
    line-height: 1.25;
    gap: 0;
  }
  .popup .qna .accordion li .question .tit::before {
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1rem;
    font-size: 1.45rem;
    padding: 1rem;
  }
}
.popup .qna .accordion li .content {
  display: flex;
  padding: 0 2.5rem 0 7.5rem;
  width: 100%;
  align-items: flex-start;
  opacity: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
}
.popup .qna .accordion li .content p {
  color: #555;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.04375rem;
}
@media screen and (max-width: 767px) {
  .popup .qna .accordion li .content {
    padding: 0 1rem;
  }
  .popup .qna .accordion li .content p {
    font-size: 1.45rem;
  }
}
.popup .qna .accordion li.open {
  padding-bottom: 2.5rem;
  background-color: #EFF8FE;
}
.popup .qna .accordion li.open .question .tit {
  color: #536F93;
  font-weight: 500;
}
.popup .qna .accordion li.open .question .tit::before {
  background: #536F93;
}
.popup .qna .accordion li.open .content {
  max-height: 15rem;
  opacity: 1;
}
@media screen and (max-width: 1480px) {
  .popup .qna {
    padding: 0 4rem;
  }
}
@media screen and (max-width: 767px) {
  .popup .qna {
    padding: 0 2rem;
  }
  .popup .qna .accordion li .question {
    padding: 2.5rem 1rem 1.5rem;
  }
}
.popup .explan {
  display: flex;
  width: 100%;
  padding: 3.125rem 0;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}
.popup .explan li {
  width: 100%;
}
.popup .explan li:last-child .arrow {
  display: none;
}
.popup .explan .text-wrap .tit-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
}
.popup .explan .text-wrap .label {
  display: flex;
  height: 3.3125rem;
  padding: 0.75rem 1.375rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 1rem;
  background: #A3BAC8;
  color: #FFF;
  font-family: var(--en);
  text-align: center;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 100%;
}
@media screen and (max-width: 1023px) {
  .popup .explan .text-wrap .label {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .popup .explan .text-wrap .label {
    font-family: var(--en);
  }
}
.popup .explan .text-wrap .tit {
  color: #202020;
  font-size: 2rem;
  font-weight: 500;
  line-height: 148%;
  letter-spacing: -0.05rem;
}
.popup .explan .text-wrap > ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}
.popup .explan .text-wrap > ul > li {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  gap: 1.5rem;
  color: #555;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.04375rem;
}
.popup .explan .text-wrap > ul > li::before {
  content: "·";
}
.popup .explan .text-wrap > ul > li.methods {
  display: block;
}
.popup .explan .text-wrap > ul > li.methods::before {
  display: inline-block;
}
.popup .explan .text-wrap > ul > li.methods p {
  color: #536F93;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.04375rem;
}
.popup .explan .text-wrap > ul > li.methods .tit {
  display: inline-block;
  padding-left: 1.1rem;
}
.popup .explan .text-wrap > ul > li.methods .desc {
  display: block;
  width: 100%;
  padding-left: 1.8rem;
  color: #536F93;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.04375rem;
}
.popup .explan .arrow {
  display: block;
  width: 1.75rem;
  height: 0.9375rem;
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  background: url(/common/img/user/dental/icon_cavities_arrow.svg) no-repeat center center;
}
@media screen and (max-width: 1023px) {
  .popup .explan .text-wrap {
    gap: 2rem;
  }
  .popup .explan .text-wrap .tit-wrap {
    gap: 1rem;
  }
  .popup .explan .text-wrap .tit-wrap .label {
    padding: 0.3rem 1rem;
    font-size: 1.45rem;
    flex-shrink: 0;
  }
  .popup .explan .text-wrap .tit-wrap .tit {
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .popup .explan .text-wrap > ul > li {
    font-size: 1.4rem;
  }
  .popup .explan .text-wrap > ul > li.methods p {
    font-size: 1.4rem;
  }
  .popup .explan .text-wrap > ul > li.methods .desc {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .popup .explan {
    padding: 0;
  }
  .popup .explan .arrow {
    bottom: -8%;
  }
}

/*community*/
.community {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  max-width: 500px;
  margin: 0 auto;
  /*inputbox*/
  /*서브타이틀*/
  /*체크박스 공통*/
  /*버튼 공통*/
}
@media screen and (max-width: 1023px) {
  .community {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .community {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 500px) {
  .community {
    width: 90%;
  }
}
.community div {
  width: 100%;
  margin-bottom: 2.1875rem;
  margin-top: 2.1875rem;
}
.community div ul {
  width: 100%;
  margin-bottom: 1.25rem;
}
.community div ul li {
  width: 100%;
}
.community div:last-child {
  margin-bottom: 0 !important;
}
.community .title {
  font-family: var(--ko);
  font-size: 72px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -1.44px;
  font-family: var(--en);
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .community .title {
    font-family: var(--ko);
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -1.2px;
  }
}
@media screen and (max-width: 767px) {
  .community .title {
    font-family: var(--ko);
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -1.2px;
  }
}
@media screen and (max-width: 1023px) {
  .community .title {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .community .title {
    font-family: var(--en);
  }
}
.community .title-mini {
  text-align: center;
  font-family: var(--ko);
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .community .title-mini {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .community .title-mini {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.community input {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  padding: 1em;
  border: 0;
  background-color: var(--gray1);
}
@media screen and (max-width: 1023px) {
  .community input {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .community input {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.community .step-tit {
  font-family: var(--ko);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.88px;
  width: 100%;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--black-a15);
}
@media screen and (max-width: 1023px) {
  .community .step-tit {
    font-family: var(--ko);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
  }
}
@media screen and (max-width: 767px) {
  .community .step-tit {
    font-family: var(--ko);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
  }
}
.community .step-tit span {
  font-family: var(--ko);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.88px;
  font-family: var(--en);
  margin-right: 0.625rem;
}
@media screen and (max-width: 1023px) {
  .community .step-tit span {
    font-family: var(--ko);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
  }
}
@media screen and (max-width: 767px) {
  .community .step-tit span {
    font-family: var(--ko);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
  }
}
@media screen and (max-width: 1023px) {
  .community .step-tit span {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .community .step-tit span {
    font-family: var(--en);
  }
}
.community label {
  cursor: pointer;
}
.community label input[type=checkbox] {
  position: absolute;
  left: -9999px;
}
.community label input[type=checkbox]:checked + span {
  color: var(--pri1);
}
.community .btn {
  display: block;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  text-align: center;
  width: 100%;
  cursor: pointer;
  border: 1px solid var(--black-a15);
}
.community .btn:hover {
  background: var(--pri1);
  border-color: var(--pri1);
  color: #fff;
  transition: all 0.3s ease;
}

#join .step01 ul li:nth-child(1) {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: -0.6px;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 1023px) {
  #join .step01 ul li:nth-child(1) {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #join .step01 ul li:nth-child(1) {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.56px;
  }
}
#join .step01 ul li:nth-child(2) {
  width: 100%;
  height: 150px;
  border: 1px solid var(--black-a15);
  overflow: visible;
}
#join .step01 ul li:nth-child(2) textarea {
  width: 100%;
  font-family: var(--ko);
  border: 0;
  height: 100%;
}
#join .step01 ul li:nth-child(3) label span {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #join .step01 ul li:nth-child(3) label span {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #join .step01 ul li:nth-child(3) label span {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#join .step02 ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: none;
  justify-content: flex-start;
  align-items: baseline;
  gap: 10%;
}
#join .step02 ul li:nth-child(1):after {
  content: "*";
  color: var(--pri1);
  margin-bottom: 5px;
}
#join .step02 ul li:nth-child(1) {
  flex-basis: 20%;
  flex-grow: 1;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #join .step02 ul li:nth-child(1) {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #join .step02 ul li:nth-child(1) {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#join .step02 ul li:nth-child(2) {
  flex-basis: 70%;
  display: flex;
  flex-direction: colum;
  flex-wrap: wrap;
  align-content: none;
  justify-content: flex-start;
  align-items: center;
  gap: 5%;
}
#join .step02 ul li:nth-child(2) input {
  flex-basis: 75%;
}
#join .step02 ul li:nth-child(2) .btn {
  flex-basis: 20%;
  height: 100%;
  margin-bottom: 0 !important;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #join .step02 ul li:nth-child(2) .btn {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #join .step02 ul li:nth-child(2) .btn {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#join .step02 ul li:nth-child(2) label span {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #join .step02 ul li:nth-child(2) label span {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #join .step02 ul li:nth-child(2) label span {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#join .step02 ul li:nth-child(2) .email-notice {
  font-family: var(--ko);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.48px;
  color: red;
  padding-top: 10px;
}
@media screen and (max-width: 1023px) {
  #join .step02 ul li:nth-child(2) .email-notice {
    font-family: var(--ko);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
}
@media screen and (max-width: 767px) {
  #join .step02 ul li:nth-child(2) .email-notice {
    font-family: var(--ko);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
}
@media screen and (max-width: 500px) {
  #join .step02 ul {
    gap: 0.25rem;
  }
  #join .step02 ul li:nth-child(1) {
    flex-basis: 100%;
    flex-grow: 1;
  }
  #join .step02 ul li:nth-child(2) {
    flex-basis: 100%;
  }
  #join .step02 ul li:nth-child(2) .email-notice {
    order: 1;
    padding-top: 0;
    padding-bottom: 5px;
  }
  #join .step02 ul li:nth-child(2) input {
    flex-basis: 100%;
    order: 2;
  }
  #join .step02 ul li:nth-child(2) .btn {
    flex-basis: 100%;
    order: 3;
  }
  #join .step02 ul li:nth-child(2) label {
    order: 4;
  }
}

#login form {
  width: 100%;
}
#login form input {
  width: 100%;
  margin-bottom: 1.25rem;
}
#login form .login-info {
  display: flex;
  justify-content: space-between;
}
#login form .login-info a {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #login form .login-info a {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #login form .login-info a {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#login .sns-login {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: none;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
#login .sns-login p {
  flex-basis: 100%;
  text-align: center;
  color: var(--black-a50);
}
#login .sns-login a {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
}
#login .sns-login a svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#login .sns-login .naver {
  background-color: var(--naver);
}
#login .sns-login .kakao {
  background-color: var(--kakao);
}

#modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.modal-con {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  display: none;
  position: fixed;
  background-color: white;
  z-index: 110;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1023px) {
  .modal-con {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .modal-con {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 1023px) {
  .modal-con {
    width: 80%;
  }
}
.modal-con .close {
  width: 30px;
  height: 30px;
  top: 20px;
  right: 20px;
  position: absolute;
  z-index: 2;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .modal-con .close {
    top: -40px;
    right: 20px;
  }
}
.modal-con .close:before,
.modal-con .close:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0%;
  width: 100%;
  height: 2px;
  background: var(--white);
  margin: auto;
}
.modal-con .close:before {
  transform: rotate(45deg);
}
.modal-con .close:after {
  transform: rotate(-45deg);
}
.modal-con .popcont {
  padding: 40px;
  text-align: center;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .modal-con .popcont {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .modal-con .popcont {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.modal-con .popcont p:nth-child(1) {
  font-family: var(--ko);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.88px;
}
@media screen and (max-width: 1023px) {
  .modal-con .popcont p:nth-child(1) {
    font-family: var(--ko);
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.72px;
  }
}
@media screen and (max-width: 767px) {
  .modal-con .popcont p:nth-child(1) {
    font-family: var(--ko);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.72px;
  }
}
.modal-con .popcont input {
  background-color: var(--gray1);
  width: 80%;
  margin: 0 auto;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  margin-top: 1.25rem;
  border: 0;
  text-align: center;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .modal-con .popcont input {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .modal-con .popcont input {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.modal-con .popcont p:nth-child(3) {
  font-family: var(--ko);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.48px;
}
@media screen and (max-width: 1023px) {
  .modal-con .popcont p:nth-child(3) {
    font-family: var(--ko);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
}
@media screen and (max-width: 767px) {
  .modal-con .popcont p:nth-child(3) {
    font-family: var(--ko);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
}
.modal-con .popcont p:nth-child(3) i {
  color: var(--gray6);
}
@media screen and (max-width: 767px) {
  .modal-con .popcont {
    padding: 10px;
  }
}
.modal-con .button-wrap {
  width: 100%;
  display: flex;
}
.modal-con .button-wrap button {
  text-align: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  width: 50%;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .modal-con .button-wrap button {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .modal-con .button-wrap button {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.modal-con .button-wrap .check {
  background-color: var(--pri1);
  color: var(--white);
}
.modal-con .button-wrap .one {
  width: 100%;
  background-color: var(--pri1);
  color: var(--white);
}
.modal-con .button-wrap .buttonclose {
  border-top: 1px solid var(--black-a15);
}

.privacy {
  background-color: var(--pri1);
  color: var(--white);
  padding: 1.875rem;
  border-radius: 20px;
  position: fixed;
}
@media screen and (max-width: 1023px) {
  .privacy pre {
    font-family: var(--ko);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.48px;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  .privacy pre {
    font-family: var(--ko);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .privacy pre {
    font-family: var(--ko);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
}
@media screen and (max-width: 767px) {
  .privacy {
    font-family: var(--ko);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.48px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1023px) {
  .privacy {
    font-family: var(--ko);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .privacy {
    font-family: var(--ko);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
  }
}

#password_lost .id ul, #password_lost .password ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: none;
  justify-content: flex-start;
  align-items: baseline;
  gap: 1.25rem;
}
#password_lost .id ul li, #password_lost .password ul li {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #password_lost .id ul li, #password_lost .password ul li {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #password_lost .id ul li, #password_lost .password ul li {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#password_lost .id ul li:nth-child(1), #password_lost .password ul li:nth-child(1) {
  flex-basis: 20%;
  flex-grow: 1;
}
#password_lost .id ul li:nth-child(2), #password_lost .password ul li:nth-child(2) {
  flex-basis: 75%;
}
#password_lost .id ul li:nth-child(2) input, #password_lost .password ul li:nth-child(2) input {
  width: 100%;
}
@media screen and (max-width: 767px) {
  #password_lost .id ul, #password_lost .password ul {
    gap: 0.25rem;
  }
  #password_lost .id ul li:nth-child(2), #password_lost .password ul li:nth-child(2) {
    flex-basis: 100%;
  }
}

#board {
  max-width: 1310px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 9.375rem;
  /*게시판공통*/
  /*검색&글쓰기*/
  /*토탈(공통)*/
  /*탭(공통)*/
  /*더보기버튼(공통)*/
  /*페이지버튼(공통)*/
}
#board .board {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: center;
  align-items: space-between;
  gap: 0;
  border-top: 2px solid var(--pri2);
}
#board .board li {
  cursor: pointer;
  transition: all 0.5s ease;
}
#board .board .list-title {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #board .board .list-title {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #board .board .list-title {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.56px;
  }
}
#board .board .list-thumb {
  display: flex;
  align-content: center;
  overflow: hidden;
}
#board .board .list-thumb img {
  width: 100%;
  transition: all 0.5s ease;
}
#board .board li:hover .list-thumb img {
  transform: scale(1.1);
  transition: all 0.5s ease;
}
#board .board .list-name, #board .board .list-data {
  color: var(--black-a45);
}
#board .control {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: space-between;
  align-items: normal;
  gap: 0;
  margin-bottom: 0.625rem;
}
#board .control .search {
  background-color: var(--gray1);
  padding: 1em;
  border-radius: 20em;
  position: relative;
}
#board .control .search input {
  border: 0;
  background-color: rgba(0, 0, 0, 0);
  padding-left: 20px;
  width: 300px;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #board .control .search input {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #board .control .search input {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#board .control .search .search-button {
  border: 0;
  padding: 0.5em 1em;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(-50%, -50%);
}
#board .control .search .search-button i {
  color: var(--gray8);
}
#board .control .board-write-btn {
  padding: 0.5em 1em;
  color: var(--black-a50);
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
#board .control .board-write-btn i {
  margin-right: 1em;
}
@media screen and (max-width: 1023px) {
  #board .control .board-write-btn {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #board .control .board-write-btn {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#board .control .board-write-btn:hover {
  color: black;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  #board .control {
    flex-direction: column;
    gap: 20px;
  }
  #board .control .board-write-btn {
    margin-left: auto;
  }
}
#board .total {
  flex-basis: 100%;
  padding: 1em 0;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  #board .total {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #board .total {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#board .tab {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 6.25rem;
}
#board .tab li {
  padding: 2em 5em;
  flex-basis: 25%;
  cursor: pointer;
  text-align: center;
  border-right: 1px solid var(--gray5);
  border-bottom: 1px solid var(--gray5);
  border-top: 1px solid var(--gray5);
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  #board .tab li {
    padding: 1em;
    border-right: 0;
    border-top: 0;
  }
}
#board .tab li:nth-child(1) {
  border-left: 1px solid var(--gray5);
}
@media screen and (max-width: 1200px) {
  #board .tab li:nth-child(1) {
    border-left: 0px;
  }
}
#board .tab li.on {
  border: 2px solid var(--pri1);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 1200px) {
  #board .tab li.on {
    box-shadow: none;
    border-right: 0;
    border-left: 0;
    border-top: 0;
    border-bottom: 2px solid var(--pri1);
    color: var(--pri1);
  }
}
#board .button-wrap {
  display: flex;
  gap: 50px;
  justify-content: center;
}
#board .button-wrap .board-button {
  border: 1px solid var(--black-a50);
  color: var(--black-a65);
  cursor: pointer;
  display: block;
  border-radius: 2em;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  margin-top: 3.125rem;
  width: 300px;
  height: 50px;
}
@media screen and (max-width: 1023px) {
  #board .button-wrap .board-button {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #board .button-wrap .board-button {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#board .button-wrap .board-button:hover {
  background-color: var(--pri1);
  border: 1px solid var(--pri1);
  color: white;
  transition: all 0.5s ease;
}
#board .pagination {
  margin-top: 3.125rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 900px) {
  #board .pagination {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: normal;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
}
#board .pagination .num_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  #board .pagination .num_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: normal;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
  }
}
#board .pagination .num_list li a {
  text-align: center;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: var(--gray9);
  border-radius: 0.3rem;
}
@media screen and (max-width: 1023px) {
  #board .pagination .num_list li a {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  #board .pagination .num_list li a {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
#board .pagination .num_list li a.on {
  color: white;
  background-color: var(--pri1);
}
#board .pagination .num_list li a.on:hover {
  color: white;
  transition: all 0.5s ease;
}
#board .pagination .num_list li a:hover {
  color: var(--pri1);
  font-weight: bold;
  transition: all 0.5s ease;
}
#board .pagination i {
  color: var(--gray6);
  transition: all 0.5s ease;
}
#board .pagination i:hover {
  color: var(--pri1);
  transition: all 0.5s ease;
}

/*online*/
.online li {
  flex-basis: 100%;
  margin-bottom: 0em;
  border: 0 !important;
  border-bottom: 1px solid var(--black-a15) !important;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding: 1.875rem;
}
.online li p {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .online li p {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .online li p {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.online li .list-category {
  text-align: center;
  border: 1px solid var(--pri1);
  border-radius: 20em;
  color: var(--pri1);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-right: 18px;
}
.online li .list-category.end {
  background-color: var(--pri1);
  color: white;
}
.online li .list-txt {
  flex-basis: 70%;
  padding: 0em;
}
.online li .list-txt::before {
  content: "\f023";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
  color: var(--pri1);
}
.online li .list-name {
  flex-basis: 5%;
  text-align: center;
}
.online li .list-data {
  flex-basis: 8%;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .online li {
    gap: 20px;
  }
  .online li .list-txt {
    flex-basis: 100%;
  }
  .online li .list-name {
    flex-basis: auto;
  }
}
.online li:hover .list-txt {
  text-decoration: underline;
}

/*view*/
.view .list-info {
  text-align: center;
  margin-bottom: 3.125rem;
}
.view .list-info .list-title {
  font-family: var(--ko);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -1.12px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .view .list-info .list-title {
    font-family: var(--ko);
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.04px;
  }
}
@media screen and (max-width: 767px) {
  .view .list-info .list-title {
    font-family: var(--ko);
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.04px;
  }
}
.view .list-info .list-title span {
  padding-right: 1.25rem;
  font-family: var(--en);
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -1.12px;
}
@media screen and (max-width: 1023px) {
  .view .list-info .list-title span {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--en);
  }
}
@media screen and (max-width: 1023px) {
  .view .list-info .list-title span {
    font-family: var(--en);
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.04px;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  .view .list-info .list-title span {
    font-family: var(--en);
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--en);
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -1.04px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1023px) {
  .view .list-info .list-title span {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .view .list-info .list-title span {
    font-family: var(--en);
  }
}
.view .content {
  position: relative;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  padding-bottom: 3.125rem;
  padding-top: 3.125rem;
  border-top: 1px solid var(--pri1);
}
@media screen and (max-width: 1023px) {
  .view .content {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .view .content {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.view .content .content-button {
  position: absolute;
  top: 10px;
  right: 10px;
}
.view .content .content-button button {
  border: 1px solid var(--black-a25);
  color: var(--black-a50);
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  border-radius: 999px;
}
@media screen and (max-width: 1023px) {
  .view .content .content-button button {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .view .content .content-button button {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.view .content .content-button button:hover {
  color: var(--pri1);
  border: 1px solid var(--pri1);
  transition: all 0.5s ease;
}
.view .answer {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  background-color: var(--gray1);
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: normal;
  align-items: center;
  gap: 20px;
}
.view .answer p {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .view .answer p {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .view .answer p {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.view .answer .list-category {
  margin-right: auto;
  margin-left: auto;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  border-radius: 999px;
  border: 1px solid var(--pri1);
  color: var(--pri1);
}
.view .answer .list-category.end {
  background-color: var(--pri1);
  color: var(--white);
}
.view .add-file {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-top: 1px solid var(--black-a15);
  border-bottom: 1px solid var(--black-a15);
}
@media screen and (max-width: 1023px) {
  .view .add-file {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .view .add-file {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}

/*write*/
.write {
  /*체크박스 공통*/
}
.write label {
  cursor: pointer;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .write label {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .write label {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.write label input[type=checkbox] {
  position: absolute;
  left: -9999px;
}
.write label input[type=checkbox]:checked + span {
  color: var(--pri1);
}
.write ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: flex-start;
  align-items: baseline;
  gap: 30px;
  margin-bottom: 1.875rem;
}
.write ul li:nth-child(1) {
  flex-basis: 10%;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .write ul li:nth-child(1) {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .write ul li:nth-child(1) {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.56px;
  }
}
.write ul li:nth-child(1):after {
  content: "*";
  color: var(--pri1);
  margin-bottom: 5px;
}
.write ul li:nth-child(2) {
  flex-basis: calc(90% - 30px);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: flex-start;
  align-items: baseline;
  gap: 0px;
}
.write ul li:nth-child(2) input, .write ul li:nth-child(2) textarea {
  padding: 1.25rem;
  border: 0;
  background-color: var(--gray1);
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  max-width: 100%;
}
@media screen and (max-width: 1023px) {
  .write ul li:nth-child(2) input, .write ul li:nth-child(2) textarea {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .write ul li:nth-child(2) input, .write ul li:nth-child(2) textarea {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.write ul li:nth-child(2) textarea {
  width: 100% !important;
  height: 300px !important;
}
.write ul li:nth-child(2) label {
  width: 100%;
}
.write ul li:nth-child(2) label span {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .write ul li:nth-child(2) label span {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .write ul li:nth-child(2) label span {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.write ul li:nth-child(2) .input-s {
  width: 20%;
}
.write ul li:nth-child(2) .input-m {
  width: 50%;
}
.write ul li:nth-child(2) .input-l {
  width: 100%;
}
.write ul li:nth-child(2) button {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--gray10);
  color: var(--gray10);
}
.write ul li:nth-child(2).release {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.write ul li:nth-child(2).release label {
  width: auto;
}
@media screen and (max-width: 767px) {
  .write ul {
    gap: 10px;
  }
  .write ul li:nth-child(1), .write ul li:nth-child(2) {
    flex-basis: 100%;
  }
  .write ul li:nth-child(2) .input-s,
  .write ul li:nth-child(2) .input-m,
  .write ul li:nth-child(2) .input-l {
    width: 100%;
  }
}
.write .personal-infor {
  margin-top: 6.25rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: normal;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.write .personal-infor h2 {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .write .personal-infor h2 {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .write .personal-infor h2 {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.56px;
  }
}
.write .personal-infor p {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  padding: 1.25rem;
  background-color: var(--gray1);
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .write .personal-infor p {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .write .personal-infor p {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.write .personal-infor label span {
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .write .personal-infor label span {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .write .personal-infor label span {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}

/*notice게시판*/
.notice {
  justify-content: flex-start !important;
  align-items: stretch !important;
  gap: 20px;
}
.notice li {
  border: 1px solid var(--black-a15);
  position: relative;
  padding: 2.5rem;
  margin-bottom: 1.25rem;
  margin-right: 1.25rem;
  flex-basis: calc(33.3333% - 1.25rem);
}
.notice li .no-img:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pri1);
  display: block;
}
.notice li .list-title {
  margin-top: 0.9375rem;
}
.notice li .list-content {
  margin-top: 0.9375rem;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1023px) {
  .notice li .list-content {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .notice li .list-content {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.notice li .list-data {
  margin-top: 1.25rem;
  font-family: var(--ko);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .notice li .list-data {
    font-family: var(--ko);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) {
  .notice li .list-data {
    font-family: var(--ko);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1920px) {
  .notice li:nth-child(3n+4) {
    margin-right: 0 !important;
  }
}
.notice li:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0%;
  height: 2px;
  background-color: var(--pri1);
}
.notice li:hover:before {
  width: 100%;
  transition: all 0.5s ease;
}
.notice .notice .list-title:before {
  content: "[공지]  ";
  font-weight: bold;
  color: var(--pri1);
}
.notice .list-thumb.no-thumb:after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pri1);
  display: block;
}
@media screen and (max-width: 1023px) {
  .notice li {
    flex-basis: calc(50% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .notice {
    flex-direction: column !important;
  }
  .notice li {
    margin: 0 0 2em 0;
    padding: 2em;
  }
}

/*before게시판*/
.before li {
  flex-wrap: wrap;
  flex-basis: 100%;
  cursor: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 3.125rem;
}
.before li .list-title {
  flex-basis: 100%;
  text-align: center;
  padding: 1.25rem;
}
.before li img {
  flex-basis: 45%;
}
.before li .before-img {
  border: 3px solid var(--grey6);
  filter: brightness(0.2);
}
.before li .after-img {
  border: 3px solid var(--pri1);
}
.before li:last-of-type {
  margin-bottom: 0 !important;
}

/*event게시판*/
.event {
  justify-content: space-between !important;
}
.event li {
  flex-basis: calc(50% - 20px);
  margin-bottom: 2.5rem;
}
.event li .list-thumb {
  height: 300px;
  justify-content: center;
}
.event li .list-title {
  text-align: center;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.event li .list-title span {
  padding-right: 1.25rem;
  font-family: var(--en);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: -0.6px;
}
@media screen and (max-width: 1023px) {
  .event li .list-title span {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--en);
  }
}
@media screen and (max-width: 1023px) {
  .event li .list-title span {
    font-family: var(--en);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 1023px) and (max-width: 1023px) {
  .event li .list-title span {
    font-family: var(--en);
  }
}
@media screen and (max-width: 1023px) and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--en);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
@media screen and (max-width: 767px) and (max-width: 1023px) {
  .event li .list-title span {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .event li .list-title span {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  .event li {
    flex-basis: 100%;
  }
}
.event li.end {
  position: relative;
}
.event li.end .list-thumb img {
  filter: brightness(50%);
}
.event li.end .list-title {
  opacity: 0.2;
}
.event li.end .list-title .counter {
  display: none;
}
.event li.end .list-thumb {
  position: relative;
}
.event li.end .list-thumb::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "종료된 이벤트입니다.";
  color: var(--white);
}
.event li.end:hover {
  cursor: auto;
}
.event li.end:hover .list-thumb img {
  transform: scale(1) !important;
  cursor: auto;
}
.event li.end:hover .list-title {
  cursor: auto;
}/*# sourceMappingURL=dental.css.map */