@charset "UTF-8";
/*base*/
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&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;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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;
}

::-webkit-scrollbar {
  width: 5px;
  background: transparent;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
  background: transparent; /* 트랙 배경 투명 */
}

::-webkit-scrollbar-thumb {
  background-clip: padding-box;
  border-radius: 5px;
  background: var(--pri1);
  border: 2px solid transparent;
}

::-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;
}

@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: #263F7E;
  --pri1-1: #7884A3;
  --pri1-2: #D1DAED;
  --pri1-3: #F6F9FE;
  --pri1-4: #101B37;
  --pri1-5: ;
  --pri1-6: ;
  --pri1-7: ;
  --pri1-8: ;
  --pri1-9: ;
  --pri1-10: ;
  /*pri 2*/
  --pri2: #00ACED;
  --pri2-1: ;
  --pri2-2: ;
  --pri2-3: ;
  --pri2-4: ;
  --pri2-5: ;
  --pri2-6: ;
  --pri2-7: ;
  --pri2-8: ;
  --pri2-9: ;
  --pri2-10: ;
  /*pri 3*/
  --pri3: #19BABA;
  --pri3-1: ;
  --pri3-2: ;
  --pri3-3: ;
  --pri3-4: ;
  --pri3-5: ;
  --pri3-6: ;
  --pri3-7: ;
  --pri3-8: ;
  --pri3-9: ;
  --pri3-10: ;
  /*pri 4*/
  --pri4: #DDDDDD;
  --pri4-1: #D9D9D9;
  --pri4-2: #FAFAFA;
  --pri4-3: #7E7E7E;
  --pri4-4: #111111;
  --pri4-5: ;
  --pri4-6: ;
  --pri4-7: ;
  --pri4-8: ;
  --pri4-9: ;
  --pri4-10: ;
  /*pri 5*/
  --pri5: ;
  --pri5-1: ;
  --pri5-2: ;
  --pri5-3: ;
  --pri5-4: ;
  --pri5-5: ;
  --pri5-6: ;
  --pri5-7: ;
  --pri5-8: ;
  --pri5-9: ;
  --pri5-10: ;
  /*sub*/
  --sub1: ;
  --sub1-1: ;
  --sub1-2: ;
  --sub1-3: ;
  --sub1-4: ;
  --sub1-5: ;
  --sub1-6: ;
  --sub1-7: ;
  --sub1-8: ;
  --sub1-9: ;
  --sub1-10: ;
  /*sub*/
  --sub2: ;
  --sub2-1: ;
  --sub2-2: ;
  --sub2-3: ;
  --sub2-4: ;
  --sub2-5: ;
  --sub2-6: ;
  --sub2-7: ;
  --sub2-8: ;
  --sub2-9: ;
  --sub2-10: ;
  /*sub*/
  --sub3: ;
  --sub3-1: ;
  --sub3-2: ;
  --sub3-3: ;
  --sub3-4: ;
  --sub3-5: ;
  --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: #5CB533;
  --daum: #618FFC;
  --youtube: #FD0532;
}

body {
  font-family: "Pretendard", "Outfit", sans-serif;
}

@font-face {
  font-family: "BookkMyungjo";
  src: url("/common/scss/user/fonts/BookkMyungjo_Light.woff2") format("woff2"), url("/common/scss/user/fonts/BookkMyungjo_Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BookkMyungjo";
  src: url("/common/scss/user/fonts/BookkMyungjo_Bold.woff2") format("woff2"), url("/common/scss/user/fonts/BookkMyungjo_Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --pretend: "Pretendard", sans-serif;
  --bookk: "BookkMyungjo", sans-serif;
  --en: "Outfit", sans-serif;
}

/* 폰트셋팅*/
/*삭제금지*/
/*common*/
footer {
  padding: 6.25rem 0 7rem;
  background-color: var(--pri1-4);
}
footer .inr {
  width: 105rem;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 1680px) {
  footer .inr {
    width: 100%;
  }
}
footer .contents {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1.69rem;
}
footer .contents:nth-child(2) {
  padding-bottom: 5.19rem;
}
footer .contents h2 {
  color: #B4BED5;
  font-weight: 500;
}
footer .contents h2, footer .contents p {
  margin-right: 3.44rem;
  color: var(--pri1-1);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: -0.025rem;
}
footer .contents .btn {
  display: inline-flex;
  margin-right: 0.2rem;
  padding: 0.25rem 0.75rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border: 1px solid #273760;
  background: #0E1935;
  color: var(--pri1-1);
  text-align: center;
  font-family: Pretendard;
  font-size: 0.9375rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.02344rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
footer .contents .copyright {
  color: var(--pri1-1);
  font-size: 1rem;
  font-weight: 300;
}
@media (hover: hover) {
  footer .btn:hover {
    border-color: var(--pri1-2);
    color: var(--pri1-2);
  }
}
@media screen and (max-width: 1023px) {
  footer h2, footer p {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding: 4.25rem 1.2rem 4rem;
  }
  footer .contents {
    flex-wrap: wrap;
    line-height: 2.2rem;
    padding-bottom: 0;
  }
  footer .contents h2, footer .contents p {
    margin-right: 2rem;
    font-size: 0.9rem;
  }
  footer .contents .btn {
    font-size: 0.9rem;
  }
  footer .contents .copyright {
    font-size: 0.9rem;
  }
}

body.banner-check #tBanner {
  display: none;
}

#tBanner {
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 3.125rem;
}
#tBanner.active {
  opacity: 0;
  height: 0;
}
#tBanner .swiper {
  height: 100%;
}
#tBanner .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
  font-size: 0.9rem;
  background: var(--pri1);
  color: #fff;
}
#tBanner .swiper-wrapper .swiper-slide.one {
  background-color: var(--pri1);
}
#tBanner .swiper-wrapper .swiper-slide.two {
  background-color: var(--pri2);
}
#tBanner .swiper-wrapper .swiper-slide.three {
  background-color: var(--pri3);
}
#tBanner .swiper-wrapper .swiper-slide.four {
  background-color: var(--pri1-4);
}
#tBanner .btn-close {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  z-index: 1;
  width: 1.5rem;
  height: 1.5rem;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
#tBanner .btn-close:hover {
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  #tBanner {
    height: 2.6rem;
  }
}

header {
  position: fixed;
  z-index: 99;
  width: 100%;
  padding: 0 3.75rem;
  top: 6.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
header.active {
  top: 2rem !important;
}
header.active .gnb {
  border-color: #e7e7e7;
}
header h1 a img {
  display: block;
  width: auto;
  height: 3.1875rem;
  transition: all 0.2s ease-in-out;
}
header .gnb {
  display: flex;
  border-radius: 1.56rem;
  padding: 0 0.5rem;
  background-color: white;
  border: 1px solid transparent;
  transition: all 0.3s;
}
header .gnb li {
  position: relative;
}
header .gnb li a {
  position: relative;
  display: block;
  padding: 1.1rem 1.8rem;
  color: var(--pri1);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: -0.065rem;
  cursor: pointer;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}
header .gnb li::after {
  opacity: 0;
  content: "";
  width: 100%;
  height: 80%;
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--pri1);
  border-radius: 1.56rem;
  transition: all 0.2s ease-in-out;
}
header .gnb li.active::after {
  opacity: 1;
}
header .gnb li.active a {
  font-weight: 600;
  color: var(--white);
}
header .util {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
header .util .tel {
  display: flex;
  flex-flow: column;
  align-items: center;
  height: 2.8125rem;
  padding: 0.26rem 1.31rem;
  border-radius: 6.25rem;
  background: linear-gradient(90deg, #3CCAFF, #01afee, #19BABA);
  background-size: 200% 100%;
  background-position: 0% 50%;
  /* 자연스러운 왕복 애니메이션 */
  animation: gradientMove 3s ease-in-out infinite alternate;
  box-sizing: border-box;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}
header .util .tel > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
}
header .util .tel .icon {
  display: flex;
  width: 1.4rem;
  height: 1.4rem;
  background: url(/common/img/user/icon/icon_tel.svg) no-repeat center center;
  margin-right: 0.36rem;
}
header .util .tel .txt {
  display: inline-block;
  text-align: center;
  font-weight: 300;
  font-size: 0.9rem;
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
header .util .blog {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  background-color: var(--naver);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
header .util .blog img {
  width: 50%;
}
header .util .blog:hover {
  background-color: #75DE44;
}
@media screen and (max-width: 1540px) {
  header {
    padding: 0 2.5rem;
  }
  header .gnb li a {
    padding: 1.1rem 1.6rem;
  }
}
@media screen and (max-width: 1460px) {
  header .gnb li a {
    padding: 1.1rem 1.2rem;
  }
  header h1 a img {
    height: 2.8rem;
  }
}
@media screen and (max-width: 1360px) {
  header {
    top: 5.4rem;
  }
  header .util {
    position: absolute;
    right: 2.5rem;
    top: 4.2rem;
  }
}
@media screen and (max-width: 1100px) {
  header {
    padding: 0 2rem;
  }
  header .gnb li a {
    padding: 0.9rem 1rem;
  }
}
@media screen and (max-width: 1023px) {
  header {
    align-items: flex-start;
    position: relative;
    flex-direction: column;
    top: 0;
    width: 100%;
    padding: 0;
    box-sizing: initial;
    overflow: visible;
    background-color: var(--white);
    opacity: 1 !important;
    transform: none !important;
  }
  header.active {
    position: fixed;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    box-shadow: 5px 7px 4.9px 0px rgba(0, 0, 0, 0.05);
  }
  header.active .gnb {
    border: 0;
  }
  header h1 a {
    display: block;
    padding: 1rem 0 0.4rem 0.8rem;
  }
  header h1 a img {
    height: 2.3rem;
  }
  header .util {
    display: flex;
    position: absolute;
    top: 1.1rem;
    right: 0.6rem;
    gap: 0.2rem;
  }
  header .util .blog {
    width: 2.1rem;
    height: 2.1rem;
  }
  header .util .tel {
    height: 2.6rem;
    padding: 0.36rem 0.8rem;
    font-size: 0.9rem;
  }
  header .util .tel .icon {
    width: 1rem;
    height: 1rem;
    margin-top: 0.1rem;
    margin-right: 0.15rem;
    background-size: contain;
  }
  header .util .tel .txt {
    font-size: 0.8rem;
  }
  header .gnb {
    position: relative;
    top: initial;
    width: 100%;
    justify-content: initial;
    overflow-x: scroll;
    padding-top: 0.4rem;
    padding-bottom: 0.5rem;
    border-radius: 0;
  }
  header .gnb li a {
    font-size: 1rem;
    font-weight: 500;
    padding: 0.45rem 0.85rem 0.55rem;
    white-space: nowrap;
  }
}

@media (hover: hover) {
  .gnb li a:hover {
    color: var(--pri3);
  }
}
.quik-menu {
  display: block;
  flex-direction: column;
  position: fixed;
  bottom: 3rem;
  right: -10rem;
  z-index: 10;
  opacity: 0;
  width: 7.25rem;
  transition: all 0.6s;
}
.quik-menu.on {
  opacity: 1;
  right: 2rem;
}
@media screen and (max-width: 767px) {
  .quik-menu.on {
    right: 0.5rem;
    bottom: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .quik-menu {
    width: 6.25rem;
  }
}
.quik-menu .link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.quik-menu .link a {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  padding: 0.88rem 1rem;
  align-items: center;
  cursor: pointer;
  background-color: var(--white);
  color: #555;
  border-radius: 6.25rem;
  border: 1px solid #DDD;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .quik-menu .link a {
    padding: 0.8rem 0.4rem;
    font-size: 1.1rem;
  }
}
.quik-menu .link a:hover {
  border-color: var(--pri3);
}
.quik-menu .link a:hover .txt {
  color: var(--pri3);
}
.quik-menu .link a.counsel {
  background: linear-gradient(90deg, #00ACED 0%, #19BABA 100%);
  border-color: transparent;
}
.quik-menu .link a.counsel .txt {
  color: var(--white);
}
.quik-menu .link a .img {
  width: 0.875rem;
  height: 0.875rem;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 1;
}
.quik-menu .link a .img[data-quick=counsel] {
  background-image: url(/common/img/user/common/icon_quick_counsel.svg);
}
.quik-menu .link a .txt {
  color: #555;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.35px;
  transition: all 0.3s;
}
.quik-menu .posi {
  padding-top: 0.625rem;
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  flex-direction: column;
}
.quik-menu .posi span {
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 100%;
  border: 1px solid #DDDDDD;
  background-color: var(--white);
  background-image: url(/common/img/user/common/icon_quick_arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s;
}
.quik-menu .posi span.bottom {
  transform: rotate(180deg);
}
.quik-menu .posi span:hover {
  border-color: var(--pri3);
  background-image: url(/common/img/user/common/icon_quick_arrow_on.svg);
}

#quick {
  display: none;
  position: fixed;
  bottom: 0;
  right: -30rem;
  opacity: 0;
  align-items: flex-end;
  gap: 20px;
  z-index: 20;
  transition: opacity 0.3s ease;
}
#quick.on {
  display: block;
  opacity: 1;
  right: 0.5rem;
  bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  #quick.on {
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
#quick .online-form {
  position: relative;
  width: 28.25rem;
  height: 100%;
  padding: 2.5rem 1.88rem;
  border-radius: 0.25rem;
  border: 1px solid var(--pri3);
  background-color: var(--white);
  box-shadow: 5px 7px 4.9px 0px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  #quick .online-form {
    width: 100%;
    height: 50vh;
    padding: 2rem;
    border-radius: 1.5625rem 1.5625rem 0 0;
  }
}
#quick .online-form-close {
  position: absolute;
  top: 2rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  overflow: hidden;
  text-indent: -1000000rem;
  z-index: 1;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
#quick .online-form-close::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(/common/img/user/common/online_form_close.svg) no-repeat center center;
}
#quick .online-form-close:hover {
  opacity: 0.7;
  border-color: black;
}
@media screen and (max-width: 767px) {
  #quick .online-form-close {
    width: 4rem;
    height: 4rem;
  }
}
#quick .header {
  text-align: left;
  padding-top: 0;
  padding-bottom: 1.5rem;
}
#quick .header .title {
  padding-top: 0;
  color: var(--pri4-4);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 148%; /* 2.59rem */
  letter-spacing: -0.06125rem;
  font-family: var(--pretend);
}
@media screen and (max-width: 767px) {
  #quick .header .title {
    font-size: 1.6rem;
    padding-bottom: 0;
  }
}
#quick .header .desc {
  color: var(--white);
  opacity: 0.8;
  font-size: 1rem;
  font-weight: 200;
  padding-top: 0.5rem;
  letter-spacing: -0.1px;
}
@media screen and (max-width: 767px) {
  #quick .header .desc {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 767px) {
  #quick .header {
    padding-bottom: 1.5rem;
  }
}
#quick #quick_form select[name=subject],
#quick #quick_form input[type=text],
#quick #quick_form input[type=tel] {
  width: 100%;
  height: 3.2rem;
  margin-bottom: 0.3rem;
  padding: 0 1rem;
  font-size: 1.1rem;
  border-radius: 0.125rem;
  background: #F6F6F6;
  box-sizing: border-box;
  border: 0;
}
@media screen and (max-width: 767px) {
  #quick #quick_form select[name=subject],
  #quick #quick_form input[type=text],
  #quick #quick_form input[type=tel] {
    height: 2.8rem;
  }
}
#quick #quick_form input::-moz-placeholder {
  color: #C8C8C8;
}
#quick #quick_form input::placeholder {
  color: #C8C8C8;
}
#quick #quick_form input[type=submit] {
  width: 100%;
  height: 3.75rem;
  line-height: 3.75rem;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.04375rem;
  color: var(--white);
  background-color: var(--pri3);
  border-radius: 0.125rem;
  border: 0;
  cursor: pointer;
}
#quick #quick_form input[type=submit]:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  #quick #quick_form input[type=submit] {
    height: 2.8rem;
    line-height: 2.8rem;
  }
}
#quick #quick_form .chk-online-agree {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1.2rem 0 3rem;
  color: #555555;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.01rem;
}
#quick #quick_form .chk-online-agree a {
  font-size: 0.96rem;
}
#quick #quick_form .chk-online-agree input[type=checkbox] {
  width: 1rem;
  height: 1rem;
  margin-right: 0.4rem;
}
@media screen and (max-width: 767px) {
  #quick #quick_form .chk-online-agree {
    padding: 0.8rem 0 1rem;
  }
}

/*pages*/
body.no-scroll {
  overflow: hidden;
}

#mainSlide {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
#mainSlide .swiper {
  width: 100%;
  height: 100%;
}
#mainSlide .swiper .swiper-slide .text-wrap {
  position: absolute;
  text-align: left;
  z-index: 1;
  width: 80%;
  top: 36%;
  left: 40%;
  transform: translate(-40%, -36%);
  color: var(--white);
  display: flex;
  gap: 2.6rem;
  flex-direction: column;
  overflow: hidden;
  transition-delay: 0.3s;
  transition: all 0.3s;
}
#mainSlide .swiper .swiper-slide .text-wrap p {
  color: var(--black-a60);
  transition-property: transform;
  transition-duration: 0.9s;
  transform: translateY(500%);
  display: block;
  -webkit-transform: translateY(180%);
  -moz-transform: translateY(180%);
  -ms-transform: translateY(180%);
  -o-transform: translateY(180%);
  display: block;
  transition-delay: inherit;
  opacity: 0;
  color: var(--pri1);
  line-height: 1.45;
  letter-spacing: -2.5%;
}
#mainSlide .swiper .swiper-slide .text-wrap .tit {
  font-family: var(--bookk);
  font-size: 3.125rem;
}
#mainSlide .swiper .swiper-slide .text-wrap .tit b {
  font-weight: 900;
}
#mainSlide .swiper .swiper-slide .text-wrap .desc {
  padding-left: 0.5rem;
  font-size: 1.5rem;
  font-weight: 300;
}
#mainSlide .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
}
#mainSlide .swiper .swiper-slide img.pc {
  display: block;
}
#mainSlide .swiper .swiper-slide img.mo {
  display: none;
}
#mainSlide .swiper .swiper-slide.slide04 .text-wrap p {
  color: #075516;
}
#mainSlide .swiper .swiper-slide-active .text-wrap p {
  transform: translateY(0);
  opacity: 1;
}
#mainSlide .swiper .swiper-slide-active .text-wrap .tit {
  transition-delay: 0.3s;
}
#mainSlide .swiper .swiper-slide-active .text-wrap .desc {
  transition-delay: 0.5s;
}
#mainSlide .swiper .swiper-slide-active img {
  transform: scale(1.025);
  transition: transform 5s ease;
  background-position: center center;
}
#mainSlide .swiper .paging {
  display: flex;
  align-items: center;
  height: 3rem;
  width: 80%;
  position: absolute;
  bottom: 36%;
  left: 8.6%;
}
#mainSlide .swiper .paging .swiper-pagination-bullet {
  width: 0.25rem;
  height: 0.25rem;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 3px) !important;
  background: var(--pri4-1);
  opacity: 1;
  transition-delay: 0.3s;
  transition: all 0.3s;
}
#mainSlide .swiper .paging .swiper-pagination-bullet-active {
  width: 0.4375rem;
  height: 0.4375rem;
  margin-top: -1px !important;
  background: var(--pri1);
}
@media screen and (max-width: 1460px) {
  #mainSlide .swiper .paging {
    bottom: 30%;
  }
}
@media screen and (max-width: 1460px) {
  #mainSlide .swiper .swiper-slide .text-wrap {
    top: 40%;
  }
  #mainSlide .swiper .swiper-slide .text-wrap .tit {
    font-size: 2.4rem;
  }
  #mainSlide .swiper .swiper-slide .text-wrap .desc {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1023px) {
  #mainSlide .swiper .swiper-slide .text-wrap {
    top: 30%;
  }
  #mainSlide .swiper .swiper-slide .text-wrap .tit {
    font-size: 2.2rem;
  }
  #mainSlide .swiper .swiper-slide .text-wrap .desc {
    font-size: 1.3rem;
    padding-left: 0.3rem;
  }
}
@media screen and (max-width: 767px) {
  #mainSlide .swiper .swiper-slide .text-wrap {
    width: 100%;
    top: 20%;
    gap: 1.2rem;
    text-align: center;
  }
  #mainSlide .swiper .swiper-slide .text-wrap .tit {
    font-size: 1.7rem;
    line-height: 1.65;
  }
  #mainSlide .swiper .swiper-slide .text-wrap .desc {
    display: none;
    font-size: 1.1rem;
    font-weight: 400;
  }
  #mainSlide .swiper .swiper-slide img.pc {
    display: none;
  }
  #mainSlide .swiper .swiper-slide img.mo {
    display: block;
  }
  #mainSlide .swiper .paging {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    left: 50%;
    top: initial;
    bottom: 0;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 1rem;
  }
}

#overview {
  position: relative;
  overflow: hidden;
  margin-top: -5rem;
  background-color: var(--white);
  border-radius: 6.25rem 6.25rem 0rem 0rem;
  z-index: 1;
}
@media screen and (max-width: 1460px) {
  #overview {
    margin-top: 0;
    border-radius: 3.25rem 3.25rem 0rem 0rem;
  }
}
#overview .header {
  padding: 12.5rem 0 10.56rem;
}
@media screen and (max-width: 1023px) {
  #overview .header {
    padding: 6rem 0 10.56rem;
  }
}
@media screen and (max-width: 767px) {
  #overview .header {
    padding: 6rem 1.2rem 4rem;
  }
  #overview .header .label, #overview .header .title {
    opacity: 1 !important;
    transform: none !important;
  }
}
#overview .contents {
  position: relative;
  padding-bottom: 12.5rem;
  box-sizing: border-box;
}
#overview .contents .text-loop {
  position: absolute;
  top: -7.8rem;
}
#overview .contents .overview-info {
  position: relative;
  z-index: 1;
  display: flex;
  width: 105rem;
  margin: 0 auto;
  justify-content: space-between;
  text-align: center;
}
#overview .contents .overview-info .image {
  overflow: hidden;
}
#overview .contents .overview-info .image img {
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: left;
}
#overview .contents .overview-info .image:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
}
#overview .contents .overview-info .tit {
  padding: 3.69rem 0 2.19rem;
  color: #111;
  font-family: var(--bookk);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.04688rem;
}
#overview .contents .overview-info .desc {
  color: var(--pri4-3);
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 300;
  line-height: 148%; /* 2.035rem */
  letter-spacing: -0.03438rem;
}
@media screen and (max-width: 1680px) {
  #overview .contents {
    padding: 0 3rem 12.5rem 3rem;
  }
  #overview .contents .overview-info {
    width: 100%;
    gap: 2.5%;
  }
}
@media screen and (max-width: 1023px) {
  #overview .contents {
    padding: 0 3rem 8.5rem 3rem;
  }
  #overview .contents .overview-info .tit {
    padding: 2.69rem 0 1.19rem;
    font-size: 1.5rem;
  }
  #overview .contents .overview-info .desc {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  #overview .contents {
    flex-direction: column;
    padding: 0 1.2rem 5rem 1.2rem;
  }
  #overview .contents .text-loop {
    top: -4.2rem;
  }
  #overview .contents .overview-info {
    flex-direction: column;
  }
  #overview .contents .overview-info li {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    padding-bottom: 1rem;
  }
  #overview .contents .overview-info li .image {
    flex: 1.5;
  }
  #overview .contents .overview-info li .tit {
    padding-top: 0;
    font-size: 1.3rem;
  }
  #overview .contents .overview-info li .desc {
    font-size: 1.05rem;
  }
  #overview .contents .overview-info li .desc br {
    display: none;
  }
  #overview .contents .overview-info li > div {
    flex: 1.5;
    text-align: left;
  }
}

/* 의료진 소개 */
#doctor {
  display: flex;
  overflow: hidden;
}
#doctor > .header {
  flex-basis: 53.75rem;
  height: 100%;
  padding: 10rem 6.25rem 10rem;
  text-align: left;
  background: var(--pri1);
  box-sizing: border-box;
}
#doctor > .header .label {
  text-align: left;
  color: var(--white);
}
#doctor > .header .title {
  color: var(--white);
}
#doctor > .header .doctor-info-wrap {
  position: relative;
}
#doctor > .header .doctor-info-wrap .active {
  opacity: 0;
  height: 6.25rem;
  opacity: 1;
  position: absolute;
  top: 0;
  z-index: 0;
  width: 100%;
  border-radius: 6.25rem;
  background: #4C6299;
  box-shadow: 9px 8px 4px 0px rgba(0, 0, 0, 0.04);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  box-sizing: border-box;
}
#doctor > .header .doctor-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding-top: 4.5rem;
  padding-bottom: 3.6rem;
  color: var(--white);
  border-bottom: 1px solid #566DA8;
}
#doctor > .header .doctor-info li {
  display: flex;
  z-index: 1;
  padding: 1.4rem 3rem 1.4rem 3.5rem;
  cursor: default;
}
#doctor > .header .doctor-info li .tit {
  width: 12rem;
  font-family: var(--bookk);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 148%;
  letter-spacing: -0.04688rem;
}
#doctor > .header .doctor-info li .desc {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 148%;
  letter-spacing: -0.03125rem;
}
#doctor > .header .doctor-info li.active {
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 160px;
  border-radius: 6.25rem;
  background: #4C6299;
  box-shadow: 9px 8px 4px 0px rgba(0, 0, 0, 0.04);
  transition: top 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}
#doctor > .header .doctor-info liactive.aos-animate {
  animation: fadeMove 0.5s ease forwards;
}
@keyframes fadeMove {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#doctor > .header .more {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
  cursor: pointer;
  color: var(--white);
  margin-top: 5rem;
}
#doctor > .header .more .txt {
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: -0.03438rem;
}
#doctor > .header .more .icon {
  display: inline-block;
  width: 2.75rem;
  height: 2.75rem;
  background: #fff url(/common/img/user/icon/icon_btn_doctor_detail.svg) no-repeat center center;
}
#doctor > .contents {
  position: relative;
  flex: 1;
  background: #eff2fa url(/common/img/user/main/bg_doctor.png) no-repeat 0;
  overflow: hidden;
  cursor: none;
}
#doctor > .contents .hover-follower {
  position: fixed;
  pointer-events: none;
  display: none;
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 100%;
  z-index: 1000;
  color: var(--white);
  background-color: var(--pri3);
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.03438rem;
  line-height: 1.45;
  cursor: none;
}
#doctor > .contents .doctor-swiper {
  height: 100%;
}
#doctor > .contents .swiper-slide {
  width: 100%;
}
#doctor > .contents .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 2px) !important;
}
#doctor > .contents .swiper-pagination-bullet-active {
  background: var(--pri1);
}
#doctor > .contents .doctor-img {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  height: 100%;
  align-items: flex-end;
}
#doctor > .contents .doctor-img:nth-child(2) {
  left: 0;
  right: initial;
}
#doctor > .contents .doctor-img:nth-child(2) .name {
  right: initial;
  left: 5.38rem;
}
#doctor > .contents .doctor-img .name {
  position: absolute;
  right: 12rem;
  bottom: 5rem;
  z-index: 2;
  display: inline-flex;
  padding: 0rem 2rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 6.25rem;
  background: #111;
  color: var(--white);
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 148%;
  letter-spacing: -0.0375rem;
}
#doctor > .contents .doctor-img .name span {
  font-weight: 100;
}
#doctor > .contents .doctor-img img {
  background-blend-mode: darken;
}
@media screen and (max-width: 1460px) {
  #doctor {
    margin-top: 0;
  }
  #doctor > .header {
    flex-basis: auto;
    flex: 1;
    padding: 8.25rem 4rem 8rem;
  }
  #doctor > .header .doctor-info li {
    padding: 1.4rem 2rem 1.4rem 2.5rem;
  }
  #doctor > .contents .swiper-slide {
    width: 100%;
  }
  #doctor > .contents .doctor-img {
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 1023px) {
  #doctor > .header {
    padding: 8.25rem 3rem 8rem;
  }
  #doctor > .header .doctor-info {
    padding-top: 3rem;
  }
  #doctor > .header .doctor-info li .tit {
    width: 10rem;
    font-size: 1.6rem;
  }
  #doctor > .header .doctor-info li .desc {
    font-size: 1rem;
  }
  #doctor > .header .doctor-info li .desc br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #doctor {
    flex-direction: column;
  }
  #doctor > .header {
    padding: 6.25rem 1.2rem 6rem;
  }
  #doctor > .header .label {
    text-align: center;
  }
  #doctor > .header .title {
    text-align: center;
  }
  #doctor > .header .doctor-info {
    padding-top: 2.2rem;
    padding-bottom: 2rem;
  }
  #doctor > .header .doctor-info li {
    height: auto;
    padding: 1rem 1.6rem 1rem 2.2rem;
  }
  #doctor > .header .doctor-info li .tit {
    width: 8rem;
    font-size: 1.5rem;
  }
  #doctor > .header .doctor-info li .desc {
    font-size: 1rem;
  }
  #doctor > .header .doctor-info li .desc br {
    display: none;
  }
  #doctor > .header .more {
    margin-top: 3rem;
    justify-content: center;
  }
  #doctor > .header .more .txt {
    font-size: 1.1rem;
  }
  #doctor > .header .more .icon {
    width: 1.85rem;
    height: 1.85rem;
  }
  #doctor > .contents {
    flex: none;
    height: 32rem;
    width: 100%;
  }
  #doctor > .contents .doctor-swiper {
    width: 100%;
    overflow: hidden;
  }
  #doctor > .contents .swiper-slide {
    width: auto;
    text-align: center;
  }
  #doctor > .contents .doctor-img {
    display: flex;
    justify-content: center;
    position: relative;
    height: 32rem;
    width: 100%;
  }
  #doctor > .contents .doctor-img img {
    position: absolute;
    bottom: -26%;
    height: 120%;
  }
  #doctor > .contents .doctor-img .name {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    top: initial;
    bottom: 10%;
    right: initial;
    padding: 0rem 1rem;
  }
}

/* 진료과목 */
#subject {
  overflow: hidden;
}
#subject .clinic {
  height: 43.75rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/common/img/user/main/bg_clinic01.png);
  background-position: center center;
  transition: background-image 0.4s ease-in-out;
  overflow: hidden;
}
#subject .clinic li {
  padding: 0 1.5rem;
  height: 100%;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  color: var(--white);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}
#subject .clinic li::before {
  display: block;
  content: "";
  position: absolute;
  transform: translateY(-100%);
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 63, 126, 0.7);
  transition: top 0.5s ease-in-out;
}
#subject .clinic li::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--white);
  opacity: 0.4;
}
#subject .clinic li:last-child::after {
  display: none;
}
#subject .clinic li .text-wrap {
  height: 15rem;
  z-index: 1;
  transition: top 0.5s ease-in-out;
}
#subject .clinic li h4 {
  font-family: var(--bookk);
  color: var(--white);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 148%;
  letter-spacing: -0.04688rem;
  padding-bottom: 1rem;
  transition: 0.4s ease-in-out;
}
#subject .clinic li .en {
  display: inline-flex;
  padding: 0.1875rem 1.625rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 6.25rem;
  background: #FFF;
  color: #A3A3A3;
  text-align: center;
  font-family: var(--en);
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  line-height: 148%;
  transition: 0.4s ease-in-out;
}
@media screen and (max-width: 1023px) {
  #subject .clinic li .en {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  #subject .clinic li .en {
    font-family: var(--en);
  }
}
#subject .clinic li .desc {
  position: relative;
  padding-top: 3.06rem;
  font-size: 1.375rem;
  font-weight: 200;
  line-height: 148%;
  letter-spacing: -0.06rem;
  transition: 0.4s ease-in-out;
}
@media screen and (max-width: 1460px) {
  #subject .clinic li .desc br {
    display: none;
  }
}
#subject .clinic li .btn {
  position: absolute;
  bottom: -8rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  opacity: 0;
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  box-sizing: border-box;
  background: #fff url(/common/img/user/icon/icon_subject_btn.svg) no-repeat center center;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  #subject .clinic li:hover h4, #subject .clinic li:hover .en, #subject .clinic li:hover .desc {
    transform: translateY(-3rem);
  }
  #subject .clinic li:hover::before {
    top: 0%;
    transform: translateY(0);
  }
  #subject .clinic li:hover .en {
    background-color: var(--pri1);
    color: var(--white);
  }
  #subject .clinic li:hover .btn {
    display: block;
    opacity: 1;
    bottom: -7rem;
  }
}
@media screen and (max-width: 1023px) {
  #subject .clinic {
    flex-wrap: wrap;
    height: auto;
  }
  #subject .clinic li {
    flex: none;
    width: 50%;
    padding: 5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  #subject .clinic li .desc {
    font-size: 1.1rem;
  }
  #subject .clinic li .desc br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  #subject .clinic li {
    text-align: left;
  }
  #subject .clinic li h4 {
    font-size: 1.5rem;
  }
  #subject .clinic li .en {
    font-size: 0.8rem;
    padding: 0.1875rem 1rem;
  }
  #subject .clinic li .desc {
    padding-top: 2rem;
  }
}

/* 장비소개 */
#equip {
  display: flex;
  flex-wrap: nowrap;
}
#equip .header {
  width: 40rem;
  position: relative;
  margin-top: -5rem;
  padding: 0 0 0 7.875rem;
  display: flex;
  flex-direction: column;
  text-align: left;
  flex-wrap: nowrap;
  justify-content: center;
}
@media screen and (max-width: 1680px) {
  #equip .header {
    width: 32rem;
    padding: 0 0 0 3.5rem;
  }
}
#equip .header .label {
  text-align: left;
}
#equip .header .swiper-control {
  position: relative;
  width: 12.5rem;
  height: 5.625rem;
  margin-top: 3.8rem;
}
#equip .header .swiper-control .swiper-button-next,
#equip .header .swiper-control .swiper-button-prev {
  width: 5.652rem;
  height: 5.652rem;
  top: 0;
  margin-top: 0;
  background-color: var(--pri1);
  transition: all 0.3s ease-in-out;
}
#equip .header .swiper-control .swiper-button-next::after,
#equip .header .swiper-control .swiper-button-prev::after {
  font-size: 1.875rem;
  color: var(--white);
}
#equip .header .swiper-control .swiper-button-next svg,
#equip .header .swiper-control .swiper-button-prev svg {
  display: none;
}
#equip .header .swiper-control .swiper-button-next {
  left: 7.2rem;
}
#equip .header .swiper-control .swiper-button-prev {
  right: 0;
}
#equip .contents {
  flex: 1 1 0;
  min-width: 0;
  padding: 12.5rem 0;
}
#equip .equipSwiper {
  width: 100%;
  height: 100%;
  padding-bottom: 5.625rem;
}
#equip .equipSwiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
#equip .equipSwiper .swiper-slide {
  position: relative;
  height: 36rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FDFDFD;
}
#equip .equipSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
}
#equip .equipSwiper .swiper-slide .text-wrap {
  position: absolute;
  width: 100%;
  bottom: 3rem;
  text-align: center;
}
#equip .equipSwiper .swiper-slide .text-wrap .label {
  display: inline-flex;
  padding: 0.2rem 1.375rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  color: var(--white);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.03125rem;
  background-color: var(--pri1);
  border-radius: 6.25rem;
}
#equip .equipSwiper .swiper-slide .text-wrap .label[data-type=treat] {
  background-color: var(--pri2);
}
#equip .equipSwiper .swiper-slide .text-wrap .tit {
  margin-top: 0.2rem;
  color: var(--pri4-4);
  text-align: center;
  font-size: 1.55rem;
  font-style: normal;
  font-weight: 500;
  line-height: 188%; /* 3.29rem */
  letter-spacing: -0.04375rem;
}
#equip .equipSwiper .equip-paging {
  top: initial;
  bottom: 0;
  background: #FBFBFB;
}
#equip .equipSwiper .equip-paging .swiper-pagination-progressbar-fill {
  background: var(--pri1);
}
@media screen and (max-width: 1540px) {
  #equip .header {
    width: 36rem;
  }
}
@media screen and (max-width: 1023px) {
  #equip {
    flex-direction: column;
  }
  #equip .header {
    width: 100%;
    margin: 0;
    padding: 6rem 3rem;
  }
  #equip .header .swiper-control {
    position: absolute;
    right: 2rem;
  }
  #equip .contents {
    padding: 0 0 6.5rem;
  }
}
@media screen and (max-width: 767px) {
  #equip .header {
    padding: 6rem 1.2rem 3rem;
  }
  #equip .header .swiper-control {
    width: 9rem;
    right: 0;
  }
  #equip .header .swiper-control .swiper-button-next, #equip .header .swiper-control .swiper-button-prev {
    width: 3.5rem;
    height: 3.5rem;
  }
  #equip .header .swiper-control .swiper-button-next {
    left: 4.5em;
  }
  #equip .equipSwiper {
    padding-left: 1rem;
    padding-bottom: 2.5rem;
  }
  #equip .equipSwiper .swiper-slide {
    height: 24rem;
    border: 1px solid rgb(218, 218, 218);
  }
  #equip .equipSwiper .swiper-slide .text-wrap {
    height: 4rem;
  }
  #equip .equipSwiper .swiper-slide .text-wrap .label {
    font-size: 1rem;
  }
  #equip .equipSwiper .swiper-slide .text-wrap .tit {
    padding-top: 1rem;
    line-height: 1.25;
    font-size: 1.2rem;
    padding: 1rem 1.2rem;
  }
  #equip .equipSwiper .equip-paging {
    width: 80%;
    top: initial;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 0;
  }
}

/* 치료방법 */
#treat {
  overflow: hidden;
}
#treat .contents {
  display: flex;
  width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/common/img/user/main/bg_treat01.png);
  background-position: center center;
  transition: background-image 0.4s ease-in-out;
  overflow: hidden;
}
#treat .contents .header {
  width: 45rem;
  text-align: left;
  padding: 0 0 0 6.5rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1460px) {
  #treat .contents .header {
    padding: 0 0 0 2.5rem;
  }
}
#treat .contents .header p {
  color: var(--white);
  text-align: left;
}
#treat .contents .header p.title span {
  font-style: italic;
  font-weight: 800;
}
#treat .treatment {
  width: 100%;
  height: 43.75rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  overflow: hidden;
}
#treat .treatment li {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  color: var(--white);
  cursor: pointer;
  transition: all 0.6s ease-in-out;
}
#treat .treatment li::before {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 63, 126, 0.7);
  transition: top 0.5s ease-in-out;
}
#treat .treatment li::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--white);
  opacity: 0.3;
}
#treat .treatment li:last-child::after {
  display: none;
}
#treat .treatment li .text-wrap {
  height: 15rem;
  z-index: 1;
  transition: top 0.5s ease-in-out;
}
#treat .treatment li h4 {
  font-family: var(--bookk);
  color: var(--white);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 148%;
  letter-spacing: -0.04688rem;
  padding-bottom: 1rem;
  transition: 0.4s ease-in-out;
}
#treat .treatment li .en {
  display: inline-flex;
  padding: 0.1875rem 1.625rem;
  justify-content: center;
  align-items: flex-start;
  gap: 0.625rem;
  border-radius: 6.25rem;
  color: var(--white);
  font-family: var(--en);
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  height: 2rem;
  line-height: 1;
  transition: 0.4s ease-in-out;
}
@media screen and (max-width: 1023px) {
  #treat .treatment li .en {
    font-family: var(--en);
  }
}
@media screen and (max-width: 767px) {
  #treat .treatment li .en {
    font-family: var(--en);
  }
}
#treat .treatment li .desc {
  position: relative;
  padding-top: 3.06rem;
  font-size: 1.375rem;
  font-weight: 200;
  line-height: 148%;
  letter-spacing: -0.06rem;
}
#treat .treatment li .btn {
  position: absolute;
  bottom: -8rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  opacity: 0;
  display: block;
  width: 2.75rem;
  height: 2.75rem;
  box-sizing: border-box;
  background: #fff url(/common/img/user/icon/icon_subject_btn.svg) no-repeat center center;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  #treat .treatment li:hover {
    flex: 1.1;
  }
  #treat .treatment li:hover h4 {
    margin-top: -6rem;
  }
  #treat .treatment li:hover::before {
    bottom: 0%;
  }
  #treat .treatment li:hover .btn {
    display: block;
    opacity: 1;
    bottom: -6rem;
  }
}
@media screen and (max-width: 1023px) {
  #treat .contents {
    flex-direction: column;
  }
  #treat .contents .header {
    width: 100%;
    padding: 6rem 1.2rem 4rem;
  }
  #treat .contents .header .label {
    text-align: center;
  }
  #treat .contents .header .title {
    text-align: center;
  }
  #treat .contents .header .title br {
    display: none;
  }
  #treat .treatment {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
  }
}
@media screen and (max-width: 767px) {
  #treat .treatment {
    flex-wrap: wrap;
  }
  #treat .treatment li {
    flex: none;
    width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: none;
  }
  #treat .treatment li::before {
    display: none;
  }
  #treat .treatment li .text-wrap {
    width: 100%;
    height: auto;
  }
  #treat .treatment li h4 {
    font-size: 1.5rem;
  }
  #treat .treatment li .en {
    padding: 0;
    font-size: 0.8rem;
  }
  #treat .treatment li .desc {
    font-size: 1.1rem;
    padding-top: 1.5rem;
  }
}

/* 내부시설 */
#facility .header {
  position: relative;
  margin: 0 auto;
  padding: 12.5rem 7.5rem 6.25rem;
  text-align: left;
}
#facility .header p {
  text-align: left;
}
@media screen and (max-width: 1680px) {
  #facility .header {
    width: 100%;
    padding: 12.5rem 6.5rem 6.25rem;
  }
}
#facility .contents {
  position: relative;
  z-index: 1;
  padding-top: 9.37rem;
  box-sizing: border-box;
}
#facility .contents::after {
  content: "";
  display: block;
  height: 24.375rem;
  background: var(--pri1-3);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
#facility .swiper-control {
  position: absolute;
  bottom: 6.25rem;
  right: 7.5rem;
  width: 12.5rem;
  height: 5.625rem;
}
#facility .swiper-control .swiper-button-next,
#facility .swiper-control .swiper-button-prev {
  width: 5.652rem;
  height: 5.652rem;
  top: 0;
  margin-top: 0;
  background-color: var(--pri1);
  transition: all 0.3s ease-in-out;
}
#facility .swiper-control .swiper-button-next::after,
#facility .swiper-control .swiper-button-prev::after {
  font-size: 1.875rem;
  color: var(--white);
}
#facility .swiper-control .swiper-button-next svg,
#facility .swiper-control .swiper-button-prev svg {
  display: none;
}
#facility .swiper-control .swiper-button-next {
  left: 7.2rem;
}
#facility .swiper-control .swiper-button-prev {
  right: 0;
}
#facility .facilitySwiper .facility-paging {
  position: relative;
  width: 88%;
  margin: 5.625rem auto 0;
  background: #FBFBFB;
  box-sizing: border-box;
}
#facility .facilitySwiper .facility-paging .swiper-pagination-progressbar-fill {
  background: var(--pri1);
}
@media screen and (max-width: 1680px) {
  #facility .facilitySwiper .facility-paging {
    width: 100%;
  }
}
@media screen and (max-width: 1460px) {
  #facility .header {
    padding: 12.5rem 3.5rem 6.25rem;
  }
  #facility .swiper-control {
    right: 3.5rem;
  }
  #facility .facilitySwiper .facility-paging {
    width: 80%;
  }
}
@media screen and (max-width: 1023px) {
  #facility .header {
    padding: 12.5rem 3rem 6.25rem;
  }
  #facility .swiper-control {
    right: 3rem;
  }
}
@media screen and (max-width: 767px) {
  #facility .header {
    padding: 6rem 2rem 4rem;
  }
  #facility .contents {
    padding-top: 4rem;
  }
  #facility .contents::after {
    height: 12rem;
  }
  #facility .swiper-control {
    width: 9rem;
    right: 0;
    bottom: -1rem;
  }
  #facility .swiper-control .swiper-button-next {
    width: 3.5rem;
    height: 3.5rem;
    left: 4.5em;
  }
  #facility .swiper-control .swiper-button-prev {
    width: 3.5rem;
    height: 3.5rem;
    right: 0;
  }
  #facility .facilitySwiper .facility-paging {
    margin-top: 3rem;
  }
}

#hospitalInfo {
  padding-bottom: 8.12rem;
}
#hospitalInfo .contents {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 7%;
  width: 88%;
  margin: 0 auto;
}
#hospitalInfo .map-wrap {
  display: flex;
  flex-direction: column;
  width: 50%;
}
#hospitalInfo .map {
  width: 100%;
  height: 36.5rem;
}
#hospitalInfo .map .wrap_controllers,
#hospitalInfo .map .cont {
  display: none !important;
}
#hospitalInfo .map .map_border {
  background: none !important;
  opacity: 0 !important;
}
#hospitalInfo .map .roughmap_maker_label .roughmap_lebel_text {
  font-size: 1.6rem;
  padding: 10px 8px 10px;
  display: flex;
  align-items: center;
}
#hospitalInfo .map .roughmap_maker_label .roughmap_lebel_text::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
  background: url(/common/img/user/icon/icon_mark.svg) no-repeat center center;
  background-size: 80% auto;
}
#hospitalInfo .info-wrap {
  width: 42%;
}
#hospitalInfo .tel-info {
  display: flex;
  flex-direction: column;
  gap: 10%;
}
#hospitalInfo .info-item {
  padding-top: 2rem;
}
#hospitalInfo .info-item:nth-child(1) {
  padding-top: 0;
}
#hospitalInfo .info-item:last-child .con {
  padding-bottom: 0;
}
#hospitalInfo .info-item.gap {
  padding-top: 5.6rem;
}
#hospitalInfo .info-item.gap-two {
  padding-top: 4.3rem;
}
#hospitalInfo .info-item > .tit {
  padding-left: 1.2rem;
  padding-bottom: 1rem;
  color: var(--pri4-4);
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 148%; /* 2.405rem */
  letter-spacing: -0.04063rem;
  border-bottom: 1px solid #E9E9E9;
}
#hospitalInfo .info-item > .con {
  padding: 1.6rem 1.2rem;
}
#hospitalInfo .info-item .schedule {
  display: flex;
  flex-direction: column;
  gap: 6%;
}
#hospitalInfo .info-item .schedule li {
  display: flex;
  flex-direction: row;
  padding-bottom: 1.5rem;
  width: 100%;
}
#hospitalInfo .info-item .bannerSwiper .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 2px) !important;
}
#hospitalInfo .info-item .bannerSwiper .swiper-pagination-bullet-active {
  background-color: var(--white);
}
#hospitalInfo .info-item .btn-pay {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.6rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.2rem;
  color: var(--white);
  background-color: var(--pri1-4);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
#hospitalInfo .info-item .btn-pay:hover {
  background-color: var(--pri1);
}
#hospitalInfo .info-item .schedule .tit {
  min-width: 9.87rem;
  color: var(--pri1);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 220%;
  letter-spacing: -0.03125rem;
  vertical-align: top;
}
#hospitalInfo .info-item .schedule .tit span {
  font-size: 1rem;
  font-weight: 300;
}
#hospitalInfo .info-item .schedule .con {
  flex: 1;
  color: var(--pri4-4);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 220%;
}
#hospitalInfo .info-item .schedule .con p {
  text-align: left;
}
#hospitalInfo .info-item .schedule .con > span {
  display: inline-block;
  padding-left: 0;
}
#hospitalInfo .info-item .schedule .con > span.point {
  padding: 0;
  color: var(--pri3);
}
#hospitalInfo .info-item .schedule .con .notice {
  padding: 0.6rem 1.5rem;
  color: var(--pri4-4);
  font-size: 1rem;
  font-weight: 300;
  line-height: 168%;
  letter-spacing: -0.025rem;
  background-color: var(--pri4-2);
}
#hospitalInfo .info-item .schedule .con .notice .point {
  color: var(--pri3);
}
#hospitalInfo .info-item .schedule .con .notice .icon {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  line-height: 1.6rem;
  text-align: center;
  background-color: var(--pri1-2);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.8rem;
  vertical-align: top;
  margin-top: 0.1rem;
}
#hospitalInfo .info-item .point {
  color: var(--pri3);
}
#hospitalInfo .info-item .notice {
  padding: 2rem 3rem;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.03125rem;
  background-color: var(--pri4-2);
}
#hospitalInfo .info-item .notice .icon {
  display: inline-block;
  text-align: center;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 0.4rem;
  font-size: 0.9rem;
  line-height: 1.5rem;
  border-radius: 50%;
  background-color: var(--pri1-4);
  color: var(--white);
}
#hospitalInfo .info-item .addr {
  padding: 0 0 1rem;
  color: var(--pri4-4);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.03438rem;
}
#hospitalInfo .info-item .tel-info > div,
#hospitalInfo .info-item .tel-info > a {
  display: flex;
  padding-bottom: 0;
}
#hospitalInfo .info-item .tel-info > div .tit,
#hospitalInfo .info-item .tel-info > a .tit {
  min-width: 9.87rem;
  color: var(--pri1);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 220%;
  letter-spacing: -0.03125rem;
  vertical-align: top;
}
#hospitalInfo .info-item .tel-info > div .tit span,
#hospitalInfo .info-item .tel-info > a .tit span {
  font-size: 1rem;
  font-weight: 300;
}
#hospitalInfo .info-item .tel-info > div .txt,
#hospitalInfo .info-item .tel-info > a .txt {
  color: var(--pri4-4);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 220%;
}
@media screen and (max-width: 1460px) {
  #hospitalInfo .contents {
    width: 100%;
    padding: 0 3.5rem;
  }
}
@media screen and (max-width: 1023px) {
  #hospitalInfo .contents {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  #hospitalInfo .contents .map-wrap {
    width: 100%;
  }
  #hospitalInfo .contents .map {
    height: 28rem;
  }
  #hospitalInfo .contents .info-wrap {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
  #hospitalInfo .contents .info-item:nth-child(1) {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 767px) {
  #hospitalInfo {
    padding-bottom: 0;
  }
  #hospitalInfo .contents {
    padding: 0 1.2rem 3rem;
  }
  #hospitalInfo .contents .map {
    position: relative;
    width: 100%;
    height: 24rem;
  }
  #hospitalInfo .contents .info-wrap {
    flex: none;
    width: 100%;
  }
  #hospitalInfo .contents .info-item > .tit {
    padding-left: 0;
    font-size: 1.45rem;
    font-weight: 600;
  }
  #hospitalInfo .contents .info-item > .con {
    padding: 1.5rem 0 0 0;
  }
  #hospitalInfo .contents .info-item .notice {
    padding: 1rem 1.2rem;
  }
  #hospitalInfo .contents .info-item .schedule .tit {
    min-width: 6rem;
    font-size: 1.2rem;
    line-height: 1.45;
  }
  #hospitalInfo .contents .info-item .schedule .tit span {
    display: block;
  }
  #hospitalInfo .contents .info-item .schedule .con {
    line-height: 1.45;
    font-size: 1.2rem;
  }
  #hospitalInfo .contents .info-item .schedule .con > span {
    padding-bottom: 0.5rem;
  }
  #hospitalInfo .contents .info-item .schedule .con .notice {
    font-size: 0.9rem;
    line-height: 1.45;
  }
  #hospitalInfo .contents .info-item .addr {
    font-size: 1.15rem;
  }
  #hospitalInfo .contents .info-item .notice {
    padding: 1rem;
    font-size: 1.02rem;
    line-height: 1.45;
  }
  #hospitalInfo .contents .info-item .tel-info > div .tit {
    min-width: 6rem;
  }
  #hospitalInfo .contents .info-item .tel-info a .tit {
    min-width: 6rem;
  }
}

/* 공통 */
.header {
  text-align: center;
  padding: 12.5rem 0 6.25rem;
  box-sizing: border-box;
}
.header > .label {
  position: relative;
  color: var(--pri3);
  text-align: center;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.03438rem;
}
.header > .title {
  position: relative;
  padding-top: 1.5rem;
  color: var(--pri1);
  font-family: var(--bookk);
  font-size: 2.875rem;
  font-weight: 300;
  line-height: 148%;
  letter-spacing: -0.10063rem;
}
.header > .title b {
  font-weight: 900;
}
.header > .desc {
  padding-top: 3rem;
  color: var(--pri1);
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 148%;
  letter-spacing: -0.10063rem;
}
@media screen and (max-width: 1023px) {
  .header {
    padding: 12.5rem 3rem 6.25rem;
  }
  .header > .label {
    font-size: 1.1rem;
  }
  .header > .title {
    padding-top: 1.5rem;
    font-size: 2.2rem;
  }
  .header > .desc {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding: 6.5rem 1.2rem 3.25rem;
  }
  .header > .label {
    font-size: 1rem;
  }
  .header > .title {
    padding-top: 1.5rem;
    font-size: 1.7rem;
  }
  .header > .desc {
    padding-top: 1rem;
    font-size: 1.1rem;
  }
}

.reveal {
  visibility: hidden;
  position: relative;
  overflow: hidden;
  will-change: transform, opacity;
}

.text-loop {
  display: flex;
  flex: 0 0 auto;
  white-space: nowrap;
}
.text-loop .loop {
  animation: textLoop 10s linear infinite;
  padding-right: 8rem;
  font-weight: 500;
  font-family: var(--bookk);
  color: #F9F9F9;
  font-size: 9.375rem;
  font-weight: 700;
  letter-spacing: 0.09375rem;
  font-weight: 500;
}
.text-loop .loop span {
  display: inline-block;
  padding-left: 8rem;
  font-size: 9.375rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .text-loop .loop {
    font-size: 5.375rem;
  }
  .text-loop .loop span {
    font-family: var(--bookk);
    font-size: 5.375rem;
  }
}

@keyframes textLoop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.shadow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.52);
  width: 100%;
  height: 100vh;
  display: none;
}
.shadow.active {
  display: block;
}

.popup {
  display: none;
  width: 90%;
  height: 96%;
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 100%);
  z-index: 1000;
  box-sizing: border-box;
  transition: all 0.5s ease-in-out;
  /* 의료진 소개 */
  /* 진료과목 */
}
.popup.clinic {
  width: 80%;
}
.popup.show {
  display: block;
  animation: slideUp 0.4s ease-out forwards;
}
.popup.hide {
  animation: slideDown 0.4s ease-in forwards;
}
.popup .popup-header {
  display: flex;
  position: relative;
  height: 4.8rem;
  padding-left: 4rem;
  align-items: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.10063rem;
  background: var(--pri1);
}
.popup .popup-header .close {
  position: absolute;
  right: 0;
  top: 0;
  width: 5.4rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: var(--black);
  transition: all 0.3s ease-in-out;
}
.popup .popup-header .close img {
  width: 2.4rem;
  height: 2.4rem;
}
.popup .popup-header .close:hover {
  background-color: var(--pri1-4);
}
.popup .popup-header .close:hover img {
  animation-duration: 0.2s;
  animation-iteration-count: 1;
  animation-name: closeBtn;
  animation-timing-function: linear;
}
@keyframes closeBtn {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(90deg);
  }
}
.popup .popup-contents {
  height: 100%;
  padding: 4rem 5rem 6rem;
  background-color: var(--white);
  overflow-y: scroll;
  box-sizing: border-box;
  border: 1px solid #000;
  border-top: 0;
  box-sizing: border-box;
}
.popup .popup-contents.center {
  text-align: center;
}
@keyframes slideUp {
  0% {
    transform: translate(-50%, 20%);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 0%);
    opacity: 1;
  }
}
@keyframes slideDown {
  0% {
    transform: translate(-50%, 0%);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 20%);
    opacity: 0;
  }
}
.popup .doctor-detail-wrap {
  display: flex;
  gap: 3.75rem;
  height: 100%;
  box-sizing: border-box;
}
.popup .doctor-detail-wrap .doctor-detail-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex: 1;
  padding: 4rem 1.5rem 0 2.5rem;
  background: #F5F7FC url(/common/img/user/common/watermark.svg) no-repeat 60% 20%;
}
.popup .doctor-detail-wrap .doctor-detail-item .image {
  position: absolute;
  display: flex;
  width: 100%;
  height: 90%;
  bottom: 0;
  padding-top: 4rem;
}
.popup .doctor-detail-wrap .doctor-detail-item .image .name {
  position: absolute;
  top: 0;
  z-index: 1;
  color: var(--white);
  font-family: var(--bookk);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.04375rem;
  padding: 0.375rem 1.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6.25rem;
  background-color: var(--black);
}
.popup .doctor-detail-wrap .doctor-detail-item .image .name span {
  display: inline-block;
  padding-left: 0.6rem;
  font-weight: 100;
}
.popup .doctor-detail-wrap .doctor-detail-item .image img {
  margin-left: -1.5rem;
  bottom: 0;
  height: 100%;
  width: auto;
}
.popup .doctor-detail-wrap .doctor-detail-item .contents {
  position: absolute;
  left: 24rem;
  width: 100%;
}
.popup .doctor-detail-wrap .doctor-detail-item .contents .repr {
  position: absolute;
  top: 0;
  height: 12rem;
  overflow-y: scroll;
  padding-right: 1rem;
  color: #202020;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 168%; /* 2.31rem */
  letter-spacing: -0.03438rem;
}
.popup .doctor-detail-wrap .doctor-detail-item .contents .repr li {
  line-height: 1.25;
  padding-bottom: 0.5rem;
}
.popup .doctor-detail-wrap .doctor-detail-item .contents .repr li::before {
  content: "·";
  display: inline-block;
  padding-right: 1rem;
}
.popup .doctor-detail-wrap .doctor-detail-item .contents .repr li.point {
  color: var(--pri1);
  font-weight: 500;
}
.popup .doctor-detail-wrap .doctor-detail-item .contents .doctor-history {
  position: absolute;
  top: 15rem;
  height: 24rem;
  padding-right: 1rem;
  overflow-y: scroll;
  display: flex;
  gap: 8rem;
}
.popup .doctor-detail-wrap .doctor-detail-item .contents .doctor-history .tit {
  padding-bottom: 1rem;
  color: #202020;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: -0.03438rem;
}
.popup .doctor-detail-wrap .doctor-detail-item .contents .doctor-history ul {
  padding-bottom: 2rem;
}
.popup .doctor-detail-wrap .doctor-detail-item .contents .doctor-history ul li {
  display: flex;
  align-items: center;
  color: #555;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 180%;
  letter-spacing: -0.02813rem;
}
.popup .doctor-detail-wrap .doctor-detail-item .contents .doctor-history ul li::before {
  content: "·";
  display: inline-block;
  padding-right: 1rem;
}
.popup .doctor-detail-wrap .doctor-detail-item .contents .doctor-history ul li > span {
  display: inline-block;
  width: 1.125rem;
  height: 1.1875rem;
  line-height: 1.1875rem;
  margin-right: 0.4rem;
  border-radius: 6.25rem;
  background: #EAEAEA;
  color: #555;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: -0.01719rem;
}
.popup .doctor-detail-wrap .doctor-detail-item .contents .doctor-history ul li.now {
  color: var(--pri1);
  font-weight: 600;
}
.popup .doctor-detail-wrap .doctor-detail-item .contents .doctor-history ul li.now > span {
  background-color: var(--pri1);
  color: var(--white);
}
.popup .doctor-detail-wrap .doctor-detail-item:nth-child(2) .doctor-history {
  top: 0;
  height: 30rem;
}
@media screen and (max-width: 1640px) {
  .popup .doctor-detail-wrap {
    gap: 2.75rem;
  }
  .popup .doctor-detail-wrap .doctor-detail-item .image .name {
    top: 1.5rem;
  }
}
@media screen and (max-width: 1530px) {
  .popup .doctor-detail-wrap {
    gap: 1.75rem;
  }
  .popup .doctor-detail-wrap .doctor-detail-item .image {
    width: 46%;
    padding-top: 6rem;
  }
  .popup .doctor-detail-wrap .doctor-detail-item .image .name {
    font-size: 1.45rem;
  }
  .popup .doctor-detail-wrap .doctor-detail-item .contents {
    left: 18rem;
  }
}
@media screen and (max-width: 1460px) {
  .popup .doctor-detail-wrap {
    flex-direction: column;
    height: 72rem;
  }
  .popup .doctor-detail-wrap .doctor-detail-item .image {
    width: 60%;
    top: 0;
    padding-top: 4rem;
  }
  .popup .doctor-detail-wrap .doctor-detail-item .image img {
    width: initial;
    height: 130%;
  }
  .popup .doctor-detail-wrap .doctor-detail-item .contents {
    left: 30rem;
  }
}
@media screen and (max-width: 1023px) {
  .popup .doctor-detail-wrap {
    height: auto;
  }
  .popup .doctor-detail-wrap .doctor-detail-item {
    flex-direction: column;
    padding: 2rem 1rem 0;
  }
  .popup .doctor-detail-wrap .doctor-detail-item .image {
    flex-direction: column;
    padding-top: 0;
    width: 100%;
    height: 20rem;
    position: relative;
  }
  .popup .doctor-detail-wrap .doctor-detail-item .image img {
    height: inherit;
    margin-left: 0;
    margin: 0 auto;
  }
  .popup .doctor-detail-wrap .doctor-detail-item .image .name {
    width: 100%;
    position: relative;
    margin-top: -2rem;
    margin-bottom: 2rem;
  }
  .popup .doctor-detail-wrap .doctor-detail-item .contents {
    position: relative;
    left: initial;
    width: 100%;
  }
  .popup .doctor-detail-wrap .doctor-detail-item .contents .repr {
    position: relative;
    top: initial;
    height: auto;
    overflow: visible;
    font-size: 1.1rem;
    padding: 1.5rem 0;
  }
  .popup .doctor-detail-wrap .doctor-detail-item .contents .doctor-history {
    position: relative;
    top: initial;
    height: auto;
    padding-right: 0;
    overflow-y: visible;
    flex-direction: column;
    gap: 0;
  }
  .popup .doctor-detail-wrap .doctor-detail-item .contents .doctor-history ul li {
    line-height: 1.25;
    padding-bottom: 0.5rem;
    align-items: flex-start;
  }
}
.popup .subject-header {
  padding-top: 5.5rem;
  padding-bottom: 5rem;
}
.popup .subject-header .tit {
  padding-bottom: 0.8rem;
  color: var(--pri4-4);
  text-align: center;
  font-family: var(--bookk);
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 148%;
  letter-spacing: -0.10063rem;
}
.popup .subject-header .desc {
  text-align: center;
  color: var(--pri4-4);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  line-height: 186%;
  letter-spacing: -0.07rem;
}
.popup .subject-header .desc span {
  font-weight: 500;
  color: var(--pri3);
}
.popup.none .subject-header {
  padding-top: 0;
}
.popup .subject-content {
  display: flex;
  gap: 6rem;
  text-align: left;
}
.popup .subject-content > img {
  position: sticky;
  top: 0;
  width: 40%;
  height: 29rem;
  height: -moz-max-content;
  height: max-content;
}
.popup .subject-content .text-wrap {
  flex: 1;
  padding-bottom: 5rem;
}
.popup .subject-content .text-wrap .sub-desc {
  padding-top: 1rem;
  padding-bottom: 6rem;
  color: var(--pri4-4);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: -0.07rem;
}
.popup .subject-content .text-wrap .sub-desc span {
  color: var(--pri3);
  font-weight: 500;
}
.popup .subject-content .text-wrap .sub-con .tit {
  padding-bottom: 1.6rem;
  color: var(--pri4-4);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.04375rem;
}
.popup .subject-content .text-wrap .sub-con .tit:nth-child(n+2) {
  padding-top: 6rem;
}
.popup .subject-content .text-wrap .sub-con .list {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.popup .subject-content .text-wrap .sub-con .list > li {
  display: flex;
  padding: 1.69rem 3rem;
  border-bottom: 1px solid #E5E5E5;
  color: var(--pri4-4);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 160%; /* 2.4rem */
  letter-spacing: -0.0375rem;
  box-sizing: border-box;
}
.popup .subject-content .text-wrap .sub-con .list > li .num {
  display: inline-block;
  padding-right: 1rem;
  color: #C3C3C3;
  font-family: var(--bookk);
  font-size: 1.5rem;
  font-weight: 700;
}
.popup .subject-content .text-wrap .sub-con .list > li .txt b {
  font-size: 1.45rem;
  font-weight: 600;
}
.popup .subject-content .text-wrap .sub-con .list.label-list > li .num {
  font-family: var(--pretend);
  flex-basis: 20%;
}
.popup .subject-content .text-wrap .sub-con .list.label-list > li .txt {
  flex: 1;
}
.popup .subject-content .text-wrap .sub-con .list.even > li:nth-child(even) {
  background-color: #FDFDFD;
}
.popup .subject-content .text-wrap .sub-con .progress {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.popup .subject-content .text-wrap .sub-con .progress > li {
  display: flex;
  padding: 0 1rem 0 0;
  border-bottom: 1px solid #E5E5E5;
  color: var(--pri4-4);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 160%; /* 2.4rem */
  letter-spacing: -0.0375rem;
  box-sizing: border-box;
}
.popup .subject-content .text-wrap .sub-con .progress > li .img {
  display: inline-block;
  overflow: hidden;
  flex-basis: 35%;
}
.popup .subject-content .text-wrap .sub-con .progress > li .img img {
  width: 100%;
}
.popup .subject-content .text-wrap .sub-con .progress > li .txt {
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  padding: 0 0 0 2rem;
}
.popup .subject-content .text-wrap .sub-con .progress > li .txt .label {
  display: flex;
  width: 8rem;
  justify-content: center;
  align-items: center;
  border-radius: 6.25rem;
  background: #F5F6FC;
  color: var(--pri1);
  font-family: var(--bookk);
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 700;
  line-height: 148%;
  box-sizing: border-box;
}
.popup .subject-content .text-wrap .sub-con .progress > li .txt .label-txt {
  padding-top: 1.1rem;
  padding-left: 0.5rem;
  color: var(--pri4-4);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.0375rem;
}

/* tab */
.tab {
  display: inline-flex;
  justify-content: center;
  overflow-x: auto;
  white-space: nowrap;
  padding: 0.5rem;
  border-radius: 6.25rem;
  background: #EDF7FB;
}
.tab li a {
  display: flex;
  flex-shrink: 0;
  padding: 0.625rem 1.8rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 6.25rem;
  color: var(--pri1);
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.06rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.tab li.active a {
  background-color: var(--pri1);
  box-shadow: 10px 10px 9.1px 0px rgba(38, 63, 126, 0.24);
  color: var(--white);
}

table.pay {
  table-layout: fixed;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table.pay thead {
  background-color: var(--pri1-4);
}
table.pay thead tr th {
  text-align: center;
  padding: 0.6rem 0.1rem;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.15;
  color: var(--white);
  border-bottom: 1px solid #363636;
  border-right: 1px solid #555555;
}
table.pay thead tr th.last {
  border-right: 0;
  background-color: var(--pri1);
}
table.pay tbody tr {
  position: relative;
  transition: background-color 0.3s;
}
table.pay tbody tr.even {
  background-color: #f4fdff;
}
table.pay tbody tr td {
  text-align: center;
  padding: 0.6rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0;
  word-break: break-all;
  border-right: 1px dashed #dfdfdf;
  border-bottom: 1px dashed #dfdfdf;
  transition: all 0.3s;
}
table.pay tbody tr td b {
  font-weight: 700;
  color: var(--pri1);
}
table.pay tbody tr .date {
  color: var(--white);
  background-color: var(--pri1-1);
  border-bottom-color: var(--pri1);
}
table.pay tbody tr .point {
  color: var(--pri1);
}

@media screen and (max-width: 1640px) {
  .popup.clinic {
    width: 96%;
  }
  .popup .popup-header {
    height: 3.8rem;
    font-size: 1.6rem;
    padding-left: 3rem;
  }
  .popup .popup-header .close {
    width: 3.8rem;
  }
  .popup .popup-contents {
    padding: 3rem 3rem 8rem;
  }
  .popup .tab li a {
    padding: 0.4rem 1.2rem;
    font-size: 1.1rem;
  }
  .popup .subject-header {
    padding: 3.5rem 0 4rem;
  }
  .popup .subject-header .tit {
    font-size: 2.1rem;
  }
  .popup .subject-header .desc {
    font-size: 1.2rem;
  }
  .popup .subject-content {
    gap: 4rem;
  }
  .popup .subject-content > img {
    height: 27rem;
  }
  .popup .subject-content .text-wrap .sub-desc {
    font-size: 1.15rem;
    padding-bottom: 4rem;
  }
  .popup .subject-content .text-wrap .sub-con .tit {
    font-size: 1.4rem;
  }
  .popup .subject-content .text-wrap .sub-con .list > li {
    font-size: 1.1rem;
    padding: 1.2rem 2rem;
  }
  .popup .subject-content .text-wrap .sub-con .list > li .num {
    flex-basis: 8%;
  }
}
@media screen and (max-width: 1023px) {
  .popup .popup-contents {
    padding: 2rem 1.2rem 8rem;
  }
  .popup .subject-header {
    padding: 2.5rem 0 2rem;
  }
  .popup.none .subject-header {
    padding-bottom: 1rem;
  }
  .popup .subject-content {
    flex-direction: column;
    gap: 1rem;
  }
  .popup .subject-content img {
    position: relative;
    height: 28rem;
    width: 100%;
  }
  .popup .subject-content .text-wrap {
    padding-bottom: 0;
  }
  .popup .subject-content .text-wrap .sub-con .list > li .num {
    flex-basis: initial;
    width: 12%;
    font-size: 1.2rem;
  }
  .popup .subject-content .text-wrap .sub-con .list > li .txt {
    flex: 1;
  }
  .popup .subject-content .text-wrap .sub-con .list > li .txt b {
    font-size: 1.2rem;
  }
  .popup .subject-content .text-wrap .sub-con .progress > li .img {
    display: flex;
  }
  .popup .subject-content .text-wrap .sub-con .progress > li .img img {
    min-height: 9rem;
    height: auto;
  }
  .popup .subject-content .text-wrap .sub-con .progress > li .txt {
    padding: 1.2rem 0 1.2rem 2rem;
  }
  .popup .subject-content .text-wrap .sub-con .progress > li .txt .label {
    font-size: 1.1rem;
  }
  .popup .subject-content .text-wrap .sub-con .progress > li .txt .label-txt {
    font-size: 1.2rem;
  }
  .popup .subject-content .text-wrap .sub-con .progress > li .txt .label-txt br {
    display: none;
  }
  .tab {
    flex-wrap: wrap;
    gap: 1rem;
    border-radius: 1rem;
  }
  .tab li {
    width: 46%;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  .popup .subject-content img {
    height: 15rem;
  }
}
/*community*/
.community {
  font-family: var(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  font-family: var(--pretend);
  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(--pretend);
    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(--pretend);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.community input {
  font-family: var(--pretend);
  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(--pretend);
    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(--pretend);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.community .step-tit {
  font-family: var(--pretend);
  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(--pretend);
    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(--pretend);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.72px;
  }
}
.community .step-tit span {
  font-family: var(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  border: 0;
  height: 100%;
}
#join .step01 ul li:nth-child(3) label span {
  font-family: var(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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: 767px) {
  .privacy {
    font-family: var(--pretend);
    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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.56px;
  }
}
.write .personal-infor p {
  font-family: var(--pretend);
  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(--pretend);
    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(--pretend);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%;
    letter-spacing: -0.56px;
  }
}
.write .personal-infor label span {
  font-family: var(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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(--pretend);
  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(--pretend);
    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(--pretend);
    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=main.css.map */